
    :root {
      --blue-900: #0a1628;
      --blue-800: #0d2149;
      --blue-700: #0f2f6b;
      --blue-600: #1a4db3;
      --blue-500: #2563eb;
      --blue-400: #3b82f6;
      --blue-300: #60a5fa;
      --blue-200: #bfdbfe;
      --blue-100: #dbeafe;
      --blue-50: #eff6ff;
      --white: #ffffff;
      --gray-50: #f8fafc;
      --gray-100: #f1f5f9;
      --gray-200: #e2e8f0;
      --gray-300: #cbd5e1;
      --gray-400: #94a3b8;
      --gray-600: #475569;
      --gray-700: #334155;
      --gray-800: #1e293b;
      --accent: #0ea5e9;
      --accent2: #06b6d4;
      --red: #ef4444;
      --green: #22c55e;
      --font-display: 'Poppins', sans-serif;
      --font-body: 'Poppins', sans-serif;

      --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
      --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
      --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
      --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
      --shadow-blue: 0 8px 40px rgba(37, 99, 235, 0.25);
      --radius: 16px;
      --radius-lg: 24px;
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font-body);
      color: var(--gray-800);
      background: var(--white);
      line-height: 1.6;
      overflow-x: hidden;
    }

    #hero h1,
    #hero h1 span,
    #hero p.lead,
    #hero .hero-tag .tag {
      color: var(--white) !important;
    }

    #hero .badge-text strong,
    #hero .badge-text span {
      color: var(--white) !important;
    }

    #hero .badge-text span {
      opacity: 0.75;
    }
.prob-card h3{
  font-size: 1.2rem;
}
    /* ─── UTILITIES ─── */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .container-lg {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 40px;
    }

    .section {
      padding: 50px 0;
    }

    .section-sm {
      padding: 60px 0;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--blue-50);
      color: var(--blue-600);
      padding: 6px 14px;
      border-radius: 100px;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.02em;
      border: 1px solid var(--blue-200);
      font-family: var(--font-display);
    }

    .tag svg {
      width: 14px;
      height: 14px;
    }

    h1,
    h2,
    h3,
    h4,
    h5 {
      font-family: var(--font-display);
      font-weight: 700;
      line-height: 1.15;
    }

    h1 {
      font-size: clamp(38px, 5vw, 68px);
    }

    h2 {
      font-size: clamp(28px, 3.5vw, 46px);
    }

    h3 {
      font-size: clamp(20px, 2vw, 26px);
    }

    p {
      color: var(--gray-600);
    }

    .text-white p {
      color: rgba(255, 255, 255, 0.75);
    }

    .btn {
      /* display: inline-flex; */
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      border-radius: 10px;
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 15px;
      cursor: pointer;
      border: none;
      text-decoration: none;
      transition: all 0.2s ease;
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--blue-500);
      color: var(--white);
      box-shadow: var(--shadow-blue);
    }

    .btn-primary:hover {
      background: var(--blue-600);
      transform: translateY(-2px);
      box-shadow: 0 12px 50px rgba(37, 99, 235, 0.35);
    }

    .btn-secondary-cyber {
      background: var(--white);
      color: var(--blue-600);
      border: 1.5px solid var(--blue-200);
      box-shadow: var(--shadow-sm);
    }

    .btn-secondary-cyber:hover {
      background: var(--blue-50);
      border-color: var(--blue-400);
      transform: translateY(-2px);
    }

    .btn-ghost {
      background: rgba(255, 255, 255, 0.12);
      color: var(--white);
      border: 1.5px solid rgba(255, 255, 255, 0.25);
      backdrop-filter: blur(8px);
    }

    .btn-ghost:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: translateY(-2px);
    }

    .btn-sm {
      padding: 10px 20px;
      font-size: 14px;
    }

    /* Make all service cards the same height */
    .svc-card {
      display: flex;
      flex-direction: column;
      height: 100%;
      /* Important for equal height */
    }

    .svc-card p,
    .svc-card .svc-impact,
    .svc-card .svc-outcome {
      flex-grow: 1;
      /* Pushes button to bottom */
    }

    .svc-card .btn {
      margin-top: auto;
      /* Button sticks to bottom */
    }

    /* ─── ANIMATIONS ─── */
    @keyframes float {

      0%,
      100% {
        transform: translateY(0)
      }

      50% {
        transform: translateY(-12px)
      }
    }

    @keyframes pulse-ring {
      0% {
        transform: scale(1);
        opacity: 0.6
      }

      100% {
        transform: scale(1.6);
        opacity: 0
      }
    }

    @keyframes shimmer {
      0% {
        background-position: -400px 0
      }

      100% {
        background-position: 400px 0
      }
    }

    @keyframes scan {
      0% {
        top: -100%
      }

      100% {
        top: 100%
      }
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    @keyframes slideInRight {
      from {
        opacity: 0;
        transform: translateX(40px)
      }

      to {
        opacity: 1;
        transform: translateX(0)
      }
    }

    @keyframes rotate {
      from {
        transform: rotate(0deg)
      }

      to {
        transform: rotate(360deg)
      }
    }

    @keyframes blink {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: 0.3
      }
    }
.uc-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:28px;
}

