.about-section {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 60px 30px;
  margin: 80px auto;
  max-width: 1300px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
  color: #e2e8f0;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.about-text {
  flex: 1 1 55%;
}

.about-text h1{
  font-size: 2.5rem;
  /* color: #ffffff; */
  background: linear-gradient(90deg, #38bdf8, #6366f1);
      -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.about-text h2 span {
  background: linear-gradient(90deg, #38bdf8, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #cbd5e1;
  margin-bottom: 18px;
}

.about-logo-wrapper {
  flex: 1 1 35%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-logo {
  height: 140px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .about-text {
    flex: 1 1 100%;
  }

  .about-logo {
    height: 100px;
    margin-bottom: 20px;
  }
}




/* who we are  */
.who-we-are-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 50px;
  background: linear-gradient(to right, #0b0b1f, #1a1a2e);
  color: #fff;
  gap: 40px;
  flex-wrap: wrap;
  overflow: hidden;
}

.who-logo {
  flex: 1;
  min-width: 250px;
  animation: slideInLeft 1.5s ease-out;
  display: flex;
  justify-content: center;
}

.who-logo img {
  max-width: 300px;
  width: 100%;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 0 15px rgba(0, 224, 255, 0.4));
  opacity: 0.7;
}

.who-content {
  flex: 1.2;
  min-width: 300px;
  animation: fadeInRight 1.5s ease-out;
}

.who-content h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #38bdf8, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.who-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #cbd5e1;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeInRight {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .who-we-are-section {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
  }

  .who-content h2 {
    font-size: 2.2rem;
  }

  .who-content p {
    font-size: 1rem;
  }
}

/* our global reach  */

.global-reach-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px 20px;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to right, #0b0b1f, #1a1a2e);
  color: white;
}

.reach-content {
  flex: 1;
  min-width: 300px;
  margin-left: 10px;
}

.reach-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #00d4ff, #ff6b9d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* For Firefox */
  background-clip: text;
  color: transparent;
}

.reach-content .intro {
  font-size: 1.1rem;
  color: #cbd5e1;
  margin-bottom: 30px;
}

.reach-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.reach-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px;
  border-radius: 12px;
  transition: transform 0.3s ease, background 0.3s ease;
  cursor: pointer;
}

.reach-card:hover {
  transform: scale(1.03);
  background: rgba(0, 188, 212, 0.1);
}

.reach-card h3 {
  margin-bottom: 5px;
  color: #38bdf8;
}

.reach-map {
  flex: 1;
  position: relative;
  min-width: 320px;
  max-width: 500px;
  animation: fadeIn 1.5s ease;
}

.reach-map img {
  width: 100%;
  height: auto;
  opacity: 0.9;
  border-radius: 20px;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 0 15px rgba(0, 224, 255, 0.4));
}

.pin {
  position: absolute;
  font-size: 24px;
  color: #00bcd4;
  animation: bounce 2s infinite ease-in-out;
}

.pin.india {
  top: 54%;
  left: 68%;
}

.pin.usa {
  top: 38%;
  left: 22%;
}

.pin.europe {
  top: 30%;
  left: 48%;
}

