.logo-slider { 
    margin-top: 70px;
    display: flex;
    align-items: center;
    gap: 18px;
    background: rgba(255,255,255,0.08);
    padding: 28px;
    border-radius: 20px;
    backdrop-filter: blur(12px);
}
.logo-track {
    will-change: transform;
}
.logo-viewport {
    overflow: hidden;
    width: 100%;
}

.logo-track {
    display: flex;
    gap: 90px;
    transition: transform 0.45s ease;
    align-items: center;
}

.logo-track img {
    height: 80px;
    width: auto;
    flex-shrink: 0;
    object-fit: contain;
    opacity: 0.9;
    transition: 0.3s;
}

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

/* arrows */
.logo-btn {
    background: rgba(11,20,48,0.05);
    border: none;
    color: white;
    font-size: 26px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.logo-btn:hover {
    background:rgba(11,20,48,0.05);
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 1024px) {
    .logo-track {
        gap: 70px;
    }
    .logo-track img {
        height: 60px;
    }
}

@media (max-width: 768px) {
    .logo-slider {
        padding: 20px;
        gap: 10px;
    }
    .logo-track {
        gap: 55px;
    }
    .logo-track img {
        height: 60px;
    }
    .logo-btn {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .logo-track {
        gap: 40px;
    }
    .logo-track img {
        height: 60px;
    }
}.certifications-section{
  background: url(https://images.unsplash.com/photo-1518770660439-4636190af475?q=80&w=1920&auto=format&fit=crop) center / cover no-repeat;
  position: relative;
}
.certifications-section::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    rgba(6,10,24,0.75),
    rgba(6,10,24,0.85)
  );
  z-index:1;
}

.certifications-section > *{
  position:relative;
  z-index:2;
}


/* Section */
.certifications-section{}
.about2-section{
    background: #ECE7E1;
  padding: 50px 0;
}

.about2-wrapper{
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

/* Header */
.about2-header{
  text-align: center;
  margin-bottom: 60px;
}

.about2-header h2{
  font-size: 44px;
  font-weight: 700;
  color: #0b1430;
}

.about2-tagline{
  margin-top: 10px;
  color: #3a3a3a;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Main card */
.about2-card{
  background: rgba(255,255,255,0.35);
  border-radius: 28px;
  padding: 60px;
  backdrop-filter: blur(12px);
  box-shadow: 0 30px 80px rgba(5,8,20,0.18);
  border: 1px solid rgba(255,255,255,0.4);
}

.about2-grid{
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  align-items: center;
}

/* Text blocks */
.about2-text{
  display: grid;
  gap: 18px;
}

.about2-item{
  background: rgba(11,20,48,0.05);
  padding: 18px 22px;
  border-radius: 14px;
  font-size: 16px;
  line-height: 1.65;
  color: #0b1430;
  border-left: 4px solid #0b1430;
}

/* Photo */
.about2-photo{
  display: flex;
  justify-content: center;
}

.about2-photo-frame{
  background: linear-gradient(135deg, #0b1430, #1e3a8a);
  padding: 6px;
  border-radius: 28px;
}

.about2-photo-frame img{
  width: 290px;
  height: 370px;
  object-fit: cover;
  border-radius: 22px;
}

/* Logos */
.about2-logos{
  margin-top: 60px;
  padding: 30px 24px;
  background: rgba(255,255,255,0.25);
   border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.35);
}

.about2-logos-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 32px;
    align-items: center;
    justify-items: center;
}

.about2-logos-row img {
    height: 42px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: brightness(0) invert(1); /* optional if dark bg */
}

.about2-logos-row img:hover{
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

.avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5B8CFF, #7F53FF);
  color: white;
  font-size: 28px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  letter-spacing: 1px;
}

.slide blockquote {
  font-size: 16px;
  line-height: 1.6;
  color: #dcdcdc;
  margin-bottom: 18px;
}

.slide h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: white;
}

.slide p {
  font-size: 14px;
  color: #bdbdbd;
  margin-bottom: 6px;
}

.source {
  font-size: 12px;
  color: #8a8a8a;
  font-style: italic;
}.brand-text a {
    display: flex;
    flex-direction: column;
    color: #fff;
    line-height: 1.1;
        text-decoration: none;
}
.blogflux-section{
  padding:50px 0;
  background:#f6f4ea;
}

.blogflux-header{
  text-align:center;
}

.blogflux-title{font-size:40px; font-weight:700;color:#000;}
.blogflux-sub{margin-top:10px; color:#555;}
.blogflux-line{display:block; width:80px; height:3px; background:#4f46e5; margin:16px auto 0; border-radius:3px;}

.blogflux-shell{
  max-width:1200px;
  margin:70px auto 0;
  position:relative;
  display:flex;
  align-items:center;
}

.blogflux-viewport{overflow:hidden; width:100%;}

.blogflux-track{
  display:flex;
  gap:30px;
  transition:transform .55s ease;
}

.blogflux-card{
  background:#0b1328;
  border-radius:26px;
  overflow:hidden;
  box-shadow:0 25px 60px rgba(0,0,0,.25);
  display:flex;
  flex-direction:column;
}

.blogflux-img img{width:100%; height:260px; object-fit:cover; display:block;}

.blogflux-body{
  padding:28px;
  color:#fff;
  background:linear-gradient(180deg,#0b1328,#050814);
}

.blogflux-body h3{font-size:20px; margin-bottom:12px;}

.blogflux-body p{
  font-size:14px;
  line-height:1.6;
  color:#cbd5ff;
}

.blogflux-cta{
  display:inline-block;
  margin-top:18px;
  color:#38bdf8;
  text-decoration:none;
  font-weight:600;
}

.blogflux-cta:hover{text-decoration:underline;}

/* ARROWS */
.blogflux-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:48px;
  height:48px;
  border-radius:50%;
  border:none;
  background:#111827;
  color:#fff;
  font-size:26px;
  cursor:pointer;
  z-index:50;
  box-shadow:0 10px 25px rgba(0,0,0,.4);
}

.blogflux-prev{left:-26px;}
.blogflux-next{right:-26px;}

/* RESPONSIVE */
@media(min-width:1024px){
  .blogflux-card{min-width: calc((1200px - 60px) / 3);} /* 3 cards */
}

@media(max-width:1023px){
  .blogflux-card{min-width:48%;} /* 2 cards */
}

@media(max-width:640px){
  html,body{overflow-x:hidden;}
  .blogflux-card{min-width:100%;}
  .blogflux-nav{width:34px;height:34px;font-size:18px;}
  .blogflux-prev{left:6px;}
  .blogflux-next{right:6px;}
}
.neuro-loop-section{
  padding:50px 0;
  background:radial-gradient(circle at top,#0b1430,#050814);
  display:block; /* 🔥 ensure visible */
}

/* WRAPPER */
.neuro-loop-shell{
  max-width:1200px;
  margin:60px auto 0;
  position:relative;
  display:flex;
  align-items:center;
}

/* VIEWPORT */
.neuro-loop-viewport{
  overflow:hidden;
  width:100%;
  display:block; /* 🔥 ensure visible */
}

/* TRACK */
.neuro-loop-track{
  display:flex;
  gap:30px;
  transition:transform .6s ease;
}

/* CARD */
.neuro-loop-card{
  background:linear-gradient(145deg,#0f1f3d,#0a162e);
  border-radius:28px;
  padding:44px 32px 38px;
  text-align:center;
  color:#eaf0ff;
  box-shadow:0 0 40px rgba(110,168,255,.12);
  border:1px solid rgba(110,168,255,.12);
  backdrop-filter:blur(10px);
}

/* ICON */
.neuro-loop-icon{
  width:72px;
  height:72px;
  border-radius:50%;
  background:radial-gradient(circle,#6ea8ff33,#6ea8ff10);
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 22px;
  box-shadow:0 0 30px rgba(110,168,255,.7);
}

.neuro-loop-icon img{
  width:34px;
  filter:invert(1);
}

/* TEXT */
.neuro-loop-title{
  font-size:19px;
  margin-bottom:14px;
}

.neuro-loop-text{
  font-size:14px;
  color:#b9c4e2;
  line-height:1.6;
}

/* LINK */
.neuro-loop-link{
  display:inline-block;
  margin-top:22px;
  padding:12px 24px;
  border-radius:14px;
  border:1px solid #6ea8ff;
  color:#cfe2ff;
  text-decoration:none;
  transition:.3s;
  box-shadow:0 0 20px rgba(110,168,255,.35);
}

.neuro-loop-link:hover{
  background:#6ea8ff;
  color:#050814;
}

/* ARROWS */
.neuro-loop-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:48px;
  height:48px;
  border-radius:50%;
  border:none;
  background:rgba(110,168,255,.25);
  color:#fff;
  font-size:26px;
  cursor:pointer;
  z-index:9999;
  display:flex;
  align-items:center;
  justify-content:center;
}

.neuro-loop-prev{ left:-25px; }
.neuro-loop-next{ right:-25px; }

/* ===== RESPONSIVE ===== */

/* Desktop → 3 cards */
@media(min-width:1024px){
  .neuro-loop-card{
    min-width: calc((1200px - 60px) / 3);
  }
}

/* Tablet → 2 cards */
@media(max-width:1023px){
  .neuro-loop-card{
    min-width: 48%;
  }
}

/* Mobile → 1 card */
@media(max-width:640px){
  .neuro-loop-card{
    min-width: 90%;
  }

  .neuro-loop-nav{
    width:34px;
    height:34px;
    font-size:18px;
  }

  .neuro-loop-prev{ left:6px; }
  .neuro-loop-next{ right:6px; }
}

/* ===== MOBILE GAP FIX ===== */
@media(max-width:640px){

  html, body{
    overflow-x:hidden;   /* 🔥 stops white gap */
    width:100%;
  }

  .neuro-loop-section{
    overflow:hidden;
  }

  .neuro-loop-shell{
    width:100%;
    max-width:100%;
    padding:0 12px;  /* safe inner padding */
    box-sizing:border-box;
  }

  .neuro-loop-viewport{
    width:100%;
    overflow:hidden;
  }

  .neuro-loop-track{
    width:100%;
  }

  .neuro-loop-card{
    min-width:100% !important;   /* 🔥 full width card */
    margin-right:0 !important;
  }

  .neuro-loop-track{
    gap:16px;  /* smaller gap for mobile */
  }

  .neuro-loop-prev{ left:6px; }
  .neuro-loop-next{ right:6px; }
}
/* === Base Navbar === */ 
ul.about-points{
      list-style-type: disc;
  padding-left: 22px;
  margin: 0;
  color: #ffffff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 16.5px;
  line-height: 1.75;
}
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Nav container */
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center; /* keeps logo + menu perfectly aligned vertically */
  padding: 12px 20px;
  height: 64px; /* consistent header height */
}

/* When scrolled, add glassy background */
.main-nav.scrolled {
  background: rgba(2, 6, 23, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

/* === Branding (Left) === */
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.logo {
  background: linear-gradient(135deg, #4a6cf7, #6dd5ed);
  color: #fff;
  font-weight: bold;
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 1rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  color: #fff;
  line-height: 1.1;
}

.brand-name {
  font-weight: 600;
  font-size: 1rem;
}

.brand-title {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* === Links and Toggle === */
nav.links {
  display: none;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  margin-left: auto; /* push to far right */
  align-items: center;
  justify-content: center;
}

/* === Desktop (≥901px) === */
@media (min-width: 901px) {
  nav.links {
    display: flex !important;
    gap: 16px;
    align-items: center;
  }

  .menu-toggle {
    display: none !important;
  }
}

/* === Mobile (≤900px) === */
@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex !important;
  }

  nav.links {
    display: none !important;
  }

  nav.links.open {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(8px);
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
    padding: 14px 20px;
    gap: 12px;
    animation: slideDown 0.25s ease forwards;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    z-index: 999;
  }

  .nav-link {
    width: 100%;
    text-align: left;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 0;
  }

  .nav-link.primary {
    background: linear-gradient(135deg, #4a6cf7, #00d2ff);
    color: #fff;
    padding: 10px 18px;
    border-radius: 10px;
    text-align: center;
  }
}

/* === Animation === */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ===== AI LAB SECTION ===== */
.process-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  color: #fff;
  z-index: 1;
}

/* background layer inside HTML */
.process-section .process-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(77, 120, 255, 0.15),
      transparent 60%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(0, 210, 255, 0.12),
      transparent 60%
    ),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1600&q=80")
      center/cover no-repeat;
  filter: blur(40px) brightness(0.7);
  opacity: 0.35;
  z-index: -1;
}

/* Header */
.process-header {
  text-align: center;
  margin-bottom: 60px;
}

.process-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #f5f7ff;
}

.process-header p {
  font-size: 1.05rem;
  opacity: 0.85;
  max-width: 700px;
  margin: 0 auto;
}

.process-header .divider {
  display: block;
  width: 60px;
  height: 3px;
  margin: 20px auto 0;
  border-radius: 3px;
  background: linear-gradient(90deg, #4a6cf7, #00d2ff);
}

/* Steps */
.process-timeline.three-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.process-step {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
     padding: 60px 20px 60px 20px;
  width: 220px;
  flex: 0 0 220px;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.04);
  position: relative;
  transition: all 0.4s ease;
  transform: translateY(0);
  opacity: 0;
  animation: fadeUp 1s ease forwards;
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(74, 108, 247, 0.25);
}

.icon-wrap img {
  width: 64px;
  height: 64px;
 filter: drop-shadow(0 0 6px rgba(74, 108, 247, 0.4));
}

.process-step h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.95rem;
  opacity: 0.85;
}

/* ====== EXPERTISE SECTION ====== */
.expertise-section {
  background: #f3f1e8;
  color: #111;
  text-align: center;
  padding: 100px 20px;
  position: relative;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.section-header p {
  font-size: 1.1rem;
  color: #333;
  font-weight: 500;
}
.section-header .underline {
  display: inline-block;
  margin-top: 14px;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, #7c3aed, #06b6d4);
  border-radius: 2px;
}

/* grid */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

/* card */
.expertise-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  transform: translateY(0);
  transition: all 0.5s ease;
  cursor: pointer;
}

.expertise-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  filter: brightness(70%);
  transition: transform 0.6s ease, filter 0.6s ease;
}

/* overlay */
.expertise-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.65) 100%);
  transition: background 0.5s ease;
}

