body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: rgba(255, 255, 255, 1);
  color: #000;
}

.hr-header{
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0) 85%,
      rgba(255, 255, 255, 1) 100%
    ),
    linear-gradient(
      to right,
      #d8ebf0 0%,
      #ffffff 70%
    );
}
.hr-nav {
  text-align: center;
  padding: 15px 0;

}

.hr-nav-list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 80px;
  font-weight: 500;
  margin: 0;
  padding: 0;
}

.hr-nav-list li a {
  position: relative;
  text-decoration: none;
  color: #000;
  font-size: 18px;
  padding: 8px 12px;
  transition: color 0.3s ease;
}

/* Hover effects */
.hr-nav-list li a:hover {
  color: #00838f;
}

/* Underline animation */
.hr-nav-list li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #00838f;
  transition: width 0.3s ease;
}

.hr-nav-list li a:hover::after {
  width: 100%;
}

/* Subtle background shadow on hover */
.hr-nav-list li:hover {
  background: rgba(0, 131, 143, 0.05);
  border-radius: 6px;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.hr-hero {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0px 2%;
  overflow: hidden;
}

.hr-left {
  max-width: 70%;
}

.hr-heading {
  font-size: 60px;
  font-weight: 700;
  font-family: 'Josefin Sans', sans-serif;
}

.hr-highlight {
  color: #00838f;
  font-weight: bold;
}

.hr-subtext {
  margin-top: 30px;
  font-size: 23px;
  color: #444;
}

.hr-right {
  width: 36%;
  display: flex;
  justify-content: start;
  align-items: center;
  /* background: rgba(42, 157, 143, 0.31); */
}

.hr-solar-system {
  position: relative;
  width: 420px;
  height: 420px;
}

.hr-center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hr-center-logo img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.hr-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: rotate 20s linear infinite;
}

.hr-inner-circle {
  width: 200px;
  height: 200px;
  border: 1.5px solid #dcdcdc;
}

.hr-middle-circle {
  width: 300px;
  height: 300px;
  border: 1.5px solid #dcdcdc;
  animation-duration: 25s;
}

.hr-outer-circle {
  width: 420px;
  height: 420px;
  border: 1.5px solid #dcdcdc;
  animation-duration: 35s;
}

.hr-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hr-icon img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

