* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

:root {
  --primary: #017dde;
  --secondary: #01b3f9;
  --accent: #01b3f9;
  --white: #ffffff;
  --dark: #0f1419;
  --light-gray: #f0f4f8;
  --gray: #64748b;
  --border: #e2e8f0;
  --radius: 12px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
  background-color: var(--white);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}
/* ===== LOADER ===== */
    #loader {
      position: fixed;
      inset: 0;
      background: linear-gradient(135deg, #ffffff, #cfe3ff);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      transition: opacity 0.8s ease;
      overflow: hidden;
    }

    #loader.hide {
      opacity: 0;
      pointer-events: none;
    }

    .loadtext {
      height: 50px;
      animation: pulseText 1.5s ease-in-out infinite;
      filter: drop-shadow(0 0 8px rgba(172, 172, 172, 0.6));
      z-index: 2;
    }

    @keyframes pulseText {
      0%,100% {opacity: 0.4; transform: scale(1);}
      50% {opacity: 1; transform: scale(1.05);}
    }

    /* ===== WAVE EFFECT ===== */
    .wave {
      position: absolute;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(0, 123, 255, 0.397) 0%, rgba(255,255,255,0.8) 40%, transparent 70%);
      border-radius: 50%;
      transform: scale(0);
      opacity: 0;
      animation: waveExpand 2.4s ease-out forwards;
      filter: blur(20px);
      z-index: 1;
    }

    @keyframes waveExpand {
      0% {transform: scale(0); opacity: 1; filter: blur(0px);}
      50% {transform: scale(3); opacity: 0.9; filter: blur(12px);}
      100% {transform: scale(6); opacity: 0; filter: blur(20px);}
    }

