@charset "utf-8";
/* CSS Document */

.cta-section {
    background: linear-gradient(135deg, #0d6efd, #0b5ed7);
    color: #fff;
    text-align: center;
    padding: 60px 20px;
    border-radius: 12px;
    max-width: 900px;
    margin: 40px auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cta-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.cta-btn {
    display: inline-block;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: bold;
    color: #0d6efd;
    background: #fff;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #f1f1f1;
    transform: translateY(-2px);
}


  :root {
    --bg: #06090f;
    --surface: #0d1320;
    --surface2: #121a2e;
    --border: rgba(255,255,255,0.07);
    --accent: #00d4ff;
    --accent2: #7c3aed;
    --accent3: #10b981;
    --gold: #f59e0b;
    --text: #e8edf5;
    --muted: #7a8599;
     --white: #fff;
    --card-glow: 0 0 40px rgba(0,212,255,0.08);
  }

/* ── HERO ── */

h1, h2, h3, h4, h5, h6 {
	line-height: 1.2;
	margin-bottom: 20px;
	color:#262B6C;
}

       .section-liteblue h2 {
	color: #262B6C;
	font-size: 28px;
}
  .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0,212,255,0.35);
  }

  .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--border);
    color: var(--text);
    text-decoration: none;
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 32px;
    border-radius: 50px;
    transition: border-color 0.3s, background 0.3s, transform 0.3s;
    background: rgba(255,255,255,0.03);
  }

       .p2plist.col-container h3 {
	font-size: 18px;
}
       
       .p2plist.col-container p {
           
           font-size: 17px;
           color:#262B6C;
       }  
  .btn-outline:hover {
    border-color: var(--accent);
    background: rgba(0,212,255,0.07);
    transform: translateY(-3px);
  }

  /* Hero visual side */
  .hero-visual {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    z-index: 1;
    animation: fadeLeft 1s 0.3s ease both;
  }

  .hero-img-frame {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 60px rgba(0,212,255,0.08);
    position: relative;
  }

  .hero-img-frame img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
  }
       
       .hero-content1 h1{font-size: 18px; color:#262B6C;}
.hero-content1 p {
	font-size: 17px;
	line-height: 37px;
}
       
  .hero-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,212,255,0.12), rgba(124,58,237,0.12));
    mix-blend-mode: overlay;
  }

  /* Floating stat cards */
  .stat-card {
    position: absolute;
    background: rgba(13,19,32,0.95);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px 18px;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 4s ease-in-out infinite;
  }

  .stat-card:nth-child(2) { animation-delay: -2s; }
  .stat-card:nth-child(3) { animation-delay: -1s; }

  .stat-card-1 { bottom: -20px; left: -40px; }
  .stat-card-2 { top: -20px; right: -20px; }
  .stat-card-3 { bottom: 80px; right: -40px; }

  .stat-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }
.mbtm100 {
	margin-bottom: 30px;
	margin-top: 70px;
	text-align: center;
	background: linear-gradient(to bottom, #C0E9FF, #fff);
}
       .clrblue {color:#262B6C !important;}
       
  .stat-icon.green { background: rgba(16,185,129,0.15); color: var(--accent3); }
  .stat-icon.blue  { background: rgba(0,212,255,0.12); color: var(--accent); }
  .stat-icon.purple{ background: rgba(124,58,237,0.15); color: #a78bfa; }

  .stat-label { font-size: 0.7rem; color: var(--muted); font-weight: 500; }
  .stat-value { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.1rem; color: #fff; }

  /* ── SECTION COMMONS ── */
  section { position: relative; z-index: 1; }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
  }
       .why-section h3 {font-size:22px; color:#262B6C;}
  .section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color:#262B6C;
    margin-bottom: 16px;
  }
       .mt18 {font-size: 18px; margin-top:25px;}
  .section-label::before {
    content: '';
    width: 24px; height: 2px;
    background: var(--accent);
    border-radius: 2px;
  }
h2.section-title {
	font-size: 25px;
	font-weight: 700;
}
  .section-title {
    font-size:18px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 16px;
      color:#262B6C;
  }

.section-desc {
	color: #262B6C;
	font-size: 18px;
	max-width: 580px;
	margin-top: 20px;
}
.p2plist li {
	font-size: 18px;
	line-height: 26px;
}
h2.fntlgr {	font-size: 27px;}
.section-desc1 {
	color: #262B6C;
	font-size: 18px;
	max-width: 580px;
	margin-top: 53px;
}
       .section-desc3 {
	color: #262B6C;
	font-size: 18px;
	
	margin-top: 35px;
}
  .section-header { margin-bottom: 64px; }

  /* ── WHY SECTION ── */
 .why-section {
	padding: 45px 0;
	background: linear-gradient(to bottom, #C0E9FF, #fff);
}
  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }

  .why-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .why-point {
    display: flex;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: border-color 0.3s, background 0.3s, transform 0.3s;
    cursor: default;
  }

         .why-point {
    border-color: rgba(0,212,255,0.3);
    background: rgba(0,212,255,0.04);
    transform: translateX(6px);
  }

  .why-point:hover {
    border-color: rgba(0,212,255,0.3);
    background: rgba(0,212,255,0.04);
    transform: translateX(6px);
  }

  .why-point-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background:#262B6C;
    border: 1px solid rgba(0,212,255,0.2);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: background 0.3s, transform 0.3s;
  }

  .why-point:hover .why-point-icon {
    background: rgba(0,212,255,0.18);
    transform: scale(1.1) rotate(-5deg);
  }

  .why-point h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #262B6C;
  }
       .mt25 {margin-top: 25px;}
  .why-point p { font-size: 0.88rem; color: var(--muted); line-height: 1.5; }

  .why-visual {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--card-glow), 0 40px 80px rgba(0,0,0,0.5);
  }

  .why-visual img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
  }
.section-liteblue {
	background: #fff;
	padding: 25px;
}
  .why-visual:hover img { transform: scale(1.04); }

  .why-visual-overlay {
    position: absolute;
    inset: 0;
   /* background: linear-gradient(to top, rgba(6,9,15,0.7) 0%, transparent 50%);*/
  }

  .why-visual-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(13,19,32,0.9);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 18px;
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    gap: 10px;
  }

  /* ── FEATURES ── */
  .features-section {
    padding: 120px 0;
    background: #fff;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .feature-card {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
    cursor: default;
  }

  .feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.4s;
  }

  .feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0,212,255,0.2);
    box-shadow: 0 24px 60px rgba(0,0,0,0.3), 0 0 30px rgba(0,212,255,0.06);
  }