/* content */
.expertise-card .content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  color: #fff;
  transform: translateY(10px);
  opacity: 0.9;
  transition: all 0.5s ease;
}

.expertise-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.expertise-card p {
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Hover effects */
.expertise-card:hover img {
  transform: scale(1.1);
  filter: brightness(90%);
}
.expertise-card:hover .overlay {
  background: linear-gradient(180deg, rgba(124,58,237,0.25), rgba(6,182,212,0.25));
}
.expertise-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.25);
}

/* subtle glow */
.expertise-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(124,58,237,0.3), rgba(6,182,212,0.3));
  opacity: 0;
  transition: opacity 0.5s ease;
}
.expertise-card:hover::after {
  opacity: 0.35;
  mix-blend-mode: overlay;
}

/* scroll reveal animation */
.expertise-card {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease forwards;
}
.expertise-card:nth-child(1){animation-delay: 0.2s}
.expertise-card:nth-child(2){animation-delay: 0.4s}
.expertise-card:nth-child(3){animation-delay: 0.6s}

@keyframes fadeUp {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}

/* ====== PRODUCT PROCESS SECTION ====== */
.process-section {
  background: radial-gradient(circle at top, #0a152a 0%, #030a17 100%);
  color: #e6eef8;
  padding: 110px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.process-header {
  max-width: 800px;
  margin: 0 auto 70px;
}
.process-header h2 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.process-header p {
  color: #a0aec0;
  font-size: 1.1rem;
}
.process-header .divider {
  display: inline-block;
  margin-top: 18px;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, #7c3aed, #06b6d4);
  border-radius: 2px;
}
/* Three-column layout for AI Lab Highlights */
.process-timeline.three-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
}


.process-step:hover .icon-wrap {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(6,182,212,0.6);
  background: linear-gradient(135deg, rgba(124,58,237,0.5), rgba(6,182,212,0.5));
}
.icon-wrap {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: inset 0 0 8px rgba(255,255,255,0.04);
  transition: all 0.4s ease;
}
.process-step:hover .icon-wrap {
  transform: scale(1.08);
  background: linear-gradient(135deg, #7c3aed55, #06b6d455);
}

.process-timeline.three-cols .process-step {
  flex: none;
  width: 100%;
  max-width: 540px;
}

@media (max-width: 768px) {
  .process-timeline.three-cols {
    grid-template-columns: 1fr;
  }
}

/* Timeline layout */
.process-timeline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  position: relative;
}



.process-step:nth-child(1) { animation-delay: 0.2s; }
.process-step:nth-child(2) { animation-delay: 0.4s; }
.process-step:nth-child(3) { animation-delay: 0.6s; }
.process-step:nth-child(4) { animation-delay: 0.8s; }
.process-step:nth-child(5) { animation-delay: 1s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.process-step:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 8px 30px rgba(124,58,237,0.25);
  border-color: rgba(124,58,237,0.4);
}

.process-step .icon {
  font-size: 2rem;
  background: linear-gradient(135deg, #7c3aed, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
  transition: transform 0.4s ease;
}
.process-step:hover .icon {
  transform: rotate(10deg) scale(1.15);
}

.process-step h3 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.process-step p {
  color: #cbd5e1;
  font-size: 0.92rem;
  line-height: 1.5;
}

/* line connector (optional for large screens) */
@media (min-width: 900px) {
  .process-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    height: 2px;
    background: linear-gradient(90deg, rgba(124,58,237,0.2), rgba(6,182,212,0.2));
    transform: translateY(-50%);
    z-index: 0;
  }
  .process-step {
    z-index: 1;
  }
}

/* responsive */
@media (max-width: 900px) {
  .process-step {
    width: 90%;
    max-width: 340px;
  }
}

/* ====== CASE STUDIES / PRODUCT PORTFOLIO ====== */
.case-section {
  background: radial-gradient(circle at top, #0a152a 0%, #030a17 100%);
  color: #e6eef8;
  padding: 120px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Header */
.case-header {
  max-width: 800px;
  margin: 0 auto 70px;
}
.case-header h2 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.case-header p {
  color: #a0aec0;
  font-size: 1.1rem;
}
.case-header .divider {
  display: inline-block;
  margin-top: 18px;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, #7c3aed, #06b6d4);
  border-radius: 2px;
}

/* ====== Grid layout (4 columns on large) ====== */
.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  justify-content: center;
  align-items: stretch;
}

/* Breakpoints */
@media (max-width: 1200px) {
  .case-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .case-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .case-grid {
    grid-template-columns: 1fr;
  }
}

/* ====== Case Card ====== */
.case-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.04);
  transition: all 0.5s ease;
  position: relative;
  backdrop-filter: blur(10px);
  transform: translateY(0);
  opacity: 0;
  animation: fadeUp 1s ease forwards;
}
.case-card:nth-child(1){ animation-delay: 0.2s; }
.case-card:nth-child(2){ animation-delay: 0.4s; }
.case-card:nth-child(3){ animation-delay: 0.6s; }
.case-card:nth-child(4){ animation-delay: 0.8s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ====== Image and overlay ====== */
.image-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
}
.image-wrap .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.65));
  transition: background 0.6s ease;
}

