 body {
      margin: 0;
      font-family: 'Poppins', sans-serif;
      background:#021331;
      color: #fff;
      
    }
    /* Navbar Base */
.navbar {
  height: 50px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2.5rem;
  background: rgba(5, 10, 25, 0.4);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
  box-shadow: 0 0 30px rgba(0, 170, 255, 0.05);
}

/* Navbar Scroll Effect */
.navbar.scrolled {
  background: rgba(10, 20, 40, 0.85);
  box-shadow: 0 0 25px rgba(0, 170, 255, 0.15);
  backdrop-filter: blur(22px);
}
 
/* Logo */
.logo img{
height: 60px;
}


/* Links */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-right: 50px;
}

.nav-links li {
  position: relative;
}

.nav-links li a {
  color: #e2e8f0;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.97rem;
  transition: 0.3s ease;
  position: relative;
}

/* Hover Glow Line */
.nav-links li a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #00aaff, #0088ff);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-links li a:hover {
  color: #00aaff;
  text-shadow: 0 0 10px rgba(0, 170, 255, 0.5);
}

.nav-links li a:hover::after {
  width: 100%;
}

/* Get a Free Quote Button */
.quote-btn {
  background: linear-gradient(135deg, #0088ff, #00d4ff);
  color: #fff;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(0, 170, 255, 0.3);
  transition: all 0.3s ease;
  margin-right: 50px;
}

.quote-btn:hover {
  background: linear-gradient(135deg, #00c6ff, #0077ff);
  box-shadow: 0 0 40px rgba(0, 170, 255, 0.6);
  transform: translateY(-2px);
}
/* ===== HERO SLIDER ===== */

/* HERO SLIDER */
/* PAGINATION CONTAINER */
.hero-pagination {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
  z-index: 20;
}

/* DOT STYLE */
.hero-pagination .dot {
  width: 34px;
  height: 4px;
  background: rgba(255,255,255,0.35);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.4s ease;
}

/* ACTIVE DOT */
.hero-pagination .dot.active {
  background: #0074bc; /* luxury accent */
  width: 46px;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 90vh;
  margin-top: 80px;
  overflow: hidden; /* CRITICAL */
}

.hero-track {
  display: flex;
  height: 100%;
  transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
}

.hero-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

/* VIDEO */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.55)
  );
  z-index: -1;
}
/* CENTER CONTENT (SLIDE 1) */
.hero-content.center {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}


/* LEFT CONTENT (SLIDE 2) */
.hero-content.left {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  margin-left: 40px;
}

/* TYPOGRAPHY */
.hero h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.2;
  font-weight: 700;
  max-width: 900px;
  margin-bottom: 15px;
}

.hero p {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  max-width: 700px;
  margin-bottom: 2.2rem;
  line-height: 1.5;
  opacity: 0.9;
}


/* LUXURY HERO BUTTON */
.hero-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 44px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  letter-spacing: 0.5px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.45s ease;
}

/* OUTLINE STYLE */
.hero-btn.outline {
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(6px);
  box-shadow:
    inset 0 0 0 rgba(255,255,255,0),
    0 0 0 rgba(255,255,255,0);
}

/* SHIMMER EFFECT */
.hero-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.45),
    transparent
  );
  transition: all 0.6s ease;
}

/* HOVER STATE */
.hero-btn:hover {
  transform: translateY(-4px);
  box-shadow:
    0 10px 30px rgba(255,255,255,0.15),
    0 0 25px rgba(0,170,255,0.35);
}

/* SHIMMER MOVE */
.hero-btn:hover::before {
  left: 120%;
}

/* TEXT COLOR ON HOVER */
.hero-btn.outline:hover {
  color: #ffffff;
  border-color: rgba(255,255,255,1);
}

/* ACTIVE CLICK */
.hero-btn:active {
  transform: translateY(-1px);
}


/* LUXURY ANIMATION */
.animate h2,
.animate p,
.animate .hero-btn {
  opacity: 0;
}

.hero-slide.active .animate h2 {
  animation: slideFade 1s ease forwards 0.3s;
}