.pin.aus {
  top: 75%;
  left: 80%;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* what we do  */

.whatwedo-section {
  padding: 60px 20px;
  text-align: center;
  overflow: hidden;
}

.whatwedo-title {
  font-size: 2.8rem;
  /* color: #00bcd4; */
  margin-bottom: 10px;
  background: linear-gradient(90deg, #38bdf8, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.whatwedo-subtitle {
  color: #cbd5e1;
  font-size: 1.2rem;
  margin-bottom: 40px;
}

/* Marquee Animation */
.marquee-container {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 30px;
  animation: scroll-left 35s linear infinite;
  width: max-content;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.whatwedo-card {
  flex: 0 0 300px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px 20px;
  text-align: left;
  transition: transform 0.4s ease, background 0.4s ease;
}

.whatwedo-card:hover {
  background: rgba(0, 188, 212, 0.08);
  transform: scale(0.96) rotateX(5deg);
  box-shadow: 0 8px 20px rgba(0, 188, 212, 0.15);
}

.whatwedo-card h3 {
  color: #38bdf8;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.whatwedo-card ul {
  list-style: none;
  padding-left: 0;
}

.whatwedo-card ul li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  color: #e0f2f1;
  font-size: 0.95rem;
}

.whatwedo-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #00bcd4;
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
  .whatwedo-card {
    flex: 0 0 250px;
  }
}

/* who we work with  */

.whowework-section {
  padding: 70px 20px;
  background: linear-gradient(135deg, #0b0b1f, #111132);
  text-align: center;
  color: #e0f2f1;
  font-family: "Inter", sans-serif;
}

.whowework-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #38bdf8, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.whowework-subtitle {
  font-size: 1.15rem;
  color: #cbd5e1;
  max-width: 700px;
  margin: 0 auto 40px auto;
}

.whowework-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.client-type {
  padding: 18px 25px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  font-size: 1.05rem;
  min-width: 200px;
  transition: transform 0.3s ease, background 0.3s ease;
  color: #fff;
  font-weight: 500;
}

.client-type:hover {
  background: rgba(0, 188, 212, 0.1);
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 6px 20px rgba(0, 188, 212, 0.1);
}

.whowework-footer {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #a3b5cc;
}

@media (max-width: 768px) {
  .client-type {
    min-width: 45%;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .client-type {
    min-width: 100%;
  }

  .whowework-title {
    font-size: 2rem;
  }
}

/* our team section  */

.codexae-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.codexae-team-section {
  padding: 6rem 0;
  position: relative;
}

.codexae-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(45deg, #ffffff, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.codexae-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.codexae-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  transform: translateY(30px);
  opacity: 0;
}

.codexae-card.visible {
  transform: translateY(0);
  opacity: 1;
}

.codexae-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(124, 58, 237, 0.15);
  border-color: rgba(0, 212, 255, 0.3);
}

.codexae-avatar {
  width: 100px;
  height: 100px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  border: 4px solid transparent;
  background-image: linear-gradient(#0f0f23, #0f0f23),
    linear-gradient(45deg, #00d4ff, #7c3aed);
  background-origin: border-box;
  background-clip: content-box, border-box;
  animation: codexae-glow 3s infinite linear;
}

.codexae-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

@keyframes codexae-glow {
  0% {
    box-shadow: 0 0 0px #00d4ff;
  }
  50% {
    box-shadow: 0 0 15px #7c3aed;
  }
  100% {
    box-shadow: 0 0 0px #00d4ff;
  }
}

.codexae-card p {
  margin-top: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
}

.codexae-role {
  font-size: 0.9rem;
  color: #00d4ff;
  margin-bottom: 1rem;
}

.codexae-card p {
  color: white;
  font-size: 1rem;
  opacity: 0.8;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .codexae-team-grid {
    grid-template-columns: 1fr;
  }

  .codexae-title {
    font-size: 2rem;
  }
}


/* why choose Us  */

/* in contact us why  choose codeaxe  */

.why-contact {
  max-width: 1200px;
  margin: 100px auto 60px;
  padding: 20px;
  text-align: center;
  font-family: "Inter", sans-serif;
  color: #fff;
}

.why-contact h2 {
  font-size: 36px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #38bdf8, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInDown 0.8s ease-out forwards;
}

.why-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.why-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border-radius: 16px;
  padding: 30px 25px;
  width: 300px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  box-shadow: 0 0 0 transparent;
  animation: fadeInUp 1s ease forwards;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(138, 94, 255, 0.6);
  border-color: rgba(138, 94, 255, 0.4);
}

.why-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #fff;
}

.why-card p {
  font-size: 15px;
  color: #ccc;
  line-height: 1.5;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .why-card {
    width: 100%;
  }

  .why-contact h2 {
    font-size: 28px;
  }
}
.contact-wrapper {
  margin-top: 100px;
}
@media (max-width: 768px) {
  .contact-image iframe {
    height: 300px; /* or any value like 250px */
  }
}


/* our work precess   */

.process-section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: auto;
}

.process-heading {
  text-align: center;
  font-size: 2.8rem;
  background: linear-gradient(45deg, #00f2fe, #4facfe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 2.5rem;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.process-step {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #4facfe;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.process-step.visible {
  opacity: 1;
  transform: translateY(0);
}

.step-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: #4facfe;
  margin-bottom: 0.5rem;
}

.step-title {
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.step-desc {
  color: wheat;
  font-size: 1rem;
  opacity: 0.85;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .process-heading {
    font-size: 2rem;
  }

  .process-step {
    padding: 1.2rem 1.5rem;
  }
}

/* form contact us  */
