* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(135deg, #1B003A, #5C00F0, #00CBFF);
  color: white;
  font-family: 'Outfit', sans-serif;
}

/* Reuse existing container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Transparent Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  background-color: rgba(14, 12, 36, 0.4);
  /* semi-transparent */
  z-index: 10;
}

/* Logo style */
.logo {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

/* Navbar menu */
nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

nav ul li a:hover {
  color: #6c63ff;
  /* purple */
}

/* Button styles */
.btn {
  padding: 15px 30px;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  margin-left: 15px;
  display: inline-block;
}

.btn-dark {
  background-color: #2d2c47;
  color: #fff;
  border-radius: 50px;
  padding: 20px 40px;
}

/* Video background */
.video-background {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  z-index: -1;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero overlay content */
.hero-overlay {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  text-align: center;
  color: white;
  padding-top: 100px;
  /* push below navbar */
}

.hero-overlay h1,
.hero-overlay p {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.hero-overlay .buttons a {
  margin: 10px;
}

.video-background video {
  filter: blur(8px);
}

.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  /* adjust darkness */
  z-index: 1;
}

.hero {
  background-color: #0e0c24;
  padding: 60px 0;
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
}

.hero-content .text {
  flex: 1;
}

.hero-content h1 {
  font-size: 45px;
  margin-bottom: 20px;
  font-family: 'Outfit', sans-serif;
}

.hero-content h1 .highlight {
  color: #6c63ff;
}

.hero-content p {
  font-size: 16px;
  margin-bottom: 30px;
}

.hero-content .buttons .btn {
  margin-right: 10px;
}

.hero-image {
  flex: 1;
}

.hero-image img {
  max-width: 100%;
}

.trusted {
  padding: 40px 20px;
  background: linear-gradient(135deg, #1B003A, #5C00F0, #00CBFF);
  color: #fff;
  text-align: center;
  font-family: 'Outfit', sans-serif;
}

.trusted p {
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 30px;
}

.trusted .logos {
  display: flex;
  justify-content: space-between;
  /* spreads logos with equal space between */
  align-items: center;
  flex-wrap: nowrap;
  /* no wrapping, all logos in one row */
  gap: 20px;
  /* consistent gap between logos */
  max-width: 1200px;
  /* optional max width container */
  margin: 0 auto;
  /* center horizontally */
}

.trusted .logos img {
  max-height: 50px;
  /* limit logo height for uniformity */
  object-fit: contain;
  flex-shrink: 0;
  /* prevent shrinking */
}

.swiper {
  padding: 40px 0;
  max-width: 1200px;
  margin: auto;
  margin-top: 100px;
  margin-bottom: 100px;
}

.swiper-slide.card {
  position: relative;
  z-index: 1;
}

.swiper-slide.card {
  background: #1c1a34;
  padding: 40px 25px;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid transparent;

  height: 100%;
  /* Fill the height of swiper-slide */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  min-height: 250px;
  /* Set a consistent card height */
}


.swiper-slide.card img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.swiper-slide.card p {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.swiper-slide.card small {
  font-size: 0.95rem;
  color: #aaa;
}


.choose-img img {
  width: 350px;
  height: 240px;
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  object-fit: cover;
}

.choose-content {
  min-width: 260px;
  max-width: 470px;
}

.choose-content h3 {
  font-size: 1.7rem;
  color: #4f36e2;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.choose-icon {
  width: 32px;
  height: 32px;
}

.choose-content p {
  font-size: 1.05rem;
  color: #33394F;
  margin-bottom: 18px;
}

.choose-content .learn-more-btn {
  background: linear-gradient(90deg, #5AD8A6 30%, #5E72E4 100%);
  color: #fff;
  border: none;
  padding: 12px 36px;
  border-radius: 24px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(90, 216, 166, 0.12);
  transition: background 0.3s, transform 0.2s;
}

.choose-content .learn-more-btn:hover {
  background: linear-gradient(90deg, #5E72E4 30%, #5AD8A6 100%);
  transform: translateY(-2px) scale(1.04);
}

/* Responsive tweaks */
@media (max-width: 900px) {
  .choose-row, .choose-row.reverse {
    flex-direction: column !important;
    gap: 18px;
    align-items: flex-start;
  }
  .choose-img img {
    width: 98vw;
    height: auto;
    max-width: 98vw;
  }
}

.stand-out-section {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 0 20px;
}

.stand-out-title {
  color: #fff;
  font-size: 2.6rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.btn-schedule {
  display: inline-block;
  background: linear-gradient(90deg, #ffe259 0%, #ffa751 100%);
  color: #0f172a;
  padding: 14px 38px;
  border-radius: 32px;
  font-size: 1.1rem;
  font-weight: bold;
  box-shadow: 0 4px 18px rgba(255, 226, 89, 0.13);
  text-decoration: none;
  transition: background 0.3s, color 0.3s, transform 0.2s;
}

.btn-schedule:hover {
  background: linear-gradient(90deg, #ffa751 0%, #ffe259 100%);
  color: #1e293b;
  transform: scale(1.045);
}

.CEO-Section {
  margin-top: 18px;
  text-align: center;
  color: #a6b1e1;
  font-size: 1.06rem;
}

.ceo-attribution span {
  color: #6366f1;
  margin-left: 12px;
}

/* Responsive Styles */
@media (max-width: 700px) {
  .stand-out-title { font-size: 2rem; }
  .btn-schedule { width: 90vw; text-align: center; }
}


.footer {
  background-color: #1f1f1f;
  padding: 40px 40px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: auto;
  gap: 20px;
}

.footer-col {
  margin-top: 50px;
  flex: 1 1 100px;
}

.footer-col h4 {
  color: #473EAC;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col.about {
  flex: 2;
}

.footer-col.about p em {
  font-style: italic;
}

.icon {
  margin-right: 8px;
}

.footer-bottom {
  border-top: 1px solid #555;
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #ccc;
}

.footer-bottom a {
  color: #ccc;
  text-decoration: none;
}

/* Add to style.css */
/* About Page Styles */
.about-container {
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-title {
  font-size: 2.5rem;
  color: #00FFFF;
  margin-bottom: 30px;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #cbd5e1;
  margin-bottom: 40px;
}

/* Dark section background */
.contact-hero {
  padding: 100px 20px;
  background: linear-gradient(135deg, #1B003A, #5C00F0, #00CBFF);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Form card container */
.contact-wrapper {
  max-width: 600px;
  width: 100%;
  background-color: #1a1830;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
  text-align: center;
}

/* Heading styling */
.contact-heading {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
}

/* Form layout */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

/* Inputs, selects, and textarea styling */
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  font-family: 'Outfit', sans-serif;
  border: 1px solid #3b3972;
  border-radius: 8px;
  background-color: #2a2749;
  color: #ffffff;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #b3b3d1;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
  outline: none;
}

/* Textarea */
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

/* Submit button with brand gradient */
.btn.btn-purple {
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  background: linear-gradient(to right, #473EAC, #6366f1);
  color: #fff;
  border: none;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.btn.btn-purple:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}




@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}

.services-section {
  margin-top: 120px;
  text-align: center;
  background: linear-gradient(135deg, #1B003A, #5C00F0, #00CBFF);
  padding: 100px 0 80px 0;
  position: relative;
  overflow: hidden;
}

.bg-shape {
  position: absolute;
  top: -80px;
  right: -120px;
  width: 400px;
  height: 400px;
  opacity: 0.18;
  z-index: 0;
}

.services-section .container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 50px;
  letter-spacing: 1px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: center;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

.service-card {
  background: rgba(26, 24, 51, 0.7);
  backdrop-filter: blur(12px);
  border-radius: 32px;
  box-shadow: 0 12px 40px rgba(71, 62, 172, 0.22);
  padding: 54px 38px 38px 38px;
  width: 450px;
  min-height: 370px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s, border 0.4s;
  color: #fff;
  overflow: visible;
  text-align: left;
  text-decoration: none;
  border: 3px solid;
  border-image: linear-gradient(135deg, #473EAC 0%, #6d5dfc 100%);
  border-image-slice: 1;
}

.service-card.featured {
  border-width: 4px;
  border-image: linear-gradient(90deg, #ffb347, #473EAC, #6d5dfc);
  border-image-slice: 1;
  box-shadow: 0 20px 60px rgba(255, 179, 71, 0.15), 0 12px 40px rgba(71, 62, 172, 0.22);
  transform: scale(1.05);
}

.service-card:hover {
  transform: translateY(-12px) scale(1.04);
  box-shadow: 0 24px 64px rgba(71, 62, 172, 0.30);
  border-image: linear-gradient(135deg, #6d5dfc 0%, #ffb347 100%);
  border-image-slice: 1;
}

.icon-wrapper {
  background: #fff;
  color: #473EAC;
  border-radius: 50%;
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  position: absolute;
  top: -31px;
  left: 36px;
  box-shadow: 0 6px 20px rgba(71, 62, 172, 0.15);
  border: 4px solid #473EAC;
  transition: transform 0.3s;
}

.service-card:hover .icon-wrapper {
  transform: scale(1.12) rotate(-8deg);
}

.service-tag {
  display: inline-block;
  background: linear-gradient(90deg, #ffb347 0%, #473EAC 100%);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: 12px;
  padding: 3px 14px;
  position: absolute;
  top: 18px;
  right: 28px;
  box-shadow: 0 2px 10px rgba(71, 62, 172, 0.10);
}

.service-card h3 {
  margin-top: 44px;
  font-size: 1.72rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
  letter-spacing: 0.5px;
}

.service-card p {
  color: #e0e1e6;
  font-size: 1.10rem;
  line-height: 1.7;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .services-grid {
    flex-direction: column;
    gap: 36px;
    align-items: center;
  }

  .service-card {
    width: 100%;
    max-width: 430px;
  }
}

@media (max-width: 600px) {
  .services-section {
    padding: 48px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .service-card {
    padding: 32px 12px 20px 12px;
    min-height: 0;
  }

  .icon-wrapper {
    left: 14px;
  }
}


.about-section {
  width: 100vw;
  min-height: 100vh;
  background: linear-gradient(135deg, #1B003A, #5C00F0, #00CBFF);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.about-split {
  display: flex;
  width: 100%;
  max-width: 1200px;
  min-height: 600px;
  background: #18162a;
  border-radius: 40px;
  box-shadow: 0 10px 50px #473eac33;
  overflow: hidden;
}

.about-left,
.about-right {
  flex: 1 1 50%;
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-left {
  background: linear-gradient(135deg, #473EAC 0%, #1a1833 100%);
  color: #fff;
  align-items: flex-start;
  border-right: 1.5px solid #6d5dfc33;
  position: relative;
}

.about-brand-block {
  margin-bottom: 48px;
}

.about-logo-circle {
  width: 76px;
  height: 76px;
  background: linear-gradient(135deg, #ffb347 40%, #6d5dfc 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 28px;
  box-shadow: 0 4px 24px #ffb34744;
}

.about-main-title {
  font-size: 2.9rem;
  font-weight: 900;
  margin: 0 0 12px 0;
  letter-spacing: 1.2px;
}

.about-tagline {
  font-size: 1.3rem;
  color: #ffb347;
  font-weight: 600;
  margin-bottom: 0;
}

.about-key-points {
  list-style: none;
  padding: 0;
  margin: 40px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-key-points li {
  font-size: 1.13rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  padding: 12px 22px;
  border-radius: 14px;
  box-shadow: 0 2px 8px #473eac11;
  transition: background 0.2s;
}

.about-key-points li i {
  color: #ffb347;
  font-size: 1.2rem;
}

.about-key-points li:hover {
  background: #473eac33;
}

.about-right {
  background: #18162a;
  color: #e0e1e6;
  align-items: flex-start;
  position: relative;
}

.about-content {
  max-width: 440px;
}

.about-section-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: 0.7px;
}

.about-content p {
  font-size: 1.13rem;
  line-height: 1.8;
  margin-bottom: 22px;
}

.about-journey-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: #ffb347;
  margin-bottom: 8px;
  margin-top: 30px;
  letter-spacing: 0.5px;
}

.about-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 14px;
}

.about-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, #473EAC 0%, #ffb347 100%);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 16px;
  padding: 10px 18px;
  box-shadow: 0 2px 8px #473eac22;
  transition: background 0.2s;
}

.about-pill i {
  font-size: 1.1rem;
  color: #fff;
}

.about-pill:hover {
  background: linear-gradient(90deg, #ffb347 0%, #473EAC 100%);
}

@media (max-width: 950px) {
  .about-split {
    flex-direction: column;
    min-height: unset;
  }

  .about-left,
  .about-right {
    padding: 40px 22px;
  }

  .about-content {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .about-section {
    padding: 0;
  }

  .about-split {
    border-radius: 18px;
  }

  .about-left,
  .about-right {
    padding: 24px 8px;
  }

  .about-main-title {
    font-size: 1.5rem;
  }

  .about-logo-circle {
    width: 48px;
    height: 48px;
    font-size: 1.6rem;
  }

  .about-tagline {
    font-size: 0.9rem;
  }

  .about-section-title {
    font-size: 1.1rem;
  }
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.project-video-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.project-video-card video {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
  filter: blur(5px);
}

.project-video-card:hover video {
  transform: scale(1.05);
}

.project-video-card .overlay {
  position: absolute;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: white;
  width: 100%;
  padding: 1rem;
  transition: opacity 0.3s ease;
}

.OurWorks {
  text-align: center;
}

.challenge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.challenge-pair {
  flex: 1 1 45%;
  /* About half width per pair */
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 6px;
  border: 1px solid #ddd;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  min-width: 280px;
  /* Prevent shrinking too small */
}

.card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  width: 100%;
  height: 250px;
  /* Or whatever height you want */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  /* To put text at the bottom */
  color: white;
  padding: 1rem;
  box-sizing: border-box;
  background: black;
  /* fallback */
}

.card video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.card p,
.card small {
  position: relative;
  /* To be above video */
  z-index: 1;
  margin: 0;
}

.card p {
  font-weight: bold;
  font-size: 1.2rem;
}

.card small {
  font-size: 0.9rem;
  opacity: 0.85;
}


.slider-videos {
  padding: 60px 60px;
  background: linear-gradient(135deg, #1B003A, #5C00F0, #00CBFF);
  color: white;

}

.section-divider {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  /* light line */
  margin: 3rem auto;
  width: 80%;
  z-index: 2;
  position: relative;
}

.section-heading {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  margin-top: 4rem;
}

.our-works-video {
  padding-top: 110px;
  /* 80px for header + 30px spacing */
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.OurWorks {
  text-align: center;
  font-size: 50px;
  margin-bottom: 60px;
}

.work-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  margin-bottom: 80px;
}

.work-col.video video {
  width: 100%;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.work-col.text h3 {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 600;
}

.work-col.text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.work-col.text span {
  font-size: 14px;
  color: #C8B8E8;
  font-style: italic;
}

/* Responsive handling for smaller screens */
@media (max-width: 768px) {
  .work-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .work-col.text,
  .work-col.video {
    order: unset !important;
  }
}



.btn-grad {
  background-image: linear-gradient(to right, #fc00ff 0%, #00dbde 51%, #fc00ff 100%)
}

.btn-grad {
  margin: 10px;
  padding: 15px 45px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  border-radius: 10px;
  display: block;
}

.btn-grad:hover {
  background-position: right center;
  /* change the direction of the change here */
  color: #fff;
  text-decoration: none;
}

.content {
  padding-top: 110px;
  /* creates space below fixed header */
}

.btn-grad1 {
  margin: 10px;
  padding: 15px 30px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  margin-left: 15px;
  display: inline-block;
}


.btn-grad1 {
  background-image: linear-gradient(to right, #fc00ff 0%, #00dbde 51%, #fc00ff 100%)
}

.btn-grad1:hover {
  background-position: right center;
  /* change the direction of the change here */
  color: #fff;
  text-decoration: none;
}

.btn-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
  transform: scale(1.1);
}

.content1 {
  background: linear-gradient(135deg, #1B003A, #5C00F0, #00CBFF);
}

body {
  background: linear-gradient(135deg, #1B003A, #5C00F0, #00CBFF);
  color: white;
  font-family: 'Outfit', sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

main.content1 {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.services-offer {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 16px 40px 16px;
}

.section-heading {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 36px;
  letter-spacing: 1px;
  font-weight: 600;
  color: #b8aaff; /* soft lavender accent */
}

.services-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  padding: 0 0 40px 0;
  justify-items: center;
}

.service-card {
  background: rgba(15, 23, 42, 0.88);
  border-radius: 18px;
  box-shadow: 0 6px 24px 0 rgba(0, 0, 0, 0.18);
  padding: 32px 22px 30px 22px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  cursor: pointer;
  border: 1.5px solid rgba(92, 0, 240, 0.18);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 32px 0 rgba(0, 203, 255, 0.18);
  border-color: #00CBFF;
}

.service-icon {
  font-size: 2.5rem;
  color: #00CBFF;
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.service-card p {
  color: #c0e3ff;
  font-size: 1rem;
  margin: 0;
  flex-grow: 1;
}

.section-divider {
  border: none;
  border-top: 2px solid #00CBFF;
  margin: 40px auto 0 auto;
  width: 80%;
}

/* Why Choose Us Section */
.why-choose-us {
  max-width: 1100px;
  margin: 0 auto 0 auto;
  padding: 50px 16px 0 16px;
}

.choose-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 48px 0;
  gap: 36px;
  flex-wrap: wrap;
}
.choose-row.reverse {
  flex-direction: row-reverse;
}
@media (max-width: 800px) {
  .choose-row, .choose-row.reverse {
    flex-direction: column;
    text-align: center;
  }
  .choose-img img {
    width: 90vw;
    height: auto;
  }
}


.choose-img img {
  width: 260px;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0, 203, 255, 0.08);
  background: #1B003A;
}

.choose-content {
  flex: 1 1 300px;
}

.choose-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 600;
}

.choose-content p {
  color: #c0e3ff;
  margin-bottom: 14px;
}

.choose-content button{
  border: none;
}

.services-section {
  background-color: #0f172a;
  margin-top: 0;
  padding: 150px 0;
}

.stand-out-section {
  text-align: center;
  margin-bottom: 24px;
}

.stand-out-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #00CBFF;
}

.btn-yellow {
  background: #FFD600;
  color: #1B003A;
  border: none;
  border-radius: 8px;
  padding: 12px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
}

.btn-yellow:hover {
  background: #00CBFF;
  color: #fff;
}

.CEO-Section {
  text-align: center;
  margin-top: 16px;
  color: #c0e3ff;
  font-size: 1.1rem;
}

/* Responsive tweaks */
@media (max-width: 900px) {
  .choose-row {
    flex-direction: column;
    gap: 24px;
  }

  .choose-row.reverse {
    flex-direction: column;
  }

  .choose-img img {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 600px) {
  .section-heading {
    font-size: 2rem;
  }

  .why-choose-us {
    padding: 32px 8px 0 8px;
  }

  .services-offer {
    padding: 36px 8px 24px 8px;
  }
}

body {
  background: linear-gradient(135deg, #1B003A 0%, #5C00F0 55%, #00CBFF 100%);
  min-height: 100vh;
  font-family: 'Outfit', sans-serif;
  color: #fff;
  margin: 0;
  padding: 0;
}

.services-offer-slider {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 16px 60px 16px;
}


.swiper {
  width: 100%;
  padding-bottom: 48px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.cool-card {
  background: rgba(44, 19, 84, 0.82);
  border-radius: 28px;
  box-shadow: 0 8px 40px 0 #7B2FF255, 0 1.5px 8px 0 #1B003A99;
  backdrop-filter: blur(18px);
  border: 1.5px solid #5C00F0;
  text-align: center;
  padding: 52px 28px 40px 28px;
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
  position: relative;
  overflow: hidden;
  min-width: 290px;
  max-width: 320px;
  min-height: 340px;
  cursor: pointer;
  z-index: 1;
}

.cool-card::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -60px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, #7B2FF2 0%, #5C00F0 100%);
  opacity: 0.15;
  filter: blur(22px);
  z-index: 0;
}

.cool-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.2rem;
  width: 80px;
  height: 80px;
  margin: 0 auto 28px auto;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #5C00F0 0%, #7B2FF2 100%);
  box-shadow: 0 4px 18px 0 #5C00F055, 0 1px 8px #7B2FF233;
  animation: iconPulse 2.5s infinite alternate;
  z-index: 1;
  position: relative;
}

@keyframes iconPulse {
  0% {
    box-shadow: 0 4px 18px 0 #5C00F055, 0 1px 8px #7B2FF233;
  }

  100% {
    box-shadow: 0 8px 36px 0 #7B2FF299, 0 2px 16px #5C00F066;
  }
}

.cool-card h3 {
  font-size: 1.45rem;
  margin-bottom: 18px;
  font-weight: 700;
  letter-spacing: 0.7px;
  color: #fff;
  position: relative;
  z-index: 1;
}

.cool-card p {
  color: #e0d6ff;
  font-size: 1.12rem;
  margin: 0;
  position: relative;
  z-index: 1;
}

.section-divider {
  border: none;
  border-top: 2.5px solid #7B2FF2;
  margin: 56px auto 0 auto;
  width: 70%;
  opacity: 0.8;
}

/* Swiper navigation (optional) */
.swiper-button-next,
.swiper-button-prev {
  color: #7B2FF2;
  filter: drop-shadow(0 2px 8px #1B003A88);
}

/* Responsive */
@media (max-width: 800px) {
  .section-heading {
    font-size: 2.1rem;
  }

  .cool-card {
    padding: 32px 10px 22px 10px;
    min-width: 220px;
    min-height: 220px;
  }
}

.why-choose-us {
  padding: 70px 0;
  color: #fff;
  margin: 0 auto;
  max-width: 1200px;
}

.why-choose-us h2 {
  font-size: 2.8rem;
  margin-bottom: 24px;
  position: relative;
  color: #b8aaff; /* soft lavender accent */
  text-align: center;
  letter-spacing: 1px;
}

.why-choose-us h2::after {
  content: '';
  display: block;
  width: 75px;
  height: 5px;
  background: linear-gradient(90deg, #6C45C8 50%, #311B6B 100%);
  border-radius: 2px;
  margin: 18px auto 0;
}

.choose-row {
  display: flex;
  gap: 48px;
  margin-bottom: 90px;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow 0.3s;
  background: rgba(49, 27, 107, 0.12);
  border-radius: 28px;
  box-shadow: 0 10px 36px rgba(51,16,102,0.13);
  padding: 38px 26px;
}
.choose-row.reverse { flex-direction: row-reverse; }

.choose-img img {
  width: 420px;
  height: 270px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(76,45,200,0.11);
  transition: transform 0.3s cubic-bezier(.22,.68,.39,.97);
}
.choose-img img:hover {
  transform: scale(1.035) rotate(-1.5deg);
  box-shadow: 0 16px 40px rgba(104,75,200,0.17);
}

.choose-content {
  max-width: 520px;
}

.choose-content h3 {
  font-size: 2rem;
  color: #b8aaff; /* soft lavender accent */
  margin-bottom: 14px;
  font-weight: bold;
}

.choose-content p {
  font-size: 1.13rem;
  color: #e0e2f5;
  line-height: 1.6;
  margin-bottom: 22px;
}

.section-divider {
  border: none;
  border-top: 2px solid #1e133d;
  margin: 42px 0 0 0;
}

/* Responsive for mobile/tablet */
@media (max-width: 1050px) {
  .choose-row { flex-direction: column; gap: 24px; margin-bottom: 65px; }
  .choose-row.reverse { flex-direction: column; }
  .choose-img img { width: 97vw; max-width: 500px; height: auto; }
}

.why-choose-us {
  max-width: 960px;
  margin: 0 auto 50px;
  padding: 54px 24px 38px 24px;
  background: none;
  color: #f4f3fa;
}

.why-choose-us h2 {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 16px;
  color: #b8aaff;
  letter-spacing: 1px;
  position: relative;
}

.why-choose-us h2::after {
  content: '';
  display: block;
  width: 58px;
  height: 4px;
  background: linear-gradient(90deg, #6C45C8 60%, #311B6B 100%);
  border-radius: 2px;
  margin: 14px auto 0;
}

.catchy-phrase {
  margin: 22px auto 36px auto;
  max-width: 600px;
  background: linear-gradient(90deg, #321e63 30%, #473eac 100%);
  border-left: 6px solid #6c45c8;
  font-size: 1.17rem;
  color: #e4e1f4;
  padding: 20px 32px;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(58,48,111,0.13);
  text-align: center;
  font-style: italic;
}

.nexaio-advantage-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px 32px;
  margin-bottom: 38px;
}

@media (max-width: 800px) {
  .nexaio-advantage-list { grid-template-columns: 1fr; gap: 26px 0; }
}

.advantage-block h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #6c45c8;
  font-weight: 700;
}

.advantage-block ul {
  padding-left: 22px;
  color: #e0e2f5;
  margin: 0 0 8px 0;
  line-height: 1.6;
}

.why-choose-details {
  background: rgba(40,28,61,0.18);
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(49,27,107,0.09);
  padding: 28px 24px 16px 24px;
  max-width: 660px;
  margin: 50px auto;
  text-align: left;
}

.why-choose-details h4 {
  font-size: 1.2rem;
  color: #b8aaff;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.why-choose-details ul {
  margin-left: 0;
  margin-bottom: 14px;
  color: #eedbff;
  font-size: 1.03rem;
  padding-left: 18px;
  line-height: 1.7;
}

.why-choose-details li strong {
  color: #c2a2f8;
  font-weight: 600;
}

.cta-text {
  font-size: 1.06rem;
  color: #ffe766;
  margin-top: 12px;
  font-weight: 500;
}

/* Adapt text/responsive adjustments */
@media (max-width: 520px) {
  .why-choose-us { padding: 24px 6vw; }
  .why-choose-details { padding: 18px 8px 12px 8px; }
  .catchy-phrase { padding: 14px 7px; font-size: 1.07rem; }
}

.content1,
.why-choose-us,
.why-choose-details {
  margin-bottom: 0;
  padding-bottom: 0;
}

.why-choose-details{
  padding: 50px;
}

.highlight .letter {
  opacity: 1;
  display: inline-block;
  transition: opacity 0.35s ease-in-out;
}
.highlight .letter.hidden {
  opacity: 0;
}






