/* --- Generative AI Page Specific Styles --- */
.hero-genai {
  position: relative;
  min-height: 100vh;
  height: 200vh;
  max-height: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  margin-top: 0 !important;
  padding-top: 0 !important;
  margin-bottom: 2.5rem;
  overflow: hidden;
}
.hero-genai-img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100vh;
  min-height: 100vh;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.72) saturate(1.18) blur(0.5px);
  transition: filter 0.7s;
  margin-top: 0 !important;
  padding-top: 0 !important;
}
@media (max-width: 600px) {
  .hero-genai {
    min-height: 60vh;
    height: 60vh;
  }
  .hero-genai-img {
    height: 60vh;
    min-height: 60vh;
  }
}
.hero-overlay-card {
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px) saturate(1.5);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 2.2rem;
  box-shadow: 0 8px 32px 0 rgba(20,184,166,0.10);
  padding: 3.2rem 3.5rem 2.5rem 3.5rem;
  z-index: 3;
  min-width: 340px;
  max-width: 960px;
  width: 96vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  left: 4vw;
  right: auto;
  margin-left: 0;
  animation: fadeInUp 1.1s cubic-bezier(.4,0,.2,1) both;
}
@media (max-width: 600px) {
  .hero-overlay-card {
    padding: 1.1rem 0.7rem 1.1rem 0.7rem;
    min-width: 0;
    max-width: 98vw;
    border-radius: 1.2rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    align-items: center;
    text-align: center;
  }
}
.hero-overlay-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.hero-overlay-category {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
  display: block;
  opacity: 0.85;
}
.hero-overlay-title {
  color: #fff;
  font-size: 2.1rem;
  font-weight: 900;
  margin-bottom: 1.1rem;
  letter-spacing: -1px;
  line-height: 1.15;
  min-height: 2.5rem;
  text-shadow: 0 4px 24px rgba(0,0,0,0.32), 0 1px 2px rgba(0,0,0,0.18);
}
.hero-overlay-btn {
  margin-bottom: 1.1rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 0.7rem;
  padding: 0.8rem 2.2rem;
  background: linear-gradient(90deg, #14b8a6 0%, #0ea5e9 100%);
  color: #fff;
  border: none;
  box-shadow: none;
  outline: none;
  text-decoration: none;
  transition: background 0.25s, color 0.25s, transform 0.18s;
  animation: popInScale 0.7s 0.3s cubic-bezier(.4,0,.2,1) both;
}
.hero-overlay-btn:hover, .hero-overlay-btn:focus {
  background: linear-gradient(90deg, #0ea5e9 0%, #14b8a6 100%);
  color: #fff;
  box-shadow: none;
  outline: none;
  border: none;
  transform: scale(1.04) translateY(-2px);
  text-decoration: none;
}
.hero-overlay-sub {
  color: #e0f7f4;
  font-size: 1.1rem;
  font-weight: 500;
  margin-top: 0;
  opacity: 0.92;
}
.center-btn-row {
  display: flex;
  justify-content: center;
  margin: 2.2rem 0 1.2rem 0;
}
.unlock-btn {
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 0.7rem;
  padding: 0.8rem 2.2rem;
  box-shadow: 0 2px 8px #14b8a633;
  animation: popInScale 0.7s 0.3s cubic-bezier(.4,0,.2,1) both;
}
/* --- Solutions Grid --- */
.solutions-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem 2rem 1rem;
}
.solutions-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  margin-bottom: 2.2rem;
  color: #181c2a;
}
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 900px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}
@media (max-width: 600px) {
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.solution-card {
  position: relative;
  border-radius: 1.7rem;
  overflow: hidden;
  min-height: 260px;
  height: 260px;
  box-shadow: 0 4px 32px rgba(20,184,166,0.13);
  background: #222;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(.4,0,.2,1), box-shadow 0.35s, filter 0.35s;
  animation: cardFadeIn 1.1s cubic-bezier(.4,0,.2,1) both;
}
.solution-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: none; /* Removed dark/blue overlay */
  z-index: 2;
  pointer-events: none;
  transition: background 0.3s;
  border-radius: 1.7rem;
}
.solution-card:hover, .solution-card:focus {
  transform: scale(1.06) translateY(-10px) rotate(-1deg);
  box-shadow: 0 12px 48px 0 rgba(20,184,166,0.22);
  filter: brightness(1.08) saturate(1.1);
}
.solution-img-full {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: filter 0.35s, transform 0.5s cubic-bezier(.4,0,.2,1);
  filter: none; /* Remove blur/brightness/saturate for clarity */
}
.solution-card:hover .solution-img-full {
  filter: none;
  transform: scale(1.08);
}
.solution-overlay {
  content: '';
  position: absolute;
  left: 0; top: 0; width: 100%; height: 100%;
  background: none; /* Removed blue gradient overlay */
  z-index: 2;
  transition: background 0.35s;
}
.solution-card:hover .solution-overlay {
  background: none; /* No overlay on hover */
}
.solution-card-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 2.1rem 1.5rem 1.2rem 1.5rem;
}
/* --- Show Card Heading Always, Description on Hover --- */
.solution-title {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0.5px;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0,0,0,0.32), 0 1px 2px rgba(0,0,0,0.18);
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0 0 0.5rem 0;
  display: block;
  text-align: left;
  transition: none;
}
.solution-title-highlight {
  background: linear-gradient(90deg, #0ea5e9 10%, #14b8a6 90%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  letter-spacing: 0.5px;
}
.solution-desc {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  font-size: 0.95rem;
  color: #f3f6fa;
  font-weight: 400;
  margin: 0 0 1.1rem 0;
  text-align: left;
  line-height: 1.5;
  letter-spacing: 0.01em;
  transition: opacity 0.4s cubic-bezier(.4,0,.2,1), transform 0.4s cubic-bezier(.4,0,.2,1);
}
.solution-card:hover .solution-desc,
.solution-card:focus .solution-desc {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.solution-btn {
  height: 23px;
  font-size: 0.98rem;
  border-radius: 1.5rem;
  padding-left: 1.1rem;
  padding-right: 1.1rem;
  width: 60%;
  max-width: 50%;
  min-width: 0;
  margin-top: 1.2rem;
}
.solution-btn::after {
  content: '\f061'; /* Font Awesome arrow-right */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 1.1em;
  margin-left: 0.5em;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.3s, transform 0.3s;
}
.solution-btn:hover, .solution-btn:focus {
  background: linear-gradient(90deg, #14b8a6 10%, #0ea5e9 90%);
  color: #fff;
  box-shadow: 0 8px 32px #0ea5e9aa, 0 2px 8px #14b8a655;
  border: none;
  transform: scale(1.04) translateY(-2px);
}
@media (max-width: 900px) {
  .solution-title {
    font-size: 1rem;
  }
  .solution-desc {
    font-size: 0.85rem;
  }
  .solution-card-content {
    padding: 1.1rem 0.7rem 0.7rem 0.7rem;
  }
  .solution-btn {
    height: 30px;
    font-size: 0.89rem;
    border-radius: 1.1rem;
    padding-left: 0.7rem;
    padding-right: 0.7rem;
    width: 90%;
    margin-top: 0.7rem;
  }
}

/* Animations used only for this page */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: none; }
}
@keyframes popInScale {
  0% { opacity: 0.2; transform: scale(0.85); }
  60% { opacity: 1; transform: scale(1.08); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes cardFadeIn {
  from { opacity: 0; transform: translateY(40px) scale(0.95); }
  to { opacity: 1; transform: none; }
}

/* Hero Section Height & Vibrancy */
.hero-genai {
  min-height: 600px;
  max-height: 640px;
}
.hero-genai-img {
  height: 600px;
  filter: brightness(0.72) saturate(1.18) blur(0.5px);
}
@media (max-width: 600px) {
  .hero-genai {
    min-height: 340px;
  }
  .hero-genai-img {
    height: 340px;
  }
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(120deg, rgba(20,184,166,0.22) 0%, rgba(14,165,233,0.22) 100%);
  z-index: 2;
  pointer-events: none;
}
/* Fix card image alignment */
.solution-img-full {
  top: 0;
}

/* --- Showcase Projects Section --- */
.projects-section {
  max-width: 1300px;
  margin: 0 auto 3rem auto;
  padding: 0 1.5rem 2rem 1.5rem;
}
.projects-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  margin-bottom: 2.2rem;
  color: #181c2a;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
}
@media (max-width: 900px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}
@media (max-width: 600px) {
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.project-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 1.3rem;
  box-shadow: 0 2px 16px rgba(20,184,166,0.10);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.3s, transform 0.3s, filter 0.3s;
  cursor: pointer;
  position: relative;
  min-height: 320px;
}
.project-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 180px;
  background: rgba(18, 24, 38, 0.48); /* dark overlay */
  z-index: 2;
  pointer-events: none;
  transition: background 0.3s;
  border-top-left-radius: 1.3rem;
  border-top-right-radius: 1.3rem;
}
.project-card:hover, .project-card:focus {
  box-shadow: 0 8px 32px rgba(20,184,166,0.18);
  transform: translateY(-8px) scale(1.03);
  filter: brightness(1.04) saturate(1.08);
}
.project-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-top-left-radius: 1.3rem;
  border-top-right-radius: 1.3rem;
  transition: filter 0.3s, transform 0.3s;
  filter: blur(1.2px) brightness(0.82) saturate(1.1);
}
.project-card:hover .project-img {
  filter: brightness(0.92) blur(1px);
  transform: scale(1.05);
}
.project-info {
  padding: 1.2rem 1rem 1.2rem 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.project-title {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #14b8a6;
}
.project-desc {
  font-size: 1rem;
  color: #444;
  margin: 0;
}

/* --- Swiper Projects Slider Styles --- */
.projects-swiper {
  width: 100%;
  padding: 2.5rem 0 3rem 0;
  box-sizing: border-box;
}
.projects-swiper .swiper-wrapper {
  align-items: stretch;
}
.projects-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 370px;
  height: 370px;
  transition: box-shadow 0.3s, transform 0.3s;
}
@media (max-width: 900px) {
  .projects-swiper .swiper-slide {
    width: 320px;
    height: 320px;
  }
}
@media (max-width: 600px) {
  .projects-swiper .swiper-slide {
    width: 92vw;
    height: 320px;
  }
}
.projects-swiper .project-card {
  position: relative;
  min-height: 100%;
  width: 100%;
  box-shadow: 0 2px 16px rgba(20,184,166,0.10);
  border-radius: 1.3rem;
  background: #fff;
  transition: box-shadow 0.3s, transform 0.3s, filter 0.3s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.projects-swiper .project-card:hover, .projects-swiper .project-card:focus {
  box-shadow: 0 8px 32px rgba(20,184,166,0.18);
  transform: translateY(-8px) scale(1.03);
  filter: brightness(1.04) saturate(1.08);
}
.projects-swiper .project-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-top-left-radius: 1.3rem;
  border-top-right-radius: 1.3rem;
  transition: filter 0.3s, transform 0.3s;
  filter: blur(1.2px) brightness(0.82) saturate(1.1);
}
.projects-swiper .project-card:hover .project-img {
  filter: brightness(0.92) blur(1px);
  transform: scale(1.05);
}
.projects-swiper .project-info {
  padding: 1.2rem 1rem 1.2rem 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.projects-swiper .project-title {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #14b8a6;
}
.projects-swiper .project-desc {
  font-size: 1rem;
  color: #444;
  margin: 0;
}
.projects-swiper .swiper-button-next,
.projects-swiper .swiper-button-prev {
  color: #0ea5e9;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 12px #14b8a633;
  width: 44px;
  height: 44px;
  top: 50%;
  transform: translateY(-50%);
  transition: background 0.2s, color 0.2s;
}
.projects-swiper .swiper-button-next:hover,
.projects-swiper .swiper-button-prev:hover {
  background: #0ea5e9;
  color: #fff;
}
.projects-swiper .swiper-pagination {
  bottom: 0;
  text-align: center;
}
.projects-swiper .swiper-pagination-bullet {
  background: #14b8a6;
  opacity: 0.5;
  transition: opacity 0.2s, background 0.2s;
}
.projects-swiper .swiper-pagination-bullet-active {
  background: #0ea5e9;
  opacity: 1;
}

/* --- Project Card Image Overlay --- */
.project-img-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 180px;
  background: none; /* Removed blue gradient overlay */
  z-index: 2;
  pointer-events: none;
  transition: background 0.35s;
  border-top-left-radius: 1.3rem;
  border-top-right-radius: 1.3rem;
  filter: none;
}
.projects-swiper .project-card:hover .project-img-overlay {
  background: none;
  filter: none;
}