/* Subtle zoom/glow on hover */
.case-card:hover img {
  transform: scale(1.08);
  filter: brightness(1.05);
}
.case-card:hover .overlay {
  background: linear-gradient(180deg, rgba(124,58,237,0.25), rgba(6,182,212,0.25));
}

/* ====== Card Content ====== */
.case-content {
  padding: 20px 22px 28px;
  text-align: left;
  transition: all 0.4s ease;
}
.case-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}
.case-content p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #cbd5e1;
  margin-bottom: 16px;
}

/* ====== Metrics ====== */
.metrics {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.metrics span {
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.3);
  padding: 6px 10px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.8rem;
  color: #a5b4fc;
  transition: all 0.4s ease;
}
.case-card:hover .metrics span {
  background: linear-gradient(90deg, #7c3aed, #06b6d4);
  color: white;
  border: 0;
  transform: scale(1.05);
}

/* ====== Hover Effects ====== */
.case-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 0 30px rgba(124,58,237,0.35);
  border-color: rgba(124,58,237,0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .case-content { text-align: center; }
  .metrics { justify-content: center; }
}

/* ====== Case Slider ====== */
.case-slider {
  position: relative;
  overflow: hidden;
 width: 100%;
  margin: 0 auto;
}

.case-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s ease;
}