.uc-last-card{
    grid-column:1 / -1;
    max-width:600px;
    width:100%;
    justify-self:center;
}
    .fade-in {
      animation: fadeInUp 0.7s ease forwards;
    }

    .fade-in-1 {
      animation-delay: 0.1s;
      opacity: 0;
      animation: fadeInUp 0.7s ease 0.1s forwards;
    }

    .fade-in-2 {
      animation-delay: 0.2s;
      opacity: 0;
      animation: fadeInUp 0.7s ease 0.2s forwards;
    }

    .fade-in-3 {
      animation-delay: 0.3s;
      opacity: 0;
      animation: fadeInUp 0.7s ease 0.3s forwards;
    }

    .fade-in-4 {
      animation-delay: 0.4s;
      opacity: 0;
      animation: fadeInUp 0.7s ease 0.4s forwards;
    }
.soc-services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.soc-last-card{
    grid-column:2 / 3;   /* center column */
}
    /* ─── HERO ─── */
    #hero {
      position: relative;
      padding: 30px;
      overflow: hidden;
      background: #0a1628;
    }

    .hero-video-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
    }

    .hero-video-bg video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.68) contrast(1.12);
    }

    #hero .container {
      position: relative;
      z-index: 2;
    }

    .hero-content {
      text-align: center;
      max-width: 780px;
      margin: 0 auto;
    }

    /* Smaller & Better Headline */
    #hero h1 {
        line-height: normal!important;
      color: #ffffff;
      font-size: clamp(38px, 5.5vw, 62px);
      margin-bottom: 28px;
      font-weight: 700;
      text-shadow: 0 4px 30px rgba(0, 0, 0, 0.75);
    }

    #hero h1 span {
      color: #60a5fa;
    }

    /* Improved paragraph size */
    #hero .lead {
      color: rgba(255, 255, 255, 0.90);
      font-size: 17.5px;
      /* Slightly smaller */
      line-height: 1.65;
      margin-bottom: 52px;
      max-width: 680px;
      margin-left: auto;
      margin-right: auto;
    }

    .hero-tag .tag {
      background: rgba(37, 99, 235, 0.28);
      color: #bfdbfe;
      border-color: rgba(96, 165, 250, 0.45);
      font-size: 14.5px;
      padding: 8px 22px;
      letter-spacing: 0.5px;
    }

    .hero-btns {
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    /* ─── STATS BAR ─── */
    #stats-bar {
      background: var(--blue-50);
      border-top: 1px solid var(--blue-100);
      border-bottom: 1px solid var(--blue-100);
      padding: 28px 0;
    }

    .stats-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 24px;
    }


    .stat-item {
      text-align: center;
    }

    .stat-item .num {
      font-family: var(--font-display);
      font-size: 32px;
      font-weight: 800;
      color: var(--blue-600);
      line-height: 1;
    }

    .stat-item .lbl {
      font-size: 13px;
      color: var(--gray-500);
      margin-top: 4px;
    }

    /* ─── SERVICES ─── */
    #services {
      background: var(--white);
    }

    .services-header {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 60px;
    }

    .services-header h2 {
      margin: 12px 0 16px;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 24px;
    }

    .svc-card {
      background: var(--white);
      border: 1px solid var(--gray-100);
      border-radius: var(--radius-lg);
      padding: 32px;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
    }

    .svc-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--blue-500), var(--accent));
      transform: scaleX(0);
      transition: transform 0.3s ease;
      transform-origin: left;
    }

    .svc-card:hover {
      box-shadow: var(--shadow-xl);
      transform: translateY(-6px);
      border-color: var(--blue-200);
    }

    .svc-card:hover::before {
      transform: scaleX(1);
    }

    .svc-icon {
      width: 56px;
      height: 56px;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--blue-500), var(--accent));
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
    }
    .svc-icon-img{
      background: none!important;
      box-shadow: none!important;
    }
.svc-icon img{
  width: 56px;
  height: auto;
  border-radius: 50%;
}
    .svc-icon svg {
      width: 28px;
      height: 28px;
      color: var(--white);
    }

    .svc-card h3 {
      margin-bottom: 10px;
      font-size: 20px;
    }

    .svc-card p {
      font-size: 14px;
      margin-bottom: 16px;
    }

    .svc-impact {
      background: var(--blue-50);
      border-radius: 10px;
      padding: 12px 14px;
      margin-bottom: 16px;
      font-size: 13px;
    }

    .svc-impact strong {
      color: var(--blue-700);
    }

    .svc-outcome {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      color: var(--green);
      font-weight: 500;
      margin-bottom: 20px;
    }

    .svc-outcome svg {
      width: 16px;
      height: 16px;
    }
