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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(135deg, #6a4c93 0%, #3d2e7c 50%, #6e0785 100%);
  color: #ffffff;
  overflow-x: hidden;
}

a {
  cursor: pointer;
  color: #00d4ff;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  backdrop-filter: blur(20px);
  background: rgba(109, 76, 147, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #00d4ff 0%, #00b4d8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: #00d4ff;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background: #00d4ff;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-links a:hover::after {
  width: 100%;
}

.btnDropdownLang {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  padding: 0px;
  border: none;
  cursor: pointer;
  background: transparent;
  display: flex;
  justify-content: end;
  align-items: center;
  min-width: 100px;
}

.btnDropdownLangDrawer {
  margin-bottom: 20px;
  justify-content: center;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content-drawer {
  position: relative;
  top: -10px;
}

.dropdown-content div {
  cursor: pointer;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: flex;
}

.dropdown-content div:hover {
  background: #ddd;
}

.dropdown-content-icon {
  width: 20px;
  height: 15px;
  margin-right: 8px;
}

.show {
  display: block;
}

/* drawer drawerMenu */

.btnDrawerMenu {
  display: none;
  cursor: pointer;
  font-size: 30px;
}

.drawerMenu {
  min-height: 100%;
  width: 0;
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  backdrop-filter: blur(20px);
  background: rgba(109, 76, 147, 0.1);
  overflow-x: hidden;
  transition: all 0.3s ease;
  padding-top: 70px;
  display: flex;
  flex-direction: column;
}

.drawerMenuContent {
  height: 100%;
  width: 100%;
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  top: 0;
}

.drawerLinks {
  margin-top: 50px;
}

.drawerMenu a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  display: block;
  font-size: 1.2rem;
  transition: 0.3s;
}

.drawerMenu a:hover {
  color: #00d4ff;
}

.drawerMenu .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-left {
  z-index: 2;
  animation: slideInLeft 1.2s ease-out;
}

.hero-subtitle {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-title .highlight {
  background: linear-gradient(135deg, #00d4ff 0%, #00b4d8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.6;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.8s both;
}

.tech-badge {
  background: rgba(0, 212, 255, 0.2);
  border: 1px solid rgba(0, 212, 255, 0.3);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.tech-badge:hover {
  background: rgba(0, 212, 255, 0.3);
  transform: translateY(-2px);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  animation: fadeInUp 1s ease-out 1s both;
}

.btn {
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #00d4ff 0%, #00b4d8 100%);
  color: #ffffff;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #00b4d8 0%, #0096c7 100%);
  transition: left 0.3s ease;
  z-index: -1;
}

.btn-primary:hover::before {
  left: 0;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #00d4ff;
}

/* Hero Right - Developer Illustration */
.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slideInRight 1.2s ease-out;
}

.developer-scene {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.developer {
  position: relative;
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

.code-lines {
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
}

.code-line {
  height: 2px;
  background: #00d4ff;
  margin-bottom: 4px;
  border-radius: 1px;
  animation: typeCode 2s ease-in-out infinite;
}

.code-line:nth-child(1) {
  width: 80%;
  animation-delay: 0s;
}

.code-line:nth-child(2) {
  width: 60%;
  animation-delay: 0.5s;
}

.code-line:nth-child(3) {
  width: 90%;
  animation-delay: 1s;
}

.code-line:nth-child(4) {
  width: 70%;
  animation-delay: 1.5s;
}

/* Floating Code Elements */
.floating-code {
  position: absolute;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 8px;
  padding: 1rem;
  backdrop-filter: blur(10px);
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  animation: floatCode 4s ease-in-out infinite;
}

.code-1 {
  top: 10%;
  right: 2%;
  animation-delay: 0s;
  text-align: left;
}

.code-2 {
  top: 60%;
  right: 2%;
  animation-delay: 1.5s;
  text-align: left;
}

.code-3 {
  top: 30%;
  left: 5%;
  animation-delay: 3s;
  text-align: left;
}

/* Stats Section */
.stats {
  padding: 6rem 0;
  background: rgba(0, 0, 0, 0.2);
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.stats-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #00d4ff, transparent);
  transition: all 0.3s ease;
}


.stat-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #a0a0a0;
  font-size: 1.1rem;
}

/* Services Section */
.services {
  padding: 8rem 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
}

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

.section-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 4rem;
  background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #00d4ff, transparent);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3039af 0%, #6a4c93 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.service-card p {
  color: #a0a0a0;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.service-techs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-tag {
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.2);
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-size: 0.7rem;
  color: #00d4ff;
}

/* About Section */
.about {
  padding: 8rem 0;
}

.about-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.about-scene {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.about-content {
  display: flex;
  flex-direction: column;
}

.floating-about {
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 8px;
  padding: 1rem;
  backdrop-filter: blur(10px);
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  animation: floatCode 4s ease-in-out infinite;
  margin: 20px;
}

.about-1 {
  width: 300px;
  top: 10%;
  right: 2%;
  animation-delay: 0.5s;
  text-align: left;
}

.about-2 {
  width: 300px;
  top: 60%;
  right: 2%;
  animation-delay: 1.5s;
  text-align: left;
}

.about-3 {
  width: 300px;
  top: 30%;
  left: 10%;
  animation-delay: 1s;
  text-align: left;
}

.about-4 {
  width: 300px;
  top: 60%;
  left: 10%;
  animation-delay: 2s;
  text-align: left;
}

/* Contact Section */
.contact {
  padding: 8rem 0;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(109, 76, 147, 0.1) 100%);
}

.contact-sub-title {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

.contact-sub-title-2 {
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.contact-form {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
}

.contact-message {
  resize: vertical;
  height: 200px;
}

.contact-btn-submit {
  width: 200px !important;
}

.contact-loading-email {
  display: none;
}

.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #ffffff;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #00d4ff;
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.submit-btn {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #00d4ff 0%, #00b4d8 100%);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.small-loader {
  width: 16px;
  height: 16px;
  border: 2px solid #FFF;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

.footer {
  width: 100%;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-license {
  color: rgba(255, 255, 255, 0.8);
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes floatCode {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(2deg);
  }
}

@keyframes typeCode {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

/* Responsive Design */

@media (max-width: 1000px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-subtitle {
    margin-top: 6rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .code-1 {
    right: 15%;
  }

  .code-2 {
    right: 15%;
  }

  .code-3 {
    left: 15%;
  }

  .cta-buttons {
    justify-content: center;
    align-items: center;
  }

  .about-scene {
    flex-direction: column;
  }

  .about-content {
    flex-direction: row;
  }
}

@media (max-width: 800px) {
  .nav-links {
    display: none;
  }

  .btnDrawerMenu {
    display: block;
  }
} 

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .floating-code {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero-content {
    padding: 0px 20px;
  }

  .about-content {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  .hero-content {
    padding: 0px 4px;
  }
}
