
  .gif-container {
    position: relative;
    width: 100%;
    height: 1000px;
    object-fit: cover;
    margin: 0 0px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
  }

  .gif-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.5s ease-in-out;
  }

  .gif-container img.second-gif {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
  }

  .gif-container:hover img.second-gif {
    opacity: 1;
  }

  .overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    font-weight: 700;
    font-size: 2rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  }

  .overlay-text p {
    font-size: 1rem;
    font-weight: 400;
    margin-top: 10px;
  }

  .title {
    font-family: "Orbitron", Sans-serif;
    font-size: 50px;
    font-weight: 600;
    line-height: 59px;
    color: #FFFFFF;
    text-align: center;
  }

  .num {
    color: #94E3F5;
    font-family: "Orbitron", Sans-serif;
    font-size: 123px;
    font-weight: 600
  }

  .part {
    color: #FFFFFF;
    font-family: "Orbitron", Sans-serif;
    font-size: 21px;
    font-weight: 500;
  }

  @media (max-width: 768px) {
  .num {
    font-size: 72px; /* reduced for tablets/mobiles */
  }

  .part {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .num {
    font-size: 52px; /* smaller phones */
  }

  .part {
    font-size: 14px;
  }
}
  .subtitle {
    font-size: 17px;
    font-weight: 500;
    color: #FFFFFF;
  }

  .image-wrapper {
    position: relative;
    display: inline-block;
    max-width: 100%;
  }

  .overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 110%;
    height: 110%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(10, 10, 10, 0.8));
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 1;
    border-radius: 10px;
    pointer-events: none;
  }

  .image-wrapper img {

    border-radius: 12px;
    display: block;
  }

  .image-wrapper:hover .overlay {
    animation: closeFlowerRect 0.8s infinite ease-in-out reverse forwards;
  }

  @keyframes closeFlowerRect {
    100% {
      width: 110%;
      height: 110%;
      opacity: 0.3;
      border-radius: 0px;
    }

    70% {
      width: 90%;
      height: 90%;
      opacity: 0.5;
      border-radius: 0px;
    }

    40% {
      width: 40%;
      height: 40%;
      opacity: 0.6;
      border-radius: 0px;
    }

    0% {
      width: 0%;
      height: 0%;
      opacity: 0;
      border-radius: 0px;
    }
  }

  .icon-badge {
    position: absolute;
    bottom: -11px;
    right: -2%;
    width: clamp(50px, 10vw, 85px);
    height: clamp(50px, 10vw, 85px);
    border-radius: 50%;
    background-color: #0b5d4d;
    border: clamp(3px, 0.8vw, 5px) solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease-in-out;
  }

  .icon-badge i {
    font-size: clamp(1rem, 2.5vw, 1.8rem);
  }

  /* ✨ Gelation Animation on Hover */
  .icon-badge:hover {
    animation: gelation 0.5s ease-in-out;
    background-color: #1d1d1d;
  }

  @keyframes gelation {
    0% {
      transform: scale(1, 1);
    }

    25% {
      transform: scale(1.1, 0.9);
    }

    50% {
      transform: scale(0.9, 1.1);
    }

    75% {
      transform: scale(1.05, 0.95);
    }

    100% {
      transform: scale(1, 1);
    }
  }

  .custom-card:hover {
    background-color: #fef7e6;

  }

  .custom-card:hover hr {
    color: black
  }

  .job-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #212529;
  }

  .job-meta {
    font-size: 0.9rem;
    color: #6c757d;
  }

  .apply-btn {
    background-color: #dc3545;
    color: #fff;
    border-radius: 25px;
    padding: 6px 20px;
    font-size: 0.9rem;
    border: none;
    transition: all 0.3s ease;
  }

  :root {
    --primary: #4361ee;
    --secondary: #3a0ca3;
    --accent: #f72585;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
  }

  body {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }


  .team-section {
    background: white;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    margin: 2rem 0;
  }

  .section-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 2rem;
    text-align: center;
  }

  .section-header h1 {
    font-weight: 700;
    margin-bottom: 0.5rem;
  }

  .section-header p {
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
  }

  .team-content {
    padding: 2rem;
  }

  .nav-pills {
    gap: 10px;
  }

  .nav-pills .nav-link {
    border-radius: 12px;
    transition: var(--transition);
    background-color: var(--light);
    color: var(--dark);
    padding: 1rem;
    border: none;
    text-align: left;
    margin-bottom: 10px;
  }

  .nav-pills .nav-link:hover {
    background-color: rgba(67, 97, 238, 0.1);
    transform: translateX(4px);
  }

  .nav-pills .nav-link.active {
    background: linear-gradient(135deg, #0b5d4d
, #ffffff);
    color: #fff;
    box-shadow: 0 6px 15px rgba(67, 97, 238, 0.3);
  }

  .nav-pills .nav-link.active img {
    border-color: #fff !important;
  }

  .nav-pills .nav-link img {
    width: 50px;
    height: 50px;
    transition: 0.3s;
    object-fit: cover;
  }

  .nav-pills .nav-link:hover img {
    transform: scale(1.05);
  }

  .member-badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    border-radius: 50px;
    margin-top: 5px;
  }

  .badge-design {
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
    color: #8a4b58;
  }

  .badge-dev {
    background: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 100%);
    color: #2c5282;
  }

  .badge-marketing {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    color: #9c4221;
  }

  .badge-hr {
    background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%);
    color: #276749;
  }

  .tab-content {
    border-radius: 16px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    min-height: 350px;
  }

  .member-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .member-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1.5rem;
    border: 4px solid var(--primary);
  }

  .member-info h3 {
    margin-bottom: 0.25rem;
    font-weight: 700;
    color: var(--dark);
  }

  .member-info p {
    margin-bottom: 0.5rem;
    color: var(--gray);
  }

  .member-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
  }

  .stat-item {
    text-align: center;
  }

  .stat-value {
    font-weight: 700;
    font-size: 1.2rem;
    color: black;
  }

  .stat-label {
    font-size: 0.8rem;
    color: var(--gray);
  }

  .member-bio {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: var(--dark);
  }

  .member-skills {
    margin-bottom: 1.5rem;
  }

  .skills-title {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--dark);
  }

  .skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .skill-tag {
    background: rgba(67, 97, 238, 0.1);
    color: #333;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
  }

  .member-contact {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light);
    color: var(--primary);
    transition: var(--transition);
    text-decoration: none;
  }

  .contact-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
  }

  @media (max-width: 768px) {
    .member-header {
      flex-direction: column;
      text-align: center;
    }

    .member-avatar {
      margin-right: 0;
      margin-bottom: 1rem;
    }

    .member-stats {
      justify-content: center;
    }
  }

  :root {
    --primary: #4361ee;
    --secondary: #3f37c9;
    --accent: #4cc9f0;
    --light: #f8f9fa;
    --dark: #212529;
    --success: #4bb543;
    --warning: #ffc107;
    --gradient: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
    --gradient-light: linear-gradient(135deg, #4cc9f0 0%, #4361ee 100%);
  }

  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f7fb;
    color: #333;
  }

  .contact-section {
    background: white;
    position: relative;
    overflow: hidden;
  }

  .contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%234361ee' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    z-index: 0;
    pointer-events: none;

  }

  .section-title {
    position: relative;
    font-weight: 700;
    color: black;
    margin-bottom: 1rem;
  }

  .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background:#0b5d4d;
    border-radius: 2px;
  }

  .section-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
  }

  .contact-form-container {
    background: white;
    border-radius: 20px;
    /* box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); */
    padding: 2.5rem;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  /* .contact-form-container:hover {
    /* transform: translateY(-5px); 
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  } */

  

  .floating-element {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-light);
    opacity: 0.1;
    z-index: 0;
  }

  .floating-1 {
    width: 150px;
    height: 150px;
    top: 10%;
    left: 5%;
    animation: float 15s infinite ease-in-out;
  }

  .floating-2 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    right: 5%;
    animation: float 12s infinite ease-in-out reverse;
  }

  @keyframes float {

    0%,
    100% {
      transform: translateY(0) rotate(0deg);
    }

    50% {
      transform: translateY(-20px) rotate(10deg);
    }
  }

  .contact-info {
    background: var(--gradient);
    border-radius: 15px;
    padding: 2rem;
    color: white;
    margin-top: 2rem;
  }

  .contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
  }

  .contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.2rem;
  }

  .social-links {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
  }

  .social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
  }

  .social-link:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    color: white;
  }

  @media (max-width: 768px) {
    .contact-form-container {
      padding: 2rem 1.5rem;
    }

    .floating-element {
      display: none;
    }
  }

  .hero {
    position: relative;
    height: 100vh;
    /* Full-screen hero */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    transform: translate(-50%, -50%);
    object-fit: cover;
  }

  /* .overlayd {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5); /* Semi-transparent overlay 
  z-index: 2;
} */

  .hero-content {
    position: relative;
    z-index: 3;
    /* Content above video and overlay */
    color: white;
    text-align: center;
    padding: 0 20px;
  }
  
    .choose {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      border: 2px solid #FF9B4D;
      background-color: #FF9B4D;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      font-size: 30px;
      flex-shrink: 0;
    }

    .choose3 {
      width: 35px;
      height: 35px;

      border: 2px solid #FF9B4D;
      background-color: #FF9B4D;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
      flex-shrink: 0;
    }


    .choose1 {
      width: 48px;
      height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;

      background-color: #FF9B4D;
      color: white;
      transition: background-color 0.3s, color 0.3s* keeps circle size fixed */
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .choose {
        width: 55px;
        height: 55px;
        font-size: 22px;
      }
    }

    @media (max-width: 576px) {
      .d-flex-responsive {
        flex-direction: column;
        align-items: flex-start !important;
      }

      .choose {
        margin-bottom: 10px;
      }
    }

    .blog-title {
      text-transform: none;
      color: #222222;
      font-size: 28px;
      font-weight: 500;
      line-height: 35px
    }

    .post {
      text-transform: none;
      color: #222222;
      font-size: 21px;
      font-weight: 500;
      line-height: 30px;
    }

  .btn-outline-dark {
  --bs-btn-color: white;
  --bs-btn-border-color: white;
  --bs-btn-hover-color: white;
  --bs-btn-hover-bg:transparent;
  --bs-btn-hover-border-color: white;
  --bs-btn-focus-shadow-rgb: 33, 37, 41;
  --bs-btn-active-color: white;
  --bs-btn-active-bg: transparent;
  --bs-btn-active-border-color: white;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: white;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: white;
  --bs-gradient: none;
}
 