/* Keep your same card style */
.case-card {
  flex: 0 0 calc(25% - 18px); /* 4 visible */
}

.nav.case-prev,
.nav.case-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s;
}
.nav.case-prev:hover,
.nav.case-next:hover {
  background: rgba(255, 255, 255, 0.2);
}
.nav.case-prev { left: 10px; }
.nav.case-next { right: 10px; }

/* Responsive */
@media (max-width: 1024px) {
  .case-card { flex: 0 0 calc(33.333% - 16px); } /* 3 visible */
}
@media (max-width: 768px) {
  .case-card { flex: 0 0 calc(50% - 14px); } /* 2 visible */
}
@media (max-width: 500px) {
  .case-card { flex: 0 0 100%; } /* 1 visible */
}

/* ====== CERTIFICATIONS SECTION ====== */
.certifications-section {
  background: radial-gradient(circle at top, #0a152a 0%, #030a17 100%);
  color: white;
  padding: 50px 20px;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.certifications-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.subtitle {
  color: #a0aec0;
  font-size: 1.1rem;
  margin-bottom: 60px;
}

/* ====== CARD SLIDER ====== */
.cert-slider {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.cert-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px 20px;
  width: 200px;
  text-align: center;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
  transform: translateY(0);
  position: relative;
}

.cert-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(145deg, #7c3aed, #06b6d4);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.cert-card:hover::before {
  opacity: 0.15;
}

.cert-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 0 25px rgba(123, 97, 255, 0.4);
}

.cert-card img {
 width: 150px;
height: 100px;
  object-fit: contain;
  margin-bottom: 18px;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.cert-card:hover img {
  transform: scale(1.1) rotate(3deg);
}

.cert-card h4 {
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}

.cert-card p {
  color: #cbd5e1;
  font-size: 0.9rem;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

/* Floating Animation */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}
.cert-card:nth-child(odd) {
  animation: float 5s ease-in-out infinite;
}
.cert-card:nth-child(even) {
  animation: float 5s ease-in-out infinite reverse;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 900px) {
  .cert-slider {
    gap: 30px;
  }
  .cert-card {
    width: 160px;
    padding: 25px 15px;
  }
  .title {
    font-size: 2.2rem;
  }
}

  /* ---------- VARIABLES ---------- */
  :root{
    --accent-1: #7c3aed;
    --accent-2: #06b6d4;
    --muted: rgba(230,238,248,0.75);
    --glass: rgba(255,255,255,0.06);
    --maxw: 1200px;
    --nav-height: 72px;
  }

  /* ---------- RESET ---------- */
  *{box-sizing:border-box;margin:0;padding:0}
  html,body{height:100%}
  body{
    font-family:Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    color: #e6eef8;
    background:#071022;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    line-height:1.45;
  }

  /* ---------- HERO / VIDEO ---------- */
  .hero-wrap{
    position:relative;
    width:100%;
    min-height:70vh;            /* hero height (change as needed) */
    display:flex;
    align-items:flex-start;
    justify-content:center;
    overflow:hidden;
  }

  /* full-bleed background video - covers entire viewport width */
  .bg-video {
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:0;
  }

  /* subtle overlay for text contrast */
  .video-overlay{
    position:absolute;
    inset:0;
    background:
      linear-gradient(180deg, rgba(2,6,23,0.35) 0%, rgba(2,6,23,0.55) 60%, rgba(2,6,23,0.7) 100%);
    z-index:1;
    pointer-events:none;
  }

  /* navigation sits on top of video */
  header.main-nav{
    position:fixed;
    top:16px;
    left:0;
    right:0;
    z-index:40;
    display:flex;
    justify-content:center;
    pointer-events:none; /* allow clicks only inside nav-inner which has pointer-events:auto */
  }
  .nav-inner{
    width:100%;
    max-width:var(--maxw);
    padding:10px 20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    pointer-events:auto;
  }
  .brand{
    display:flex;
    gap:14px;
    align-items:center;
  }
  .logo{
    width:48px;height:48px;border-radius:10px;
    background:linear-gradient(135deg,var(--accent-1),var(--accent-2));
    display:flex;align-items:center;justify-content:center;font-weight:700;color:white;font-size:16px;
    box-shadow:0 8px 24px rgba(2,6,23,0.6);
  }
  nav.links{
    display:flex;gap:14px;align-items:center;
    backdrop-filter: blur(6px);
  }
  a.nav-link{
    color:var(--muted);
    text-decoration:none;
    padding:10px 14px;border-radius:10px;font-weight:600;
    background:transparent;border:1px solid rgba(255,255,255,0.04);
  }
  a.nav-link.primary{
    background:linear-gradient(90deg,var(--accent-1),var(--accent-2));
    color:white;border:0;
  }

  /* hero content container (centered vertically in hero area) */
  .hero-content{
    position:relative;
    z-index:5;
    width:100%;
    max-width:var(--maxw);
    padding:calc(var(--nav-height) + 48px) 24px 60px;
    margin:0 auto;
    display:flex;
    gap:36px;
    align-items:flex-start;
    justify-content:space-between;
  }

  .hero-left{
    flex:1 1 640px;
    color:white;
    padding:18px;
  }
  .eyebrow{ font-size:13px;color:rgba(255,255,255,0.8); margin-bottom:10px; font-weight:600; opacity:0.95 }
  h1.hero-title{
    font-size:clamp(30px,4.2vw,46px);
    line-height:1.02;
    margin-bottom:10px;
    font-weight:800;
    letter-spacing:-0.02em;
  }
  p.lead{
    color:var(--muted);
    font-size:17px;
    max-width:62ch;
    margin-bottom:18px;
  }
  .hero-ctas{ display:flex; gap:12px; margin-bottom:20px }
  .btn{
    display:inline-flex;align-items:center;gap:10px;padding:12px 16px;border-radius:12px;font-weight:700;text-decoration:none;flex-direction: column;
    border:1px solid rgba(255,255,255,0.06); color:var(--muted); background:rgba(255,255,255,0.02)
  }
  .btn.primary{ background:linear-gradient(90deg,var(--accent-1),var(--accent-2)); color:white; border:0 }

  .hero-stats{ display:flex; gap:12px; margin-top:8px; flex-wrap:wrap }
  .stat{ background:rgba(255,255,255,0.03); padding:12px 14px; border-radius:10px; min-width:120px; text-align:left }
  .stat b{ display:block; font-size:18px; color:white }
  .stat span{ color:var(--muted); font-size:13px }

  /* right column card(s) */
  .hero-right{ width:360px; flex:0 0 360px; display:flex; flex-direction:column; gap:14px; padding:18px }
  .card{
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    border-radius:14px; padding:16px; border:1px solid rgba(255,255,255,0.04);
    box-shadow: 0 12px 40px rgba(2,6,23,0.6);
  }
  .card h4{ margin-bottom:8px }
  .connect-buttons{ display:flex; gap:10px; flex-wrap:wrap }
  .connect-buttons a{ text-decoration:none; padding:10px 12px; border-radius:10px; font-weight:700; background:rgba(255,255,255,0.03); color:var(--muted); border:1px solid rgba(255,255,255,0.04) }
  .connect-buttons a.linkedin{ background:linear-gradient(90deg,#0a66c2,#0a66c2); color:white; border:0 }
  .connect-buttons a.slack{ background:linear-gradient(90deg,#4A154B,#350D36); color:white; border:0 }

  .small{font-size:13px;color:var(--muted)}

  /* ----------- subsequent sections ---------- */
  main.content { max-width:var(--maxw); margin:0 auto; padding:40px 24px 120px; z-index:2; position:relative }
  .section{ margin-top:28px; }
  .section h2{ margin-bottom:12px }
  .projects-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:18px }
  .project-card{ background: rgba(255,255,255,0.02); padding:18px; border-radius:12px; border:1px solid rgba(255,255,255,0.03) }

  /* media */
  @media (max-width:1000px){
    .hero-right{ display:none } /* right card hides on small */
    .hero-content{ padding:calc(var(--nav-height) + 32px) 18px 50px }
  }
  @media (max-width:720px){
    .projects-grid{ grid-template-columns:1fr }
    .contact-grid{ grid-template-columns:1fr }
    .nav-inner{ padding:8px 14px }
  }

  /* nav change on scroll */
  .nav-inner.scrolled{
    background: linear-gradient(180deg, rgba(2,6,23,0.55), rgba(2,6,23,0.3));
    border-radius:12px;
    padding:6px 14px;
    transition: all 180ms ease;
  }
  /* ---------- ABOUT SECTION ---------- */
.about-section {
  background: #0a1422;
  color: #e6eef8;
  padding: 60px 20px;
}

.about-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

.about-header {
  text-align: center;
  margin-bottom: 60px;
}
.about-header h2 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.about-header .tagline {
  color: #94a3b8;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

.about-text h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.about-text p {
  color: #cfd8e3;
  margin-bottom: 20px;
  line-height: 1.7;
  font-size: 1.05rem;
}
.about-text strong {
  color: #7c3aed;
}
.about-text .btn {
  display: inline-block;
  background: linear-gradient(90deg, #7c3aed, #06b6d4);
  color: white;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  margin-top: 10px;
  transition: all 0.3s ease;
}
.about-text .btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.about-photo {
  display: flex;
  justify-content: center;
}
.photo-frame {
  background: #f6f6f6;
  border-radius: 20px;
  padding: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  max-width: 380px;
  position: relative;
}
.photo-frame img {
  width: 100%;
  border-radius: 12px;
  display: block;
}
.photo-caption {
  display: block;
  text-align: center;
  color: #222;
  font-weight: 600;
  font-family: 'Georgia', serif;
  font-size: 1rem;
  padding-top: 8px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .photo-frame {
    max-width: 280px;
  }
  .about-text {
    text-align: center;
  }
  .about-text .btn {
    margin-top: 20px;
  }
}

/* testimonial*/
.testimonial-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
  padding: 50px 20px;
}
.bg-layer {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1529333166437-7750a6dd5a70?auto=format&fit=crop&w=1920&q=60')
    center/cover no-repeat;
  filter: blur(8px) brightness(0.4);
  transform: scale(1.1);
  z-index: 0;
}
.content {
  position: relative;
  z-index: 5;
  max-width: 1000px;
  margin: auto;
}
.title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.subtitle {
  color: #b0b8c2;
  font-size: 1.1rem;
  margin-bottom: 50px;
}

/* Slider core */
.slider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-track {
  display: flex;
  transition: transform 0.6s ease;
}
.slide {
  flex: 0 0 100%;
  max-width: 100%;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.6s ease;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  color: #e6eef8;
  min-height: 260px;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.slide.active {
  opacity: 1;
  transform: scale(1);
  position: relative;
  z-index: 2;
}
.slide img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid rgba(255,255,255,0.6);
}
.slide blockquote {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
}
.slide h4 {
  font-weight: 700;
  margin-bottom: 4px;
}
.slide p {
  color: #cdd3da;
  font-size: 0.95rem;
}

/* Nav buttons */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #fff;
  background: rgba(0,0,0,0.3);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s;
}
.nav:hover {
  background: rgba(255,255,255,0.2);
}
.prev { left: 30px; }
.next { right: 30px; }

@media (max-width: 768px) {
  .slide {
    padding: 30px 20px;
  }
  .prev { left: 10px; }
  .next { right: 10px; }
}
/* ============================= */
/* 🔹 RESPONSIVE ENHANCEMENTS 🔹 */
/* ============================= */

/* General scaling */
html {
  scroll-behavior: smooth;
  font-size: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

/* ---------- TABLET (≤1024px) ---------- */
@media (max-width: 1024px) {
  /* HERO */
  .hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: calc(var(--nav-height) + 40px) 20px 80px;
  }
  .hero-left {
    flex: 1 1 100%;
    max-width: 700px;
  }
  .hero-right {
    display: none; /* Hide right-side connect cards for smaller screens */
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }

  /* ABOUT */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .about-text {
    order: 2;
  }
  .about-photo {
    order: 1;
    justify-content: center;
  }

  /* PROCESS */
  .process-timeline {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }
  .process-step {
    width: 90%;
    max-width: 320px;
  }

  /* EXPERTISE */
  .expertise-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  /* CASE STUDIES */
  .case-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }

  /* CERTIFICATIONS */
  .cert-slider {
    flex-wrap: wrap;
    gap: 24px;
  }
}

/* ---------- MOBILE (≤768px) ---------- */
@media (max-width: 768px) {
  /* NAVIGATION */
  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 12px;
    padding: 12px 16px;
  }
  nav.links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    width: 100%;
  }
  .brand {
    justify-content: center;
    width: 100%;
    margin-bottom: 10px;
  }

  /* HERO */
  .hero-wrap {
    min-height: 80vh;
  }
  h1.hero-title {
    font-size: clamp(28px, 6vw, 42px);
  }
  p.lead {
    font-size: 15px;
  }
  .hero-ctas {
    flex-direction: column;
  }
  .btn {
    width: auto;
    text-align: center;
  }

  /* ABOUT */
  .photo-frame {
    max-width: 260px;
    margin: 0 auto;
  }

  /* EXPERTISE */
  .expertise-grid {
    grid-template-columns: 1fr;
  }

  /* CASE STUDIES */
  .case-grid {
    grid-template-columns: 1fr;
  }
  .case-content {
    text-align: center;
  }
  .metrics {
    justify-content: center;
  }

  /* CERTIFICATIONS */
  .cert-card {
    width: 160px;
    padding: 20px;
  }

  /* TESTIMONIAL */
  .slide {
    padding: 24px 16px;
  }
  .nav.prev, .nav.next {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
  }

  /* CONTACT */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-card {
    text-align: center;
  }
  button[type="submit"] {
    width: 100%;
  }

  /* FOOTER */
  footer {
    font-size: 0.9rem;
    padding: 30px 10px;
  }
}

/* ---------- SMALL DEVICES (≤480px) ---------- */
@media (max-width: 480px) {
  .hero-content {
    padding: 120px 16px 60px;
  }
  .logo {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
  .hero-title {
    font-size: 1.8rem;
  }
  .stat {
    min-width: 100px;
    padding: 8px;
  }
  .expertise-card img {
    height: 200px;
  }
  .case-card img {
    height: 180px;
  }
}

/* === BLOG SLIDER STYLES === */
.blog-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 2rem;
}

.blog-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 20px;
}

.expertise-card {
  flex: 0 0 33.333%; /* Show 3 cards on desktop */
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.expertise-card:hover {
  transform: translateY(-6px);
}

.expertise-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.expertise-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2), rgba(0,0,0,0.7));
}

