:root {
  --primary: #1e88e5;
  --primary-light: #e3f2fd;
  --dark: #0f172a;
  --text: #475569;
  --white: #ffffff;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
}

main {
  padding-top: 20px;
}

/* ACCESSIBILITY (KEYBOARD FOCUS) */
a:focus-visible {
  outline: 2px dashed var(--primary);
  outline-offset: 3px;
}

.container {
  padding-left: 1rem;
  padding-right: 1rem;
}

/* ================= HERO SLIDER ================= */
.hero-slider {
  height: 100vh;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

/* VIDEO */
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* SLIDES */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 1s ease;
}
.slide.active {
  opacity: 1;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 80, 140, 0.35),
    rgba(0, 150, 255, 0.15)
  );
}

/* CONTENT */
.hero-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 8%;
  max-width: 600px;
  color: #fff;
}

/* TEXT ANIMATION */
.animate h1 {
  animation: fadeUp 1s ease;
}
.animate p {
  animation: fadeUp 1.3s ease;
}
.animate a {
  animation: fadeUp 1.6s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-box {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  padding: 40px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-content h1 {
  font-size: 58px;
  font-weight: 700;
  line-height: 1.1;
  opacity: 0.85;
  z-index: -1;
}

.hero-content p {
  font-size: 19px;
  margin: 20px 0 30px;
  opacity: 0.95;
}

/* BUTTON */
.hero-btn {
  background: #fff;
  color: #0099ff;
  padding: 14px 34px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  width: fit-content;
  transition: 0.3s;
  opacity: 0.95;
}

.hero-btn:hover {
  background: #0099ff;
  color: #fff;
}

/* ARROWS */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  padding: 10px;
  z-index: 9;
}
.prev {
  left: 20px;
}
.next {
  right: 20px;
}

/* DOTS */
.dots {
  position: absolute;
  bottom: 30px;
  width: 100%;
  text-align: center;
}
.dot {
  height: 12px;
  width: 12px;
  margin: 0 6px;
  background: #fff;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  opacity: 0.5;
}
.dot.active {
  opacity: 1;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-content {
    padding: 0 20px;
  }
  .hero-content h1 {
    font-size: 32px;
  }
  .hero-content p {
    font-size: 16px;
  }
  .prev {
    left: 0px;
  }
  .next {
    right: 0px;
  }
}

/* ================= EXPERTISE SECTIONS ================= */

.expertise-section {
  background: linear-gradient(180deg, #f5f9ff, #ffffff);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* soft glow background */
.expertise-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: #1da1f2;
  filter: blur(140px);
  opacity: 0.15;
  top: -100px;
  left: -100px;
}

/* GRID */
.expertise-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  padding: 0 20px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* TEXT */
.expertise-text h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

.expertise-text h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: #1da1f2;
  margin-top: 14px;
  border-radius: 20px;
}

.expertise-text p {
  margin: 22px 0 28px;
  font-size: clamp(14px, 2vw, 17px);
  color: #475569;
  line-height: 1.8;
}

/* LIST */
.expertise-text ul {
  list-style: none;
  padding: 0;
}

.expertise-text li {
  margin-bottom: 14px;
  font-weight: 600;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 10px;
}

.expertise-text li::before {
  content: "✔";
  color: #1da1f2;
  font-weight: 800;
}

/* IMAGE */
.expertise-image {
  position: relative;
}

.expertise-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  transition: 0.5s;
}

/* .expertise-image::after {
  content: "";
  position: absolute;
  inset: -10px;
  border: 2px solid rgba(29, 161, 242, 0.4);
  border-radius: 22px;
  z-index: -1;
} */

.expertise-image:hover img {
  transform: scale(1.03);
}

/* MOBILE */
@media (max-width: 768px) {
  .expertise-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .expertise-section {
    padding: 70px 0;
  }
}

/* TABLET */
@media (min-width: 769px) and (max-width: 1024px) {
  .expertise-container {
    gap: 45px;
  }
}

/* ================= TESTING SERVICES SECTION ================= */
/* SECTION */
.services-section {
  background: #fff;
  padding: 90px 0;
}

.services-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* HEADING */
.section-head {
  text-align: center;
  margin-bottom: 60px;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: #111;
}

