@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Monomaniac+One&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Edu+SA+Beginner:wght@400..700&family=Monomaniac+One&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/* About Section */
.about-section {
  padding: 100px 40px;
  background: #000000;
  position: relative;
  margin-top: 0;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}
a {
  color: #00f7ff;
  text-decoration: none;
}

.about-tagline {
  display: none;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.about-text-block-border {
  /* padding: 2px; */
  background-color: #00f7ff;
  background: linear-gradient(110deg, #000000, #00f2fe21, #00f6fe);
  border-radius: 20px;
  position: relative;
}
.section-header {
  position: absolute;
  color: #0097b2;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
  left: 38px;
  top: -15px;

  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 1.3rem;
}
.about-text-block {
  background-color: #000000;
  border-radius: 20px;
  padding: 40px;
  margin: 3px;
  position: relative;
  text-align: start;
}

.company-name {
  color: white;
  /* font-size: 1.8rem; */
  font-weight: bold;
  margin-bottom: 20px;
  font-weight: 900;
}

.about-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.8rem;
  line-height: 1.2;
  font-style: italic;

  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.avatar-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.avatar-image {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  /* background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57); */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  /* box-shadow: inset -11px -20px 40px rgba(64, 224, 208, 0.3); */
  /* animation: avatarPulse 4s ease-in-out infinite; */
}

.avatar-face {
  width: 200px;
  height: 200px;
  /* background: #2c3e50; */
  border-radius: 50%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.detailed-description {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 80px;
}

.character-avatar {
  width: 310px;
  /* height: 300px; */
  /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
  /* border-radius: 50%; */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  /* box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3); */
}

.character {
  width: 200px;
  height: 250px;
  /* background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); */
  border-radius: 15px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.detailed-text-container-border {
  background: linear-gradient(283deg, #000000, #0a979c6e, #0097b2);

  padding: 4px;
  border-radius: 20px;
}

.detailed-text {
  border-radius: 20px;
  padding: 40px;
  background-color: #000000;
  font-family: "Edu SA Beginner", cursive;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  position: relative;
}

.detailed-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.7rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.detailed-text p:last-child {
  margin-bottom: 0;
}

.read-more-btn {
  color: #0097b2;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  margin-top: 20px;
  display: inline-block;
  transition: all 0.3s ease;
  position: absolute;
  bottom: -10px;
  right: 26px;
}

.read-more-btn:hover {
  color: #87ceeb;
  transform: translateX(5px);
}

/* Stats Section */
.stats-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 40px 0; /* Ensure space for the pseudo-elements */
}

.stats-container::before,
.stats-container::after {
  content: "";
  position: absolute;
  top: 50%; /* Center vertically */
  transform: translateY(-50%);
  height: 3px;
  width: clamp(80px, 20vw, 150px);
}

.stats-container::before {
  left: calc(-1 * clamp(80px, 20vw, 150px));
  background: linear-gradient(135deg, #0c0c0c, #0097b2);
}

.stats-container::after {
  right: calc(-1 * clamp(80px, 20vw, 150px));
  background: linear-gradient(135deg, #0097b2, #0c0c0c);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 4rem;
  font-weight: bold;
  color: #0097b2;
  margin-bottom: 10px;
  display: block;
  text-shadow: 0 0 20px rgba(64, 224, 208, 0.5);
}

.stat-label {
  color: #0097b2;
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-line {
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #0097b2, transparent);
  margin: 20px auto;
}

@media (max-width: 1100px) {
  .stats-container::before,
  .stats-container::after {
    width: clamp(80px, 20vw, 80px);
  }

  .stats-container::before {
    left: calc(-1 * clamp(80px, 20vw, 80px));
  }

  .stats-container::after {
    right: calc(-1 * clamp(80px, 20vw, 80px));
  }
}
@media (max-width: 850px) {
  .about-tagline {
    display: none;
    position: absolute;
    top: -160px;
    left: 50%;
    transform: translateX(-50%);
    color: #0097b2;
    font-size: 1.7rem;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    font-style: normal;
    text-align: center;
    z-index: 2;
    font-family: "Monomaniac One", sans-serif;
    font-weight: 300;
    font-style: normal;
    /* text-transform: uppercase; */
    letter-spacing: 1px;
    width: 97%;
  }

  .avatar-container {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }

  .about-text-block-border {
    background: linear-gradient(119deg, #000000, #000000, #0097b2);
    margin-top: 250px;
  }
  .detailed-text-container-border {
    margin-top: -80px;
    background: linear-gradient(283deg, #000000, #0a979c6e, #0097b2);
    text-align: start;
  }
  .detailed-text {
  }
  .about-content {
    grid-template-columns: 1fr;
  }

  .character-avatar {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: none;
  }
  .detailed-description {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .stats-container::before {
    display: none;
  }

  .stats-container::after {
    display: none;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .navbar {
    /* padding: 15px 20px; */
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 50px;
    transition: right 0.3s ease;
    gap: 30px;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu a {
    font-size: 1.3rem;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .main-content {
    padding: 30px 20px 40px;
  }

  .brand-logo {
    font-size: 5rem;
    letter-spacing: -3px;
  }

  .brand-name {
    font-size: 2.5rem;
    letter-spacing: 2px;
  }

  .tagline {
    font-size: 1.2rem;
    letter-spacing: 1px;
  }

  .lets-talk-btn {
    padding: 10px 25px;
    font-size: 0.9rem;
  }

  /* About Section Mobile */
  .about-section {
    padding: 60px 20px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .about-text-block {
    padding: 30px 20px;
  }

  .company-name {
    font-size: 1.5rem;
  }

  .about-description {
    font-size: 1.1rem;
  }

  .avatar-image {
    width: 250px;
    height: 250px;
  }

  .avatar-face {
    width: 160px;
    height: 160px;
  }

  .detailed-description {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .character-avatar {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: none;
  }

  .detailed-text {
    padding: 30px 20px;
  }

  .detailed-text p {
    font-size: 1rem;
  }

  .stats-container {
    gap: 30px;
    padding: 20px 0;
  }

  .stats-container::before {
    display: none;
  }

  .stats-container::after {
    display: none;
  }

  .stat-number {
    font-size: 3rem;
  }

  .stat-label {
    font-size: 1rem;
  }

  .section-header::after {
    width: 40vw;
  }
}

@media (max-width: 650px) {
  .about-tagline {
    display: block;
  }
}

@media (max-width: 480px) {
  .avatar-container {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }

  .about-text-block-border {
    background: linear-gradient(119deg, #000000, #000000, #0097b2);
    margin-top: 250px;
  }
  .brand-logo {
    font-size: 4rem;
  }

  .brand-name {
    font-size: 2rem;
  }

  .section-header {
    left: 11px;
    font-size: 1rem;
  }

  .tagline {
    font-size: 1rem;
  }

  .navbar {
    padding: 7px 15px;
  }

  .logo {
    font-size: 1.5rem;
  }
}