.expertise-card .content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
}

.expertise-card h3 {
  margin-bottom: 5px;
}

/* Responsive tweaks */
@media (max-width: 992px) {
  .expertise-card {
    flex: 0 0 50%;
  }
}

@media (max-width: 600px) {
  .expertise-card {
    flex: 0 0 100%;
  }
}
.error-msg {
  color: #f87171;
  font-size: 0.85rem;
  margin-top: 4px;
  display: block;
}

#formNotice {
  transition: all 0.3s ease;
  font-weight: 600;
}
  input, textarea {
    width:100%; padding:12px; border-radius:8px; border:1px solid rgba(255,255,255,0.04); background:transparent; color:inherit; margin-bottom:10px;
  }
  button[type="submit"]{ padding:12px 14px; border-radius:10px; border:0; background:linear-gradient(90deg,var(--accent-1),var(--accent-2)); color:white; font-weight:700 }

  footer { padding:40px 24px; text-align:center; color: #e6eef8;
    background: #071022; }
/* === Contact Section Background === */
.contact-section {
  background: linear-gradient(
    to bottom,
    #030a17 0%,
    #050e1f 100%
  );
  color: white;
  padding: 120px 20px;
  text-align: center;
  overflow: hidden;
  position: relative;
}

/* === Contact Cards (make them lighter and distinct) === */
.contact-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: left;
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Subtle hover lift */
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(74, 108, 247, 0.3);
}