</style>
 <style>
    /* Slider styles */
    .slider {
      overflow: hidden;
      position: relative;
      width: 100%;
    }

    .slider-track {
      display: flex;
      transition: transform 0.6s ease;
    }

    .slider-card {
      flex: 0 0 100%;
      padding: 10px;
    }

    @media (min-width: 768px) {
      .slider-card {
        flex: 0 0 50%;
      }
    }

    @media (min-width: 992px) {
      .slider-card {
        flex: 0 0 33.3333%;
      }
    }

    /* Buttons */
    .slider-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
    }

    #prevBtn {
      left: 5px;
    }

    #nextBtn {
      right: 5px;
    }

    @media (min-width: 768px) {

      #prevBtn,
      #nextBtn {
        position: static;
        transform: none;
      }
    }

    .rt {
     
      color: #fff;
      font-size: .875rem;
      line-height: 1.5rem;
      letter-spacing: .15em;
      text-transform: uppercase;
    }

    .rt:hover {
      text-decoration: underline;
      text-decoration-color: #fff;
    }

    .imgd {
      height: 415px;
      width: 100%;
      object-fit: cover;
    }

    /* Card Hover */
    .custom-card {
      position: relative;
      overflow: hidden;
      transition: transform 0.4s ease;
      cursor: pointer;
    }

    .card-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .card-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.0));
      color: #fff;
      transition: background 0.4s ease;
    }

    .custom-card:hover .card-img {
      transform: scale(1.2);
      transition: linear 1.0 ease-in;

    }

    .custom-card:hover .card-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 1) 0%,     /* Full black at the bottom */
    rgba(0, 0, 0, 0.9) 30%,  /* Slightly lighter */
    rgba(0, 0, 0, 0.4) 60%,  /* Mid fade */
    rgba(0, 0, 0, 0.1) 100%  /* Almost transparent at top */
  );
  transition: background 0.3s ease;
}
.titlex{
  
    font-size: 2rem;
    line-height: 2.5rem;
    margin-bottom: .5rem;
}
.subtitlex{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    max-height: 8.125rem;
    -webkit-transition: all .3s 
ease-in-out;
    transition: all .3s 
ease-in-out;
    
    font-size: 1.125rem;
    line-height: 1.8rem;
    letter-spacing: .03125rem;
    margin-bottom: 1rem;
}
.icon-link{
       
    color: #fff;
    font-size: .875rem;
    line-height: 1.5rem;
    letter-spacing: .15em;
}
.rt {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.rt span {
  position: relative;
  display: inline-block;
}

.rt span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background-color: #4db8ff; /* light blue underline */
  transition: width 0.3s ease;
}

.rt:hover {
  color: #4db8ff;
}

.rt:hover span::after {
  width: 100%; /* underline matches text width only */
}
.subtitlezxcz{
       
    font-size: 2rem;
    line-height: 2.5rem;
    margin-bottom: 2rem;
}