p.export {
	font-size: 22px;
}
  .feature-card:hover::before { opacity: 1; }

  .feature-card:nth-child(2) { --accent-local: #7c3aed; }
  .feature-card:nth-child(3) { --accent-local: #10b981; }
  .feature-card:nth-child(4) { --accent-local: #f59e0b; }
  .feature-card:nth-child(5) { --accent-local: #ef4444; }
  .feature-card:nth-child(6) { --accent-local: #8b5cf6; }

  .feature-card:nth-child(2) .feat-icon { background: rgba(124,58,237,0.12); border-color: rgba(124,58,237,0.25); color: #a78bfa; }
  .feature-card:nth-child(3) .feat-icon { background: rgba(16,185,129,0.12); border-color: rgba(16,185,129,0.25); color: #34d399; }
  .feature-card:nth-child(4) .feat-icon { background: rgba(245,158,11,0.12); border-color: rgba(245,158,11,0.25); color: #fbbf24; }
  .feature-card:nth-child(5) .feat-icon { background: rgba(239,68,68,0.12); border-color: rgba(239,68,68,0.25); color: #f87171; }
  .feature-card:nth-child(6) .feat-icon { background: rgba(139,92,246,0.12); border-color: rgba(139,92,246,0.25); color: #a78bfa; }

  .feat-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: rgba(0,212,255,0.1);
    border: 1px solid rgba(0,212,255,0.2);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
    transition: transform 0.4s;
  }

  .feature-card:hover .feat-icon { transform: scale(1.12) rotate(-8deg); }

  .feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
  }

  .feature-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

  /* ── HOW IT WORKS ── */
  .how-section {
    padding: 45px 0;
    background: linear-gradient(to bottom, #C0E9FF, #fff);
  }

  .how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
  }

  .how-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(16.66% + 20px);
    right: calc(16.66% + 20px);
    height: 1px;
   /* background: linear-gradient(90deg, var(--accent), var(--accent2), var(--accent3));*/
    opacity: 0.3;
  }

  .how-step {
    text-align: center;
    padding: 0 20px 40px;
    position: relative;
    transition: transform 0.3s;
  }

  .how-step:hover { transform: translateY(-8px); }

.step-num {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 24px;
	font-weight: 800;
	font-size: 19px;
	color: #070037;
	position: relative;
	z-index: 2;
	transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
  .how-step:hover .step-num {
    border-color: var(--accent);
    background: rgba(0,212,255,0.08);
    box-shadow: 0 0 30px rgba(0,212,255,0.2);
  }

  .step-icon {
    font-size: 30px;
    margin-bottom: 16px;
    color: #262B6C;;
    transition: transform 0.3s;
  }

  .how-step:hover .step-icon { transform: scale(1.2); }

  .how-step h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px;  color:#262B6C;}
.how-step p {
	font-size: 18px;
	color: #262B6C;
	line-height: 1.6;
}

  /* Second row of steps */
  .how-steps-2 {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 20px;
  }

  /* ── CHALLENGES TABLE ── */
  .challenges-section {
    padding: 45px 0;
    background:#fff;
  }

  .challenges-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
  }

  .challenge-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
  }

  .challenge-table thead th {
    background: rgba(0,212,255,0.08);
    padding: 16px 24px;
    text-align: left;
   /*  font-size:18px;*/
    font-weight:700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color:#262B6C;
    border-bottom: 1px solid var(--border);
  }

  .challenge-table tbody tr {
    border-bottom: 1px solid var(--border);
    transition: background 0.25s;
    cursor: default;
  }

  .challenge-table tbody tr:last-child { border-bottom: none; }

  .challenge-table tbody tr:hover { background: rgba(0,212,255,0.04); }

  .challenge-table td {
    padding: 16px 15px;
    font-size: 18px;
    color: var(--text);
    vertical-align: middle;
  }

  .challenge-table td:first-child { color:#262B6C; }
       .reveal.visible p {
	font-size: 18px;
}

  .challenge-table td .tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16,185,129,0.1);
    border: 1px solid rgba(16,185,129,0.2);
    color: var(--accent3);
    font-size: 17px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
  width:100%;
  }

  .integrations-box {
    background: linear-gradient(to bottom, #C0E9FF, #fff);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 20px;
  }

  .integrations-box h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    color:#262B6C;
  }

  .integration-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 8px 10px 8px 10px;
    border-radius: 12px;
    border: 1px solid var(--border);
    margin-bottom: 12px;
    transition: border-color 0.3s, background 0.3s, transform 0.3s;
    cursor: default;
  }

  .integration-item:last-child { margin-bottom: 0; }

  .integration-item:hover {
    border-color: rgba(0,212,255,0.25);
    background: rgba(0,212,255,0.04);
    transform: translateX(6px);
  }

  .int-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
  }

  .integration-item h4 { font-size: 18px; font-weight: 700; }
  .integration-item p  { font-size: 18px; color: var(--muted); }

  /* ── CLOUD SECTION ── */
  .cloud-section {
    padding: 45px 0;
    background:linear-gradient(to bottom, #C0E9FF, #fff);
    overflow: hidden;
  }
       
       .cloud-inner p {
	color: #262B6C;
}

  .cloud-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .cloud-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .cloud-feat {
    background: linear-gradient(to bottom, #C0E9FF, #fff);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    cursor: default;
  }

  .cloud-feat:hover {
    border-color: rgba(0,212,255,0.25);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  }

  .cloud-feat-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background:#262B6C;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 14px;
    transition: transform 0.3s;
  }

  .cloud-feat:hover .cloud-feat-icon { transform: scale(1.1) rotate(-8deg); }
  .cloud-feat h4 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
  .cloud-feat p  { font-size: 18px; color:#262B6C; line-height: 1.5; }

  .cloud-visual {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--card-glow), 0 10px 10px rgba(0,0,0,0.5);
  }

  .cloud-visual img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s;
  }

  .cloud-visual:hover img { transform: scale(1.04); }

  /* ── WHO BENEFITS ── */
  .who-section {
    padding: 45px 0;
    background: #fff;
  }

  .who-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .who-card {
    background:linear-gradient(to bottom, #C0E9FF, #fff);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
    cursor: default;
    position: relative;
    overflow: hidden;
  }

  .who-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0,212,255,0.08), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
  }

  .who-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0,212,255,0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  }

  .who-card:hover::after { opacity: 1; }

  .who-icon {
    width: 64px; height: 64px;
    border-radius: 18px;
    background:#262B6C;
    border: 1px solid rgba(0,212,255,0.2);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 20px;
    transition: transform 0.4s;
    position: relative;
    z-index: 1;
  }

  .who-card:nth-child(2) .who-icon { background:#262B6C; border-color: rgba(124,58,237,0.25); color: #a78bfa; }
  .who-card:nth-child(3) .who-icon { background:#262B6C; border-color: rgba(16,185,129,0.25); color: #34d399; }
  .who-card:nth-child(4) .who-icon { background:#262B6C; border-color: rgba(245,158,11,0.25); color: #fbbf24; }

  .who-card:hover .who-icon { transform: scale(1.12) rotate(-8deg); }

  .who-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; position: relative; z-index: 1; }
  .who-card p {
	font-size: 17px;
	color:#262B6C;
	line-height: 1.5;
	position: relative;
	z-index: 1;
}

  /* ── STATS BAND ── */
  .stats-band {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0,212,255,0.05), rgba(124,58,237,0.05));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
  }

  .stat-item h3 {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
  }

  .stat-item p { font-size: 18px; color: var(--muted); }

  /* ── CTA ── */
  .cta-section-2 {
    padding: 45px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, #C0E9FF, #fff);
  }

  .cta-section-2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(0,212,255,0.07) 0%, transparent 65%);
    pointer-events: none;
  }

  .cta-section-2 h2 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
  }

  .cta-section-2 p {
    color: #262B6C;
    font-size: 18px;
    margin-bottom: 15px;
    max-width:100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
  }

  .cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
  }


  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeLeft {
    from { opacity: 0; transform: translateY(-50%) translateX(40px); }
    to   { opacity: 1; transform: translateY(-50%) translateX(0); }
  }

  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
  }

  /* Scroll reveal */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }
  .reveal-delay-5 { transition-delay: 0.5s; }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    nav { padding: 16px 30px; }
    .hero { padding: 130px 30px 100px; }
    .hero-visual { display: none; }
    .container { padding: 0 30px; }
    .why-grid, .cloud-inner { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: repeat(2,1fr); }
    .who-grid { grid-template-columns: repeat(2,1fr); }
    .stats-grid { grid-template-columns: repeat(2,1fr); gap: 30px; }
    .challenges-grid { grid-template-columns: 1fr; }
  }

  @media (max-width: 640px) {
    .nav-links { display: none; }
    .hero { padding: 110px 20px 80px; }
    .container { padding: 0 20px; }
    .features-grid { grid-template-columns: 1fr; }
    .who-grid { grid-template-columns: 1fr; }
    .how-steps { grid-template-columns: 1fr; }
    .how-steps::before { display: none; }
    .cloud-features { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2,1fr); }
  }