/* === Input Fields and Button === */
.contact-card input,
.contact-card textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 12px 16px;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 16px;
  outline: none;
  transition: border 0.2s ease, background 0.2s ease;
}

.contact-card input:focus,
.contact-card textarea:focus {
  border-color: #4a6cf7;
  background: rgba(255, 255, 255, 0.15);
}

/* Button */
.contact-card button {
  background: linear-gradient(90deg,var(--accent-1),var(--accent-2));
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 9px 13px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  font-size: 13px;
}
button.submit-btn{font-size: 1rem;}
.contact-card button:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #5d7df9, #00e0ff);
}

/* === Contact Grid Layout === */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}


/* LinkedIn accent */
.social-btn.linkedin svg {
  color: #0a66c2;
}
.social-btn.linkedin:hover {
  box-shadow: 0 0 10px rgba(10, 102, 194, 0.4);
}

/* Substack accent */
.social-btn.substack svg {
  color: #ff6719;
}
.social-btn.substack:hover {
  box-shadow: 0 0 10px rgba(255, 103, 25, 0.4);
}

/* Icon alignment */
/* Heading refinement */
.contact-heading {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 18px;
}

/* Email + Copy Layout */
.email-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.email-box {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  padding: 10px 10px;
  backdrop-filter: blur(8px);
  transition: background 0.3s ease, border 0.3s ease;
}

.email-box:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.email-address {
  color: #e5e9f5;
  font-weight: 500;
  margin-left: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.arrow-icon {
  opacity: 0.7;
  transition: transform 0.3s ease;
}

.email-box:hover .arrow-icon {
  transform: translateX(3px);
}

/* Gradient copy button */
.copy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  font-weight: 500;
  font-size: 0.9rem;
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  background: linear-gradient(135deg, #4a6cf7, #00d2ff);
  box-shadow: 0 4px 20px rgba(74, 108, 247, 0.25);
  transition: all 0.3s ease;
}

.copy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(74, 108, 247, 0.35);
}

/* Social section layout */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-weight: 500;
  font-size: 0.9rem;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.social-btn.linkedin svg { color: #0a66c2; }
.social-btn.substack svg { color: #ff6719; }

/* Responsive layout for smaller screens */
@media (max-width: 600px) {
  .email-row {
    flex-direction: column;
    align-items: stretch;
  }
  .copy-btn {
    width: 50%;
    justify-content: center;
  }
}


/* project*/
.projects-unique-item {
  flex: 0 0 100% !important; /* FULL width strictly */
}

.projects-unique-track {
  gap: 0 !important; /* no spacing between slides */
}

.projects-unique-img img {
  max-width: 100%;
}

.projects-unique {
  position: relative;
  background: #030c1b;
  padding: 50px 0 20px; /* Extra bottom space to avoid overlap */
  color: #ffffff;
  overflow: hidden;
  z-index: 2; /* Ensure it sits above next bg */
}

/* Header */
.projects-unique-header {
  text-align: center;
  margin-bottom: 60px;
}

.projects-unique-header h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 12px;
}

.projects-unique-header p {
  max-width: 760px;
  margin: 0 auto;
  opacity: 0.78;
}

.projects-unique-divider {
  display: block;
  width: 90px;
  height: 3px;
  margin: 20px auto 0;
  background: linear-gradient(90deg, #7c3aed, #06b6d4);
  border-radius: 999px;
}

/* Slider container */
.projects-unique-slider {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden !important; /* Fully hide next slides */

}

/* Track */
.projects-unique-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}
.projects-unique-track {
  visibility: hidden;
}
.projects-unique-track.is-ready {
  visibility: visible;
}

/* Single slide */
.projects-unique-item {
  min-width: 100%;
  display: flex;
  align-items: center;
  gap: 56px;
  background: #0c162c;
  border-radius: 26px;
  padding: 55px;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  backface-visibility: hidden;
}

/* Large image */
.projects-unique-img img {
  width: 560px;
  height: 380px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  box-shadow: 0 0 22px rgba(0, 0, 0, 0.6);
  transition: transform 0.5s ease;
}

.projects-unique-item:hover .projects-unique-img img {
  transform: scale(1.03);
}

/* Text */
.projects-unique-info {
  max-width: 560px;
}

.projects-unique-info h3 {
  font-size: 32px;
  margin-bottom: 18px;
}

.projects-unique-info p {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 32px;
}

/* CTA Button */
.projects-unique-btn {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: #00e5ff;
  text-decoration: none;
  padding: 13px 30px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(0,229,255,0.4);
  transition: 0.3s ease;
}

.projects-unique-btn:hover {
  background: rgba(0,229,255,0.18);
  box-shadow: 0 0 16px rgba(0,229,255,0.55);
  transform: translateY(-2px);
}

/* Arrows */
.projects-unique-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
    background: rgba(110, 168, 255, .25);
  color: #fff;
  font-size: 26px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease;
  z-index: 10;
}