/* --- Methodology Section Styles --- */
.methodology-section {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  padding: 0;
  background: none;
  max-width: none;
}
.methodology-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  margin-bottom: 2.2rem;
  color: #181c2a;
}
.methodology-images, .methodology-grid {
  width: 100vw;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: stretch;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
}
.methodology-image-block {
  width: 100vw;
  margin: 0;
  padding: 0;
  position: relative;
  display: block;
  background: none;
  border-radius: 0;
  box-shadow: none;
  max-width: none;
}
.methodology-img {
  width: 100vw;
  max-width: 100vw;
  min-width: 100vw;
  height: 100vw;
  max-height: 800px;
  min-height: 100px;
  object-fit: cover;
  display: block;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  background: #f3f6fa;
}
.methodology-caption {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  background: rgba(24,29,35,0.72);
  color: #fff;
  padding: 0.9rem 2.2rem;
  border-radius: 2rem;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 1px;
  box-shadow: 0 2px 12px #0003;
  z-index: 2;
  text-align: center;
  max-width: 90vw;
}
@media (max-width: 1200px) {
  .methodology-img {
    max-height: 600px;
  }
  .methodology-caption {
    font-size: 1.1rem;
    padding: 0.7rem 1.2rem;
  }
}
@media (max-width: 700px) {
  .methodology-img {
    max-height: 90vw;
    height: 90vw;
  }
  .methodology-caption {
    font-size: 1rem;
    padding: 0.5rem 0.7rem;
    bottom: 12px;
  }
}
@media (max-width: 500px) {
  .methodology-img {
    max-height: 80vw;
    height: 80vw;
  }
}


