:root {
  --primary: #0072ff;
  --secondary: #00c6ff;
  --dark: #222;
  --text: #333;
  --radius: 18px;
}

/* About Section */
.about-section {
  position: relative;
  max-width: 1200px;
  margin: 100px auto;
  padding: 60px 30px;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

/* Background Animated Circles */
.about-section::before, 
.about-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,114,255,0.1), transparent 70%);
  animation: floatAnim 10s infinite ease-in-out;
  z-index: -1;
}
.about-section::before {
  width: 300px;
  height: 300px;
  top: -80px;
  left: -80px;
  animation-delay: 0s;
}
.about-section::after {
  width: 400px;
  height: 400px;
  bottom: -120px;
  right: -120px;
  animation-delay: 4s;
}
@keyframes floatAnim {
  0% { transform: translateY(0) scale(1); opacity: 0.6; }
  50% { transform: translateY(-30px) scale(1.05); opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 0.6; }
}

/* Floating Logo Decoration */
.about-logo::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  top: -20px;
  left: -20px;
  background: conic-gradient(var(--primary), var(--secondary), var(--primary));
  border-radius: 50%;
  animation: rotateAnim 12s linear infinite;
  z-index: -2;
  opacity: 0.15;
}
@keyframes rotateAnim {
  0% { transform: rotate(0deg);}
  100% { transform: rotate(360deg);}
}

/* Top Row */
.about-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

/* Logo */
.about-logo {
  position: relative;
}
.about-logo img {
  max-width: 140px;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: drop-shadow(0 5px 15px rgba(0,0,0,0.15));
}
.about-logo img:hover {
  transform: rotate(-8deg) scale(1.12);
  filter: drop-shadow(0 8px 25px rgba(0,0,0,0.25));
}

/* Divider Line */
.about-divider {
  flex: 1;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  border-radius: 3px;
  animation: pulseLine 3s ease-in-out infinite alternate;
}
@keyframes pulseLine {
  from { transform: scaleX(0.9); opacity: 0.6; }
  to   { transform: scaleX(1.05); opacity: 1; }
}

/* Text */
.about-text h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: fadeInUp 1.2s ease both;
}
.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--dark);
  animation: fadeInUp 1.4s ease both;
}
@keyframes fadeInUp {
  from { transform: translateY(30px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* Bottom Row */
.about-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  position: relative;
  z-index: 2;
}

/* Image */
.about-img img {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius);
  box-shadow: 0 20px 45px rgba(0,0,0,0.2);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}
.about-img img:hover {
  transform: scale(1.08) translateY(-10px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 900px) {
  .about-top, .about-bottom {
    flex-direction: column;
    text-align: center;
  }
  .about-divider { width: 60%; margin: 25px auto; }
  .about-img img { max-width: 100%; }
}
.vision-section, .vision-hero {
  max-width: 1000px;
  margin: 80px auto;
  padding: 40px 30px;
  font-family: 'Poppins', sans-serif;
  color: #333;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}

/* Animated gradient background glow */
.vision-section::before, .vision-hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0,114,255,0.15), transparent 70%);
  border-radius: 50%;
  animation: float 12s ease-in-out infinite;
  z-index: -1;
}
.vision-section::after, .vision-hero::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(0,198,255,0.12), transparent 70%);
  border-radius: 50%;
  animation: float 14s ease-in-out infinite reverse;
  z-index: -1;
}
@keyframes float {
  0% { transform: translateY(0) scale(1); opacity: 0.8; }
  50% { transform: translateY(-20px) scale(1.05); opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 0.8; }
}

/* Headings */
.vision-section h2, .vision-hero h2 {
  font-size: 30px;
  font-weight: 700;
  color: #0072ff;
  margin-bottom: 20px;
  position: relative;
}
.vision-section h2::after, .vision-hero h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  margin-top: 8px;
  border-radius: 3px;
  animation: glowLine 3s ease-in-out infinite alternate;
}
@keyframes glowLine {
  from { transform: scaleX(0.9); opacity: 0.6; }
  to { transform: scaleX(1.1); opacity: 1; }
}

