@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

* {
  padding: 0;
  margin: 0;
  outline: none;
  border: none;
  font-family: "Open Sans", sans-serif;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  padding: 0 5%;
  min-height: 100vh;
  background: #000000;
  color: #ffffff;
  overflow-x: hidden;
}

#hero {
  height: 100vh;
  overflow: hidden;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

#hero::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -200px;
  width: 700px;
  height: 900px;
  background: radial-gradient(circle at top right, rgba(36, 176, 183, 0.5) 0%, rgba(36, 176, 183, 0.25) 30%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
  gap: 70px;
  animation: topIn 1.4s ease-in-out forwards;
  opacity: 0;
  animation-delay: 0.2s;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
}
.header-logo {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #24B0B7 0%, #1a1a2e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  transition: 0.3s ease;
}

.header-logo:hover {
  filter: drop-shadow(0 0 8px #24B0B7);
}

.header-logo span {
  font-size: 56px;
  color: #24B0B7;
  line-height: 0.2;
}
nav {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 0;
  justify-content: flex-end;
}

.nav-item {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.nav-item:hover,
.nav-item.active {
  color: #24B0B7;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #24B0B7, #5fd4db);
  border-radius: 2px;
  transition: width 0.3s ease-out;
}

.nav-item:hover::after,
.nav-item.active::after {
  width: 100%;
}

.header-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 115, 232, 0.5);
}

.content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  position: relative;
  z-index: 1;
  flex: 1;
  overflow: hidden;
}
.left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  height: 100%;
  min-width: 0;
  overflow: hidden;
}


.badge-dot {
  width: 8px;
  height: 8px;
  background-color: #24B0B7;
  border-radius: 50%;
  display: inline-block;
}

.content h3 {
  font-size: 3rem;
  color: #ffffff;
  animation: bottomIn 1.4s ease-in-out forwards;
  opacity: 0;
  animation-delay: 0.2s;
  font-weight: 400;
  margin: 0;
}

.content h3 .accent {
  color: #24B0B7;
  font-weight: 700;
}

.content h1 {
  font-size: 5.5rem;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 5px;
  margin: -40px 0;
  animation: bottomIn 1.4s ease-in-out forwards;
  opacity: 0;
  animation-delay: 0.3s;
  line-height: 1.1;
}
h1 span {
  color: #ffffff;
  font-weight: 900;
}

.content h2 {
  font-size: 3rem;
  color: #ffffff;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin: -20px 0 20px 0;
  animation: bottomIn 1.4s ease-in-out forwards;
  opacity: 0;
  animation-delay: 0.3s;
  line-height: 1.2;
  word-spacing: -0.1em;
  white-space: nowrap;
  overflow: visible;
}

.content h2 .accent-large {
  color: #24B0B7;
  font-weight: 700;
}

.content p {
  font-size: 18px;
  line-height: 1.8;
  color: #cccccc;
  animation: bottomIn 1.4s ease-in-out forwards;
  opacity: 0;
  animation-delay: 0.4s;
}

.cta-section {
  display: flex;
  align-items: center;
  gap: 60px;
}

.cta-section button {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  height: 50px;
  width: 300px;
  cursor: pointer;
  transition: 0.3s ease;
  border-radius: 25px;
  box-shadow: 0 8px 20px rgba(26, 26, 46, 0.15);
  
  animation: bottomIn 1.4s ease-in-out forwards;
  opacity: 0;
  animation-delay: 0.5s;
}
.cta-section a {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  height: 50px;
  width: 300px;
  cursor: pointer;
  transition: 0.3s ease;
  border-radius: 25px;
  box-shadow: 0 8px 20px rgba(26, 26, 46, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  
  animation: bottomIn 1.4s ease-in-out forwards;
  opacity: 0;
  animation-delay: 0.5s;
}
.cta-1 {
  background: #ffffff;
  color: #000000;
}

.cta-1:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.3);
}

.cta-2 {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #24B0B7;
}

.cta-2:hover {
  background-color: #24B0B7;
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(36, 176, 183, 0.4);
} 
.right {
  position: relative;
  overflow: hidden;
}

.hero-img {
  width: 140%;
  position: absolute;
  bottom: -250px;
  right: -120px;
  animation: imgIn 1.4s ease-in-out forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.hero-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
  border-radius: inherit;
}

.social-section {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 50px;
}
.social-section i {
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 60px;
  padding: 0;
  border-radius: 12px;
  color: #ffffff;
  cursor: pointer;
  transition: 0.3s ease;
  background-color: #1a1a1a;
  box-shadow: 0 8px 24px rgba(255, 23, 68, 0.1);
  border: 1px solid #333;
  
  animation: bottomIn 1.4s ease-in-out forwards;
  opacity: 0;
  animation-delay: 0.6s;
}
.social-section i:hover {
  background-color: #24B0B7;
  color: #ffffff;
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(36, 176, 183, 0.3);
}