/* ===========================
   Mobile Hero
=========================== */
@media (max-width:767.98px){

    #hero{
        padding:70px 0 30px;
        min-height:auto;
    }

    #hero .container{
        padding-left:20px;
        padding-right:20px;
    }

    .hero-content{
        max-width:100%;
        margin:0 auto;
        text-align:center;
    }

    .soc-hero-heading{
        font-size:1.8rem;
        line-height:1.2;
        margin-bottom:18px;
        word-break:normal;
    }

    .hero-content .lead{
        font-size:.95rem;
        line-height:1.8;
        margin-bottom:24px;
    }

    .hero-btns{
        display:flex;
        flex-direction:column;
        gap:12px;
        width:100%;
        margin-bottom:30px;
    }

    .soc-btn-primary-cta,
    .soc-btn-outline-cta{
        width:100%;
        display:flex;
        justify-content:center;
        align-items:center;
        text-align:center;
        padding:14px 18px;
        font-size:.95rem;
    }

    /* ===========================
       Stats
    ========================== */

    .stats-row{
        display:flex;
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }

    /* First Stat */
    .stats-row .stat-item:first-child{
        flex:0 0 100%;
        max-width:100%;
        text-align:center;
        padding-bottom:10px;
        border-bottom:1px solid rgba(0,0,0,.08);
    }

    /* Remaining Stats */
    .stats-row .stat-item:not(:first-child){
        flex:0 0 100%;
        max-width:100%;
        text-align:center;
        padding-bottom:10px;
        border-bottom:1px solid rgba(0,0,0,.08);
    }

    .stats-row .stat-item:last-child{
        border-bottom:none;
    }

    .stat-item .num{
        font-size:2rem;
        line-height:1;
        margin-bottom:6px;
    }

    .stat-item .lbl{
        font-size:.9rem;
        line-height:1.5;
    }

}
    /* ─── PROBLEMS ─── */
    #problems {
      background: linear-gradient(135deg, var(--blue-900), var(--blue-800));
      position: relative;
      overflow: hidden;
    }

   
    .problems-header {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 60px;
    }

    .problems-header h2 {
      color: var(--white);
      margin: 12px 0 16px;
    }
    .problems-header P{
      color: #FFF;
    }

    .problems-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 18px;
    }

    .prob-card {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: var(--radius);
      padding: 28px 24px;
      text-align: center;
      backdrop-filter: blur(8px);
      transition: all 0.3s ease;
    }

    .prob-card:hover {
      background: rgba(255, 255, 255, 0.1);
      transform: translateY(-4px);
    }

    .prob-icon {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      margin: 0 auto 16px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .prob-icon.red {
      background: rgba(239, 68, 68, 0.2);
      border: 1px solid rgba(239, 68, 68, 0.3);
    }

    .prob-icon.orange {
      background: rgba(249, 115, 22, 0.2);
      border: 1px solid rgba(249, 115, 22, 0.3);
    }

    .prob-icon.yellow {
      background: rgba(234, 179, 8, 0.2);
      border: 1px solid rgba(234, 179, 8, 0.3);
    }

    .prob-icon.purple {
      background: rgba(168, 85, 247, 0.2);
      border: 1px solid rgba(168, 85, 247, 0.3);
    }

    .prob-icon.pink {
      background: rgba(236, 72, 153, 0.2);
      border: 1px solid rgba(236, 72, 153, 0.3);
    }

    .prob-icon svg {
      width: 28px;
      height: 28px;
    }

    .prob-icon.red svg {
      color: #f87171;
    }

    .prob-icon.orange svg {
      color: #fb923c;
    }

    .prob-icon.yellow svg {
      color: #facc15;
    }

    .prob-icon.purple svg {
      color: #c084fc;
    }

    .prob-icon.pink svg {
      color: #f472b6;
    }

    .prob-card h3 {
      color: var(--white);
      font-size: 16px;
      margin-bottom: 8px;
    }

    .prob-card p {
      color: rgba(255, 255, 255, 0.6);
      font-size: 13px;
      line-height: 1.6;
      margin-bottom: 12px;
    }

    .prob-stat {
      font-family: var(--font-display);
      font-size: 28px;
      font-weight: 800;
      color: #f87171;
    }

    .prob-stat-lbl {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.5);
    }

    /* ─── INDUSTRIES ─── */
    #industries {
      background: var(--gray-50);
    }

    .ind-header {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 56px;
    }

    .ind-header h2 {
      margin: 12px 0 16px;
    }

    .ind-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
      gap: 16px;
    }

    .ind-card {
      background: var(--white);
      border: 1px solid var(--gray-100);
      border-radius: var(--radius);
      padding: 20px 16px;
      text-align: center;
      transition: all 0.25s ease;
      cursor: default;
      box-shadow: var(--shadow-sm);
    }

    .ind-card:hover {
      box-shadow: var(--shadow-blue);
      transform: translateY(-4px);
      border-color: var(--blue-300);
    }

    .ind-card:hover .ind-icon {
      background: var(--blue-500);
    }

    .ind-card:hover .ind-icon svg {
      color: var(--white);
    }

    .ind-icon {
      width: 52px;
      height: 52px;
      border-radius: 12px;
      background: var(--blue-50);
      margin: 0 auto 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.25s ease;
    }

    .ind-icon svg {
      width: 26px;
      height: 26px;
      color: var(--blue-500);
      transition: color 0.25s ease;
    }

    .ind-card h4 {
      font-size: 14px;
      color: var(--gray-800);
      margin-bottom: 6px;
    }

    .ind-card .challenge {
      font-size: 11px;
      color: var(--red);
      margin-bottom: 4px;
    }

    .ind-card .solution {
      font-size: 11px;
      color: var(--gray-500);
    }

    /* ─── USE CASES ─── */
    #usecases {
      background: var(--white);
    }

    .uc-header {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 56px;
    }

    .uc-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
    }

    .uc-card {
      background: var(--white);
      border: 1px solid var(--gray-100);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      transition: all 0.3s ease;
    }

    .uc-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-xl);
    }

    .uc-img {
      height: 200px;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .uc-img svg {
      width: 120px;
      height: 120px;
      opacity: 0.9;
    }

    .uc-img-1 {
      background: linear-gradient(135deg, #0f172a, #1e3a5f);
    }

    .uc-img-2 {
      background: linear-gradient(135deg, #1a1040, #2d1b69);
    }

    .uc-img-3 {
      background: linear-gradient(135deg, #0a2a1f, #0d4f38);
    }

    .uc-img-4 {
      background: linear-gradient(135deg, #1c1000, #4a2400);
    }

    .uc-body {
      padding: 28px;
    }

    .uc-label {
      font-size: 12px;
      font-weight: 600;
      color: var(--blue-500);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 8px;
    }

    .uc-body h3 {
      font-size: 20px;
      margin-bottom: 12px;
    }

    .uc-body p {
      font-size: 14px;
      margin-bottom: 16px;
    }

    .uc-result {
      display: flex;
      align-items: center;
      gap: 8px;
      background: var(--blue-50);
      border-radius: 8px;
      padding: 10px 14px;
      font-size: 13px;
    }

    .uc-result svg {
      width: 16px;
      height: 16px;
      color: var(--blue-500);
      flex-shrink: 0;
    }

    .uc-result span {
      color: var(--blue-700);
      font-weight: 500;
    }

    /* ─── PROCESS ─── */
    #process {
      background: var(--blue-50);
    }

    .process-header {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 60px;
    }

    .process-steps {
      display: grid;
      grid-template-columns: repeat(5, 1fr)!important;
      gap: 0;
      position: relative;
    }

    .process-steps::before {
      content: '';
      position: absolute;
      top: 42px;
      left: 10%;
      right: 10%;
      height: 2px;
      background: linear-gradient(90deg, var(--blue-500), var(--accent));
      z-index: 0;
    }

    .step {
      text-align: center;
      position: relative;
      z-index: 1;
      padding: 0 12px;
    }

    .step-points {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.step-points span {
  color: var(--gray-600);
    border-radius: 8px;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    font-size: 12px;
}

    .step-num {
      width: 84px;
      height: 84px;
      border-radius: 50%;
      background: var(--white);
      border: 3px solid var(--blue-500);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      position: relative;
      box-shadow: 0 4px 20px rgba(37, 99, 235, 0.2);
      transition: all 0.3s ease;
    }

    .step:hover .step-num {
      background: var(--blue-500);
    }

    .step:hover .step-num svg {
      color: var(--white);
    }

    .step-num svg {
      width: 32px;
      height: 32px;
      color: var(--blue-500);
      transition: color 0.3s ease;
    }

    .step-num .sn {
      position: absolute;
      top: -4px;
      right: -4px;
      width: 22px;
      height: 22px;
      background: var(--blue-600);
      border-radius: 50%;
      font-family: var(--font-display);
      font-size: 11px;
      font-weight: 700;
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .step h3 {
      font-size: 15px;
      margin-bottom: 8px;
    }

    .step p {
      font-size: 13px;
    }

    /* ─── WHY CHOOSE US ─── */
   #why {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;  
  height: 640px;            
}

/* Right side table ko top par le aana */
.why-visual {
  order: -1;          
}

.why-content {
  order: 2;
  overflow-y: auto;    
   overflow-x: hidden;      
  padding-right: 14px;

  /* Firefox scrollbar */
  scrollbar-width: thin;
  scrollbar-color: var(--blue-500) var(--gray-100);
}

.why-content h2 {
  margin: 12px 0 20px;
}

.why-content p {
  font-size: 16px;
  margin-bottom: 36px;
}

/* Chrome/Edge/Safari animated scrollbar */
.why-content::-webkit-scrollbar {
  width: 8px;
}

.why-content::-webkit-scrollbar-track {
  background: var(--gray-100);
  border-radius: 10px;
}

.why-content::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--blue-500), var(--accent));
  background-size: 100% 200%;
  border-radius: 10px;
  animation: scrollThumbPulse 2.2s ease-in-out infinite;
}

@keyframes scrollThumbPulse {
  0%, 100% { background-position: 0% 0%; }
  50%      { background-position: 0% 100%; }
}
.gov-logo{
    width: 100px!important;
    height: auto!important;
}
.why-feats {
     display: grid;
    grid-template-columns: repeat(2, 1fr)!important;
    gap: 20px;
}

.why-feat {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 20px;
  transition: all 0.25s ease;
}

.why-feat:hover {
  background: var(--blue-50);
  border-color: var(--blue-200);
}

.wf-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue-500), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.wf-icon svg {
  width: 22px;
  height: 22px;
  color: var(--white);
}

.why-feat h3 {
  font-size: 15px;
  margin-bottom: 6px;
}

.why-feat p {
  font-size: 13px;
}

.why-visual {
  position: relative;
}

.metrics-panel {
  background: var(--blue-900);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.metrics-panel::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.4), transparent);
}