.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.icon {
    font-size: 30px;
    color: #2a7de1;
    margin-bottom: 15px;
}

.card h3 {
    margin: 10px 0;
    font-size: 20px;
    font-weight: 700;
}

.card p {
	font-size: 17px;
	color: #262B6C;
}
    ul.benefits {
	padding: 0;
	font-size: 18px;
}
    
.benefits {
    margin-top: 15px;
}

.benefits li {
	font-size: 15px;
	margin-bottom: 6px;
	list-style: none;
	color: #262B6C;
	display: inline-flex;
	padding-left: 0px;
}

.{ font-size: 28px;}
.benefits li::before {
	content: "✔ ";
	color: green;
	padding-right: 7px;
}



    .pt40 {padding-top: 40px;}
    .panel-heading {
	padding: 5px 10px 0px 10px;
	margin: 0;
}
    .integrations-box h2 {
	font-size: 25px;
	font-weight: 700;
}
    
    h2.headfnt {font-size:18px;}
   h3.fntlgr {
	font-size: 22px !important;
}
    .txtclr {	color: #fff !important;	padding: 0 !important;}
#txtCaptcha{background-color: transparent;
    border: 1px solid red;
    padding: 4px 10px;}
	#ImageButton1{    vertical-align: middle;}
    
     .videoBg {	margin-top:0%;	border: 5px solid #897171;}
    
  .hero-content h1 span {
	opacity: 12 !important;
	margin-left: 37px;
}
    .hero-content {
	position: absolute;
	top: 35%;
	left: 60px;
	text-align: center;
	right: 58%;
	bottom: 0;
}
    .hero-content h1 span {
	opacity: 12 !important;
}
    
 .col-container {
  display: table;
  width: 100%;
}
/*.col-hgt {
  display: table-cell;
  
}
 */   
    .mtop-10 {margin-top: 10%;}
     
.accordionWrapper {
  padding: 30px;
  background: #fff;
  float: left;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 40px;
  box-shadow: 0 1.5em 85px 0 rgba(0, 0, 0, .2)
}
.accordionItem {
  float: left;
  display: block;
  width: 100%;
  box-sizing: border-box
}
.accordionItemHeading {
	cursor: pointer;
	font-size: 18px;
	font-weight: 400;
	margin: 0 0 10px 0;
	padding-left: 10px;
	background:#C0E9FF;
	color:#262B6C;
	width: 100%;
	/* -webkit-border-radius: 3px; */
	/* border-radius: 3px; */
	/* box-sizing: border-box; */
	padding: 10px;
	color:#262B6C !important;
	font-size: 16px !important;
	padding-left: 20px !important;
	margin-bottom: 20px !important;
    font-weight: 700;
}

.close {
	float: right;
	font-size: 21px;
	line-height: 1;
	color: #000 !important;
	text-shadow: none !important;
	opacity: 1 !important;
}

.accordionItemContent ul li {
	padding-bottom: 10px;
}

.close .accordionItemContent {
  height: 0;
  transition: height 1s ease-out;
  -webkit-transform: scaleY(0);
  -o-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  float: left;
  display: block
}
.open .accordionItemContent {
  padding: 20px;
  background-color: #fff;
  border: 1px solid #ddd;
  width: 100%;
  margin: 0 0 10px 0;
  display: block;
  -webkit-transform: scaleY(1);
  -o-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transform-origin: top;
  -o-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  -webkit-transition: -webkit-transform .4s ease-out;
  -o-transition: -o-transform .4s ease;
  -ms-transition: -ms-transform .4s ease;
  transition: transform .4s ease;
  box-sizing: border-box;
  font-size: 16px;
}
.open .accordionItemHeading {
  margin: 0;
  font-weight: 400;
  font-size: 18px;
  -webkit-border-top-left-radius: 3px;
  -webkit-border-top-right-radius: 3px;
  -moz-border-radius-topleft: 3px;
  -moz-border-radius-topright: 3px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  color: #fff;
    padding: 10px;
}
    .pa0 { margin: 0 !important; padding: 0}
    
    .toptxt{ margin-right: 15px !important;}


        .mt70 {margin-top: 20px; font-size: 18px}
        .mt90 {	margin-top: 89px;}}