.hero-slide.active .animate p {
  animation: slideFade 1s ease forwards 0.6s;
}

.hero-slide.active .animate .hero-btn {
  animation: slideFade 1s ease forwards 0.9s;
}

@keyframes slideFade {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE  for header*/
@media (max-width: 1599px) and (min-width: 1200px) {
  .hero h2 {
    font-size: 3.5rem;
  }
}
@media (max-width: 1199px) {
  .hero-slider {
    height: 85vh;
  }

  .hero-content {
    padding: 0 30px;
  }

  .hero-content.left {
    margin-left: 0;
    align-items: flex-start;
  }

  .hero h2 {
    font-size: 3.5rem;
    max-width: 900px;
  }

  .hero p {
    font-size: 2.2rem;
    max-width: 850px;
  }

  .hero-btn {
    padding: 12px 32px;
  }
}
@media (max-width: 768px) {
  .hero-slider {
    height: 82vh;
  }

  /* BOTH SLIDES CENTERED */
  .hero-content.center{
    align-items: center;
    text-align: center;
  }
  .hero-content.left {
    align-items: left;
    text-align: left;
  }

  .hero h2 {
    font-size: 3rem;
    line-height: 1.25;
    max-width: 100%;
  }

  .hero p {
    font-size: 1.6rem;
    max-width: 100%;
    margin-bottom: 1.8rem;
  }

  .hero-btn {
    padding: 11px 28px;
    font-size: 0.95rem;
  }

  .slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .hero-slider {
    height: 78vh;
  }

  .hero-content {
    padding: 0 18px;
  }
  .hero h2 {
    font-size: 2.4rem;
    max-width: 480px;
  }
 
  .hero p {
    font-size: 1.4rem;
  }

  .hero-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
  }

  .slider-arrow {
    width: 32px;
    height: 32px;
  }
}
@media (max-width: 400px) {
  .hero h2 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 0.9rem;
  }
}




    /*tecnology we use section css  */
    /* Technologies We Use Section - Exora Dev */
/* Technologies We Use Section - Exora Dev */

/* ===== Technologies Section ===== */
.technologies {
  position: relative;
  padding: 7rem 3rem;
  background:
    radial-gradient(circle at top, rgba(0, 140, 255, 0.15), transparent 50%),
    linear-gradient(180deg, #050b1d, #000814);
  overflow: hidden;
  text-align: center;
}

.tech-header h2 {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  -webkit-text-fill-color: black;
  margin-bottom: 1.2rem;
}

.tech-header p {
  max-width: 760px;
  margin: 0 auto 4rem;
  font-size: 1.1rem;
  color: #bcd6ff;
  line-height: 1.7;
}

/* ===== Infinite Slider ===== */
.tech-slider {
  display: flex;
  width: max-content;
  animation: scroll 35s linear infinite;
}

.tech-slider:hover {
  animation-play-state: paused;
}

.tech-logos {
  display: flex;
  align-items: center;
  gap: 4.5rem;
  padding: 1rem 2rem;
}

/* ===== Tech Cards ===== */
.tech-logos img {
  height: 60px;
  opacity: 0.85;
  transition: all 0.4s ease;
  animation: float 5s ease-in-out infinite;
  filter: drop-shadow(0 0 18px rgba(0, 170, 255, 0.9));
}

.tech-logos img:hover {
  opacity: 1;
  transform: scale(1.25);
  
}

/* ===== Animations ===== */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}