/* Tooltip */
/* Tooltip bubble */
/* Tooltip bubble */
/* Tooltip always above */
.hr-icon::after {
  content: attr(data-message);
  position: absolute;
  bottom: 65px; /* always above */
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 16px;
  background-color: var(--tooltip-bg, #FFC107);
  color: #000;
  font-size: 14px;
  font-weight: 500;
  white-space: normal;
  max-width: 240px;
  line-height: 1.4;
  border-radius: 6px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 10000 !important;
}

/* Tooltip arrow always pointing down */
.hr-icon::before {
  content: "";
  position: absolute;
  bottom: 50px; /* always below tooltip */
  left: 50%;
  transform: translateX(-50%);
  border-width: 8px;
  border-style: solid;
  border-color: var(--tooltip-bg, #FFC107) transparent transparent transparent;
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 10000 !important;
}

/* Show on hover */
.hr-icon:hover::after,
.hr-icon:hover::before {
  opacity: 1;
}

/* --- Position Variants --- */

/* Default (above icon) */
.hr-icon::after {
  bottom: 65px;
}
.hr-icon::before {
  bottom: 50px;
  border-color: var(--tooltip-bg, #FFC107) transparent transparent transparent;
}

/* When icon is on bottom half of orbit → show tooltip below */
.hr-icon.bottom::after {
  top: 65px;
  bottom: auto;
}
.hr-icon.bottom::before {
  top: 50px;
  bottom: auto;
  border-color: transparent transparent var(--tooltip-bg, #FFC107) transparent;
}




/* Pause the orbit when hovering an icon */
.hr-solar-system:has(.hr-icon:hover) .hr-orbit {
  animation-play-state: paused;
}

/* also support keyboard focus */
.hr-solar-system:has(.hr-icon:focus) .hr-orbit {
  animation-play-state: paused;
}

/* Position items on circles */
.hr-inner-circle .hr-icon:nth-child(1) { top: 0; left: 50%; transform: translate(-50%, -50%); }
.hr-inner-circle .hr-icon:nth-child(2) { bottom: 0; left: 50%; transform: translate(-50%, 50%); }

.hr-middle-circle .hr-icon:nth-child(1) { top: 0; left: 50%; transform: translate(-50%, -50%); }
.hr-middle-circle .hr-icon:nth-child(2) { left: 0; top: 50%; transform: translate(-50%, -50%); }
.hr-middle-circle .hr-icon:nth-child(3) { right: 0; top: 50%; transform: translate(50%, -50%); }

.hr-outer-circle .hr-icon:nth-child(1) { top: 0; left: 50%; transform: translate(-50%, -50%); }
.hr-outer-circle .hr-icon:nth-child(2) { bottom: 0; left: 50%; transform: translate(-50%, 50%); }
.hr-outer-circle .hr-icon:nth-child(3) { left: 0; top: 50%; transform: translate(-50%, -50%); }
.hr-outer-circle .hr-icon:nth-child(4) { right: 0; top: 50%; transform: translate(50%, -50%); }

@keyframes rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}



.hr-orbit {
  pointer-events: none;
}

.hr-orbit .hr-icon {
  pointer-events: auto;
}

/* Pause all orbits when any icon is hovered */
.hr-solar-system:hover .hr-orbit {
  animation-play-state: paused !important;
}

/* --- 1) TOOLTIP ALWAYS ABOVE --- */
.hr-icon::after {
  bottom: 65px;  
  left: 50%;         /* always above the icon */
  top: auto;
  z-index: 10000 !important;
}
.hr-icon::before {
  bottom: 50px; 
  left: 50%;          /* arrow under tooltip */
  top: auto;
  border-color: var(--tooltip-bg, #FFC107) transparent transparent transparent;
  z-index: 10000 !important;
}
/* (Optional) remove any .bottom variants from your CSS */

/* --- 2) KEEP ICONS & TOOLTIPS UPRIGHT (counter-rotate) --- */
/* parent orbits already rotate:
   .hr-inner-circle { animation: rotate 20s linear infinite; }
   .hr-middle-circle { animation-duration: 25s; }
   .hr-outer-circle  { animation-duration: 35s; } */

@keyframes unspin-img {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}
@keyframes unspin-tip {
  from { transform: translateX(-50%) rotate(0deg); }
  to   { transform: translateX(-50%) rotate(-360deg); }
}

/* match durations to their orbits */
.hr-inner-circle .hr-icon img { animation: unspin-img 20s linear infinite; }
.hr-middle-circle .hr-icon img { animation: unspin-img 25s linear infinite; }
.hr-outer-circle  .hr-icon img { animation: unspin-img 35s linear infinite; }

.hr-inner-circle .hr-icon::after,
.hr-inner-circle .hr-icon::before { animation: unspin-tip 20s linear infinite; }
.hr-middle-circle .hr-icon::after,
.hr-middle-circle .hr-icon::before { animation: unspin-tip 25s linear infinite; }
.hr-outer-circle  .hr-icon::after,
.hr-outer-circle  .hr-icon::before { animation: unspin-tip 35s linear infinite; }

/* --- 3) PAUSE EVERYTHING WHEN HOVERING ANY ICON --- */
.hr-solar-system:hover .hr-orbit,
.hr-solar-system:hover .hr-orbit .hr-icon img,
.hr-solar-system:hover .hr-orbit .hr-icon::after,
.hr-solar-system:hover .hr-orbit .hr-icon::before {
  animation-play-state: paused !important;
}



:root {
      --gap: 10px;
      --bg: #ffffff;
      --btn-bg: linear-gradient(90deg, #007080 0%, #00171A 100%);
      --btn-shadow: rgba(0, 0, 0, 0.25);
      --text: #000000;
      --card-radius: 12px;
    }

    html, body {
      margin: 0;
      padding: 0;
      font-family: 'Josefin Sans', sans-serif;
      background: var(--bg);
      color: var(--text);
    }

    .why-section {
      max-width: 1500px;
      margin: auto;
      padding: 0px 20px;
    }

    .whyus-big-text {
      font-size: 150px;
      font-weight: 700;
      text-transform: uppercase;
      color: rgb(51 46 46 / 10%);
      /* position: absolute; */
      width: 100%;
      /* left: 50%; */
      transform: translateY(50%);
      z-index: -1;
      margin-top: -39px;
      text-align: center;
  }

    .why-title {
      text-align: center;
      font-size: 50px;
      font-weight: bold;
      margin-bottom: 40px;
      color: #00cfff;
      margin-top: 6px;
    }

    /* Irregular Grid */
    .grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      /* gap: var(--gap); */
      width: 100%;
    }

    .item {
      position: relative;
      overflow: hidden;
      background: #fff;
      display: flex;
      flex-direction: row-reverse;
      justify-content: flex-end;
      padding: 20px;
      box-sizing: border-box;
      border: #c6b7b773 solid 1px;
    }
    
    .item img {
      width: 50%;
      height: 85%;
      object-fit: cover;
      transition: filter 0.5s ease;
      transform: scale3d(1.5, 1.5, 1.5);
      margin-top: 30px;
      margin-left: 35px;
    }
    
    /* Gradient overlay */
    .hover-text {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: flex-end;   /* text at bottom initially */
      justify-content: center;
      padding: 20px;
      color: white;
      font-size: 18px;
      font-weight: 500;
      opacity: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.7), #0000001a 80%);
      transform: translateY(100%);   /* start hidden at bottom */
      transition: transform 0.5s ease, opacity 0.5s ease;
      z-index: 5;
    }
    
    /* Hover effect */
    .item:hover img {
      filter: blur(4px); /* blur image */
    }
    
    .item:hover .hover-text {
      opacity: 1;
      transform: translateY(0);  /* slide upward */
    }
    

/* Text on the left */



    .overlay {
      position: absolute;
      inset: 0;
      /* background: linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.42) 100%); */
      z-index: 2;
    }

    .meta {
      position: relative;
      z-index: 3;
      color: black;
      text-shadow: 0 2px 10px rgb(102 88 88 / 23%);
    }

    .meta h3 {
      margin: 0 0 8px 0;
      font-size: 20px;
      font-weight: 600;
      line-height: 1.2;
    }

    .btn {
      display: inline-block;
      padding: 8px 14px;
      border-radius: 4px;
      background: var(--btn-bg);
      box-shadow: 0 4px 4px var(--btn-shadow);
      text-decoration: none;
      color: #fff;
      font-weight: 500;
      font-size: 14px;
    }

    /* Irregular placements */
    .a { grid-column: 1/3; grid-row: 1/3; }
    .b { grid-column: 3/5; grid-row: 1/3; }
    .c { grid-column: 5/7; grid-row: 1/4; }
    .g { grid-column: 2/4; grid-row: 3/5; }
    .h { grid-column: 1/2; grid-row: 3/5; }
    .d { grid-column: 4/5; grid-row: 3/5; }
    .e { grid-column: 1/3; grid-row: 5/7; }
    .f { grid-column: 3/5; grid-row: 5/7; }
    .i { grid-column: 5/7; grid-row: 4/9; }

    /* Responsive */
    @media (max-width: 900px) {
      .grid { grid-template-columns: repeat(4, 1fr); }
      .a { grid-column: 1/3; grid-row: auto; }
      .b { grid-column: 3/5; grid-row: auto; }
      .c { grid-column: 1/5; grid-row: auto; }
      .g { grid-column: 1/2; grid-row: auto; }
      .e { grid-column: 2/4; grid-row: auto; }
      .d { grid-column: 4/5; grid-row: auto; }
      .dh { grid-column: 1/3; grid-row: auto; }
      .f { grid-column: 3/5; grid-row: auto; }
      .i { grid-column: 1/5; grid-row: auto; }
    }

    @media (max-width: 520px) {
      .grid { grid-template-columns: repeat(2, 1fr); }
    }

.fiv-section {
  padding: 40px 50px;
  font-family: 'Josefin Sans', sans-serif;
  background-color: #fff;
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
}

.fiv-container {
  display: flex;
  flex-direction: column;
}

.fiv-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.fiv-text-block {
  flex: 1;
  min-width: 260px;
}

.fiv-title {
  font-size: 65px;
  font-weight: bold;
  margin-bottom: 15px;
}

.fiv-subtext {
  font-size: 24px;
  color: #444;
}

.fiv-image-block {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.fiv-map-img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.fiv-step-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

.fiv-box {
  flex: 1;
  min-width: 160px;
  background-color: #fff;
  border-radius: 12px;
  padding: 25px 15px;
  box-shadow: 0 6px 12px rgb(30 180 172 / 31%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.fiv-box-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  object-fit: contain;
}

.fiv-step-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 5px;
  text-align: center;
}

.fiv-box-desc {
  font-size: 13px;
  color: #555;
  margin: 0;
  text-align: center;
}

/* Optional: adjust gap */
.fiv-step-boxes {
  gap: 15px;
}

.fiv-box-icon {
  font-size: 32px;
  color: #01ADCD; /* or any accent color */
  margin-bottom: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .fiv-top-row {
    flex-direction: column;
    text-align: center;
  }

  .fiv-box {
    flex: 1 1 100%;
  }

  .fiv-step-boxes {
    flex-direction: column;
    gap: 15px;
  }

   .footer-alias-contact-text h2 {
        font-size: 24px;
    }

    .footer-alias-contact-text p {
        font-size: 14px;
    }

    .footer-alias-contact-form {
        width: 90%;
        padding: 15px;
    }

    .footer-alias-contact-form input,
    .footer-alias-contact-form textarea {
        padding: 8px;
        font-size: 14px;
    }

    .footer-alias-contact-form button {
        padding: 12px;
        font-size: 16px;
    }


    .footer-alias-footer {
        padding: 20px;
    }

    .footer-alias-footer-bottom {
        font-size: 12px;
        padding: 15px;
    }

    .teamts-left-content h2{
        font-size: 1.8rem;
    }
    
    .teamts-right-content p{
        font-size: 0.8rem;
    }
}





.footer-alias-contact-section {
        display: flex;
        justify-content: space-between;
        padding: 50px;
        background-color: white;
        border-bottom: black 1px solid;
    }
    .footer-alias-contact-text {
        width: 50%;
        color: black;
    }
    .footer-alias-contact-text h2 {
        font-size: 32px;
    }
    .footer-alias-contact-text p {
        font-size: 18px;
    }
    .footer-alias-contact-text a {
        color: #00AEEF;
        text-decoration: none;
    }
    .footer-alias-contact-form {
        width: 45%;
        background: #222;
        padding: 20px;
        border-radius: 10px;
        min-height: 300px;
    }
    .footer-alias-contact-form input, .footer-alias-contact-form textarea {
        width: 100%;
        padding: 10px;
        margin: 10px 0;
        border: none;
        border-radius: 5px;
        background: #333;
        color: #fff;
    }
    .footer-alias-contact-form button {
        width: 100%;
        padding: 15px;
        background: linear-gradient(90deg, #00AEEF, #00FFD1);
        border: none;
        color: #fff;
        font-size: 18px;
        cursor: pointer;
        border-radius: 5px;
    }
    .footer-alias-footer {
        background: #fff;
        color: #000;
        padding: 20px 50px;
        display: flex;
        justify-content: space-between;
        align-items: start;
    }
    .footer-alias-logo {
        display: flex;
      
    }
    .footer-alias-footer img {
        height: 100px;
        margin-right: 10px;
    }
    .footer-alias-footer a {
        color: #000;
        text-decoration: none;
    }
    .footer-alias-footer-bottom {
        text-align: center;
        padding: 20px;
        background: #fff;
        color: #000;
        font-size: 14px;
        border-top: 1px solid #ccc;
    }

    .footer-alias-footer-bottom a {

        text-decoration: none;
        color: black;
    }

    .footer-crt{
      display: flex;
    flex-direction: column;
    }

    .footer-certificates img{
      width: 70px;
      height: 70px;
    }

    .footer-socials{
      margin-top: 20px;
    }
    .footer-socials i{
      font-size: 30px;
      color: #0a7a90;
      text-decoration: none;
      margin-right: 13px;
    }

    .team-testimonial{
            /* background: linear-gradient(to bottom, #000428, #004683); */
            /* background: linear-gradient(to bottom, rgba(4, 9, 49, 1) 0%, rgba(4, 9, 49, 1) 85%, #0a0a0a 100%); */
            min-height: 100vh;
            display: flex;
            justify-content: center;
            flex-direction: column;
            align-items: left;
            overflow: hidden;
            background: white;
            
           
        }



        .teamts-section {
    display: flex;
   
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    background-color:inherit; /* Matches your dark background */
    color: black;
}

.teamts-left-content {
    width: 50%;
}

.teamts-left-content h1 {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 400;
}


.teamts-left-content span {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 400;
    color: black
    ;
}
.teamts-left-content h2 {
    margin: 10px 0 0;
    color: #00BFE7; /* Blue color for 'Buckypaper' */
    font-size: 2.5rem;
    font-weight: 700;
}

.teamts-right-content {
    width: 50%;
    padding-left: 20px;
}

.teamts-right-content p {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.5;
}


        .team-scroll-container {
            width: 100%;
            overflow: hidden;
            white-space: nowrap;
            position: relative;
            /* background: linear-gradient(to bottom, #040931, #0a0a0a); */
            background: white;
            
        }

        .team-card-wrapper {
            display: flex;
            gap: 20px;
            animation: scroll 60s linear infinite;
            width: max-content;
            /* padding-left: 100vw; */
        }

        @keyframes scroll {
            0% {
                transform: translateX(0vw);
            }

            100% {
                transform: translateX(-80%);
            }
        }

        .team-card {
          width: 260px;
          height: 350px;
            transform-style: preserve-3d;
            perspective: 500px;
            border: none;
            background-color: inherit;
            position: relative;
            display: inline-block;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: white;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
               box-shadow: 0 8px 30px rgb(178 169 169 / 30%);

        }

        .team-card .team-face {
            position: absolute;
            color: black;
            width: 100%;
            height: 100%;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            border-radius: 15px;
            /* background: rgba(255, 255, 255, 0.06); */
            transform-style: preserve-3d;
            transition: 0.5s;
            backface-visibility: hidden;
            border-top: 1px solid #555;
            border-left: 1px solid #555;
            background: white;
        }

        .team-card .team-face.front-face,
        .team-card .team-face.back-face {
            position: absolute;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .team-card .team-face.front-face .profile {
          width: 240px;
          height: 270px;
            object-position: top;
            object-fit: cover;
        }

        .team-card .team-face.front-face .name {
            letter-spacing: 2px;
            font-size: 20px;
        }

        .team-card .team-face.front-face .designation {
            font-size: 1.1rem;
            color: black;
            letter-spacing: 0.8px;
            margin-bottom: 20px;
        }

        .team-card:hover .team-face.front-face {
            transform: rotateY(180deg);
        }

        .team-card .team-face.back-face {
            background: white;
            transform: rotateY(180deg);
            padding: 20px 30px;
            text-align: center;
            user-select: none;
             height:95%; /* allow auto height */
            min-height: 95%;
            width: 83%;
        }

        .team-card .team-face.back-face .fa-quote-left {
            position: absolute;
            top: 25px;
            left: 25px;
            font-size: 1.2rem;
        }

        .team-card .team-face.back-face .fa-quote-right {
            position: absolute;
            bottom: 35px;
            right: 25px;
            font-size: 1.2rem;
        }

        .team-card:hover .team-face.back-face {
            transform: rotateY(360deg);
        }

        
        .team-card .team-face.back-face .team-testimonial {

    line-height: 1.8;
    text-align: justify;
    white-space: normal; /* Ensures text wraps properly */
    word-wrap: break-word; /* Prevents long words from overflowing */
    max-height: 140px; /* Adjust based on your card size */
    overflow: visible; /* allow full text */
    max-height: none; /* Ensures it doesn’t exceed the card */

}

.team-scroll-container:hover .team-card-wrapper {
    animation-play-state: paused; /* Pause animation when hovering */
}


.leadership-section {
  width: 100%;
  background: white;
  padding: 60px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  color: black;
}

.leader-card {
  position: relative;
  flex: 1;
  max-width: 280px;
  margin-right: 40px;
  border-radius: 15px;
  overflow: hidden; /* Ensures image stays inside card */
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: white;
}

.leader-card img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Fill card completely */
  display: block;
}

.leader-info {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
  z-index: 2;
}

.leader-info h3 {
  margin: 0;
  font-size: 22px;
}

.leader-info p {
  margin: 5px 0 0;
  color: white;
  font-size: 17px;
}


.leader-description {
  flex: 2;
  min-width: 300px;
  background: white;
  border-radius: 15px;
  padding: 20px;
  margin-right: 100px;
  color: #000;
  background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}




.clientts-testimonials{
	margin:40px auto 100px;
	display:grid;
	grid-template-columns: repeat(auto-fit,minmax(350px, 1fr));
	grid-gap:20px;
}

.client-testimonial h2 span{
    
    color: #00BFE7; /* Blue color for 'Buckypaper' */
    font-size: 60px;
    font-weight: 700;
}

.clientts-header{
    text-align: center;
    font-size: 48px;
    margin-top: 50px;
}
.clientts-testimonials .clientts-card{
	position:relative;
	width:350px;
	margin:0 auto;
	background:white;
	padding:20px;
	box-sizing: border-box;
	text-align:left;
	box-shadow:0 10px 40px rgba(0,0,0,.5);
	overflow: hidden;
    border-radius: 20px;
}
.clientts-testimonials .clientts-card .clientts-layer{
	position: absolute;
	top: calc(100% - 3px);
	width:100%;
	height:100%;
	left:0;
	background:linear-gradient(#03a9f4, #e81dd3);
	z-index:1;
	transition:0.5s;
}
.clientts-testimonials .clientts-card:hover .clientts-layer{
	top:0;
}
.clientts-testimonials .clientts-card .clientts-content{
	position:relative;
	z-index:2;
}
.clientts-testimonials .clientts-card .clientts-content p{
	font-size:14px;
	line-height:20px;
	color:black;   
    margin-bottom: 20px;

}
.clientts-testimonials .clientts-card .clientts-content .clientts-image{
	width:auto;
	height:auto;
	margin: 0 auto;
	/* border-radius:50%; */
	overflow:hidden;
	/* box-shadow: 0 10px 20px ; */
    text-align: center;
}

.clientts-testimonials .clientts-card .clientts-content .clientts-image img{

width: 130px;
}
.clientts-testimonials .clientts-card .clientts-content .clientts-details h2{
	font-size:15px;
	color:black;
}
.clientts-testimonials .clientts-card .clientts-content .clientts-details h2 span{
	color:#03a9f4;
	font-size:12px;
	transition:0.5s;
}
.clientts-testimonials .clientts-card:hover .clientts-content .clientts-details h2 span{
	color:#fff;
}
.clientts-testimonials .clientts-card:hover  .clientts-content p {
	color:#fff;
}

.client-testimonial{
    margin:0;
	padding:0;
	width:100%;
	height:100%;
	font-family:sans-serif;
/* 	background-color:#262626; */
	background: white;
padding: 1px 0px;
}

.clientts-details{
    text-align: center;
    margin-top: 10px;
}



#video-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1; /* Start fully visible */
  transition: opacity 0.8s ease;
}


#loader-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


    .custom-services {
        text-align: center;
        position: relative;
        padding: 60px 20px;
        margin-top: 40px;
    }
    .custom-services::before {
        content: "Our Services";
        position: absolute;
        top: -17px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 120px;
        font-weight: bold;
        color: rgba(0, 0, 0, 0.05);
        z-index: -1;
        white-space: nowrap;
        font-family: emoji;
    }
    .custom-services h2 {
        position: relative;
        color: #003e5c;
        font-size: 48px;
    }
    .custom-services p {
        font-size: 24px;
        text-align: center;
        max-width: 800px;
        margin: 0 auto 20px;
        margin-top: 37px;
    }
    .custom-cards {
        display: flex;
        gap: 65px;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 60px;
        text-align: left;
    }
    .custom-card {
    width: 290px;
    height: 200px;
    padding: 15px;
    background: linear-gradient(to right, #005a78, #003e5c); /* Always active gradient */
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    color: white; /* Always white text */
    transition: none; /* Remove animation */
    cursor: default; /* Optional: remove pointer cursor */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.custom-card h3 {
    color: white;
}

.custom-card p {
    display: block;
    font-size: 14px;
    color: white;
}

.custom-card .custom-icon {
    align-self: flex-end;
    font-size: 18px;
    width: 32px;
    height: 32px;
    background-color: #ffffff;
    color: #003e5c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}



.custom-card p {
    display: block !important;
    font-size: 14px;
    color: white;
}


.custom-card {
    position: relative;
    overflow: hidden;
}

.fullscreen-overlay {
    position: fixed;
    inset: 0;
    background: rgb(248 240 240 / 85%);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.fullscreenvid-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.fullscreenvid-overlay.active {
    display: flex;
    animation: fadeIn 0.4s ease-in-out forwards;
}

.fullscreen-overlay.active {
    display: flex;
    animation: fadeIn 0.4s ease-in-out forwards;
}

.floating-icons {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Fixed positions */
.floating-icons img:nth-child(1) { left: 20%; top: 20%; }
.floating-icons img:nth-child(2) { left: 40%; top: 15%; }
.floating-icons img:nth-child(3) { left: 60%; top: 25%; }
.floating-icons img:nth-child(4) { left: 30%; bottom: 10%; }
.floating-icons img:nth-child(5) { left: 50%; top: 60%; }
.floating-icons img:nth-child(6) { left: 70%; top: 60%; }
.floating-icons img:nth-child(7) { left: 25%; top: 65%; }
.floating-icons img:nth-child(8) { left: 60%; top: 75%; }

.floating-icons i {
  
    font-size: 80px;
    color: white;
    
}

.floating-icons img{
    width: 200px;
    position: absolute;
    animation: blobble 4s ease-in-out infinite alternate;
}


.floating-saas-icons {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Fixed positions */
.floating-saas-icons img:nth-child(1) { left: 20%; top: 20%; }
.floating-saas-icons img:nth-child(2) { left: 40%; top: 15%; }
.floating-saas-icons img:nth-child(3) { left: 60%; top: 25%; }
.floating-saas-icons img:nth-child(4) { left: 30%; bottom: 10%; }
.floating-saas-icons img:nth-child(5) { left: 50%; top: 60%; }
.floating-saas-icons img:nth-child(6) { left: 70%; top: 60%; }
.floating-saas-icons img:nth-child(7) { left: 25%; top: 65%; }
.floating-saas-icons img:nth-child(8) { left: 60%; top: 75%; }

.floating-saas-icons i {
  
    font-size: 80px;
    color: white;
    
}

.floating-saas-icons img{
    width: 200px;
    position: absolute;
    animation: blobble 4s ease-in-out infinite alternate;
}

@keyframes blobble {
    0% { transform: translate(0px, 0px) scale(1); }
    50% { transform: translate(5px, -5px) scale(1.05); }
    100% { transform: translate(-5px, 5px) scale(1); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fullscreen-video {
    position: absolute;
    width: 80%;
    height: auto;
    max-height: 80%;
    object-fit: contain;
    z-index: 10000;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}



 .aboutus-container {
            max-width: 100%;
            margin: auto;
            margin-top: -10px;
        }
        .aboutus-big-text {
            font-size: 150px;
            font-weight: 700;
            text-transform: uppercase;
            color: rgb(51 46 46 / 10%);
            /* position: absolute; */
            width: 100%;
            /* left: 50%; */
            transform: translateY(50%);
            z-index: -1;
            /* top: -39px; */
        }
        .aboutus-title {
            font-size: 50px;
            font-weight: 600;
            color: #00cfff;
        }
        .aboutus-content {
            padding: 60px;
            font-size: 30px;
            font-weight: 300;
            color: black;
            margin-top: 20px;
            line-height: 1.6;
            text-align: left;
        }
        .aboutus-highlight {
            font-weight: 600;
            color: black;
        }
        .aboutus-bottom-text {
            font-size: 35px;
            font-weight: 600;
            color: #00cfff;
            margin-top: 20px;
        }
        .aboutus-metrics-section {
            background: white;
            border-radius: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 40px;
            border-bottom: #ccddec solid 1px;
        }
        .aboutus-metrics-container {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
            max-width: 1148px;
            width: 100%;
        }
        .aboutus-text-content {
            flex: 1;
            color: black;
            text-align: left;
        }
        .aboutus-text-content h2 {
            font-size: 50px;
            font-weight: bold;
        }
        .aboutus-text-content p {
            font-size: 28px;
            margin: 10px 0;
        }
        .aboutus-cta-button {
            background: #00c2ff;
            padding: 10px 20px;
            border-radius: 20px;
            border: none;
            color:black ;
            font-weight: bold;
            cursor: pointer;
            width: 160px;
            font-size: 18px;
        }
        .aboutus-bars-container {
            display: flex;
            align-items: flex-end;
            gap: 45px;
            flex: 1;
            justify-content: center;
            overflow: hidden;
        }
        .aboutus-bar {
            width: 114px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .aboutus-bar-fill {
            width: 114px;
            border-radius: 10px 10px 0px 0px;
            background: conic-gradient(from 180deg at 50% 50%, #00B8D4 0deg, #CFF9FF 360deg);
        }
        .aboutus-bar-1 { height: 180px; }
         .aboutus-bar-2 { height: 254px; }
        .aboutus-bar-4 { height: 334px; }
        .aboutus-bar-3 { height: 427px; }
        .aboutus-bar-label {
            color: rgba(0, 184, 212, 1);
            text-align: center;
            font-size: 36px;
            font-weight: bold;
            margin-top: 10px;
            line-height: 24px;
        }
        .aboutus-bar-label small {
            color: rgb(1, 0, 0);
        }
        .aboutus-tt {
            font-size: 19px;
            color: black;
        }

        .aboutus{
            background-color: white;
            color: #252424;
           
            text-align: center;
        }

        .icon-prt-class{
            padding-top: 10px !important;
            padding-bottom: 10px !important;
            display: inline-block !important;
            width: 32% !important;;
        }

        .icons div .ic{
            display: block;
        }

        .icons div .lb{
            display: block;
            width: 100%;
            padding-top: 10px;
            padding-bottom: 10px;
        }
        .icons
        {
            display: inline-block !important;
            width:58%;
        }
        .spl-txt{
            width: 40%;
        }

        .ourmission-description  .vision-desc  .aboutus-content .our-work-description{
    color: #131212;
}



        .ourmission-description span, .vision-desc span, .aboutus-content span, .our-work-description span {
            opacity: 0.3;
            transition: color 0.3s ease, opacity 0.3s ease;
        }
        .mission-p span.active, .vision-desc span.active {
            color: #000; /* Highlight Color */
            opacity: 1;
        }
        .aboutus-content span.active, .ourmission-description span.active, .our-work-description span.active  {
            color: rgb(17, 17, 17); /* Highlight Color */
            opacity: 1;
        }


        
.ow-container {
      text-align: center;
      padding: 40px 20px;
      max-width: 800px;
      margin: 0 auto;
    }

    .ow-title {
      font-size: 2rem;
      color: #00bcd4; /* Cyan-like blue */
      margin-bottom: 20px;
    }

    .ow-paragraph {
      font-size: 1rem;
      line-height: 1.6;
      color: #000;
    }

/* Wrapper */
.ow-product-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Sections */
.ow-product-section {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5vw;
  box-sizing: border-box;

  /* keep visually hidden by default */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1;
}

/* active class only used for semantics / convenience */
.ow-product-section.active {
  /* don't rely only on this for hiding/showing; JS will toggle visibility & z-index */
  pointer-events: auto;
  visibility: visible; /* JS also sets this explicitly */
  z-index: 100;
}



.ow-product-info {
  flex: 1;
  color: black;
  max-width: 40%;
  font-family: 'Josefin Sans', sans-serif;
  margin-bottom: 50px;
}

.ow-product-info h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.ow-product-info p {
  font-size: 1.2rem;
}

.know-more-btn {
  display: inline-block;
  
  padding: 12px 28px;
  background: white;
  color: black;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 191, 231, 0.3);
}

.know-more-btn:hover {
  background: #009fc5;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 191, 231, 0.4);
}



/* make main mockup contained */
.ow-main-anim {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none; /* prevents accidental drag/hover interfering */
}
.ow-main-anim img {
  max-width: 100%;
  max-height: 85vh;
  display: block;
}

.ow-thumbnails {
  position: absolute;
  bottom: 2rem;
  left: 5vw;
  display: flex;
  gap: 1rem;
}

.ow-thumbnails img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s;
}

.ow-thumbnails img:hover {
  transform: scale(1.1);
}

.pin-spacer{
  width: 1260px !important;
}




    .lf-slider {
      width: 100%;
      overflow: hidden;
      background: white;
      padding: 30px 0;
    }

    .lf-row {
      display: flex;
      width: max-content;
      margin-bottom: 20px;
      animation: lf-scroll-left 60s linear infinite; /* increased duration for smoother scroll */
    }
    
    .lf-row:nth-child(2) {
      animation: lf-scroll-right 60s linear infinite;
    }
    

    .lf-slide {
      flex: 0 0 auto;
      width: 350px;
      margin: 0 12px;
      border-radius: 12px;
      overflow: hidden;
      background: white;
      box-shadow: 0 4px 8px rgba(0,0,0,0.4);
      max-height: 200px;
    }

    .lf-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }


    
        .teamts-sl-section {
    display: flex;
   
    align-items: center;
    justify-content: space-between;
    padding: 0px 50px;
    background-color:inherit; /* Matches your dark background */
    color: black;
}

.teamts-sl-left-content {
    width: 50%;
}

.teamts-sl-left-content h1 {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 400;
}

.teamts-sl-left-content h2 {
    margin: 10px 0 0;
    color: #00BFE7; /* Blue color for 'Buckypaper' */
    font-size: 2.5rem;
    font-weight: 700;
}

.teamts-sl-right-content {
    width: 50%;
    padding-left: 20px;
}

.teamts-sl-right-content p {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.5;
}



   @keyframes lf-scroll-left {
     from {
       transform: translateX(0);
     }
     to {
       transform: translateX(-82%); /* scroll full width */
     }
   }
   
   @keyframes lf-scroll-right {
     from {
       transform: translateX(-82%);
     }
     to {
       transform: translateX(0);
     }
   }

    /* Responsive */
    @media (max-width: 768px) {
      .lf-slide {
        width: 180px;
      }
    }

    @media (max-width: 480px) {
      .lf-slide {
        width: 140px;
      }
    }