/* Motivation & Project Inquiry Section */
.motivation-form-section {
  width: 100%;
  background: #fff;
  padding: 64px 0 0 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 70vh;
  animation: fadeInUp 1s cubic-bezier(.23,1.01,.32,1) 0.2s both;
}
.motivation-form-container {
  display: flex;
  gap: 48px;
  max-width: 1200px;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 32px;
}
.motivation-left {
  flex: 1 1 50%;
  min-width: 320px;
  max-width: 520px;
  margin-top: 24px;
}
.motivation-title {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #222;
  letter-spacing: -1px;
}
.motivation-gradient {
  background: linear-gradient(90deg, #00bcd4 0%, #00e3ae 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.motivation-subtext {
  font-size: 1.18rem;
  color: #222;
  line-height: 1.6;
  margin-bottom: 12px;
}
.project-form {
  flex: 1 1 380px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 24px;
  box-shadow: 0 8px 40px 0 rgba(0,0,0,0.12), 0 2px 16px 0 rgba(0,188,212,0.08);
  padding: 36px 32px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 340px;
  max-width: 420px;
  margin-bottom: 32px;
  animation: formSlideUp 0.9s cubic-bezier(.23,1.01,.32,1) 0.2s both;
  border: 1px solid rgba(0,188,212,0.1);
  position: relative;
  overflow: hidden;
}

.project-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00bcd4 0%, #00e3ae 50%, #00bcd4 100%);
  background-size: 200% 100%;
  animation: gradientMove 3s ease-in-out infinite;
}

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