/* ===== Edge Fade (Premium Touch) ===== */
.technologies::before,
.technologies::after {
  content: "";
  position: absolute;
  top: 0;
  width: 180px;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

.technologies::before {
  left: 0;
  background: linear-gradient(to right, #000814 40%, transparent);
}

.technologies::after {
  right: 0;
  background: linear-gradient(to left, #000814 40%, transparent);
}


/* how we work section css */
.exora-how-we-work {
  background: radial-gradient(circle at top, rgb(26, 134, 211), #ffffff 60%);
  color: #fff;
  padding: 120px 40px;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}

.containar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* LEFT SIDE */
.left-content {
  flex: 1;
  min-width: 320px;
}

.section-tag {
  display: inline-block;
  background: rgba(0, 170, 255, 0.1);
  color: #00aaff;
  padding: 6px 16px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.left-content h2 {
  font-size: 2.4rem;
  margin: 20px 0 20px;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.3;
}

.left-content h2 span {
  color: #00aaff;
  text-shadow: 0 0 15px rgba(0, 170, 255, 0.6);
}

.left-content p {
  color: #102547;
  line-height: 1.7;
  margin-bottom: 30px;
  font-size: 1rem;
}

.exora-btn {
  background: linear-gradient(135deg, #0077ff, #00c3ff);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: 0 0 20px rgba(0, 170, 255, 0.4);
}

.exora-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 35px rgba(0, 170, 255, 0.7);
}

.accordion {
  margin-top: 40px;
  list-style: none;
  padding: 0;
}

.accordion li {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #102547;
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.accordion li:hover {
  color: #00aaff;
}

/* RIGHT SIDE */
.right-cards {
  flex: 1;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.work-card {
  background: linear-gradient(145deg, #0b1625, #101a2b);
  border-radius: 18px;
  padding: 30px 25px;
  box-shadow: 0 10px 30px rgba(0, 170, 255, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.work-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(0,170,255,0.2), rgba(0,170,255,0));
  transform: skewX(-15deg);
  transition: left 1s ease;
}

.work-card:hover::before {
  left: 100%;
}

.work-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 170, 255, 0.25);
}

.work-card .icon {
  background: rgba(0,170,255,0.1);
  color: #00aaff;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.4rem;
  margin-bottom: 15px;
  box-shadow: 0 0 25px rgba(0, 170, 255, 0.3);
}

.work-card h3 {
  font-size: 1.2rem;
  color: #4db5ff;
  margin-bottom: 8px;
}

.work-card p {
  color: #cde1f9;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 950px) {
  .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .accordion li {
    text-align: center;
  }

  .work-card {
    text-align: center;
  }

  .work-card .icon {
    margin: 0 auto 15px;
  }
}


    /* Services */
    .services {
  padding: 5rem 2rem;
  text-align: center;
  background:#fff;
}
.services h2 {
  font-size: 3.5rem;
  margin-bottom: 3rem;
  color: #001842;
  font-weight: bold;
}
.service-vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.service-card-vertical {
  width: 80%;
  height: 40vh;
  background:linear-gradient(#000 ,#0d5ba3,#000);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card-vertical:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(77, 181, 255, 0.4);
}
.service-content {
  max-width: 65%;
  text-align: left;
}
.service-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #fff;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.tags span {
  border: 1px solid #90caf9;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #90caf9;
  transition: background 0.3s, color 0.3s;
}
.tags span:hover {
  background: #90caf9;
  color: #0a0a0a;
}
.service-content p {
  margin-bottom: 1rem;
  color: #ccc;
  font-size: 1rem;
}
.service-content a {
  display: inline-block;
  background: #1976d2;
  color: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s;
}
.service-content a:hover {
  background: #0d47a1;
}
.service-image {
  width: 32%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-image img {
  max-width: 100%;
  border-radius: 15px;
  transition: 0.7s;
}
.service-image img:hover{
  transform: scale(1.1);
}
    /* Animations */
    @keyframes fadeInDown {
      from { opacity: 0; transform: translateY(-30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }


    /* industies we serve css */
.industries-section {
  padding: 120px 6%;
  background: #ffffff;
}

.industries-container {
  max-width: 1300px;
  margin: auto;
}

.industries-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 90px;
  color: #0f172a;
}

/* GRID */
.industries-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}

/* ITEM */
.industry-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 0;
  border-bottom: 1px solid #e5e7eb;
  position: relative;
  transition: all 0.4s ease;

}

/* ICON */
.industry-item i {
  font-size: 1.5rem;
  color: #0ea5e9;
  min-width: 28px;
  transition: all 0.4s ease;
}

/* TEXT */
.industry-item h3 {
  width: 100%;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  transition: all 0.4s ease;
}

/* BLUE GRADIENT HOVER LINE */
.industry-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #2563eb, #0ea5e9);
  transition: width 0.4s ease;
}

.industry-item:hover::after {
  width: 100%;
}

.industry-item:hover i {
  color: #2563eb;
  transform: scale(1.15);
}

.industry-item:hover h3 {
  color: #2563eb;
  padding-left: 6px;
}

/* CTA */
.industry-cta {
  display: flex;
  justify-content: center;
  margin-top: 90px;
}

.industries-btn {
  padding: 18px 44px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  color: #fff;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.25);
  transition: all 0.4s ease;
}

.industries-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(14, 165, 233, 0.35);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .industries-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .industries-title {
    font-size: 2.4rem;
  }
}
/* Expandable Header */
.industry-header {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  cursor: pointer;
}

.expand-icon {
  margin-left: auto;
  font-size: 1.4rem;
  font-weight: 600;
  color: #0ea5e9;
  transition: transform 0.3s ease;
}

/* Content Hidden by Default */
.industry-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}

.industry-content p {
  margin-top: 18px;
  padding-left: 46px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #475569;
}

/* Active State */
.industry-item.active .industry-content {
  max-height: 160px;
  opacity: 1;
}

.industry-item.active .expand-icon {
  transform: rotate(45deg);
  color: #2563eb;
}

  
/* why choose exora dev  */
/* WHY EXORA */
.why-exora {
  background: linear-gradient(180deg, #f7fbff, #eef5ff);
  padding: 60px 20px;
}

.why-wrapper {
  max-width: 1350px;
  margin: auto;
}

/* HEADER */
.why-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.badge {
  display: inline-block;
  background: rgba(10,116,218,0.1);
  color: #0a74da;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.why-header h2 {
  font-size: clamp(2.1rem, 4vw, 3rem);
  font-weight: 800;
  color: #071a2b;
  margin-bottom: 14px;
}

.why-header p {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.6;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* FEATURES */
.why-features .feature {
  display: flex;
  gap: 18px;
  margin-bottom: 32px;
}

.dot {
  width: 10px;
  height: 10px;
  background: #0a74da;
  border-radius: 50%;
  margin-top: 8px;
}

.feature h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #071a2b;
  margin-bottom: 6px;
}

.feature p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.5;
}

/* CARDS */
.why-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.tech-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 34px;
  box-shadow: 0 30px 70px rgba(7,26,43,0.08);
  transition: all 0.45s ease;
  border-top: 4px solid #0a74da;
}

.tech-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 90px rgba(7,26,43,0.12);
}

.tech-card .icon {
  font-size: 2.2rem;
  margin-bottom: 18px;
}

.tech-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #071a2b;
  margin-bottom: 10px;
}