/* Text */
.vision-section p, .vision-hero p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 18px;
  color: #444;
  animation: fadeUp 1s ease both;
}
@keyframes fadeUp {
  from { transform: translateY(25px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* Hero concise style */
.vision-hero {
  text-align: center;
}
.vision-hero p {
  font-size: 18px;
  font-weight: 500;
  color: #222;
  max-width: 700px;
  margin: 0 auto;
}
/* ---------- Layout container ---------- */
.vision-container {
  display: grid;
  grid-template-columns: 1fr 1fr; /* left text - right image */
  gap: 50px;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  position: relative;
  z-index: 1;
  animation: fadeIn 1.2s ease forwards;
}

/* fade in for whole container */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Card (Text Section) ---------- */
.vision-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(28px, 3.5vw, 44px);
  border: 1px solid rgba(10,102,255,.08);
  backdrop-filter: saturate(120%) blur(4px);
  transform: translateX(-30px);
  opacity: 0;
  animation: slideInLeft 1s ease forwards;
}
@keyframes slideInLeft {
  to { transform: translateX(0); opacity: 1; }
}

/* Title */
.vision-title {
  font: 800 clamp(26px, 3.5vw, 36px)/1.2 "Poppins", sans-serif;
  color: var(--primary);
  margin-bottom: 18px;
  position: relative;
}
.vision-title::after {
  content:"";
  display:block;
  width: 80px;
  height: 3px;
  margin-top: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  animation: pulseLine 2s ease-in-out infinite alternate;
}
@keyframes pulseLine {
  from { transform: scaleX(.85); opacity:.6; }
  to   { transform: scaleX(1.15); opacity:1; }
}

/* Paragraphs with stagger animation */
.vision-card p {
  color: var(--muted);
  font: 500 clamp(14px, 1.2vw, 16px)/1.85 "Inter", "Poppins", sans-serif;
  margin-bottom: 14px;
  opacity: 0;
  transform: translateY(15px);
  animation: riseIn 0.8s ease forwards;
}
.vision-card p:nth-of-type(1){ animation-delay: .3s; }
.vision-card p:nth-of-type(2){ animation-delay: .5s; }
.vision-card p:nth-of-type(3){ animation-delay: .7s; }
.vision-card p:nth-of-type(4){ animation-delay: .9s; }

@keyframes riseIn {
  to { transform: translateY(0); opacity: 1; }
}

/* ---------- Image ---------- */
.vision-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: translateX(30px);
  opacity: 0;
  animation: slideInRight 1s ease forwards;
  animation-delay: .5s;
}
@keyframes slideInRight {
  to { transform: translateX(0); opacity: 1; }
}
.vision-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  transition: transform .8s ease, filter .6s ease;
}
.vision-image:hover img {
  transform: scale(1.1);
  filter: brightness(1.08) contrast(1.05);
}

/* Glow border animation for image */
.vision-image::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 2px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  animation: borderGlow 5s linear infinite;
}
@keyframes borderGlow {
  0% { opacity: 0.4; }
  50% { opacity: 1; }
  100% { opacity: 0.4; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .vision-container {
    grid-template-columns: 1fr; /* stack */
    text-align: center;
    padding: 40px 16px;
  }
  .vision-card {
    transform: none !important;
  }
  .vision-image {
    margin-top: 30px;
    transform: none !important;
  }
  .vision-title::after {
    margin-left: auto;
    margin-right: auto;
  }
}
/* ---------- Theme ---------- */
:root{
  --primary: #0a66ff;
  --secondary: #00c6ff;
  --ink: #1f2937;
  --muted: #4b5563;
  --card-bg: #ffffff;
  --radius: 18px;
  --shadow: 0 18px 45px rgba(0,0,0,.08);
}

/* ---------- Wrapper ---------- */
.why-wrap {
  position: relative;
  max-width: 1300px;
  margin: 100px auto;
  padding: clamp(24px, 4vw, 40px);
  background: #fff;
  overflow: hidden;
  isolation: isolate;
}

/* ---------- Animated blobs ---------- */
.w-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: .25;
  mix-blend-mode: multiply;
  pointer-events: none;
  animation: floaty 16s ease-in-out infinite;
}
.w-blob.b1 {
  width: 320px; height: 320px;
  top: -100px; left: -100px;
  background: radial-gradient(circle at 30% 30%, var(--secondary), transparent 70%);
  animation-delay: 0s;
}
.w-blob.b2 {
  width: 380px; height: 380px;
  bottom: -120px; right: -100px;
  background: radial-gradient(circle at 70% 40%, var(--primary), transparent 70%);
  animation-delay: 5s;
}
.w-blob.b3 {
  width: 240px; height: 240px;
  top: 50%; left: 60%;
  background: radial-gradient(circle at 50% 50%, #7dd3fc, transparent 70%);
  animation-delay: 8s;
}
@keyframes floaty {
  0% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-25px,-20px) scale(1.08); }
  100% { transform: translate(0,0) scale(1); }
}

