/*========================== ABOUT HERO ===========================*/
.about-hero {
  position: relative;
  padding: 70px 0 120px;
  background: linear-gradient(135deg, #1a1a4d, #232369);
  overflow: hidden;
  color: #fff;
}
/* Grid */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
}
/* Glow */
.hero-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  animation: circleMove 8s infinite linear;
}
.hero-circle1 {
  width: 250px;
  height: 250px;
  background: rgba(251, 2, 34, 0.18);
  top: -80px;
  left: -70px;
}
.hero-circle2 {
  width: 330px;
  height: 330px;
  background: rgba(255, 255, 255, 0.05);
  right: -80px;
  bottom: 50px;
  animation-duration: 12s;
}
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 40px;
  backdrop-filter: blur(12px);
  margin-bottom: 25px;
}
.about-badge i {
  color: #fb0222;
}
.about-hero h1 {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}
.about-hero h1 span {
  color: #fb0222;
}
.about-hero p {
  font-size: 18px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.85);
  max-width: 620px;
}
.homebread {
  cursor: pointer;
}
.hero-img {
  max-width: 520px;
  animation: heroFloat 4s ease infinite;
  filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.25));
}
@keyframes heroFloat {
  50% {
    transform: translateY(-18px);
  }
}
@keyframes circleMove {
  50% {
    transform: translateY(-25px) rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.company-stats {
  /* margin-top: -80px; */
  position: relative;
  z-index: 5;
  
}
.stat-box {
  background: #fff;
  padding: 35px;
  border-radius: 22px;
  text-align: center;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
  height: 100%;
}
.stat-box:hover {
  transform: translateY(-10px);
}
.stat-box i {
  font-size: 45px;
  color: #fb0222;
  margin-bottom: 20px;
  display: block;
}
.stat-box h2 {
  font-size: 42px;
  font-weight: 800;
  color: #1a1a4d;
}
.stat-box p {
  margin: 0;
  font-size: 17px;
  font-weight: 500;
}
/*================================================== FOUNDER SECTION ==================================================*/
.founder-section {
  position: relative;
  padding: 110px 0;
  background: #f8faff;
  overflow: hidden;
}
.founder-section::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  top: -120px;
  left: -120px;
  border-radius: 50%;
  background: rgba(246, 5, 37, 0.05);
  filter: blur(70px);
}
.founder-section::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  right: -100px;
  bottom: -100px;
  border-radius: 50%;
  background: rgba(30, 35, 92, 0.06);
  filter: blur(70px);
}
/*============================== IMAGE BOX ==============================*/
.founder-image {
  position: relative;
  max-width: 430px;
  margin: auto;
}
.founder-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 25px;
  overflow: hidden;
  background: #fff;
}
.founder-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(246, 5, 37, 0.08),
    rgba(30, 35, 92, 0.08)
  );
}
.founder-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: 0.5s;
}
.founder-placeholder:hover img {
  transform: scale(1.05);
}
.founder-placeholder:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.12);
}
/*============================== ROTATING BORDER ==============================*/
.founder-image::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 36px;
  background: linear-gradient(135deg, #f60525, #1e235c, #f60525);
  background-size: 300%;
  animation: borderRotate 6s linear infinite;
  z-index: -1;
  filter: blur(20px);
  opacity: 0.35;
}
@keyframes borderRotate {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 300%;
  }
}
/*================================================== BADGES ==================================================*/

.degree-badge {
  position: absolute;
  left: -25px;
  bottom: -30px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 15px 20px;
  border-radius: 50px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  color: #1e235c;
  font-weight: 700;

  animation: floatBadge 5s ease-in-out infinite;
}
.degree-badge i {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f60525;
  color: #fff;
  font-size: 18px;
}
@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
/*================================================== CONTENT ==================================================*/
.founder-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 50px;
  background: rgba(246, 5, 37, 0.08);
  color: #f60525;
  font-weight: 700;
  margin-bottom: 18px;
}
.founder-title {
  font-size: 52px;
  font-weight: 800;
  color: #1e235c;
  margin-bottom: 10px;
  line-height: 1.2;
}
.founder-position {
  font-size: 22px;
  font-weight: 600;
  color: #f60525;
  margin-bottom: 25px;
}
.founder-desc {
  font-size: 17px;
  line-height: 1.9;
  color: #666;
  margin-bottom: 18px;
}

