* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: #111111;
  color: #ffffff;
  min-height: 100vh;
  overflow-x: hidden;
}

.website-wrapper {
  position: relative;
  min-height: 100vh;
  padding: 28px 6%;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(40, 152, 245, 0.16), transparent 28%),
    radial-gradient(circle at 85% 80%, rgba(40, 152, 245, 0.18), transparent 30%),
    linear-gradient(135deg, #0f0f0f 0%, #181818 50%, #0b0b0b 100%);
}

/* Top Bar */
.top-bar {
  position: relative;
  z-index: 10;
  min-height: 76px;
  padding: 14px 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;

  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-area img {
  width: 58px;
  height: auto;
  object-fit: contain;
  display: block;
  padding: 0;
  margin: 0;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.logo-area span {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.contact-area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-area a,
.social-area a {
  color: #d7d7d7;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease;
}

.contact-area i {
  color: #2898f5;
  margin-right: 8px;
}

.social-area {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.social-area a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-area a:hover,
.contact-area a:hover {
  color: #2898f5;
  transform: translateY(-2px);
}

/* Main Section */
.main-section {
  position: relative;
  z-index: 5;
  min-height: calc(100vh - 105px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
  gap: 70px;
  padding-top: 120px;
}

/* Left Content */
.left-content {
  max-width: 760px;
  transform: translateY(-80px);
}


.small-heading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2898f5;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.small-heading::before {
  content: "";
  width: 34px;
  height: 2px;
  background: #2898f5;
  border-radius: 99px;
}

.left-content h1 {
  min-height: 165px;
  max-width: 820px;
  font-size: clamp(42px, 5.6vw, 82px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -2.5px;
  margin-bottom: 24px;
}

#changingTitle {
  display: inline-block;
}

.title-fade {
  animation: titleFade 0.65s ease;
}

.description {
  max-width: 690px;
  color: #c9c9c9;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 26px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.service-tags span {
  color: #e8e8e8;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
  transition: 0.3s ease;
}

.service-tags span:hover {
  color: #ffffff;
  border-color: rgba(40, 152, 245, 0.45);
  box-shadow: 0 10px 30px rgba(40, 152, 245, 0.15);
  transform: translateY(-3px);
}

.call-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  padding: 16px 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2898f5, #0877d8);
  box-shadow: 0 18px 40px rgba(40, 152, 245, 0.26);
  transition: 0.35s ease;
}

.call-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 55px rgba(40, 152, 245, 0.36);
}

/* Right Form */
.right-content {
  display: flex;
  justify-content: flex-end;
}

.glass-form {
  width: min(100%, 520px);
  padding: 34px;
  border-radius: 30px;

  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(24px);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.42);
  position: relative;
  transform: translateY(-90px);
  overflow: hidden;
}

.glass-form::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(40, 152, 245, 0.18), transparent 40%),
    linear-gradient(315deg, rgba(255, 255, 255, 0.08), transparent 42%);
  pointer-events: none;
}

.glass-form h2,
.glass-form p,
.glass-form label,
.glass-form input,
.glass-form select,
.glass-form textarea,
.glass-form button {
  position: relative;
  z-index: 2;
}

.glass-form h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.form-intro {
  color: #bdbdbd;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 17px;
}

.form-group label {
  display: block;
  color: #dddddd;
  font-size: 14px;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  color: #ffffff;
  font-size: 15px;
  padding: 15px 16px;
  border-radius: 15px;
  outline: none;

  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #8f8f8f;
}

.form-group select {
  color: #cccccc;
}

.form-group option {
  background: #151515;
  color: #ffffff;
}

.form-group textarea {
  resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #2898f5;
  box-shadow: 0 0 0 4px rgba(40, 152, 245, 0.15);
  background: rgba(0, 0, 0, 0.35);
}

.submit-btn {
  width: 100%;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  padding: 16px;
  margin-top: 4px;

  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 999px;
  background: linear-gradient(135deg, #2898f5, #0877d8);
  box-shadow: 0 16px 35px rgba(40, 152, 245, 0.24);
  transition: 0.35s ease;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px rgba(40, 152, 245, 0.35);
}

.form-message {
  min-height: 22px;
  margin-top: 14px;
  font-size: 14px;
}

/* Background Effects */
.blue-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}

.glow-one {
  width: 360px;
  height: 360px;
  right: -130px;
  top: 140px;
  background: rgba(40, 152, 245, 0.25);
}

.glow-two {
  width: 280px;
  height: 280px;
  left: -110px;
  bottom: -90px;
  background: rgba(40, 152, 245, 0.18);
}

.floating-box {
  position: absolute;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(40, 152, 245, 0.22);
  backdrop-filter: blur(12px);
  pointer-events: none;
}

.box-one {
  width: 86px;
  height: 86px;
  top: 24%;
  right: 10%;
  animation: floatBox 7s ease-in-out infinite;
}

.box-two {
  width: 60px;
  height: 60px;
  bottom: 18%;
  left: 48%;
  animation: floatBox 8s ease-in-out infinite reverse;
}

@keyframes titleFade {
  from {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes floatBox {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-24px) rotate(8deg);
  }
}

/* Responsive */
@media (max-width: 1100px) {
  .top-bar {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .logo-area,
  .contact-area,
  .social-area {
    justify-content: center;
  }

  .main-section {
    grid-template-columns: 1fr;
    gap: 45px;
    padding-top: 60px;
  }

  .left-content {
    max-width: 100%;
  }

  .left-content h1 {
    min-height: auto;
  }

  .right-content {
    justify-content: flex-start;
  }

  .glass-form {
    width: 100%;
  }
}

@media (max-width: 700px) {
  .website-wrapper {
    padding: 22px;
  }

  .top-bar {
    padding: 18px;
  }

  .contact-area {
    flex-direction: column;
    gap: 10px;
  }

  .left-content h1 {
    font-size: clamp(40px, 12vw, 56px);
    letter-spacing: -1.5px;
  }

  .description {
    font-size: 15.5px;
  }

  .glass-form {
    padding: 25px;
    border-radius: 24px;
  }

  .glass-form h2 {
    font-size: 26px;
  }
}

@media (max-width: 450px) {
  .logo-area {
    flex-direction: column;
  }

  .service-tags span {
    width: 100%;
    text-align: center;
  }

  .call-btn {
    width: 100%;
    justify-content: center;
  }
}

.file-note {
  position: relative;
  z-index: 2;
  display: block;
  color: #9f9f9f;
  font-size: 12px;
  margin-top: 7px;
}

.form-group input[type="file"] {
  padding: 13px;
  cursor: pointer;
}

.form-group input[type="file"]::file-selector-button {
  color: #ffffff;
  font-weight: 700;
  padding: 10px 16px;
  margin-right: 14px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #2898f5, #0877d8);
  cursor: pointer;
  transition: 0.3s ease;
}

.form-group input[type="file"]::file-selector-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(40, 152, 245, 0.28);
}