/* ---------- Grid Layout ---------- */
.why-container {
  display: grid;
  grid-template-columns: 1fr 1fr; /* left image, right text */
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ---------- Image ---------- */
.why-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.why-image img {
  width: 100%;
  border-radius: var(--radius);
  transition: transform .7s ease;
}
.why-image:hover img {
  transform: scale(1.08);
}

/* ---------- Card ---------- */
.why-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(28px, 3vw, 44px);
  border: 1px solid rgba(10,102,255,.08);
  animation: slideIn 1.2s ease forwards;
  transform: translateX(40px);
  opacity: 0;
}
@keyframes slideIn {
  to { transform: translateX(0); opacity: 1; }
}

/* ---------- Typography ---------- */
.why-title {
  font: 800 clamp(24px, 3.5vw, 34px)/1.2 "Poppins", sans-serif;
  color: var(--primary);
  margin-bottom: 16px;
  position: relative;
}
.why-title::after {
  content: "";
  display: block;
  width: 80px; height: 3px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  animation: pulseLine 3s ease-in-out infinite alternate;
}
@keyframes pulseLine {
  from { transform: scaleX(.9); opacity:.7; }
  to { transform: scaleX(1.1); opacity:1; }
}

.why-card p {
  color: var(--muted);
  font: 500 clamp(14px, 1.1vw, 16px)/1.9 "Inter", sans-serif;
  margin-bottom: 14px;
  animation: fadeUp .8s ease forwards;
  opacity: 0;
  transform: translateY(16px);
}
.why-card p:nth-of-type(1){ animation-delay: .2s; }
.why-card p:nth-of-type(2){ animation-delay: .4s; }
.why-card p:nth-of-type(3){ animation-delay: .6s; }
.why-card p:nth-of-type(4){ animation-delay: .8s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .why-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .why-card {
    transform: translateY(40px);
  }
}
/* ===== Theme (reuse your existing variables) ===== */
:root{
  --primary: #0a66ff;
  --secondary: #00c6ff;
  --ink: #1f2937;
  --muted: #4b5563;
  --card-bg: #ffffff;
  --radius: 18px;
  --shadow: 0 18px 45px rgba(0,0,0,.08);
}

/* ===== Wrapper (no background now) ===== */
.stats-wrap{
  max-width: 1200px;
  margin: 90px auto;
  padding: clamp(28px, 4vw, 48px);
}

/* ===== Grid ===== */
.stats-container{
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: clamp(16px, 2.5vw, 28px);
}

/* ===== Card ===== */
.stat-card{
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(22px, 2.6vw, 30px);
  border: 1px solid rgba(10,102,255,.08);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .3s ease;
}

/* shimmering border accent */
.stat-card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius: calc(var(--radius) + 1px);
  padding:1px;
  background: linear-gradient(120deg, rgba(10,102,255,.25), rgba(0,198,255,.25));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  animation: shimmer 6s linear infinite;
}
@keyframes shimmer{
  0%{opacity:.35} 50%{opacity:.75} 100%{opacity:.35}
}

.stat-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(0,0,0,.12);
  border-color: rgba(10,102,255,.22);
}

/* value */
.stat-value{
  font: 800 clamp(28px, 4.6vw, 44px)/1.1 "Poppins", system-ui, sans-serif;
  color: var(--primary);
  letter-spacing: .3px;
  margin-bottom: 8px;
  transform: translateY(10px);
  opacity: 0;
  animation: riseIn .8s ease forwards;
}

/* label */
.stat-label{
  font: 600 clamp(12px, 1.4vw, 14px)/1.6 "Inter", system-ui, sans-serif;
  color: var(--muted);
  letter-spacing: .2px;
  text-transform: none;
  opacity: 0;
  transform: translateY(8px);
  animation: riseIn .9s ease .1s forwards;
}

