@import url('https://fonts.googleapis.com/css2?family=Eagle+Lake&display=swap');

:root {
    --primary-color: #007bff;
    --primary-blue: #4a7aff;
    --primary-purple: #a855f7;
    --secondary-color: #00d4ff;
    --gradient-color: linear-gradient(45deg, #D16BA5, #86A8E7, #5FFBF1);
    --text-color: #ffffff;
    --bg-color: #0a0a1f;
    --black: #000000;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-blur: blur(15px);
    --navbar-height: 80px;
    --max-width: 1468px;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }

  body {
    background: 
    radial-gradient(circle at top, #d000ff 0%, transparent 15%),
    /* radial-gradient(circle at bottom, var(--primary-blue) 0%, transparent 12%), */
    #000306;
    color: var(--text-color);
    overflow-x: hidden;
    position: relative;
  }


  .about-us-hero {
    max-width: 1000px;
    max-width: 98%;
    margin: 80px auto;
    text-align: center;
  }
  
  .top-text {
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 10px;
    margin-bottom: 10px;
  }
  
  .top-text p {
    display: inline-block;
    font-size: 16px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    padding: 10px 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
  }
  
  h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--white);
  }
  
  h1 span {
    font-family: "Eagle Lake", serif;
  font-size: 3rem;
  background: linear-gradient(45deg, #D16BA5, #86A8E7, #5FFBF1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  }
  
  .top-p {
    color: #ececec;
    font-size: 16px;
    max-width: 600px;
    font-weight: 400;
    margin: 0px auto;
    line-height: 1.6;
    margin-top: 20px;
  }

  @media(max-width:768px){
h1{
    font-size: 2.0rem;
}
body {
    background: 
    radial-gradient(circle at top, #d000ff 0%, transparent 10%),
    /* radial-gradient(circle at bottom, var(--primary-blue) 0%, transparent 12%), */
    #000306;
  }
  }










  .timeline-section {
    width: 1000px;
    max-width: 98%;
    margin: 80px auto;
    background: transparent;
    overflow: hidden;
  }
  
  .timeline-container {
    text-align: center;
  }
  
  .timeline-container h2 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
  }
  
  .timeline {
    position: relative;
    padding: 20px 0;
  }
  
  .timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #0bb0fc, #001174);
    border-radius: 2px;
  }
  
  .timeline-item {
    position: relative;
    margin: 40px 0;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  .timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .timeline-item:nth-child(odd) .timeline-content {
    left: 0;
    text-align: right;
    transform: translateX(-20px);
  }
  
  .timeline-item:nth-child(even) .timeline-content {
    left: 50%;
    text-align: left;
    transform: translateX(70px);
  }
  
  .timeline-item:nth-child(odd) .timeline-content::before {
    right: -20px;
    border-left: 10px solid var(--primary-color);
    border-right: none;
  }
  
  .timeline-item:nth-child(even) .timeline-content::before {
    left: -20px;
    border-right: 10px solid #ff6f61;
    border-left: none;
  }
  
  .timeline-content {
    position: relative;
    width: 45%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #f5f5f5;
    transition: transform 0.4s ease;
  }
  
  .timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 0;
    height: 0;
    border: 10px solid transparent;
  }
  
  .timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--white);
  }
  
  .timeline-content p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .timeline-item::after {
    content: attr(data-year);
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.4s ease;
  }
  
  .timeline-item.visible::after {
    transform: translateX(-50%) scale(1.2);
  }
  
  @media (max-width: 768px) {
    .timeline::before {
      left: 30px;
    }
  
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
      left: 60px;
      width: calc(100% - 80px);
      text-align: left;
      transform: none;
    }
  
    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
      left: -20px;
      border-right: 10px solid #ff6f61;
      border-left: none;
    }
  
    .timeline-item::after {
      left: 30px;
      transform: translateX(-50%);
    }
  
    .timeline-item.visible::after {
      transform: translateX(-50%) scale(1.2);
    }
  }



  .team-section {
    background: transparent;
    max-width: 1200px;
    width: 98%;
    margin: 80px auto;
  }
  
  .team-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .remote-label {
    display: block;
    color: #ff6f61;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  .remote-h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 16px;
  }
  
  .team-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
    justify-items: center;
  }
  
  .team-card {
    position: relative;
    width: 100%;
    max-width: 300px;
    height: 400px;
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease;
  }
  
  .team-card:hover {
    transform: translateY(-10px);
  }
  
  .team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
    z-index: 2;
  }
  
  .team-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, #0800ff, transparent);
    z-index: 2;
  }
  
  .card-image {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 75%;
    z-index: 23;
  }
  
  .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  
  .card-content {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 3;
  }
  
  .card-content h3 {
    font-size: 1.5rem;
    color: #f5f5f5;
    font-weight: 600;
    margin-bottom: 5px;
  }
  
  .card-content p {
    font-size: 1rem;
    color: #f5f5f5;
    opacity: 0.8;
  }
  
  @media (max-width: 768px) {
    .team-header h2 {
      font-size: 2.2rem;
    }
  
    .team-cards {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 15px;
    }
  
    .team-card {
      max-width: 250px;
      height: 350px;
    }
  
    .card-content h3 {
      font-size: 1.3rem;
    }
  
    .card-content p {
      font-size: 0.9rem;
    }
  }



  .bh-sec-gallery {
    padding: 80px 20px;
    background: transparent;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .bh-sec-content {
    text-align: center;
  }
  
  .bh-sec-subtitle {
    font-size: 1.2rem;
    color: #f5f5f5;
    opacity: 0.7;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  .bh-sec-title {
    font-size: 2.8rem;
    color: #f5f5f5;
    font-weight: 700;
    margin-bottom: 40px;
  }
  
  .bh-sec-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .bh-sec-top-images {
    display: flex;
    gap: 20px;
  }
  
  .bh-sec-image-square,
  .bh-sec-image-rect,
  .bh-sec-image-full {
    flex: 1;
  }
  
  .bh-sec-image-square img,
  .bh-sec-image-rect img,
  .bh-sec-image-full img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
  }
  
  .bh-sec-image-square {
    flex: 1;
  }
  
  .bh-sec-image-rect {
    flex: 1.5;
  }
  
  .bh-sec-image-full {
    width: 100%;
  }
  
  @media (max-width: 768px) {
    .bh-sec-top-images {
      flex-direction: column;
      gap: 20px;
    }
  
    .bh-sec-image-square,
    .bh-sec-image-rect,
    .bh-sec-image-full {
      width: 100%;
    }
  
    .bh-sec-image-square img,
    .bh-sec-image-rect img,
    .bh-sec-image-full img {
      height: 250px;
      width: 100%;
    }
  
    .bh-sec-title {
      font-size: 2.2rem;
    }
  }








  /* -------------------------Lets-Discuss---------------- */

  /* <!-- -------------------------Get Started Section---------------------- --> */
.gt-st-contact-section {
  color: #fff;
  padding: 50px 20px;
  text-align: center;
  opacity: 0;
  margin: 100px auto;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.gt-st-contact-section.gt-st-visible {
  opacity: 1;
  transform: translateY(0);
}

.gt-st-text-container {
  max-width: 800px;
  margin: 0 auto 30px;
}

.gt-st-subheading {
  font-size: 1.2rem;
  color: #B0B0B0;
  margin-bottom: 10px;
}

.gt-st-heading {
  font-size: 2.5rem;
  line-height: 1.3;
}

.gt-st-highlighted-text {
  font-family: "Eagle Lake", serif;
  font-size: 3rem;
  background: linear-gradient(45deg, #D16BA5, #86A8E7, #5FFBF1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media(max-width: 768px) {
  .gt-st-highlighted-text {
    font-size: 2.0rem;
  }
}
.gt-st-button {
  background: #fff;
  color: #000;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s ease;
}

.gt-st-button:hover {
  background: linear-gradient(45deg, #D16BA5, #86A8E7, #5FFBF1);
  color: #fff;
}

.gt-st-button:hover .gt-st-arrow {
  stroke: #fff;
}

.gt-st-arrow {
  transition: transform 0.2s ease;
}


/* ------------------Lets Discuss---------------------- */

.ct-sec-container {
    max-width: 800px;
    width: 98%;
    margin: 80px auto;
    text-align: center;
    position: relative;
    overflow: visible;
  }
  
  .ct-sec-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .ct-sec-subtitle {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .ct-sec-title {
    font-size: 2.5rem;
    color: #f5f5f5;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.3;
  }
  
  .ct-sec-highlight1 {
    background: var(--gradient-color);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: "Eagle Lake", serif;
  }
  

  
  .ct-sec-button {
    background: #fff;
    color: #000;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    display: inline-flex
;
    align-items: center;
    gap: 8px;
    transition: background 0.3s ease;
  }
  
  .ct-sec-button:hover {
    transform: scale(1.05);
    background: var(--gradient-color);
    color: var(--white);
  }
  
  .ct-sec-btn-arrow {
    font-size: 1rem;
    display: inline-block;
    transition: transform 0.1s ease-out;
  }
  
  @media (max-width: 768px) {
    .ct-sec-title {
      font-size: 2rem;
    }
  
    .ct-sec-button {
      padding: 10px 25px;
      font-size: 1rem;
    }
  }