/*================================================== SKILLS ==================================================*/
.founder-skills {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 35px 0;
}
.founder-skills div {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 16px 20px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: 0.35s;
  font-weight: 600;
  color: #1e235c;
}
.founder-skills div i {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(246, 5, 37, 0.1);
  color: #f60525;
  font-size: 18px;
  transition: 0.35s;
}
.founder-skills div:hover {
  transform: translateY(-8px);
  background: #f60525;
  color: #fff;
  box-shadow: 0 20px 45px rgba(246, 5, 37, 0.25);
}
.founder-skills div:hover i {
  background: #fff;
  color: #f60525;
  transform: rotate(360deg);
}

/*================================================== ANIMATION ==================================================*/
.founder-image {
  animation: imageFloat 6s ease-in-out infinite;
}
@keyframes imageFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
.founder-title,
.founder-position,
.founder-desc,
.founder-skills {
  animation: fadeUp 0.8s ease both;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*================================================== RESPONSIVE ==================================================*/

/*========================= WHY CHOOSE US ==========================*/
.why-choose-section {
  position: relative;
  padding: 90px 0;
  background: #f7f9fc;
  overflow: hidden;
}
/* Background Decoration */
.why-choose-section::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(251, 2, 34, 0.05);
  top: -150px;
  right: -120px;
}
.why-choose-section::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(26, 26, 77, 0.04);
  bottom: -120px;
  left: -100px;
}
.section-title {
  font-size: 42px;
  font-weight: 800;
  color: #1a1a4d;
}
.section-title span {
  color: #fb0222;
}
.section-subtitle {
  max-width: 700px;
  margin: 18px auto 0;
  color: #666;
  line-height: 1.8;
}
/* Card */
.why-card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  text-align: center;
  height: 100%;
  overflow: hidden;
  border: 1px solid #ececec;
  transition: 0.35s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}
/* Left Border */
.why-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 35px;
  width: 4px;
  height: 55px;
  background: #fb0222;
  border-radius: 10px;
  transition: 0.4s;
}
.why-card:hover {
  transform: translateY(-10px);
  border-color: #fb0222;
  box-shadow: 0 18px 40px rgba(26, 26, 77, 0.12);
}
.why-card:hover::before {
  height: 100%;
  top: 0;
}
/* Glow Circle */
.why-card::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(251, 2, 34, 0.05);
  right: -70px;
  top: -70px;
  transition: 0.4s;
}
.why-card:hover::after {
  transform: scale(1.4);
}
/* Icon */
.why-icon {
  width: 72px;
  height: 72px;
  margin: auto;
  border-radius: 18px;
  background: linear-gradient(135deg, #1a1a4d, #35358c);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 30px;
  margin-bottom: 20px;
  transition: 0.35s;
}
.why-card:hover .why-icon {
  background: #fb0222;
  transform: translateY(-6px) rotate(-8deg) scale(1.08);
}
/* Heading */
.why-card h4 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a4d;
  margin-bottom: 12px;
}
/* Text */
.why-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
  margin: 0;
}
/* Responsive */

/*========================== MISSION & VISION ===========================*/
.mission-vision-section {
  padding: 90px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}