.img-wrap {
  width: 100%;
  height: 100vh;
}

/* Animation */
@keyframes bottomIn {
  from {
    transform: translateY(250px) ;
  }
  to {
    transform: translateY(0) ;
    opacity: 1;
  }
}

@keyframes topIn {
  from {
    transform: translateY(-100px) ;
  }
  to {
    transform: translateY(0) ;
    opacity: 1;
  }
}

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

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

/* Typewriter Animation */
.typing-container {
  position: relative;
  display: inline-block;
}

.typing {
  color: #24B0B7;
  font-weight: 700;
  display: inline-block;
  min-width: 280px;
}

.typing::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: #24B0B7;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

/* Responsive - Tablet */
@media screen and (max-width: 768px) {
  body {
    padding: 0 5%;
  }

  #hero::before {
    display: none;
  }

  header {
    flex-direction: column;
    gap: 25px;
    padding: 20px 0;
  }

  nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

  .nav-item {
    font-size: 14px;
  }

  .content {
    grid-template-columns: 1fr;
    padding-top: 50px;
  }

  .content h3 {
    font-size: 2rem;
  }

  .content h1 {
    font-size: 3.5rem;
    letter-spacing: 2px;
    margin: -20px 0;
  }

  .content h2 {
    font-size: 2rem;
    white-space: normal;
  }

  .content p {
    font-size: 16px;
  }

  .cta-section {
    flex-direction: column;
    gap: 20px;
  }

  .cta-section button,
  .cta-section a {
    width: 100%;
  }

  .social-section {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-img {
    display: none;
  }
}

/* Responsive - Mobile */
@media screen and (max-width: 428px) {
  body {
    padding: 0 4%;
    overflow-y: auto;
  }

  #hero {
    overflow: visible;
    height: auto;
    min-height: auto;
    padding-bottom: 20px;
  }

  #hero::before {
    display: none !important;
  }

  header {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 15px 0;
  }

  .header-logo {
    font-size: 24px;
  }

  .header-logo span {
    font-size: 40px;
  }

  nav {
    flex-direction: row;
    gap: 30px;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
  }

  .nav-item {
    font-size: 13px;
    padding: 8px 0;
    font-weight: 500;
  }

  .nav-item::after {
    height: 2px;
  }

  .nav-item.active::after {
    width: 100%;
  }

  .content {
    display: flex;
    flex-direction: column;
    padding-top: 20px;
  }

  .left {
    height: auto;
    gap: 15px;
  }

  .content h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
  }

  .content h1 {
    font-size: 1.8rem;
    letter-spacing: 0.5px;
    margin: -5px 0 0 0;
    text-transform: uppercase;
  }

  h1 span {
    color: #ffffff;
  }

  .content h2 {
    font-size: 1.3rem;
    white-space: normal;
    margin: 5px 0;
    line-height: 1.3;
  }

  .content p {
    font-size: 13px;
    line-height: 1.5;
    margin-top: 0;
  }

  .cta-section {
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
  }

  .cta-section button,
  .cta-section a {
    width: 100%;
    height: 40px;
    font-size: 12px;
    border-radius: 20px;
  }

  .cta-1:hover {
    transform: translateY(-2px);
  }

  .cta-2:hover {
    transform: translateY(-2px);
  }

  .social-section {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 15px;
  }

  .social-section i {
    height: 45px;
    width: 45px;
    font-size: 18px;
  }

  .hero-img {
    display: none;
  }

  .typing {
    min-width: 150px;
  }
}

/* Testimonials Section */
#testimonials {
  width: 100%;
  background-color: #000;
  padding: 6rem 0;
  color: #fff;
}

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

#testimonials h2 {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
  animation: fadeInUp 0.8s ease-out;
}

#testimonials .accent-large {
  color: #24B0B7;
}

.testimonials-subtitle {
  text-align: center;
  color: #cccccc;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.testimonial-card {
  background: linear-gradient(135deg, rgba(36, 176, 183, 0.05), rgba(36, 176, 183, 0));
  border: 1px solid rgba(36, 176, 183, 0.2);
  border-radius: 12px;
  padding: 2rem;
  animation: fadeInUp 0.8s ease-out;
  animation-delay: calc(var(--index) * 0.2s);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: #24B0B7;
  box-shadow: 0 8px 30px rgba(36, 176, 183, 0.15);
  transform: translateY(-5px);
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.stars i {
  color: #24B0B7;
  font-size: 0.9rem;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.author-info p {
  font-size: 0.85rem;
  color: #24B0B7;
  margin: 0;
}

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

@media (max-width: 768px) {
  #testimonials {
    padding: 4rem 0;
  }

  #testimonials h2 {
    font-size: 2rem;
  }

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

@media (max-width: 428px) {
  #testimonials {
    padding: 2rem 0;
  }

  #testimonials h2 {
    font-size: 1.5rem;
  }

  .testimonials-container {
    padding: 0 1rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }
}