.tech-card p {
  font-size: 0.95rem;
  color: #475569;
  margin-bottom: 18px;
  line-height: 1.6;
}

.tech-card a {
  font-size: 0.9rem;
  font-weight: 600;
  color: #0a74da;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .why-exora {
    padding: 80px 16px;
  }

  .why-header {
    margin-bottom: 60px;
  }
}



/* what our client says css */

/*  stats exora dev for counter animation css */
/* SECTION BASE */
.exora-stats {
  width: 100%;
  padding: 100px 0;
  background: radial-gradient(circle at top, rgb(2, 83, 149), #000000 60%);
  font-family: "Poppins", sans-serif;
  color: #fff;
}

/* WRAPPER */
.exora-wrapper {
  width: 90%;
  margin: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
}

/* LEFT TEXT */
.taglin {
  color: #00aaff;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 15px;
  font-size: 14px;
}

.headline {
  font-size: 55px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
}

.desc {
  max-width: 550px;
  color: #cccccc;
  font-size: 17px;
  margin-bottom: 20px;
  line-height: 1.8;
}

/* CTA BUTTON */
.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #0088ff, #00d4ff);
  padding: 16px 40px;
  margin-top: 15px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 18px;
  color: #ffffff;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}
.cta-btn:hover {
  background: linear-gradient(300deg, #0088ff, #00d4ff);
  transform: translateY(-4px);
}

/* RIGHT STATS */
.exora-right {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 35px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: 0.3s;
  box-shadow: 0 0 15px rgba(18, 119, 197, 0.2);
}

.stat-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(18, 148, 241, 0.4);
}

.stat-box h2 {
  font-size: 40px;
  color: #6fb7ff;
  margin-bottom: 10px;
}

.stat-box p {
  font-size: 18px;
  color: #e0e0e0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .exora-wrapper {
    flex-direction: column;
  }

  .headline {
    font-size: 40px;
  }

  .exora-right {
    grid-template-columns: 1fr;
  }
}
/* our partnership section */
/* PARTNERS SECTION */
.partners-section {
  background: #ffffff;
  padding: 120px 20px;
}