/* Background */
.mission-vision-section::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(251, 2, 34, 0.05);
  border-radius: 50%;
  top: -140px;
  right: -120px;
}
.mv-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 70px;
}
.mv-box {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 25px;
  position: relative;
}
.reverse {
  flex-direction: row-reverse;
  text-align: right;
}
.mv-number {
  font-size: 70px;
  font-weight: 800;
  color: rgba(26, 26, 77, 0.08);
  line-height: 1;
  position: absolute;
  top: -25px;
  left: 90px;
}
.reverse .mv-number {
  left: auto;
  right: 90px;
}
.mv-icon {
  width: 80px;
  height: 80px;
  min-width: 80px;
  background: linear-gradient(135deg, #1a1a4d, #303090);
  color: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  transition: 0.35s;
}
.mv-box:hover .mv-icon {
  background: #fb0222;
  transform: translateY(-8px) rotate(-8deg);
}
.mv-content span {
  color: #fb0222;
  font-weight: 600;
}
.mv-content h3 {
  font-size: 30px;
  margin: 12px 0;
  font-weight: 700;
  color: #1a1a4d;
}
.mv-content p {
  line-height: 1.9;
  color: #666;
  margin: 0;
}
.mv-line {
  display: flex;
  justify-content: center;
  align-items: center;
}
.mv-line span {
  width: 4px;
  height: 220px;
  background: linear-gradient(#fb0222, #1a1a4d);
  border-radius: 20px;
  position: relative;
}
.mv-line span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fb0222;
  box-shadow: 0 0 0 8px rgba(251, 2, 34, 0.15);
  animation: pulseMission 2s infinite;
}
@keyframes pulseMission {
  0% {
    box-shadow: 0 0 0 0 rgba(251, 2, 34, 0.4);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(251, 2, 34, 0);
  }
}
/* Responsive */

/*=================================== WORK PROCESS ===================================*/
.work-process-section {
  padding: 100px 0;
  background: #f8f9fc;
  overflow: hidden;
}
.process-line {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.process-step {
  width: 150px;
  text-align: center;
  position: relative;
  transition: 0.35s;
}
.step-circle {
  width: 75px;
  height: 75px;
  margin: auto;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #1a1a4d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #1a1a4d;
  transition: 0.35s;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.process-step span {
  display: block;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fb0222;
}
.process-step h5 {
  margin-top: 8px;
  font-size: 17px;
  font-weight: 700;
  color: #1a1a4d;
}
.line {
  height: 3px;
  width: 65px;
  background: #d8d8d8;
  margin-bottom: 55px;
  position: relative;
  overflow: hidden;
}
.line::after {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fb0222;
  animation: lineMove 3s linear infinite;
}
.process-step:hover .step-circle {
  background: #fb0222;
  border-color: #fb0222;
  color: #fff;
  transform: translateY(-8px) scale(1.08);
  box-shadow: 0 15px 30px rgba(251, 2, 34, 0.35);
}
.process-step:hover h5 {
  color: #fb0222;
}
.active .step-circle {
  background: #fb0222;
  border-color: #fb0222;
  color: #fff;
}
@keyframes lineMove {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
/*========================= Mobile =========================*/

/*===================================== COMPANY STATS =====================================*/
.company-stats {
  padding:70px 0 40px 0;
  /* background: #f8f9fc; */
  position: relative;
  overflow: hidden;
}
/* Background Shapes */
.company-stats::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(251, 2, 34, 0.05);
  border-radius: 50%;
  top: 0px;
  left: -160px;
}
.company-stats::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(26, 26, 77, 0.05);
  border-radius: 50%;
  bottom: 0px;
  right: -100px;
}
.stat-box {
  position: relative;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  padding: 28px 20px;
  text-align: center;
  transition: 0.35s;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}
/* Red Glow */
.stat-box::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(251, 2, 34, 0.08);
  top: -90px;
  right: -90px;
  transition: 0.4s;
}
.stat-box:hover::before {
  transform: scale(1.5);
}
.stat-box:hover {
  transform: translateY(-10px);
  border-color: #fb0222;
  box-shadow: 0 18px 40px rgba(26, 26, 77, 0.15);
}
.stat-icon {
  width: 68px;
  height: 68px;
  margin: auto;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a4d, #32328d);
  color: #fff;
  font-size: 28px;
  margin-bottom: 18px;
  transition: 0.35s;
  position: relative;
}
.stat-icon::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 2px dashed rgba(251, 2, 34, 0.25);
  border-radius: 22px;
  animation: rotateStat 10s linear infinite;
}
.stat-box:hover .stat-icon {
  background: #fb0222;
  transform: rotate(-8deg) scale(1.08);
}
.stat-box:hover .bi-headset {
  color: white;
}
.stat-box:hover .bi-award-fill {
  color: white;
}
.stat-box:hover .bi-emoji-smile-fill {
  color: white;
}
.stat-box:hover .bi-briefcase-fill {
  color: white;
}
.stat-box h2 {
  font-size: 38px;
  font-weight: 800;
  color: #1a1a4d;
  margin-bottom: 8px;
  transition: 0.3s;
}
.stat-box:hover h2 {
  color: #fb0222;
}
.stat-box p {
  margin: 0;
  font-size: 15px;
  color: #666;
  font-weight: 500;
}
/* Animation */
@keyframes rotateStat {
  100% {
    transform: rotate(360deg);
  }
}
/* Mobile */