.mp-title {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.metric-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.metric-row:last-child {
  margin-bottom: 0;
}

.met-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.met-bar {
  flex: 1;
  margin: 0 16px;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.met-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--accent));
}

.met-val {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  min-width: 40px;
  text-align: right;
}

 
/* ===== SCOPED TO #CaseStudies SECTION ONLY ===== */
  #CaseStudies {
    background: #07080B;
    padding: 30px 0;
    position: relative;
    overflow: hidden;
    color: #F3F4F6;
  }

  #CaseStudies::before {
    content: "";
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 600px;
    background: radial-gradient(circle, rgba(34,211,238,0.10) 0%, rgba(139,92,246,0.06) 45%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
  }

  #CaseStudies::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
  }

  #CaseStudies .cs-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
  }

  #CaseStudies .client-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-align: center;
    margin: 0 0 16px 0;
    color: #F3F4F6;
  }



  #CaseStudies .cs-subtext {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 64px auto;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.55;
    color: #8A8F9B;
  }

  /* ===== VIEWPORT (shows exactly one card) ===== */
  #CaseStudies .cs-viewport {
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
    overflow: hidden;
  }

  #CaseStudies .casestudies_slider {
    position: relative;
    overflow: hidden;
  }

  #CaseStudies .slider-casestudies {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
    will-change: transform;
  }

  #CaseStudies .caseStudiesSliderBox {
    flex: 0 0 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 6px;
  }

  /* ===== CARD ===== */
  #CaseStudies .case_box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 36px;
    background: #0F1219;
    border-radius: 24px;
    overflow: hidden;
    padding: 40px;
    transition: transform 0.35s ease, background 0.35s ease;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    z-index: 0;
  }

  /* static border */
  #CaseStudies .case_box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: rgba(255,255,255,0.07);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 1;
  }

  /* animated gradient border on hover */
  #CaseStudies .case_box::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1.5px;
    background: conic-gradient(from var(--angle, 0deg), #22D3EE, #8B5CF6, #5EE6E0, #22D3EE);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.35s ease;
    animation: cs-rotate 3s linear infinite;
    z-index: 2;
  }

  @property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
  }

  @keyframes cs-rotate {
    to { --angle: 360deg; }
  }

  #CaseStudies .case_box:hover {
    transform: translateY(-6px);
    background: rgba(15, 18, 25, 0.92);
    box-shadow: 0 24px 60px -20px rgba(56,189,248,0.25), 0 0 40px rgba(56,189,248,0.08);
  }

  #CaseStudies .case_box:hover::before { opacity: 0; }
  #CaseStudies .case_box:hover::after { opacity: 1; }

  #CaseStudies .case_box__image {
    flex: 0 0 420px;
    width: 420px;
    height: 300px;
    position: relative;
    overflow: hidden;
    /* background: #0C0E14; */
    /* border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.07); */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #CaseStudies .case_box__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
  }

  #CaseStudies .case_box__content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
  }

  #CaseStudies .case_box__content h4 {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 0 0 14px 0;
    color: #F3F4F6;
  }

  #CaseStudies .case_box__content p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: #C7CAD1;
    margin: 0 0 20px 0;
  }

  #CaseStudies .case_box__points {
    list-style: none;
    margin: 0 0 28px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  #CaseStudies .case_box__points li {
    position: relative;
    padding-left: 22px;
    font-size: 13px;
    font-weight: 400;
    color: #8A8F9B;
    line-height: 1.4;
  }

  #CaseStudies .case_box__points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22D3EE, #8B5CF6);
  }

  #CaseStudies .viewCaseStudies {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 14px 22px;
    border-radius: 999px;
    background: #F3F4F6;
    color: #07080B;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease, gap 0.3s ease;
  }

  #CaseStudies .viewCaseStudies i {
    font-style: normal;
    transition: transform 0.3s ease;
  }

  #CaseStudies .viewCaseStudies::after {
    content: "\2192";
    transition: transform 0.3s ease;
  }

  #CaseStudies .viewCaseStudies i {
    display: none; /* font-awesome glyph not loaded, use unicode arrow above */
  }

  #CaseStudies .viewCaseStudies:hover {
    transform: translateY(-3px);
    background: #22D3EE;
  }

  #CaseStudies .viewCaseStudies:hover::after {
    transform: translateX(4px);
  }

  /* ===== DOTS / PROGRESS ===== */
  #CaseStudies .cs-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
    flex-wrap: wrap;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  #CaseStudies .cs-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    border: none;
    cursor: pointer;
    transition: width 0.35s ease, background 0.35s ease;
    padding: 0;
  }

  #CaseStudies .cs-dot.active {
    width: 26px;
    background: linear-gradient(90deg, #22D3EE, #8B5CF6);
  }

  /* ===== ARROWS ===== */
  #CaseStudies .caseStudiesBottomArrows {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 36px;
  }

  #CaseStudies .caseStudiesBottomArrows button {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    color: #F3F4F6;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
  }

  #CaseStudies .caseStudiesBottomArrows button:hover {
    border-color: rgba(56,189,248,0.55);
    background: rgba(56,189,248,0.08);
    transform: translateY(-2px);
  }

  #CaseStudies .caseStudiesBottomArrows i {
    font-style: normal;
  }

  #CaseStudies .caseStudiesBottomArrows .fa-arrow-left::before { content: "\2190"; }
  #CaseStudies .caseStudiesBottomArrows .fa-arrow-right::before { content: "\2192"; }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 991px) {
    #CaseStudies { padding: 90px 0; }
    #CaseStudies .client-title { font-size: 40px; }
    #CaseStudies .case_box { flex-direction: column; padding: 32px; gap: 24px; }
    #CaseStudies .case_box__image { width: 100%; max-width: 360px; height: 260px; flex: 0 0 260px; }
    #CaseStudies .case_box__content { align-items: center; text-align: center; }
    #CaseStudies .case_box__content h4 { font-size: 24px; }
    #CaseStudies .case_box__points { align-items: flex-start; }
  }

  @media (max-width: 575px) {
    #CaseStudies { padding: 30px 0; }
    #CaseStudies .cs-container { padding: 0 20px; }
    #CaseStudies .client-title { font-size: 30px; }
    #CaseStudies .cs-subtext { font-size: 15px; margin-bottom: 40px; }
    #CaseStudies .case_box { padding: 24px; }
    #CaseStudies .case_box__image { width: 100%; max-width: 280px; height: 220px; flex: 0 0 220px; }
    #CaseStudies .case_box__content h4 { font-size: 21px; }
    #CaseStudies .case_box__points li { font-size: 12px; }
    #CaseStudies .caseStudiesBottomArrows button { width: 42px; height: 42px; }
  }