section {
  max-width: 1200px;
  margin: 0 auto;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-in-right {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

.glass-card {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
}

.soft-glow {
  box-shadow: 0 0 40px rgba(1, 179, 249, 0.15), 0 0 80px rgba(1, 125, 222, 0.1);
}

.soft-glow-lg {
  box-shadow: 0 0 60px rgba(1, 179, 249, 0.2), 0 0 120px rgba(1, 125, 222, 0.15);
}

.btn {
  padding: 12px 28px;
  border: none;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  border-radius: 50px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(1, 125, 222, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(1, 125, 222, 0.4);
}

.btn-secondary {
  border-radius: 50px;
  background: #017ede00;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--light-gray);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 18px;
}

.background {
  width: 100%;
  background-image: 
    linear-gradient(to top, rgb(255, 255, 255) 5%, rgba(0, 0, 0, 0) 40%),
    url("Rectangle.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.navbar img {
  height: auto;
  width: 150px;
  filter: drop-shadow(0 0 15px rgba(155, 155, 155, 0.9));
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;   /* space-around HELYETT */
  padding: 20px 0;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.left-links,
.right-links {
  display: flex;
  list-style: none;
  gap: 40px;
}

.brand-text {
  color: var(--dark);
}

.nav-links a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 20px;
}

.nav-links a:hover {
  color: var(--primary);
  cursor: pointer;
}

.mobile-login {
  display: none;
}

.login-btn {
  border-radius: 60px;
  width: 180px;
  text-align: center;
}

/* Hamburger alap (desktopon nem látszik) */
.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 6px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background-color: var(--dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.hero {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  padding-bottom: 300px;
}

.hero-content {
  margin-top: 250px;
  gap: 60px;
  align-items: center;
  z-index: 10;
}

.hero-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 20px;
  animation: fade-in-up 0.8s ease-out;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 40px;
  animation: fade-in-up 0.8s ease-out 0.2s backwards;
}

.hero-buttons {
  margin: auto;
  animation: fade-in-up 0.8s ease-out 0.4s backwards;
}

.hero-buttons button {
  margin: 10px;
}

section {
  padding: 1px 0;
}

.section-title {
  padding-top: 100px;
  font-size: 44px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
  color: var(--dark);
}

.section-subtitle {
  font-size: 18px;
  text-align: center;
  color: var(--gray);
  margin-bottom: 60px;
}

.top-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
}

.bottom-row {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.cube {
  background: #fff;
  padding: 65px 50px;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  text-align: center;
}

.cube.small {
  width: 300px;
}

.cube.large {
  width: 620px;
}

.cube h3 {
  color: #01b3f9;
  font-size: 22px;
  margin-bottom: 2px;
  font-weight: 700;
}

.cube p {
  font-size: 15px;
  color: #666;
  line-height: 1.55;
}

.tech-stack {
  padding: 20px 0;
  margin: auto;
}

.section-title {
  background: linear-gradient(270deg, #f0f0f0 20%, #017dde 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 50px;
}

.tech-marquee {
  display: flex;
  gap: 50px;
}

.tech-marquee img {
  height: 50px;
  width: auto;
}

.steps-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 120px auto;
  text-align: center;
}

.step {
  width: 170px;
}

.bubble {
  text-align: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0px 10px #017dde;
  margin: 0 auto 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  font-weight: 700;
}

.step h3 {
  margin: 8px 0 5px;
  font-size: 18px;
}

.step p {
  margin: auto;
  font-size: 13px;
  color: #666;
  line-height: 1.45;
  width: 150px;
}

.curve {
  width: 100px;
  height: 40px;
  border-bottom: 4px solid #01b3f9;
  border-radius: 150%;
  position: relative;
}

.curve.down {
  transform: translateY(-30px);
}

.curve.up {
  transform: translateY(-60px) scaleY(-1);
}

.services-split {
  padding: 30px 0 100px 0;
}

.services-split .container {
  display: flex;
  align-items: flex-start;
}


.service-box {
  text-align: center;
  width: 100%;
  background: #fff;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.06);
}

.service-box.large {
  padding: 40px;
  width: 740px;
}

.service-box.tall {
  min-height: 520px;
  width: 440px;
  margin-right: 20px;
}

.service-box.small {
  width: 100px;
  height: 250px;
}

.service-box h3,
.service-box h4 {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 20px;
  color: #017dde;
}

.service-box p {
  color: #555;
  line-height: 1.55;
  text-align: left;
}

.service-image {
  width: 100%;
  margin-top: 60px;
  border-radius: 8px;
}

.box-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.side-image {
  width: 280px;
  margin: 30px;
  border-radius: 7px;
}

.bottom-two {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.bottom-two .service-box {
  flex: 1;
}

.admin-grid {
  padding-top: 100px;
  display: flex;
  align-items: center;
  gap: 80px;
}

.admin-text {
  flex: 1;
  text-align: left;
}

.admin-text .section-title {
  text-align: left;
  color: #01b3f9;
}

.admin-text .section-subtitle {
  padding: 0;
  margin: 20px;
  text-align: left;
}

.admin-image {
  margin-top: 100px;
  flex: 1;
  text-align: center;
  margin-right: 30px;
}

.admin-image img {
  border: 1px solid #007cff;
  width: 100%;
  max-width: 700px;
  border-radius: 10px;
  box-shadow: 30px 20px 20px rgba(7, 185, 255, 0.158);
    transform: rotateX(15deg) rotateY(20deg) rotateX(-40deg);
  transform-style: preserve-3d;
  transition: 0.6s ease;
}
.admin-image img:hover{
      transform: rotateX(0deg) rotateY(0deg) rotateX(0deg);
        box-shadow: 0px 0px 50px rgba(7, 185, 255, 0.158);

  transform-style: preserve-3d;
}
.admin-text .loginbutt {
  margin: 20px 0;
}

.admin-text .loginbutt h1 {
  color: #fff;
  background: linear-gradient(90deg, #017dde , #01b3f9);
  font-size: 1.5rem;
  padding: 10px 30px;
  font-weight: 400;
  border-radius: 100px;
  width: 400px;
  text-align: center;
  opacity: 1;
  transition: 0.2s all ease;
}

.admin-text .loginbutt h1:hover {
  opacity: 0.8;
  scale: 0.95;
  cursor: pointer;
  box-shadow: 0 0px 20px rgba(7, 185, 255, 0.363);
}
.madminimg{
  display: none;
}
.admin-desc {
  margin-top: 8px;
  line-height: 1.65;
  font-size: 15px;
  color: #555;
}

.why-us {
  padding: 100px 0;
  text-align: center;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  background: linear-gradient(90deg, #007cff, #00b7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 50px;
}

.why-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 70px;
  flex-wrap: wrap;
}

.why-item {
  background: #fff;
  padding: 30px 25px;
  width: 280px;
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.why-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.why-icon {
  font-size: 38px;
  margin-bottom: 15px;
}

.partners-title {
  font-size: 22px;
  margin-bottom: 25px;
  font-weight: 600;
}

.partners-grid {
  display: flex;
  justify-content: center;
  gap: 100px;
  align-items: center;
  flex-wrap: wrap;
  padding: 100px 0;
}

.partner-link img {
  width: 180px;
  filter: drop-shadow(0 0 35px rgba(80, 80, 80, 0.9));
  transition: all ease 0.1s;
}

.partner-link img:hover {
  scale: 0.8;
  opacity: 0.8;
}

.cta-section {
  background: linear-gradient(90deg, #007bffa1, #00b7ff);
  padding: 80px 0;
  text-align: center;
  color: #fff;
  border-radius: 20px;
  margin: 120px auto;
  width: 90%;
  max-width: 1100px;
}

.cta-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.cta-btn {
  padding: 10px 32px;
  font-size: 17px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s;
}

.cta-btn.primary {
  background: #fff;
  color: #007cff;
  border-radius: 100px;
}

.cta-btn.primary:hover {
  background: #e6f3ff;
}

.cta-btn.secondary {
  border: 2px solid #fff;
  color: #fff;
  border-radius: 100px;
}

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

footer {
  background-color: #8b8b8b3a;
}

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

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-brand img {
  width: 150px;
  padding: 10px 0;
  filter: drop-shadow(0 0 35px rgba(80, 80, 80, 0.9));
}

.footer-brand p {
  opacity: 0.7;
}

.footer-brand small {
  display: block;
  margin-top: 8px;
  color: #888;
}
.netter-parent {
  display: none;
}

.footer-links h4 {
  margin-bottom: 10px;
  font-size: 18px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links a {
  color: #007cff;
  text-decoration: none;
  transition: 0.2s;
}

.footer-links a:hover {
  opacity: 0.7;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  color: #999;
}
@media (max-width: 1250px) {
  section{
    padding: 1p 50px ;
  }
  .service-box{
    margin: auto;
  }
  .service-box .box-content{
    display: block;
  }
.service-box img{
 display: block;
 width: 90%;
padding: 0;
margin: auto;
 margin-top: 20px;
 border-radius: 11px;
}
 .services-split .container {
    flex-direction: column;
  }

  .service-box.large {
    position: relative;
    left: 0;
    width: 90%;
    margin-bottom: 30px;
  }
.service-box.tall {
  height: 100%;
  width: 90%;
  margin-right: 5vw;
}
  .service-box.small {
    width: 90%;
    margin: 0 60px;
    height: auto;
  }
  .admin-text {
  margin: 0 5vw;
}
  .service-box h3,
.service-box h4 {
  margin-bottom: 5px;
  text-align: left;
  font-weight: 00;
}
.admin-text .loginbutt h1 {
  color: #fff;
  font-size: 1rem;
  padding: 10px 30px;
  font-weight: 400;
  border-radius: 100px;
  width: 80%;
  margin: auto;
  text-align: center;
  opacity: 1;
  transition: 0.2s all ease;
}
.admin-image{
  display: none;
}
.madminimg{
  display: block;
  width: 80%;
  margin: 30px auto;
  box-shadow: 0px 0px 30px rgba(7, 185, 255, 0.233);

}
.service-box p {
  color: #555;
  line-height: 1.55;
  font-size: 13px;
  width: auto;
}

  .tech-marquee {
    flex-wrap: wrap;
    justify-content: center;
  }

  .tech-marquee img {
    height: 40px;
  }
  .footer-top{
    display: block;
    text-align: center;
  }
  .footer-brand p {
  font-size: 13px;
  padding: 0 30px;
}
.footer-links {
  margin-top: 40px;
  font-size: 15px;
}
.footer-bottom p{
  font-size: 12px;
}
}
@media (max-width: 1000px) {

    .navbar{
    width: 100%;
    padding: 20px 20px;
  }
   .navbar-content {
    padding: 12px 16px;           /* beljebb húzzuk, hogy ne lógjon ki semmi */
    justify-content: space-between;
  }

  .left-links {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    width: 100%;
    padding: 0;
  }

  .left-links li {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  .left-links li a{
    font-size: 15px;
  }
  .left-links.active {
    max-height: 900px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
  }

  .hamburger {
    display: flex;
    margin-left: 0;               /* ne tolja tovább a flexen túl */
  }

  .desktop-login {
    display: none !important;
  }

  .mobile-login {
    display: none;
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.1);
  }

  .left-links.active .mobile-login {
    display: block;
  }

  .mobile-login p {
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--dark);
  }
  .cta-section .container{
    margin: auto;
    padding: 0;
  }
  .steps-container {
  display: block;
  gap: 20px;
  max-width: 100%;
  text-align: center;
  }
.step {
  margin: 30px auto;
  width: 100%;
}
  .curve {
    display: none;
  }
  .step {
    width: 100%;
    max-width: 150px;
  }
  .service-box.small {
    margin: auto;
    height: auto;
  }
}
/* <CHANGE> Mobilos responsivitás 800px-től */
@media (max-width: 800px) {
  .hero {
    padding-top: 10vh;
    height: 100vh;
  }

  .hero-content {
    margin-top: 150px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-buttons button {
    display: block;
    width: 60%;
    margin: 20px auto;
  }

  .section-title {
    font-size: 32px;
    padding-top: 60px;
  }

.tech-stack .section-subtitle{
  font-size: 13px;
  padding: 0 30px;
}
  .bottom-two {
    flex-direction: column;
  }

  .partners-grid {
    gap: 40px;
    padding: 60px 20px;
  }

  .partner-link img {
    width: 120px;
  }
  .why-us{
    padding: 0;
  }
  .why-us .section-subtitle{
    font-size: 15px;
  }
  .cta-section {
    padding: 40px 20px;
    border-radius: 15px;
  }

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

  .cta-section p {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .cta-btn {
    width: 80%;
    margin: auto;
    padding: 12px 10px;
    font-size: 15px;
  }

  .navbar img {
    width: 120px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 28px;
  }

  .section-title {
    font-size: 24px;
  }

  .btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  .btn-lg {
    padding: 14px 24px;
    font-size: 16px;
  }
}






/* CONTACT PAGE LAYOUT */
.contact-container {
    max-width: 1100px;
    margin: 100px auto;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.glass-card {
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 40px;
    width: 500px;
}

.soft-glow {
    box-shadow: 0 0 40px rgba(1, 179, 249, 0.15),
                0 0 80px rgba(1, 125, 222, 0.1);
}

.soft-glow-lg {
    box-shadow: 0 0 60px rgba(1, 179, 249, 0.2),
                0 0 120px rgba(1, 125, 222, 0.15);
    background: #fff;
    border-radius: 20px;
    padding: 40px;
}

/* LEFT FORM */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form label {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid var(--border);
    font-size: 16px;
    outline: none;
    transition: 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(1, 125, 222, 0.2);
}

/* RIGHT CARD (contact info) */
.contact-info{
      width: 500px;
}
.contact-info h2 {
    font-size: 30px;
    margin-bottom: 15px;
    color: var(--primary);
}

.contact-info p {
    color: var(--gray);
    line-height: 1.6;
}

.contact-info div {
    margin-bottom: 25px;
}

.contact-info h3 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 5px;
}
.contact-form textarea {
    resize: none;
}
.contact-form button {
    padding: 12px 28px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(1, 125, 222, 0.3);
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(1, 125, 222, 0.4);
}
.contact-info img {
    width: 100%;
    border-radius: 12px;
    margin-top: 30px;
}

/* TABLET MÉRET (max 900px) */
@media (max-width: 1000px) {

    .contact-container {
        flex-direction: column;
        align-items: center;
        margin: 50px auto;
        padding: 20px;
        gap: 30px;
    }

    .glass-card,
    .contact-info {
        width: 90%;
        padding: 30px;
    }

    .contact-form button {
        width: 100%;
    }
}

/* MOBIL MÉRET (max 600px) */
@media (max-width: 1000px) {
   .contact-hero .section-title{
        font-size: 2rem;
        padding: 0 10vw;
   }
      .contact-hero .section-subtitle{
        font-size: 1rem;
               padding: 0 5vw;
   }
    .glass-card,
    .contact-info {
        width: 100%;
        padding: 5vw 20px;
        border-radius: 15px;
    }

    .contact-container {
        margin: 40px auto;
    }

    .contact-form label {
        font-size: 14px;
    }
.contact-form{
          margin: auto;
          width: auto;
}
    .contact-form input,
    .contact-form textarea {
        font-size: 15px;
        padding: 12px;
    }

    .contact-form button {
        font-size: 15px;
        padding: 12px 20px;
    }

    .contact-info h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .contact-info h3 {
        font-size: 18px;
    }

    .contact-info p {
        font-size: 14px;
    }

    .contact-info img {
        margin-top: 20px;
        border-radius: 10px;
    }
}