.form-title {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 16px;
  color: #222;
  text-align: center;
  position: relative;
}

.form-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #00bcd4 0%, #00e3ae 100%);
  border-radius: 2px;
}

.form-title .motivation-gradient {
  font-weight: 800;
  font-size: 1.25rem;
}

.project-form input[type="text"],
.project-form input[type="tel"],
.project-form input[type="email"],
.project-form textarea {
  border: 2px solid #e8f0f5;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: #ffffff;
  color: #333;
  font-weight: 500;
  position: relative;
}

.project-form input:focus,
.project-form textarea:focus {
  border-color: #00bcd4;
  box-shadow: 0 0 0 4px rgba(0,188,212,0.15), 0 4px 12px rgba(0,188,212,0.1);
  background: #f8fdff;
  transform: translateY(-2px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-form input::placeholder,
.project-form textarea::placeholder {
  color: #9ca3af;
  font-weight: 400;
  transition: color 0.3s ease;
}

.project-form input:focus::placeholder,
.project-form textarea:focus::placeholder {
  color: #00bcd4;
  opacity: 0.7;
}

.project-form textarea {
  resize: vertical;
  min-height: 80px;
  max-height: 200px;
  line-height: 1.5;
}

.form-file-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  padding: 12px;
  border: 2px dashed #e0e7ff;
  border-radius: 12px;
  background: #f8faff;
  transition: all 0.3s ease;
}

.form-file-row:hover {
  border-color: #00bcd4;
  background: #f0fcff;
  transform: translateY(-1px);
}

.project-form input[type="file"] {
  font-size: 0.95rem;
  border: none;
  background: none;
  padding: 0;
  color: #6b7280;
  cursor: pointer;
}

.project-form input[type="file"]::file-selector-button {
  background: linear-gradient(90deg, #00bcd4 0%, #00e3ae 100%);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  margin-right: 12px;
  transition: all 0.3s ease;
}

.project-form input[type="file"]::file-selector-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,188,212,0.3);
}