.tr-gradient-text{
    background: linear-gradient(90deg, #22D3EE, #8B5CF6, #FFFFFF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
   display:inline-block;
    padding-bottom:6px;
    line-height:inherit;
}

   
    /* ─── LEAD MAGNET ─── */
    #leadmagnet {
      background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
      position: relative;
      overflow: hidden;
    }

    #leadmagnet::after {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%233b82f6' fill-opacity='0.08' fill-rule='evenodd'/%3E%3C/svg%3E");
      pointer-events: none;
    }

    .lm-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .lm-form-side h2 {
      color: var(--white);
      margin: 12px 0 8px;
    }

    .lm-form-side p {
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 32px;
    }

    .lm-form {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 36px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 16px;
    }

    /* .lm-form .form-group {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-bottom: 16px;
    }

    .lm-form .form-group label {
      font-size: 13px;
      font-weight: 500;
      color: var(--gray-700);
    }

    .lm-form .form-group input,
    .lm-form .form-group select {
      border: 1.5px solid var(--gray-200);
      border-radius: 10px;
      padding: 12px 14px;
      font-family: var(--font-body);
      font-size: 15px;
      color: var(--gray-800);
      outline: none;
      transition: border-color 0.2s ease;
      background: var(--white);
    }

    .lm-form .form-group input:focus,
    .lm-form .form-group select:focus {
      border-color: var(--blue-400);
      box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    } */

    .form-submit {
      width: 100%;
      padding: 16px;
      font-size: 16px;
      border-radius: 10px;
      background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
      color: #fff!important;
      font-family: var(--font-display);
      font-weight: 700;
      border: none;
      cursor: pointer;
      transition: all 0.2s ease;
      box-shadow: var(--shadow-blue);
    }

    .form-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(37, 99, 235, 0.4);
    }

    .lm-visual {
      position: relative;
    }

    .report-mockup {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: var(--radius-lg);
      padding: 28px;
      backdrop-filter: blur(12px);
    }

    .rm-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 24px;
      padding-bottom: 18px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .rm-logo {
      width: 36px;
      height: 36px;
      background: var(--blue-500);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .rm-logo svg {
      width: 20px;
      height: 20px;
      color: var(--white);
    }

    .rm-title {
      color: var(--white);
      font-family: var(--font-display);
      font-size: 16px;
      font-weight: 700;
    }

    .rm-sub {
      color: rgba(255, 255, 255, 0.5);
      font-size: 12px;
    }

    .rm-score {
      text-align: center;
      margin-bottom: 24px;
    }

    .score-ring {
      width: 120px;
      height: 120px;
      margin: 0 auto 12px;
      position: relative;
    }

    .score-ring svg {
      width: 120px;
      height: 120px;
      transform: rotate(-90deg);
    }

    .score-ring .track {
      fill: none;
      stroke: rgba(255, 255, 255, 0.1);
      stroke-width: 8;
    }

    .score-ring .fill {
      fill: none;
      stroke: url(#scoreGrad);
      stroke-width: 8;
      stroke-dasharray: 283;
      stroke-dashoffset: 70;
      stroke-linecap: round;
    }

    .score-val {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: var(--font-display);
      font-size: 28px;
      font-weight: 800;
      color: var(--white);
    }

    .rm-score p {
      color: rgba(255, 255, 255, 0.7);
      font-size: 13px;
    }

    .rm-items {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .rm-item {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .rm-item-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .rm-item span {
      color: rgba(255, 255, 255, 0.7);
      font-size: 13px;
      flex: 1;
    }

    .rm-item-bar {
      flex: 1;
      height: 4px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 2px;
      overflow: hidden;
    }

    .rm-item-fill {
      height: 100%;
      border-radius: 2px;
    }

    .rm-cta-text {
      color: rgba(255, 255, 255, 0.6);
      font-size: 13px;
      text-align: center;
      margin-top: 20px;
    }

    .rm-cta-text strong {
      color: var(--white);
    }

    /* ─── TESTIMONIALS ─── */
    #testimonials {
      background: var(--white);
    }

    .testi-header {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 56px;
    }

    .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .testi-card {
      background: var(--white);
      border: 1px solid var(--gray-100);
      border-radius: var(--radius-lg);
      padding: 32px;
      box-shadow: var(--shadow-md);
      transition: all 0.3s ease;
      position: relative;
    }

    .testi-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-xl);
    }

    .testi-card::before {
      content: '"';
      position: absolute;
      top: 20px;
      right: 24px;
      font-size: 80px;
      color: var(--blue-100);
      font-family: serif;
      line-height: 1;
    }

    .stars {
      display: flex;
      gap: 3px;
      margin-bottom: 16px;
    }

    .star {
      width: 16px;
      height: 16px;
      color: #f59e0b;
    }

    .testi-card p {
      font-size: 15px;
      color: var(--gray-600);
      line-height: 1.7;
      margin-bottom: 20px;
      font-style: italic;
    }

    .testi-person {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .testi-avatar img {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--blue-500), var(--accent));
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-weight: 700;
      color: var(--white);
      font-size: 16px;
      flex-shrink: 0;
    }

    .testi-name {
      font-weight: 600;
      color: var(--gray-800);
      font-size: 15px;
      font-family: var(--font-display);
    }

    .testi-role {
      font-size: 13px;
      color: var(--gray-400);
    }

    /* ─── FAQ ─── */
    #faq {
      background: var(--gray-50);
    }

    .faq-header {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 56px;
    }

    .faq-wrap {
      max-width: 800px;
      margin: 0 auto;
    }

    .faq-item {
      background: var(--white);
      border: 1px solid var(--gray-100);
      border-radius: var(--radius);
      margin-bottom: 12px;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
    }

    .faq-q {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 24px;
      background: none;
      border: none;
      cursor: pointer;
      font-family: var(--font-display);
      font-size: 16px;
      font-weight: 600;
      color: var(--gray-800);
      text-align: left;
      gap: 16px;
    }

    .faq-q svg {
      width: 20px;
      height: 20px;
      color: var(--blue-500);
      flex-shrink: 0;
      transition: transform 0.3s ease;
    }

    .faq-item.open .faq-q svg {
      transform: rotate(45deg);
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .faq-item.open .faq-a {
      max-height: 200px;
    }

    .faq-a p {
      padding: 0 24px 20px;
      font-size: 15px;
      color: var(--gray-600);
      line-height: 1.7;
    }

    /* ─── FINAL CTA ─── */
    #finalcta {
      background: linear-gradient(135deg, #0a1628 0%, #0d2149 40%, var(--blue-700) 100%);
      text-align: center;
      padding: 100px 0;
      position: relative;
      overflow: hidden;
    }

    #finalcta::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(37, 99, 235, 0.3), transparent 70%);
      pointer-events: none;
    }

    .finalcta-content {
      position: relative;
      z-index: 1;
    }

    .finalcta-content h2 {
      color: var(--white);
      font-size: clamp(28px, 4vw, 52px);
      margin: 12px 0 20px;
    }

    .finalcta-content p {
      font-size: 18px;
      color: rgba(255, 255, 255, 0.7);
      max-width: 560px;
      margin: 0 auto 40px;
    }

    .finalcta-btns {
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1024px) {
      .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .shield-container {
        width: 320px;
        height: 320px;
      }

      .ring-1 {
        width: 220px;
        height: 220px;
      }

      .ring-2 {
        width: 280px;
        height: 280px;
      }

      .ring-3 {
        width: 320px;
        height: 320px;
      }

      .orbit {
        width: 220px;
        height: 220px;
        margin: -110px 0 0 -110px;
      }

      .uc-grid {
        grid-template-columns: 1fr;
      }

      .cs-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .why-grid {
        grid-template-columns: 1fr;
      }

      .lm-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .testi-grid {
        grid-template-columns: 1fr 1fr;
      }

      .process-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
      }

      .process-steps::before {
        display: none;
      }
    }

    @media (max-width: 768px) {
      .section {
        padding: 60px 0;
      }

      .cs-grid {
        grid-template-columns: 1fr;
      }

      .testi-grid {
        grid-template-columns: 1fr;
      }

      .ind-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .process-steps {
        grid-template-columns: repeat(2, 1fr);
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .hero-btns {
        flex-direction: column;
      }

      .btn {
        justify-content: center;
      }

      .finalcta-btns {
        flex-direction: column;
        align-items: center;
      }
    }

/* ai industires section start */
.ai_industires_section {
  background-color: #000;
  color: #fff;
  padding-bottom: 30px;
}

.ai_industires_box {
  background-color: #2e2e2eb3;
  padding: 2rem 1rem;
  border-radius: 5px;
  transition: all 0.5s cubic-bezier(0, 0, 0, 1.09);
}

.ai_industires_box:hover {
  background-color: #0a78be;
  transform: scale(1.1);
  z-index: 2;
}

.ai_industires_head {
    padding: 50px;
  text-align: center;
}

.ai_industires_head h3,
.ai_industires_head h2 {
  font-size: 2.5rem;
  margin-bottom: 5px;
  font-weight: 500;
}

.ai_industires_head p {
  color: #fff;
  font-size: 15px;
}

.ai_industires_box img {
  width: auto;
  height: 30px;
  margin: 0 auto;
  display: block;
  margin-bottom: 1rem;
}

.ai_industires_box p {
  margin-bottom: 0;
  color: #fff;
  font-size: 1.1rem;
  text-align: center;
}

.ai_industires_section .col-lg-3 {
  margin-top: 2rem;
}
/* ai industries section end */
/* ============================================================
   SOC DUBAI PAGE — EXTRACTED INLINE STYLES
   File: assets/css/soc-dubai-custom.css
   All inline CSS from the page has been moved here with
   unique class names. Every property is marked !important.
   ============================================================ */

/* ---------- HERO ---------- */
.soc-h1-reset {
  margin: 0 !important;
}

.soc-hero-heading {
  font-size: 50px !important;
  font-weight: 900 !important;
  line-height: 1.5 !important;
  margin-bottom: 10px !important;
  color: #fff !important;
}

.soc-tag-icon-14 {
  width: 14px !important;
  height: 14px !important;
}

.soc-btn-primary-cta {
  background: #2563eb !important;
  color: #fff !important;
  padding: 12px 20px !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: none !important;
}

.soc-btn-outline-cta {
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  color: #fff !important;
  padding: 12px 20px !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: transparent !important;
}

/* ---------- SERVICES ---------- */
.soc-services-title {
  margin: 12px 0 16px !important;
  font-size: clamp(28px, 3vw, 42px) !important;
  max-width: 700px !important;
  line-height: 1.2 !important;
  font-weight: 900 !important;
}

.soc-services-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 24px !important;
}