.projects-unique-arrow-left { left: 20px; }
.projects-unique-arrow-right { right: 20px; }

/* Fade mask for edges */
.projects-unique-slider::after,
.projects-unique-slider::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  pointer-events: none;
  z-index: 6;
}

.projects-unique-slider::after {
  right: 0;
  background: linear-gradient(to left, #030c1b, transparent);
}

.projects-unique-slider::before {
  left: 0;
  background: linear-gradient(to right, #030c1b, transparent);
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .projects-unique-slider {
    padding: 0 40px;
  }

  .projects-unique-item {
    flex-direction: column;
    text-align: left;
    gap: 30px;
    padding: 34px 24px;
  }

  .projects-unique-img img {
    width: 100%;
    height: 280px;
  }

  .projects-unique-info {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .projects-unique-slider {
    padding: 0 32px;
  }

  .projects-unique-header h2 {
    font-size: 36px;
  }

  .projects-unique-arrow {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
}
/* ==========================
   AI Lab — Cinematic Dark UI
   ========================== */
/* Base (keep as you have) */
.ai-slider .ai-slide {
  display: flex;
  gap: 24px;
}

/* Mobile: make card smaller + centered */
@media (max-width: 600px) {
  .ai-slider .ai-slide {
    justify-content: center;   /* center the single card */
    gap: 0;                    /* no extra gap on sides */
  }

  .ai-slider .ai-card,
  .ai-slider .ailab-card {
    flex: 0 0 auto;            /* don't force 100% width */
    width: 88vw;               /* slightly smaller than screen */
    max-width: 360px;          /* prevents huge cards on big phones */
    padding: 24px 20px;        /* smaller padding so box feels lighter */
    border-radius: 24px;       /* a bit tighter radius than desktop */
  }
}

.ailab-section {
  position: relative;
  padding: 130px 20px 160px;
  text-align: center;
  background: linear-gradient(180deg, #0a0e17, #111827 50%, #0a0f1b 100%);
  color: #eef3ff;
  overflow: hidden;
  z-index: 0;
}

/* Ambient Glow */
.ailab-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(120, 152, 255, 0.22), transparent 55%),
    radial-gradient(circle at 75% 70%, rgba(0, 218, 255, 0.18), transparent 60%),
    radial-gradient(circle at 50% 100%, rgba(138, 95, 255, 0.15), transparent 75%);
  filter: blur(70px);
  opacity: 0.8;
  z-index: -1;
}

/* Header */
.ailab-title {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #ffffff;
}

.ailab-subtitle {
  font-size: 18px;
  max-width: 820px;
  margin: 0 auto 35px;
  opacity: 0.72;
  line-height: 1.65;
}

.ailab-divider {
  width: 95px;
  height: 4px;
  margin: 0 auto 75px;
  border-radius: 50px;
  background: linear-gradient(90deg, #7c5cff, #36e2ff);
  box-shadow: 0 0 18px rgba(118, 108, 255, 0.6);
}

/* Layout */
.ailab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Glass Cards */
.ailab-card {
  padding: 42px 34px;
  border-radius: 28px;
  backdrop-filter: blur(22px) saturate(180%);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  transition: 0.4s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.ailab-card:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-12px);
  border-color: rgba(142,115,255,0.45);
  box-shadow: 0 18px 55px rgba(40,50,80,0.6);
}

/* Icon Glow */
.ailab-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 26px;
  box-shadow: 0 0 18px rgba(105,135,255,0.55);
}

.ailab-icon img {
  width: 40px;
  filter: drop-shadow(0 0 10px rgba(118,148,255,0.85));
}

/* Content */
.ailab-card-title {
  font-size: 21px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.ailab-card-text {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(230,235,255,0.92);
  margin-bottom: 28px;
}

/* CTA Button */
.ailab-link {
  padding: 16px 0;
  width: 100%;
  color: #b8a3ff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  border-radius: 14px;
  border: 1.5px solid rgba(161,142,255,0.55);
  background: rgba(161,142,255,0.10);
  transition: 0.3s ease;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-top: auto;
}

.ailab-card:hover .ailab-link {
  background: rgba(161,142,255,0.25);
  border-color: rgba(205,187,255,0.95);
  color: #ffffff;
  box-shadow: 0 0 18px rgba(161,142,255,0.4);
}

/* RESPONSIVE */
@media (max-width: 1180px) {
  .ailab-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 820px) {
  .ailab-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .ailab-title {
    font-size: 34px;
    line-height: 1.3;
  }
  .ailab-card {
    padding: 32px 28px;
  }
}
/* =========================================================
   UNIVERSAL SLIDER BASE (works for AI Lab + Blog Slider)
   ========================================================= */
.ai-slide {
  flex: 0 0 100%;   /* Each slide uses exactly the full viewport width */
}
/* Each slide takes full width → shows only 3 cards */
.ai-slide {
  display: flex;
  gap: 26px;
  padding: 0 40px 30px;
  flex: 0 0 100%;         /* 🔥 CRITICAL */
  box-sizing: border-box;
}

/* 3 cards on Desktop */
.ai-card {
  flex: 0 0 calc(33.333% - 18px);
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .ai-card {
    flex: 0 0 calc(50% - 16px);
  }
}

.ai-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 2rem;
}

.ai-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(.22,.61,.36,1);
}

.ai-slide {
  display: flex;
  gap: 26px;
  width: 100%;
  padding: 0 40px 30px;
}

/* =========================================================
   CARD BASE
   ========================================================= */

.ai-card {
  background: #0d1221;
  border-radius: 24px;
  overflow: hidden;
  flex: 0 0 calc(33.333% - 18px);  /* 3 per row desktop */
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,0.04);
  box-shadow: 0 20px 45px rgba(0,0,0,0.6);
  transition: 0.35s ease;
}