.submit-btn {
  background: linear-gradient(135deg, #00bcd4 0%, #00e3ae 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 16px 0;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 12px;
  box-shadow: 0 4px 16px 0 rgba(0,188,212,0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.submit-btn:hover::before {
  left: 100%;
}

.submit-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px 0 rgba(0,188,212,0.35);
  background: linear-gradient(135deg, #00a5c4 0%, #00d19a 100%);
}

.submit-btn:active {
  animation: btnBounce 0.3s cubic-bezier(.23,1.01,.32,1);
  transform: translateY(-1px) scale(0.98);
}

@keyframes btnBounce {
  0% { transform: translateY(-3px) scale(1.02); }
  50% { transform: translateY(0) scale(0.98); }
  100% { transform: translateY(-1px) scale(1); }
}

.phone-field {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2px;
}

.country-code-select {
  border: 2px solid #e8f0f5;
  border-radius: 12px;
  padding: 12px 14px 12px 12px;
  font-size: 1rem;
  background: #ffffff;
  color: #333;
  outline: none;
  min-width: 90px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  appearance: none;
  cursor: pointer;
  font-weight: 500;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 8px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 32px;
}

.country-code-select:focus {
  border-color: #00bcd4;
  box-shadow: 0 0 0 4px rgba(0,188,212,0.15);
  background-color: #f8fdff;
}

.phone-field input[type="tel"] {
  flex: 1;
}

/* Engaging Animations */
@keyframes formSlideUp {
  from {
    opacity: 0;
    transform: translateY(48px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.project-form input:focus, .project-form textarea:focus, .country-code-select:focus {
  box-shadow: 0 0 0 3px rgba(0,188,212,0.18);
  transform: scale(1.025);
  z-index: 2;
}
.submit-btn:hover {
  transform: scale(1.045) translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(0,188,212,0.18);
}
.submit-btn:active {
  animation: btnBounce 0.22s cubic-bezier(.23,1.01,.32,1);
}
@keyframes btnBounce {
  0% { transform: scale(1.04); }
  40% { transform: scale(0.97); }
  100% { transform: scale(1.02); }
}
/* Ripple effect for submit button */
.submit-btn .ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 0.5s linear;
  background: rgba(0,227,174,0.18);
  pointer-events: none;
  z-index: 1;
}
@keyframes ripple {
  to {
    transform: scale(2.5);
    opacity: 0;
  }
}

/* Form Success Modal Styles */
.form-success-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 188, 212, 0.13);
  z-index: 1002;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn 0.35s cubic-bezier(.23,1.01,.32,1);
}
@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.form-success-content {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 40px 0 rgba(0,188,212,0.18);
  padding: 38px 32px 28px 32px;
  text-align: center;
  min-width: 320px;
  max-width: 90vw;
  animation: popIn 0.5s cubic-bezier(.23,1.01,.32,1);
}
@keyframes popIn {
  0% { transform: scale(0.7); opacity: 0; }
  70% { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); }
}
.form-success-icon {
  font-size: 2.8rem;
  color: #00bcd4;
  margin-bottom: 12px;
  animation: iconPop 0.7s cubic-bezier(.23,1.01,.32,1);
}
@keyframes iconPop {
  0% { transform: scale(0.2); opacity: 0; }
  60% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(1); }
}
.form-success-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #00bcd4;
}
.form-success-content p {
  font-size: 1.08rem;
  color: #222;
  margin-bottom: 18px;
}
.form-success-close {
  background: linear-gradient(90deg, #00bcd4 0%, #00e3ae 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 32px;
  font-size: 1.08rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(0,188,212,0.08);
  transition: background 0.2s, box-shadow 0.2s, transform 0.18s;
}
.form-success-close:hover {
  background: linear-gradient(90deg, #00e3ae 0%, #00bcd4 100%);
  transform: scale(1.06);
  box-shadow: 0 4px 16px 0 rgba(0,188,212,0.13);
}
@media (max-width: 600px) {
  .form-success-content {
    min-width: 0;
    padding: 22px 8vw 18px 8vw;
  }
}

/* --- Modern Footer Redesign --- */
.footer {
  background: linear-gradient(120deg, #181c2a 60%, #00bcd4 120%);
  color: #fff;
  padding: 3.2rem 2.2rem 2.2rem 2.2rem;
  border-top: 3px solid #00bcd4;
  box-shadow: 0 -2px 32px 0 #00bcd455;
  position: relative;
  overflow: hidden;
  animation: footerFadeUp 1.2s cubic-bezier(.4,0,.2,1) both;
}
@keyframes footerFadeUp {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: none; }
}
.footer::before {
  content: '';
  position: absolute;
  top: -40%; left: -30%;
  width: 180%; height: 180%;
  background: radial-gradient(circle at 70% 30%, #00e3ae33 0%, #00bcd400 70%);
  z-index: 0;
  animation: footerBgMove 8s linear infinite alternate;
  pointer-events: none;
}
@keyframes footerBgMove {
  0% { transform: scale(1) translateY(0); opacity: 0.7; }
  100% { transform: scale(1.1) translateY(-20px); opacity: 1; }
}
.footer-content { position: relative; z-index: 1; }
.footer-logo { display: none; }
.footer-logo-block {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 28px;
  padding: 22px 28px 18px 28px;
  box-shadow: 0 2px 24px 0 #00bcd422;
  margin: 0 auto 1.2rem auto;
  max-width: 220px;
}
.footer-logo-img-footer {
  display: block;
  margin: 0 auto 0 auto;
  max-width: 320px;
  width: 100%;
  height: auto;
  border-radius: 0;
  background: none;
  padding: 0;
  position: relative;
  z-index: 1;
  box-shadow: none;
  filter: none;
  transition: none;
  animation: none;
}
.footer-logo-img-footer:hover,
.footer-logo-img-footer:active,
.footer-logo-img-footer::before,
.footer-logo-img-footer:active::after,
.footer-logo-img-footer:hover::after {
  box-shadow: none;
  filter: none;
  animation: none;
  transform: none;
  content: none;
}
.footer-logo-img-footer:hover {
  transform: scale(1.05);
}
.footer-logo-img-footer:active {
  transform: scale(1.05);
}
.footer-logo-img-footer:active::after,
.footer-logo-img-footer:hover::after {
  display: none;
}

.footer-tagline {
  font-size: 1.45rem;
  color: #fff;
  text-align: center;
  margin-top: 0.7rem;
  margin-bottom: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  border: 2.5px solid #fff;
  background: transparent;
  color: #fff;
  font-size: 2.1rem;
  margin-right: 0.5rem;
  transition: border 0.2s, color 0.2s, box-shadow 0.2s, background 0.2s, transform 0.2s;
  box-shadow: 0 2px 12px #00bcd433;
  position: relative;
}
.footer-social-link:last-child {
  margin-right: 0;
}
.footer-social-link i {
  font-size: 2.1rem !important;
  color: #fff;
  vertical-align: middle;
  line-height: 1;
  display: inline-block;
  transition: color 0.2s, transform 0.2s;
}
.footer-social-link:hover, .footer-social-link:focus {
  color: #00e3ae;
  border: 2.5px solid #00e3ae;
  background: #fff;
  box-shadow: 0 0 18px 4px #00e3ae55;
  transform: scale(1.13) rotate(-7deg);
}
.footer-social-link:hover i, .footer-social-link:focus i {
  color: #00e3ae !important;
  text-shadow: 0 0 12px #00e3ae99;
  transform: scale(1.18) rotate(-7deg);
}
.footer-brand {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.7rem;
}
.footer-brand-title {
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #00bcd4;
  margin-bottom: 0.2rem;
  transition: all 0.3s ease;
  cursor: pointer;
}
.footer-brand-title:hover {
  color: #00e3ae;
  transform: scale(1.05);
  text-shadow: 0 0 20px rgba(0, 227, 174, 0.3);
}
.footer-brand-sub {
  font-size: 1.1rem;
  font-weight: 400;
  color: #fff;
  margin-left: 0.3rem;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}
.footer-brand-sub:hover {
  color: #00e3ae;
  letter-spacing: 3px;
}
.footer-services {
  flex: 1 1 260px;
  min-width: 200px;
  text-align: left;
}
.footer-heading-gradient {
  font-size: 1.35rem;
  font-weight: 700;
  background: linear-gradient(90deg, #00bcd4 0%, #00e3ae 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 1.1rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}
.footer-heading-gradient:hover {
  transform: scale(1.05);
  background: linear-gradient(90deg, #00e3ae 0%, #00bcd4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-heading-gradient::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00bcd4, #00e3ae);
  transition: width 0.3s ease;
  border-radius: 1px;
}
.footer-heading-gradient:hover::after {
  width: 100%;
}
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.13rem;
  color: #fff;
  line-height: 2.1;
}
.footer-list-services li,
.footer-list-countries li {
  margin-bottom: 0.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  padding-left: 0;
}
.footer-list-services li:hover,
.footer-list-countries li:hover {
  color: #00e3ae;
  transform: translateX(8px);
  padding-left: 8px;
}
.footer-list-services li::before,
.footer-list-countries li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00bcd4, #00e3ae);
  transform: translateY(-50%);
  transition: width 0.3s ease;
  border-radius: 1px;
}
.footer-list-services li:hover::before,
.footer-list-countries li:hover::before {
  width: 6px;
}
.footer-contact {
  flex: 1 1 260px;
  min-width: 200px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.footer-contact-info {
  font-size: 1.13rem;
  margin-bottom: 0.7rem;
}
.footer-contact-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}
.footer-contact-link:hover {
  color: #00e3ae;
  transform: translateY(-2px);
  text-decoration: none;
}
.footer-contact-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #00bcd4, #00e3ae);
  transition: width 0.3s ease;
}
.footer-contact-link:hover::after {
  width: 100%;
}
.footer-divider {
  width: 100%;
  height: 1.5px;
  background: linear-gradient(90deg, #00bcd4 0%, #00e3ae 100%);
  opacity: 0.5;
  margin: 1.1rem 0 1.1rem 0;
  border-radius: 2px;
}
.footer-list-countries {
  margin-bottom: 1.2rem;
}
.footer-list-countries li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.8rem;
  padding: 8px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  min-width: 200px;
  width: fit-content;
}
.footer-list-countries li::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 227, 174, 0.1), transparent);
  transition: left 0.5s ease;
}
.footer-list-countries li:hover::before {
  left: 100%;
}
.footer-list-countries li:hover {
  background: rgba(0, 227, 174, 0.1);
  border-color: rgba(0, 227, 174, 0.3);
  transform: translateX(8px) scale(1.02);
  box-shadow: 0 4px 12px rgba(0, 227, 174, 0.2);
  min-width: 220px;
  width: fit-content;
}
.country-flag {
  font-size: 1.2rem;
  margin-right: 4px;
  transition: all 0.3s ease;
  display: inline-block;
  transform: scale(1);
}
.footer-list-countries li:hover .country-flag {
  transform: scale(1.2) rotate(5deg);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
.footer-list-countries li::after {
  content: '';
  position: absolute;
  right: 12px;
  top: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00bcd4, #00e3ae);
  transform: translateY(-50%);
  transition: width 0.3s ease;
  border-radius: 1px;
}
.footer-list-countries li:hover::after {
  width: 20px;
}
.footer-socials {
  display: flex;
  gap: 1.1rem;
  font-size: 2.1rem;
  margin-top: 0.2rem;
}
.footer-socials-right {
  justify-content: flex-end;
  width: 100%;
}
@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }
  .footer-brand, .footer-services, .footer-contact {
    align-items: center;
    text-align: center;
    width: 100%;
    min-width: 0;
  }
  .footer-socials-right {
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .footer {
    padding: 2.2rem 0.5rem 1.2rem 0.5rem;
  }
  .footer-brand-title {
    font-size: 1.3rem;
  }
  .footer-logo {
    width: 44px;
    height: 44px;
  }
  .footer-heading-gradient {
    font-size: 1.1rem;
  }
  .footer-list {
    font-size: 1rem;
  }
  .footer-social-link {
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
  }
}
.footer-logo-bounce-spin {
  animation: footerLogoBounceSpin 0.6s cubic-bezier(.4,0,.2,1);
}
@keyframes footerLogoBounceSpin {
  0% { transform: scale(1.13) rotate(0deg); }
  40% { transform: scale(0.97) rotate(180deg); }
  100% { transform: scale(1.15) rotate(360deg); }
}