/* terms and condition */
/*================================================== TERMS & CONDITIONS ==================================================*/
.terms-section {
  position: relative;
  padding: 100px 0;
  background: #f8faff;
  overflow: hidden;
}
.terms-section::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  top: -120px;
  left: -120px;
  border-radius: 50%;
  background: rgba(246, 5, 37, 0.05);
  filter: blur(60px);
}
.terms-section::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  bottom: -120px;
  right: -120px;
  border-radius: 50%;
  background: rgba(30, 35, 92, 0.05);
  filter: blur(60px);
}
.terms-wrapper {
  position: relative;
  z-index: 2;
}
.terms-item {
  position: relative;
  background: #fff;
  padding: 35px 35px 35px 45px;
  margin-bottom: 28px;
  border-radius: 18px;
  border-left: 5px solid #f60525;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
  transition: 0.4s;
  overflow: hidden;
}
.terms-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #f60525, #1e235c);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.4s;
}
.terms-item:hover::before {
  transform: scaleX(1);
}
.terms-item:hover {
  transform: translateY(-8px);
  border-left-width: 8px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.1);
}
.terms-item h3 {
  font-size: 28px;
  font-weight: 700;
  color: #1e235c;
  margin-bottom: 18px;
  transition: 0.35s;
}
.terms-item:hover h3 {
  color: #f60525;
}
.terms-item p {
  margin: 0;
  color: #666;
  line-height: 1.9;
  font-size: 16px;
}
/* Number Circle */
.terms-item h3::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-right: 15px;
  border-radius: 50%;
  background: rgba(246, 5, 37, 0.08);
  color: #f60525;
  font-size: 18px;
  font-weight: 700;
  transition: 0.4s;
}
.terms-item:hover h3::before {
  background: #f60525;
  color: #fff;
  transform: rotate(360deg);
}
/*============================== CTA ===============================*/
.terms-cta {
  padding: 90px 0;
  background: #fff;
}
.terms-cta-box {
  position: relative;
  overflow: hidden;
  padding: 70px 50px;
  text-align: center;
  border-radius: 24px;
  background: linear-gradient(135deg, #f60525, #1e235c);
  color: #fff;
}
.terms-cta-box::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -100px;
  left: -80px;
}
.terms-cta-box::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  bottom: -80px;
  right: -70px;
}
.terms-cta-box > * {
  position: relative;
  z-index: 2;
}
.terms-cta-box h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 18px;
}
.terms-cta-box p {
  max-width: 700px;
  margin: 0 auto 35px;
  font-size: 17px;
  line-height: 1.8;
  opacity: 0.95;
}
/*============================== Animation ===============================*/
.terms-item {
  animation: fadeUp 0.8s ease both;
}
.terms-item:nth-child(2) {
  animation-delay: 0.1s;
}
.terms-item:nth-child(3) {
  animation-delay: 0.2s;
}
.terms-item:nth-child(4) {
  animation-delay: 0.3s;
}
.terms-item:nth-child(5) {
  animation-delay: 0.4s;
}
.terms-item:nth-child(6) {
  animation-delay: 0.5s;
}
.terms-item:nth-child(7) {
  animation-delay: 0.6s;
}
.terms-item:nth-child(8) {
  animation-delay: 0.7s;
}
.terms-item:nth-child(9) {
  animation-delay: 0.8s;
}
.terms-item:nth-child(10) {
  animation-delay: 0.9s;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*============================== Responsive ===============================*/

.hero-btn {
  background: white;
  padding: 12px 50px;
  border-radius: 34px;
}

/* privacy policy pages css*/

/*================================================== PRIVACY POLICY ==================================================*/
.privacy-section {
  position: relative;
  padding: 100px 0;
  background: #f8faff;
  overflow: hidden;
}
.privacy-section::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  top: -120px;
  left: -120px;
  border-radius: 50%;
  background: rgba(246, 5, 37, 0.05);
  filter: blur(70px);
}
.privacy-section::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -100px;
  bottom: -100px;
  border-radius: 50%;
  background: rgba(30, 35, 92, 0.05);
  filter: blur(70px);
}
.privacy-wrapper {
  position: relative;
  z-index: 2;
}
.privacy-item {
  position: relative;
  background: #fff;
  padding: 35px 35px 35px 45px;
  margin-bottom: 28px;
  border-radius: 20px;
  border-left: 5px solid #f60525;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
  transition: 0.4s;
  overflow: hidden;
}
.privacy-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #f60525, #1e235c);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.4s;
}
.privacy-item:hover::before {
  transform: scaleX(1);
}
.privacy-item:hover {
  transform: translateY(-8px);
  border-left-width: 8px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.1);
}
.privacy-item h3 {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
  font-size: 28px;
  font-weight: 700;
  color: #1e235c;
  transition: 0.35s;
}
.privacy-item:hover h3 {
  color: #f60525;
}
.privacy-item h3::before {
  content: "🔒";
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(246, 5, 37, 0.08);
  font-size: 20px;
  transition: 0.4s;
}
.privacy-item:hover h3::before {
  background: #f60525;
  color: #fff;
  transform: rotate(360deg);
}
.privacy-item p {
  margin: 0;
  color: #666;
  font-size: 16px;
  line-height: 1.9;
}
/*================================= CTA SECTION ==================================*/
.privacy-cta {
  padding: 90px 0;
  background: #fff;
}
.privacy-cta-box {
  position: relative;
  overflow: hidden;
  padding: 70px 50px;
  border-radius: 24px;
  text-align: center;
  background: linear-gradient(135deg, #f60525, #1e235c);
  color: #fff;
}
.privacy-cta-box::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  top: -100px;
  left: -80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}