.cta-section-1 {
	background:linear-gradient(-0deg, #fcfeff, #fff, #b0d8ec);
	color: #fff;
	text-align: center;
	padding: 70px 20px;
	margin-top: 50px;
}

.cta-section-1 h2 {
    font-size: 30px;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.4;
}

/* 3 Box Layout */
.cta-box-container-1 {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.cta-box-1 {
	background:linear-gradient(to bottom, #C0E9FF, #fff);
	padding: 25px 20px;
	border-radius: 12px;
	width: 250px;
	transition: 0.3s;
	backdrop-filter: blur(8px);
}

        .mb50 {margin-bottom: 50px;}
.cta-box-1:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.2);
}

.cta-box-1 span {
    font-size: 30px;
    display: block;
    margin-bottom: 10px;
}

.cta-box-1 p {
    font-size: 16px;
    margin: 0;
}

/* Button */
.cta-btn-1 {
    display: inline-block;
    padding: 14px 35px;
    background: #00ffcc;
    color: #000;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    border-radius: 50px;
    transition: 0.3s;
}

.cta-btn-1:hover {
    background: #00ddb3;
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .cta-box-1 {
        width: 100%;
        max-width: 300px;
    }
}


@media (min-width:320px) and (max-width: 450px) {
 
    .export{ font-size: 18px; }
    .accordionWrapper h3 {
	font-size: 16px;
}
    .section-liteblue h2 {
	color: #262B6C;
	font-size: 23px;
}
    .challenge-table td {
	padding: 16px 15px;
	font-size: 15px;
	color: var(--text);
	vertical-align: middle;
}
}