/* ---------- PROBLEMS / RISKS ---------- */
.soc-tag-danger {
  background: rgba(239, 68, 68, 0.15) !important;
  color: #f87171 !important;
  border-color: rgba(239, 68, 68, 0.3) !important;
}

.soc-center-title-900 {
  text-align: center !important;
  font-weight: 900 !important;
}

.soc-flex-col-16 {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
}

.soc-icon-center {
  text-align: center !important;
}

.soc-img-80 {
  width: 80px !important;
  height: 80px !important;
  object-fit: contain !important;
}

.soc-img-30 {
  width: 30px !important;
  height: 30px !important;
  object-fit: contain !important;
}

.soc-m0 {
  margin: 0 !important;
}

.soc-mt8 {
  margin-top: 8px !important;
}

/* ---------- COMMON HELPERS ---------- */
.soc-fw900 {
  font-weight: 900 !important;
}

.soc-fw800 {
  font-weight: 800 !important;
}

.soc-text-center {
  text-align: center !important;
}

.soc-center-mt48 {
  text-align: center !important;
  margin-top: 48px !important;
}

.soc-center-mt40 {
  text-align: center !important;
  margin-top: 40px !important;
}

/* ---------- WHY CHOOSE OUR SOC (20-point benefits list) ---------- */
.soc-benefits-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 16px !important;
  margin-top: 32px !important;
}