.section-head p {
  margin-top: 10px;
  color: #555;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* CARD */
.bg-card {
  position: relative;
  height: 320px;
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: flex-end;
  transition: 0.4s;
}

/* OVERLAY */
.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.35));
  transition: 0.4s;
}

/* TEXT */
.service-content {
  position: relative;
  z-index: 2;
  padding: 25px;
  color: #fff;
}

.service-content h3 {
  font-size: 20px;
  font-weight: 700;
}

.service-content p {
  font-size: 14px;
  margin: 8px 0 15px;
  opacity: 0.9;
}

.service-content a {
  color: #4fc3ff;
  font-weight: 600;
  text-decoration: none;
}

/* HOVER */
.bg-card:hover {
  transform: translateY(-8px);
}

.bg-card:hover .card-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.45));
}

/* MOBILE */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .bg-card {
    height: 260px;
  }

  .services-section {
    padding: 60px 0;
  }
}

/* TABLET */
@media (min-width: 769px) and (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* TESTING PROCESS SECTION */
/* ================= PROCESS SECTION ================= */

/* ================= PROCESS SECTION ================= */

.process-section {
  background: #f8fbff;
  padding: 90px 0;
}

.process-container {
  max-width: 1100px; /* controlled width */
  margin: auto;
  padding: 0 20px;
  text-align: center;
}

.section-head h2 {
  color: #475569;
  font-size: 42px;
  margin-bottom: 10px;
  font-weight: 600;
}

.section-head p {
  font-size: 15px;
  margin-bottom: 10px;
  font-weight: 400;
}

/* PROGRESS BAR */
.process-progress {
  height: 4px;
  width: 100%;
  background: #e5eef8;
  margin-bottom: 25px;
  border-radius: 10px;
  overflow: hidden;
}

.process-progress span {
  display: block;
  height: 100%;
  width: 25%;
  background: #1da1f2;
  transition: 0.5s;
}

/* SLIDER */
.process-slider {
  position: relative;
  margin-top: 50px;
  overflow: hidden;
}

/* TRACK */
.process-track {
  display: flex;
  transition: 0.6s ease;
  border-radius: 20px;
}

/* SLIDE */
.process-slide {
  min-width: 100%;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;

  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  animation: fadeSlide 0.7s ease;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* IMAGE SIDE */
.process-img {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2));
}

/* GLASS TEXT PANEL */
.glass {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-left: 4px solid #1da1f2;
}

.process-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* TEXT SIDE */
.process-text {
  padding: 60px 50px;
  text-align: left;
}

/* NUMBER */
.step-num {
  font-size: 70px;
  font-weight: 800;
  color: #1da1f2;
  opacity: 0.15;
  line-height: 1;
}

/* CONTENT */
.process-text h3 {
  font-size: 26px;
  font-weight: 700;
  margin: 12px 0;
}

.process-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
}

/* ARROWS */
.process-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #1da1f2;
  color: #fff;
  border: none;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: 0.3s;
  z-index: 10;
}

.process-btn:hover {
  background: #0f6fbf;
}

.process-btn.prev {
  left: 15px;
}

.process-btn.next {
  right: 15px;
}