.ai-card:hover {
  transform: translateY(-6px);
  border-color: rgba(65,189,255,0.4);
  box-shadow: 0 14px 32px rgba(0,149,255,0.35);
}

.ai-card-image {
  height: 220px;
  overflow: hidden;
}

.ai-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.ai-card:hover img {
  transform: scale(1.05);
}

.ai-card-body {
  padding: 22px 24px 32px;
  color: #fff;
}

.ai-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #fff;
  font-weight: bold;
}

.ai-card-body p {
  font-size: .95rem;
  opacity: .92;
  line-height: 1.6;
  margin-bottom: 18px;
}

.ai-cta {
  color: #42caff;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: 0.25s ease;
}

.ai-cta:hover {
  color: #77d6ff;
  text-shadow: 0 0 8px rgba(66,202,255,0.75);
}

/* =========================================================
   ARROWS
   ========================================================= */

.ai-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.55);
  color: #fff;
  border: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  transition: 0.25s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}

.ai-arrow:hover {
  background: rgba(0,0,0,0.8);
}

.ai-prev { left: 18px; }
.ai-next { right: 18px; }

/* =========================================================
   DOTS
   ========================================================= */

.ai-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 10px;
}

.ai-dot {
  width: 10px;
  height: 10px;
  background: #555;
  border-radius: 50%;
  cursor: pointer;
}

.ai-dot.active {
  background: #42caff;
}

/* =========================================================
   TABLET (2 CARDS)
   ========================================================= */
@media (max-width: 1024px) {

  .ai-slide {
    padding: 0 24px 25px;
  }

  .ai-card {
    flex: 0 0 calc(50% - 14px);
  }

  .ai-card-image { height: 190px; }

  .ai-card-body h3 { font-size: 1.05rem; }
  .ai-card-body p { font-size: 0.9rem; }

  .ai-arrow {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }
}

/* =========================================================
   MOBILE (1 CARD)
   ========================================================= */
/* MOBILE: break each card into its own slide */

/* =========================================================
   SMALL MOBILE
   ========================================================= */
@media (max-width: 480px) {

  .ai-card-image { height: 130px; }

  .ai-card-body {
    padding: 14px;
  }

  .ai-card-body h3 { font-size: 0.95rem; }
  .ai-card-body p { font-size: 0.8rem; }

  .ai-arrow {
    width: 32px;
    height: 32px;
    font-size: 15px;
  }
}
.connect-buttons{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

/* Email Button */
.btn-email{
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  color:#ffffff;
  padding:10px 18px;
  border-radius:8px;
  font-weight:600;
  text-decoration:none;
  transition: all 0.25s ease;
  box-shadow: 0 6px 16px rgba(0, 242, 254, 0.35);
}

.btn-email:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 242, 254, 0.5);
}

/* Call Button */
.btn-call{
  background: linear-gradient(135deg, #667eea, #764ba2);
  color:#ffffff;
  padding:10px 18px;
  border-radius:8px;
  font-weight:600;
  text-decoration:none;
  transition: all 0.25s ease;
  box-shadow: 0 6px 16px rgba(118, 75, 162, 0.35);
}

.btn-call:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(118, 75, 162, 0.5);
}


.hero-premium {
  color: #fff;
  perspective: 1000px;
}

/* First line animation */
.line-1 {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px) rotateX(12deg);
  animation: lineReveal 1.2s cubic-bezier(.2,.8,.2,1) forwards;
  text-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* Second line base */
.line-2 {
  display: inline-block;
  margin-top: 10px;
  opacity: 1;
}

/* Typing text */
.type {
  border-right: 2px solid rgba(255,255,255,0.6);
  padding-right: 6px;
  white-space: nowrap;
  text-shadow: 0 0 15px rgba(255,255,255,0.15);
}

.cursor {
  animation: blink 1s infinite;
}

/* Animations */
@keyframes lineReveal {
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

@keyframes blink {
  0%, 50%, 100% { border-color: rgba(255,255,255,0.6); }
  25%, 75% { border-color: transparent; }
}

/* ===== EXPERIENCE LOGO STRIP (HIGH CONTRAST MODE) ===== */
.experience-logos {
  margin-top: 28px;
  padding: 16px 18px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.03)
  );
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  box-shadow: 
    0 8px 24px rgba(0,0,0,0.35),
    inset 0 0 0 1px rgba(255,255,255,0.04);
}

.logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.logos-row img {
  height: 26px;
  width: auto;
  max-width: 95px;
  object-fit: contain;
}

.logos-row img:hover {
  filter: 
    brightness(1)
    contrast(1)
    grayscale(0%)
    drop-shadow(0 2px 6px rgba(0,0,0,0.8));
  transform: translateY(-1px);
}

/* Mobile */
@media (max-width: 768px) {
  .logos-row {
    justify-content: center;
    gap: 14px;
  }

  .logos-row img {
    height: 21px;
    max-width: 75px;
  }
}
.experience-logos {
  margin-top: 32px;
  padding: 18px 20px;
  background: #0b1626;  /* neutral contrast panel */
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.logo-strip-heading {
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #cbd5e1;
  margin-bottom: 12px;
  font-weight: 600;
}

.logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.logos-row img {
  height: 24px;
  width: auto;
  max-width: 95px;
  object-fit: contain;
  opacity: 0.95;
  transition: transform 0.2s ease;
}

.logos-row img:hover {
  transform: translateY(-1px);
}

/* Mobile */
@media (max-width: 768px) {
  .logos-row {
    justify-content: center;
    gap: 14px;
  }

  .logos-row img {
    height: 20px;
    max-width: 75px;
  }
}
@media (max-width: 768px) {
  .avatar {
    width: 58px;
    height: 58px;
    min-width: 58px;
    min-height: 58px;

    font-size: 22px;

    border-radius: 50%;
    aspect-ratio: 1 / 1;

    display: flex;
    align-items: center;
    justify-content: center;
  }
}
/* Responsive */
@media(max-width: 900px){
  .about2-grid{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about2-card{
    padding: 40px 28px;
  }

  .about2-item{
    text-align: left;
  }

  .about2-logos{
    margin-top: 40px;
    padding: 22px 18px;
  }

  .about2-logos-row{
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .about2-logos-row img{
    max-height: 36px;
    max-width: 100px;
  }
}
@media(max-width: 900px){
  .about2-grid{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about2-card{
    padding: 40px 28px;
  }

  .about2-item{
    text-align: left;
  }
}