@media (max-width: 992px) {
  .soc-benefits-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 600px) {
  .soc-benefits-grid {
    grid-template-columns: 1fr !important;
  }
}

.soc-benefit-item {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  background: rgba(37, 99, 235, 0.06) !important;
  border: 1px solid rgba(37, 99, 235, 0.15) !important;
  border-radius: 10px !important;
  padding: 14px 16px !important;
}

.soc-benefit-item strong {
  display: block !important;
  font-size: 14px !important;
  margin-bottom: 2px !important;
}

.soc-benefit-item span {
  font-size: 13px !important;
  opacity: 0.8 !important;
}

.soc-benefit-check {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50% !important;
  background: rgba(34, 197, 94, 0.2) !important;
  border: 1px solid #22c55e !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  margin-top: 2px !important;
}

/* ---------- METRICS PANEL ---------- */
.soc-metrics-bg {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  pointer-events: none !important;
}

.soc-fill-96 {
  width: 96% !important;
}

.soc-fill-98 {
  width: 98% !important;
}

.soc-fill-99 {
  width: 99% !important;
}

.soc-metrics-bottom {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 16px !important;
  margin-top: 28px !important;
  padding-top: 28px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.soc-big-stat {
  font-family: var(--font-display) !important;
  font-size: 36px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
}

.soc-stat-label {
  font-size: 12px !important;
  color: rgba(255, 255, 255, 0.5) !important;
}

/* ---------- CASE STUDIES ---------- */
.soc-cs-title {
  color: #000 !important;
  font-weight: 800 !important;
}

.soc-cs-imgbg {
  background: #eff6ff !important;
}

/* ---------- LEAD MAGNET ---------- */
.soc-lm-tag {
  background: rgba(96, 165, 250, 0.15) !important;
  color: #93c5fd !important;
  border-color: rgba(96, 165, 250, 0.3) !important;
  margin-bottom: 20px !important;
}

.soc-lm-points {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  margin-bottom: 32px !important;
}

.soc-lm-point {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.soc-lm-check {
  width: 24px !important;
  height: 24px !important;
  border-radius: 50% !important;
  background: rgba(34, 197, 94, 0.2) !important;
  border: 1px solid #22c55e !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}

.soc-lm-point-text {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 15px !important;
}

.soc-lm-form-title {
  font-size: 20px !important;
  margin-bottom: 6px !important;
}

.soc-lm-form-sub {
  font-size: 14px !important;
  color: var(--gray-500) !important;
  margin-bottom: 24px !important;
}

.soc-mb10 {
  margin-bottom: 10px !important;
}

.soc-captcha-msg {
  color: red !important;
  text-align: center !important;
}

.soc-wait-btn {
  cursor: not-allowed !important;
}

.soc-lm-disclaimer {
  font-size: 12px !important;
  color: var(--gray-400) !important;
  text-align: center !important;
  margin-top: 12px !important;
}

/* ---------- REPORT MOCKUP (dots & fills) ---------- */
.soc-dot-red {
  background: #ef4444 !important;
}

.soc-dot-amber {
  background: #f59e0b !important;
}

.soc-dot-green {
  background: #22c55e !important;
}

.soc-rmfill-45-red {
  width: 45% !important;
  background: #ef4444 !important;
}

.soc-rmfill-62-amber {
  width: 62% !important;
  background: #f59e0b !important;
}

.soc-rmfill-81-green {
  width: 81% !important;
  background: #22c55e !important;
}

.soc-rmfill-68-amber {
  width: 68% !important;
  background: #f59e0b !important;
}

.soc-rmfill-38-red {
  width: 38% !important;
  background: #ef4444 !important;
}

/* ---------- RESULTS SECTION (Cybersecurity That Delivers Results) ---------- */
.soc-results-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
  margin-top: 40px !important;
}

@media (max-width: 992px) {
  .soc-results-grid {
    grid-template-columns: 1fr !important;
  }
}
.ff-form-description{
    color: #000!important;
}
.form_button_hide
 {
    width: 100%;
    background: linear-gradient(135deg, #5b8cff 0%, #7c6bff 100%);
    color: #fff;
    font-weight: 700;
    font-size: 13.5px;
    padding: 10px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: opacity .2s, box-shadow .2s, transform .1s;
    letter-spacing: .01em;
}