/* MOBILE */
@media (max-width: 768px) {
  .process-slide {
    grid-template-columns: 1fr;
  }

  .process-img {
    height: 240px;
  }

  .process-text {
    padding: 35px 25px;
  }

  .step-num {
    font-size: 50px;
  }

  .process-btn {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
}

/* CLIENTS SECTION */
.clients-section {
  padding: 90px 20px;
  background: #f7fbff;
  text-align: center;
}

.clients-section h2 {
  font-size: 42px;
  margin-bottom: 10px;
}

.sub-text {
  color: #555;
  margin-bottom: 50px;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.client-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.client-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1e90ff, #38bdf8);
  opacity: 0;
  transition: 0.4s;
}

.client-card:hover::before {
  opacity: 0.08;
}

.client-card:hover {
  transform: translateY(-8px);
}

.client-card .icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.client-card h3 {
  margin-bottom: 10px;
}

.client-card p {
  color: #666;
  font-size: 15px;
}

.view-more {
  margin-top: 50px;
}

.btn-primary {
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding: 14px 34px;
  background: linear-gradient(135deg, #1e90ff, #38bdf8);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 10px rgba(56, 189, 248, 0.6),
    0 0 25px rgba(56, 189, 248, 0.5),
    0 0 50px rgba(30, 144, 255, 0.4);
}

/* TESTIMONIALS SECTION */
.testimonials-section {
  justify-content: center;
  padding: 60px 20px;
  background: #ffffff;
  text-align: center;
}

.testimonials-section h2 {
  font-size: 42px;
  margin-bottom: 10px;
}

.sub-text {
  color: #666;
}

/* SLIDER */
.testimonial-slider {
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 60px auto 0;
}

.ts-track {
  display: flex;
  transition: transform 0.6s ease;
}

/* CARD */
.testimonial-card {
  min-width: 100%;
  background: var(--text);
  align-items: center;
  justify-content: center;
  padding: 50px 45px;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* QUOTE */
.quote {
  font-size: 70px;
  color: #fff;
  position: absolute;
  top: 20px;
  left: 35px;
  opacity: 0.25;
}

/* TEXT */
.testimonial-card p {
  font-style: italic;
  color: #fff;
  margin-bottom: 30px;
  line-height: 1.7;
}

/* CLIENT */
.client-info {
  display: flex;
  align-items: center;
  margin-top: 18px;
  gap: 15px;
  justify-content: center;
}

.client-info img {
  width: 55px;
  height: 55px;
  border-radius: 25%;
  object-fit: cover;
  border: 2px solid #1e90ff;
}

.client-info h4 {
  margin: 0;
  color: #fff;
}

.client-info span {
  font-size: 15px;
  color: #fff;
}

/* ARROWS */
.ts-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);

  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  z-index: 10;
}

.ts-btn:hover {
  background: rgba(255, 255, 255, 0.28);

  box-shadow: 0 2px 20px rgba(255, 255, 255, 0.25);
}

.ts-btn.prev {
  left: 15px;
}

.ts-btn.next {
  right: 15px;
}

/* MOBILE */
@media (max-width: 576px) {
  .testimonials-section {
    padding: 70px 15px;
  }

  .testimonials-section h2 {
    font-size: 30px;
  }

  .sub-text {
    font-size: 14px;
  }

  .testimonial-slider {
    max-width: 100%;
  }

  .testimonial-card {
    padding: 35px 22px;
  }

  .testimonial-card p {
    font-size: 14px;
    line-height: 1.6;
  }

  /* Client info stacked */
  .client-info {
    flex-direction: column;
    text-align: center;
  }

  .client-info img {
    width: 48px;
    height: 48px;
  }

  /* Move arrows outside content */
  .ts-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .ts-btn.prev {
    left: -5px;
  }

  .ts-btn.next {
    right: -5px;
  }
}

/* TABLET */
@media (min-width: 577px) and (max-width: 992px) {
  .testimonials-section h2 {
    font-size: 34px;
  }

  .testimonial-slider {
    max-width: 720px;
  }

  .testimonial-card {
    padding: 40px 30px;
  }
}

/* CERTIFICATION SECTION */
.certifications-section {
  padding: 80px 20px;
  background: #f8fbff;
  text-align: center;
}

.certifications-section h2 {
  color: #475569;
  font-size: 42px;
  margin-bottom: 10px;
  font-weight: 600;
}

.section-subtitle {
  color: #64748b;
  margin: 10px 0 40px;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.cert-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
}

.cert-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.cert-card img {
  width: 120px;
  filter: grayscale(100%);
  transition: 0.4s;
}

.cert-card:hover img {
  filter: grayscale(0);
}

.cert-card h4 {
  margin-top: 15px;
  font-size: 18px;
  color: #0f172a;
}

.cert-card p {
  font-size: 14px;
  color: #64748b;
}

/* Mobile */
@media (max-width: 768px) {
  .certifications-section h2 {
    font-size: 24px;
  }
}

/* CTA SECTION */
.cta-section {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(135deg, #e0f2fe, #f8fbff);
}

.cta-overlay {
  max-width: 1100px;
  margin: auto;
  padding: 60px 40px;
  border-radius: 22px;
  text-align: center;
  color: #fff;

  background: linear-gradient(270deg, #0ea5e9, #38bdf8, #0284c7, #0ea5e9);
  background-size: 600% 600%;
  animation: gradientMove 8s ease infinite;

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.cta-content h2 {
  font-size: 36px;
}

.cta-content p {
  max-width: 650px;
  margin: 15px auto 30px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.cta-btn {
  display: flex;
  align-items: center;
  text-decoration: none;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s ease;
}

/* Primary */
.cta-btn.primary {
  background: #fff;
  color: #0ea5e9;
}

.cta-btn.primary:hover {
  background: #e0f2fe;
  transform: translateY(-3px);
}

/* Secondary */
.cta-btn.secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.cta-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

/* Mobile */
@media (max-width: 600px) {
  .cta-actions {
    flex-direction: column;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .cta-overlay {
    padding: 40px 20px;
    margin: 0 10px;
  }

  .cta-content h2 {
    font-size: 24px;
  }
}

/* FAQ Section */
.faq-section {
  padding: 80px 20px;
  background: #f8fbff;
}

.faq-section h2 {
  text-align: center;
  font-size: 32px;
  color: #1e293b;
}

.faq-subtitle {
  text-align: center;
  color: #64748b;
  margin-bottom: 40px;
}

.faq-wrapper {
  max-width: 800px;
  margin: auto;
}
.faq-item {
  background: #fff;
  border-radius: 14px;
  margin-bottom: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: 0.4s;
}

/* Highlight active */
.faq-item.active {
  border-left: 2px solid #0ea5e9;
  background: linear-gradient(135deg, #f0f9ff, #ffffff);
  box-shadow: 0 10px 15px rgba(14, 165, 233, 0.15);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

/* Icon */
.faq-question i {
  transition: 0.4s ease;
  color: #0ea5e9;
}

/* Rotate icon */
.faq-item.active i {
  transform: rotate(180deg);
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
  transform: translateY(-5px);

  transition:
    max-height 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.2s ease,
    opacity 0.2s ease,
    transform 0.2s ease;
}

/* Open */
.faq-item.active .faq-answer {
  max-height: 150px;
  padding: 5px 24px 22px;

  opacity: 1;
  transform: translateY(0);
}

.faq-item.active span {
  transform: rotate(45deg);
}

/* Mobile */
@media (max-width: 768px) {
  .faq-section h2 {
    font-size: 24px;
  }
}

/* FIXED CTA BUTTON */
.fixed-cta {
  position: fixed;
  right: 0;
  bottom: 40%;
  padding: 14px 17px 14px 26px;
  border-radius: 30px 0 0 30px;
  font-weight: 600;
  text-decoration: none;
  z-index: 999;
  color: #fff;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.45);
  transition: all 0.3s ease;
}

/* ANIMATED BACKGROUND */
.animated-btn {
  background: linear-gradient(270deg, #0ea5e9, #38bdf8, #0284c7, #0ea5e9);
  background-size: 600% 600%;
  animation: btnGradient 6s ease infinite;
}

/* Hover */
.fixed-cta:hover {
  transform: translateX(-8px);
  box-shadow: 0 16px 40px rgba(14, 165, 233, 0.6);
}

/* Active */
.fixed-cta:active {
  transform: scale(0.95);
}

/* Gradient animation */
@keyframes btnGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .fixed-cta {
    bottom: 20px;
    right: 10px;
    border-radius: 30px;
    padding: 12px 18px;
    font-size: 14px;
  }
}

/* MODAL OVERLAY */
.quote-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
}

/* ACTIVE */
.quote-modal.active {
  opacity: 1;
  pointer-events: auto;
}

/* MODAL BOX */
.modal-box {
  background: #fff;
  width: 90%;
  max-width: 550px;
  padding: 35px;
  border-radius: 18px;
  text-align: center;
  position: relative;
  animation: scaleUp 0.4s ease;
}

/* CLOSE */
.close-modal {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

/* TEXT */
.modal-box h2 {
  color: #0284c7;
  margin-bottom: 10px;
}

.modal-box p {
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
}

/* FORM */
.modal-box input,
.modal-box textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 14px;
}

.form-row {
  display: flex;
  gap: 12px;
}

.form-row input {
  flex: 1;
}

/* BUTTON */
.modal-btn {
  width: 100%;
  padding: 14px;
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;

  background: linear-gradient(270deg, #0ea5e9, #38bdf8, #0284c7, #0ea5e9);
  background-size: 600% 600%;
  animation: btnGradient 6s ease infinite;
}

/* MOBILE */
@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
  }
}

/* ANIMATION */
@keyframes scaleUp {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