.partners-wrapper {
  max-width: 1400px;
  margin: auto;
}

/* TITLE */
.partners-title {
  text-align: center;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 80px;
}

/* GRID */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 2px solid #1da1f2; /* Exora Blue */
}

/* CARD */
.partner-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 40px;
  border-right: 2px solid #1da1f2;
  transition: all 0.4s ease;
}

.partner-card:last-child {
  border-right: none;
}

/* LOGOS */
.partner-card img {
  max-width: 260px;
  width: 100%;
  opacity: 0.85;
  filter: grayscale(100%);
  transition: all 0.4s ease;
}

/* HOVER EFFECT */
.partner-card:hover img {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .partners-grid {
    grid-template-columns: 1fr;
  }

  .partner-card {
    border-right: none;
    border-bottom: 2px solid #1da1f2;
    padding: 60px 30px;
  }

  .partner-card:last-child {
    border-bottom: none;
  }
}

@media (max-width: 576px) {
  .partners-section {
    padding: 90px 16px;
  }

  .partner-card img {
    max-width: 200px;
  }
}


/* exora dev fags section css */
.exora-faq {
  background: radial-gradient(circle at top, #021331 0%, var(--bg-dark) 100%);
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: #00c8ff;
  text-shadow: 0 0 15px rgba(0, 200, 255, 0.4);
  position: relative;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
  text-align: left;
}

.faq-question {
  cursor: pointer;
  padding: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.faq-question span {
  color: #00c8ff;
  font-weight: 700;
  font-size: 1.2rem;
  margin-right: 15px;
  background: rgba(0, 200, 255, 0.15);
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.3s;
}

.faq-question:hover span {
  background: linear-gradient(90deg, #00c8ff, #0077ff);
  box-shadow: 0 0 10px rgba(0, 200, 255, 0.6);
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
  color: #b3c5d7;
  line-height: 1.7;
  font-size: 1rem;
  animation: fadeIn 0.4s ease-in-out;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question {
  background: linear-gradient(90deg, rgba(0, 200, 255, 0.1), rgba(0, 119, 255, 0.15));
  box-shadow: 0 0 20px rgba(0, 200, 255, 0.2);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}


    /* Footer */
    footer {
      background: linear-gradient(100deg, #000710, #3f8ad4);;
      padding: 0.5rem;
      text-align: center;
      color: #fff;
    }
    /* CONTACT US */
    .contact-section {
  position: relative;
  padding: 2rem 2rem;
  background:  linear-gradient(100deg, #000000, #011841);
  text-align: center;
}
.contact-overlay {
  background:linear-gradient(180deg, #cfe1de, #0d2955, #000000);
  padding: 3rem;
  border-radius: 15px;
  margin-bottom: 3rem;
}
.contact-heading h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.contact-heading p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  color: #ccc;
}
/* contact info contanier */
/* Form */
/* SECTION WRAPPER */
.exora-contact {
  background: radial-gradient(circle at top, #021331 0%, var(--bg-dark) 100%);
  max-width: 1200px;
  margin: 4rem auto;
  display: flex;
  gap: 3rem;
  padding: 2rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* LEFT SIDE INFO */
.contact-left {
  flex: 1;
  padding: 2rem;
  background: rgba(255,255,255,0.04);
  border-radius: 20px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.55);
}
.contact-logo{
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
.contact-logo img{
  height: 60px;
}

.tagline {
  font-size: 1.2rem;
  color: #e1efff;
  margin-top: 5px;
  margin-bottom: 1rem;
}

.exora-text {
  font-size: 14px;
  margin-bottom: 1.5rem;
  color: #dce9f7;
  line-height: 22px;
}

.exora-info p {
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  font-size: 1rem;
}

.exora-info i {
  color: #4cc9f0;
  font-size: 1.2rem;
}

/* RIGHT SIDE FORM */
.short-form {
  flex: 1;
  background: linear-gradient(100deg, #0c1b33, #0d2955, #a3e7ff);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.7);
  color: #fff;
}

.short-form h3 {
  color: #ffffff;
  margin-bottom: 1.5rem;
}

/* FORM INPUT FIELDS */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}


.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 95%;
  height: 40px;
  padding-left: 0.9rem;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 1rem;
  outline: none;
  transition: 0.3s ease;
}
.contact-form input,
.contact-form textarea{
  color: #ffffff;
}
.contact-form select{
  width: 99%;
  color: #ffffff;
  background-color: #001842;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #4cc9f0;
  box-shadow: 0 0 10px #4cc9f0;
}

textarea {
  min-height: 100px;
}

/* BUTTON */
.contact-button {
  background: linear-gradient(90deg, #4361ee, #4cc9f0);
  border: none;
  color: #fff;
  padding: 1rem;
  border-radius: 30px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: 0.3s ease;
  font-weight: 600;
}

.contact-button:hover {
  box-shadow: 0 0 20px #4cc9f0;
  transform: translateY(-2px);
}

/* uiux design page css */
/* css for uiux page */
/* BUTTON */
.uiux-btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  background:linear-gradient(135deg, #0b0c10, #102547, #0b0c10);
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}
.uiux-btn:hover {
  background: linear-gradient(200deg, #0b0c10, #102547, #0b0c10);
}

/* HERO SECTION */
.uiux-hero {
 position: relative;
  height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.uiux-hero-video{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* ensures the video covers the section */
  z-index: -1; /* send it behind the text */
}
.uiux-hero-content {
  max-width: 600px;
}
.uiux-hero-content h1 {
  font-size: 3rem;
  color: #4fa3ff;
  margin-bottom: 20px;
}
.uiux-hero-content p {
  color: #b0c7e1;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* OVERVIEW */
.uiux-overview {
  background: linear-gradient(2deg, #cfe1de, #0d2955, #000000);
  padding: 100px 10%;
  text-align: center;
}
.uiux-overview h2 {
  font-size: 2rem;
  color: #4fa3ff;
  margin-bottom: 15px;
}
.uiux-overview p {
  color: #b0c7e1;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* WHY CHOOSE */
.uiux-why {
  background: radial-gradient(circle at top, rgb(2, 83, 149), #011028 60%);
  padding: 100px 10%;
  text-align: center;
}
.uiux-why-content h2 {
  font-size: 2.2rem;
  color: #4fa3ff;
  margin-bottom: 15px;
}
.uiux-why-content span {
  color: #ffffff;
}
.uiux-why-content p {
  color: #b0c7e1;
  max-width: 700px;
  margin: 0 auto 50px;
}
.uiux-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.uiux-why-card {
  background:linear-gradient(180deg, rgba(25, 62, 113, 0.7), rgba(5,10,20,0.8));
  border: 1px solid #1f2e46;
  border-radius: 18px;
  padding: 40px 25px;
  box-shadow: 0 0 20px rgba(79, 163, 255, 0.1);
  transition: 0.3s;
}
.uiux-why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(79, 163, 255, 0.25);
}
.uiux-icon {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #4fa3ff;
}
.uiux-why-card h3 {
  font-size: 1.25rem;
  color: #eaf1ff;
  margin-bottom: 10px;
}
.uiux-why-card p {
  color: #9ab2d0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CONTACT SECTION */

/* RESPONSIVE */
@media (max-width: 900px) {
  .uiux-hero {
    flex-direction: column;
    text-align: center;
  }
}
/* SEO PAAGE CSS */

/* BUTTON */
.seo-btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  background:linear-gradient(135deg, #0b0c10, #102547, #0b0c10);
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}
.seo-btn:hover {
  opacity: 0.8;
  background: linear-gradient(200deg, #0b0c10, #102547, #0b0c10);
}

/* HERO SECTION */
.seo-hero {
 position: relative;
  height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.seo-hero-video{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* ensures the video covers the section */
  z-index: -1; /* send it behind the text */
}

.seo-hero-content {
  max-width: 600px;
}
.seo-hero-content h1 {
  font-size: 3rem;
  color: #4fa3ff;
  margin-bottom: 20px;
}
.seo-hero-content p {
  color: #b0c7e1;
  line-height: 1.6;
  margin-bottom: 30px;
}
/* OVERVIEW */
.seo-overview {
  background: linear-gradient(2deg, #cfe1de, #0d2955, #000000);
  padding: 100px 10%;
  text-align: center;
}
.seo-overview h2 {
  font-size: 2rem;
  color: #4fa3ff;
  margin-bottom: 15px;
}
.seo-overview p {
  color: #b0c7e1;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* WHY CHOOSE */
.seo-why {
   background: radial-gradient(circle at top, rgb(2, 83, 149), #011028 60%);
  padding: 100px 10%;
  text-align: center;
}
.seo-why-content h2 {
  font-size: 2.2rem;
  color: #4fa3ff;
  margin-bottom: 15px;
}
.seo-why-content span {
  color: #ffffff;
}
.seo-why-content p {
  color: #b0c7e1;
  max-width: 700px;
  margin: 0 auto 50px;
}
.seo-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.seo-why-card {
  background:linear-gradient(180deg, rgba(25, 62, 113, 0.7), rgba(5,10,20,0.8));
  border-radius: 18px;
  padding: 40px 25px;
  border: 1px solid #1f2e46;
  box-shadow: 0 0 30px rgba(79, 163, 255, 0.1);
  transition: 0.3s;
}
.seo-why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 40px rgba(79, 163, 255, 0.25);
}
.seo-icon {
  font-size: 2rem;
  margin-bottom: 15px;
 
}
.seo-why-card h3 {
  font-size: 1.25rem;
  color: #eaf1ff;
  margin-bottom: 10px;
}
.seo-why-card p {
  color: #9ab2d0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CONTACT */
.seo-contact {
  background: linear-gradient(135deg, #0e1624, #0b1320);
  padding: 100px 10%;
}
.seo-contact-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.seo-form-box {
  flex: 1;
  min-width: 350px;
}
.seo-form-box h2 {
  color: #4fa3ff;
  margin-bottom: 25px;
}
.seo-form-box form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.seo-name {
  display: flex;
  gap: 10px;
}
.seo-form-box input,
.seo-form-box select,
.seo-form-box textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  background: #111a28;
  border: 1px solid #1f2e46;
  color: #eaf1ff;
  outline: none;
  font-size: 0.95rem;
}
.seo-form-box textarea {
  resize: none;
}
.seo-form-box label {
  font-size: 0.85rem;
  color: #9ab2d0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.seo-form-box button {
  padding: 12px 25px;
  background: linear-gradient(135deg, #4fa3ff, #6fb8ff);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}
.seo-form-box button:hover {
  opacity: 0.9;
}
.seo-contact-image {
  flex: 1;
  min-width: 350px;
  height: 450px;
  background: url('seo_11zon.jpg') center/cover no-repeat;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(79, 163, 255, 0.2);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .seo-hero {
    flex-direction: column;
    text-align: center;
  }
  .seo-hero-img {
    width: 100%;
    height: 300px;
    margin-top: 30px;
  }
  .seo-contact-container {
    flex-direction: column;
  }
}
/* ------------------------ */
/* LIGHT / DARK THEME SETUP */
/* ------------------------ */