/* simple rise animation */
@keyframes riseIn{
  from{ opacity:0; transform: translateY(14px); }
  to  { opacity:1; transform: translateY(0); }
}

/* ===== Responsive ===== */
@media (max-width: 1024px){
  .stats-container{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 560px){
  .stats-container{ grid-template-columns: 1fr; }
}
/* ===== Testimonials Section ===== */
.testimonials {
  max-width: 1100px;
  margin: 90px auto;
  padding: 0 20px;
  text-align: center;
}

.testimonials-header .sub-title {
  font: 600 14px/1.4 "Inter", sans-serif;
  color: #6b7280;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.testimonials-header .main-title {
  font: 700 28px/1.3 "Poppins", sans-serif;
  color: #111827;
  margin: 10px 0;
}

.testimonials-header .desc {
  max-width: 680px;
  margin: auto;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.6;
}

/* ===== Grid ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 50px;
}

/* ===== Card ===== */
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 24px rgba(0,0,0,.05);
  text-align: left;
  transition: transform .3s ease, box-shadow .3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 38px rgba(0,0,0,.08);
}

.stars {
  color: #fbbf24; /* yellow stars */
  font-size: 18px;
  margin-bottom: 14px;
}

.feedback {
  font-size: 15px;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ===== Author ===== */
.author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #0a66ff;
}

.author h4 {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}

.author span {
  font-size: 13px;
  color: #6b7280;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== Future Section ===== */
.future-section {
  position: relative;
  width: 100%;              /* Full screen width */
  min-height: 50vh;        /* Full screen height (optional) */
  padding: 80px 20px;
  text-align: center;
  border-radius: 0;         /* No border-radius for full background */
  background: #f9fbff;      /* Light background */
  overflow: hidden;
}

/* ===== Animated Circles ===== */
.future-section::before,
.future-section::after {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,102,255,0.15), transparent 70%);
  animation: float 8s ease-in-out infinite;
  z-index: 0;
}

.future-section::before {
  top: -120px;
  left: -120px;
}

.future-section::after {
  bottom: -150px;
  right: -150px;
  animation-delay: 4s;
}

@keyframes float {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-25px) scale(1.1); }
  100% { transform: translateY(0) scale(1); }
}

/* ===== Content ===== */
.future-content {
  position: relative;
  z-index: 2; /* text upar rhe */
  max-width: 900px;
  margin: 0 auto;
}

.future-content h2 {
  font: 700 36px/1.3 "Poppins", sans-serif;
  color: #111827;
  margin-bottom: 18px;
}

.future-content p {
  font-size: 16px;
  line-height: 1.2;
  color: #4b5563;
  margin-bottom: 16px;
}

/* ===== Button ===== */
.btn-primary {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 34px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #0a66ff, #00c6ff);
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,102,255,0.25);
  transition: all .35s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #005ae0, #00aaff);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,102,255,0.3);
}
/* ===== Testimonials Section ===== */
.testimonials {
  padding: 80px 10%;
  background: #f9f9f9;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonials-header h5 {
  color: #007bff;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.testimonials-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.testimonials-header p {
  max-width: 650px;
  margin: 0 auto 40px;
  color: #555;
  font-size: 15px;
}

/* Slider Container */
.testimonial-grid {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: slide 40s linear infinite;
}

.testimonial-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  width: 320px;
  min-height: 300px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-8px);
}

.stars {
  color: #ffc107;
  font-size: 18px;
  margin-bottom: 15px;
}

.feedback {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.author h4 {
  font-size: 16px;
  margin-bottom: 4px;
  color: #333;
}

.author span {
  font-size: 13px;
  color: #777;
}

/* ===== Auto Sliding Animation ===== */
@keyframes slide {
  0%   { transform: translateX(0); }
  20%  { transform: translateX(0); }
  25%  { transform: translateX(-340px); }
  45%  { transform: translateX(-340px); }
  50%  { transform: translateX(-680px); }
  70%  { transform: translateX(-680px); }
  75%  { transform: translateX(-1020px); }
  95%  { transform: translateX(-1020px); }
  100% { transform: translateX(0); }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .testimonial-card {
    width: 260px;
  }
  @keyframes slide {
    0%   { transform: translateX(0); }
    25%  { transform: translateX(-280px); }
    50%  { transform: translateX(-560px); }
    75%  { transform: translateX(-840px); }
    100% { transform: translateX(0); }
  }
}