.btn,
.btn-primary,
.btn-outline,
.solution-btn,
.unlock-btn,
.submit-btn,
.hero-overlay-btn {
  text-decoration: none !important;
  transition: background 0.25s, color 0.25s, transform 0.18s, box-shadow 0.18s;
  box-shadow: none;
  background: linear-gradient(90deg, #14b8a6 0%, #0ea5e9 100%);
  color: #fff;
  border: none;
}
.btn:hover, .btn:focus,
.btn-primary:hover, .btn-primary:focus,
.btn-outline:hover, .btn-outline:focus,
.solution-btn:hover, .solution-btn:focus,
.unlock-btn:hover, .unlock-btn:focus,
.submit-btn:hover, .submit-btn:focus,
.hero-overlay-btn:hover, .hero-overlay-btn:focus {
  text-decoration: none !important;
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 4px 16px rgba(20,184,166,0.12);
  background: linear-gradient(90deg, #0ea5e9 0%, #14b8a6 100%);
  color: #fff;
  border: none;
}

@media (max-width: 900px) {
  .motivation-form-container {
    flex-direction: column;
    gap: 32px;
    align-items: stretch;
    padding: 0 10vw;
  }
  .motivation-left, .project-form {
    max-width: 100%;
    min-width: 0;
  }
  .project-form {
    padding: 28px 24px 20px 24px;
  }
}

@media (max-width: 600px) {
  .motivation-form-section {
    padding: 36px 0 0 0;
  }
  .motivation-form-container {
    padding: 0 4vw;
  }
  .motivation-title {
    font-size: 2rem;
  }
  .project-form {
    padding: 24px 16px 16px 16px;
    border-radius: 20px;
  }
  .form-title {
    font-size: 1.1rem;
  }
  .project-form input[type="text"],
  .project-form input[type="tel"],
  .project-form input[type="email"],
  .project-form textarea {
    padding: 12px 14px;
    font-size: 0.95rem;
  }
  .submit-btn {
    padding: 14px 0;
    font-size: 1rem;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes formSlideUp {
  from {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.form-error {
  color: #e53935;
  font-size: 0.97rem;
  margin-top: 2px;
  margin-bottom: 2px;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
  font-weight: 500;
}

.project-form input:invalid, .project-form textarea:invalid {
  border-color: #e53935;
  background: #fff6f6;
  animation: shake 0.18s 1;
}

@keyframes shake {
  0% { transform: translateX(0); }
  30% { transform: translateX(-4px); }
  60% { transform: translateX(4px); }
  100% { transform: translateX(0); }
}

/* Loading animation for submit button */
.submit-btn.loading {
  position: relative;
  color: transparent;
}

.submit-btn.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Enhanced focus states */
.project-form input:focus, 
.project-form textarea:focus, 
.country-code-select:focus {
  outline: none;
  border-color: #00bcd4;
  box-shadow: 0 0 0 4px rgba(0,188,212,0.15), 0 4px 12px rgba(0,188,212,0.1);
  background: #f8fdff;
  transform: translateY(-2px);
}

/* Hover effects for form elements */
.project-form input:hover,
.project-form textarea:hover,
.country-code-select:hover {
  border-color: #00bcd4;
  background: #f8fdff;
  transform: translateY(-1px);
  transition: all 0.3s ease;
}

/* Success modal enhancements */
.form-success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  backdrop-filter: blur(8px);
  animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.form-success-content {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0,188,212,0.1);
  animation: popIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

.form-success-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  animation: iconPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s both;
}

@keyframes iconPop {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

.form-success-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
}

.form-success-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 24px;
}

.form-success-close {
  background: linear-gradient(135deg, #00bcd4 0%, #00e3ae 100%);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-success-close:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,188,212,0.3);
} 