.privacy-cta-box::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  bottom: -70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
}
.privacy-cta-box > * {
  position: relative;
  z-index: 2;
}
.privacy-cta-box h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 18px;
}
.privacy-cta-box p {
  max-width: 700px;
  margin: 0 auto 35px;
  font-size: 17px;
  line-height: 1.8;
  opacity: 0.95;
}
/*================================= Animation ==================================*/
.privacy-item {
  animation: privacyFade 0.8s ease both;
}
.privacy-item:nth-child(2) {
  animation-delay: 0.1s;
}
.privacy-item:nth-child(3) {
  animation-delay: 0.2s;
}
.privacy-item:nth-child(4) {
  animation-delay: 0.3s;
}
.privacy-item:nth-child(5) {
  animation-delay: 0.4s;
}
.privacy-item:nth-child(6) {
  animation-delay: 0.5s;
}
.privacy-item:nth-child(7) {
  animation-delay: 0.6s;
}
.privacy-item:nth-child(8) {
  animation-delay: 0.7s;
}
.privacy-item:nth-child(9) {
  animation-delay: 0.8s;
}
.privacy-item:nth-child(10) {
  animation-delay: 0.9s;
}
@keyframes privacyFade {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*================================= Responsive ==================================*/
@media (max-width: 991px) {
  .about-hero {
    padding: 130px 0 100px;
    text-align: center;
  }
  .about-hero h1 {
    font-size: 42px;
  }
  .hero-img {
    margin-top: 40px;
    max-width: 330px;
  }
}
@media (max-width: 576px) {
  .about-hero h1 {
    font-size: 34px;
  }
}
@media (max-width: 991px) {
  .founder-title {
    font-size: 40px;
  }
  .founder-skills {
    grid-template-columns: 1fr;
  }
  .degree-badge {
    left: 15px;
    bottom: 20px;
  }
}
@media (max-width: 767px) {
  .founder-section {
    padding: 80px 0;
  }
  .founder-title {
    font-size: 32px;
  }
  .founder-position {
    font-size: 18px;
  }
  .founder-desc {
    font-size: 15px;
  }
  .degree-badge {
    padding: 12px 16px;
    font-size: 14px;
  }
}
@media (max-width: 992px) {
  .section-title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .section-title {
    font-size: 30px;
  }
  .why-card {
    padding: 22px;
  }
  .why-icon {
    width: 65px;
    height: 65px;
    font-size: 26px;
  }
  .why-card h4 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .mv-wrapper {
    flex-direction: column;
  }
  .reverse {
    flex-direction: row;
    text-align: left;
  }
  .mv-line {
    display: none;
  }
  .mv-number {
    left: 90px !important;
    right: auto !important;
  }
}
@media (max-width: 576px) {
  .mv-box {
    gap: 18px;
  }
  .mv-icon {
    width: 65px;
    height: 65px;
    font-size: 28px;
  }
  .mv-content h3 {
    font-size: 24px;
  }
  .mv-number {
    font-size: 55px;
    left: 70px !important;
  }
}
@media (max-width: 991px) {
  .process-line {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .line {
    display: none;
  }
  .process-step {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .process-line {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .step-circle {
    width: 65px;
    height: 65px;
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .company-stats {
    padding: 70px 0;
  }
  .stat-box {
    padding: 24px 18px;
  }
  .stat-box h2 {
    font-size: 32px;
  }
  .stat-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  .terms-section {
    padding: 80px 0;
  }
  .terms-item {
    padding: 30px;
  }
  .terms-item h3 {
    font-size: 24px;
  }
  .terms-cta-box {
    padding: 60px 35px;
  }
  .terms-cta-box h2 {
    font-size: 34px;
  }
}
@media (max-width: 767px) {
  .terms-item {
    padding: 25px;
  }
  .terms-item h3 {
    font-size: 21px;
    line-height: 1.4;
  }
  .terms-item h3::before {
    width: 36px;
    height: 36px;
    font-size: 15px;
    margin-right: 12px;
  }
  .terms-item p {
    font-size: 15px;
  }
  .terms-cta {
    padding: 70px 0;
  }
  .terms-cta-box {
    padding: 50px 25px;
  }
  .terms-cta-box h2 {
    font-size: 28px;
  }
  .terms-cta-box p {
    font-size: 15px;
  }
}
@media (max-width: 991px) {
  .privacy-section {
    padding: 80px 0;
  }
  .privacy-item {
    padding: 30px;
  }
  .privacy-item h3 {
    font-size: 24px;
  }
  .privacy-cta-box {
    padding: 60px 35px;
  }
  .privacy-cta-box h2 {
    font-size: 34px;
  }
}
@media (max-width: 767px) {
  .privacy-item {
    padding: 25px;
  }
  .privacy-item h3 {
    font-size: 21px;
    line-height: 1.4;
  }
  .privacy-item h3::before {
    width: 40px;
    height: 40px;
    font-size: 17px;
  }
  .privacy-item p {
    font-size: 15px;
  }
  .privacy-cta {
    padding: 70px 0;
  }
  .privacy-cta-box {
    padding: 50px 25px;
  }
  .privacy-cta-box h2 {
    font-size: 28px;
  }
  .privacy-cta-box p {
    font-size: 15px;
  }
}
