:root {
  --primary-color: #f84d50;
  --secondary-color: #510a88;
  --secondary-color-light: #7e4ca4;
  --light-color: #ffffff;
  --dark-color: #000000;
  --grey-bg: #fafafa;
  --para-color: #6c757d;
  --heading-color: #111111;
  --font1: "Nunito", sans-serif;
  --font2: "Nunito Sans", sans-serif;
  --font3: "Rubik", sans-serif;
}

/* ################# Hero Section ################# */
.hero-section {
  background: var(--secondary-color);
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;

}
.bg-banner {
  background: var(--secondary-color);
}
.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: calc(1.5rem + 2.3vw);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: white;
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.6;
  padding-top: 1.5rem;
  margin: 2rem 0;
  color: rgba(255, 255, 255, 0.9);
}

.btn-demo {
  background: transparent;
  color: white;
  padding: 10px 35px;
  border-radius: 5px;
  border: 1px solid white;
  size: 0.95rem;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  box-shadow: rgba(45, 27, 105, 0.3) 0px 8px 25px;
}

.btn-demo::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  transition: left 0.3s ease;
  z-index: -1;
}

.btn-demo:hover {
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(45, 27, 105, 0.4);
  text-decoration: none;
}

.btn-demo:hover::before {
  left: 0;
}
.hero-section-main .video-wrapper {
  min-height: 70vh;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  height: 100%;
  width: 40%;
}
.hero-section-main .video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* About Section */

.border-top-bottom {
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}
.robokido-feature-card {
  display:flex ;
    text-align: left;
    padding: 30px 20px;
    transition: all 0.3s ease;
}

.robokido-feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon-circle {
    width: 70px;
    height: 70px;
    background: #7e4ca4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 20px;
    margin-right: 20px;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
  
}

.feature-description {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.6;
    margin: 0;
    
}


/* ################# acknowledgments Section ################# */

.acknowledgments-grid {
  display: flex;
  flex-direction: column;
}
.acknowledgments-grid .col-md-4 {
  padding: 0;
}

/* Custom 5-column layout */
.col-lg-2-4 {
  flex: 0 0 20%;
  max-width: 20%;
}

.acknowledgment-logo-card {
  background: white;
  border: 1px solid rgb(229, 229, 229);
  border-radius: 12px;
  padding: 40px 20px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.acknowledgment-logo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--secondary-color);
  clip-path: circle(0% at 50% 100%);
  transition: clip-path 0.6s ease;
}
.acknowledgment-logo-card:hover::after {
  clip-path: circle(150% at 50% 100%);
}

.acknowledgment-logo-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  pointer-events: none;
}

.acknowledgment-logo-card:hover::before {
  opacity: 1;
}

.logo-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
}

.acknowledgment-logo {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  filter: grayscale(1) contrast(1.5) brightness(1);
  /* filter: brightness(0.9) saturate(0.9); */
  transition: all 0.3s ease;
}

.acknowledgment-logo-card:hover .acknowledgment-logo {
  /* filter: grayscale(0) contrast(.5) brightness(10); */
  filter: none;
  transform: scale(1.05);
}




/* ################# Programs Section ################# */

.programme-card {
    background: white;
    border-radius: 16px;
    height: 100%;
    overflow: hidden;
    transition: all 0.3s 
ease;
    border: 1px solid #e5e5e5;
}
.programs-slider .slick-slide {
    height: auto;
    padding: 0 12px;
}
.programme-card {
  background: white;
  border-radius: 16px;
      height: 100%;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #e5e5e5;
 
 
}
.programme-card .full-content-wrapper
{
    display: flex;
   
    justify-content: space-between;
    height: 100%;
    width: 100%;
}

.programme-card:hover {
  transform: translateY(-8px);
  border-color: #8B5A96;
 
}

.programme-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.programme-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.programme-card:hover .programme-image img {
  transform: scale(1.05);
}



.programme-info {
  padding: 20px;
}

.programme-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.3;
}

.programme-description {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 30px;
}

.programme-details {
  margin-bottom: 30px;
}
.detail-row {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}
.detail-row:last-child {
  margin-bottom: 0;
}

.detail-item {
  display: flex;
  gap: 12px;
  flex: 1;
}

.detail-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8B5A96;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.detail-content h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: #999;
  margin: 0 0 4px 0;
 
  letter-spacing: 0.5px;
}

.detail-content p {
  font-size: 0.9rem;
  color: #555;
  margin: 0;
  line-height: 1.4;
}


/* ################# Why Choose Us Section ################# */

.why-choose-us-section {
    background: #520c87;
 
}

/* Images Grid */
.why-choose-images-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}



.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

 



/* Why Choose Label */
.why-choose-label {
    display: inline-block;
}

 

/* Title */
.why-choose-title {
    font-size: 3rem;
   
    color: #ffffff;
    line-height: 1.2;
 
    margin-bottom: 20px;
}

/* Description */
.why-choose-description {
    font-size: 1rem;
    color: #dbdbdb;
    line-height: 1.7;
   
}

/* Features List */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: #5e1595;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.feature-item-title {
    font-size: 1.1rem;
 
    color: #ededed;
    margin: 0;
   
}

/* Divider */
.why-choose-divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ffffff 0%, transparent 100%);
}



/* Responsive Design */
@media (max-width: 992px) {
  
    
    .why-choose-title {
        font-size: 2.2rem;
    }
    
    .ps-lg-5 {
       
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .images-row {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .image-card {
        aspect-ratio: 1;
    }
    
    .why-choose-title {
        font-size: 1.8rem;
    }
    
    .why-choose-description {
        font-size: 0.95rem;
    }
    
    .feature-item-title {
        font-size: 1rem;
    }
    
    
}

@media (max-width: 576px) {
   
     .ps-lg-5 {
       
        margin-top: 0px;
    }
    .why-choose-title {
        font-size: 1.5rem;
    }
    
    .images-row {
        gap: 10px;
    }
    
    .feature-item {
        gap: 12px;
    }
    
    .feature-icon {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
}



/* ################# Programs for Kids Section ################# */

.programs-for-kids-section {
    background: #ffffff;

}

/* Section Header */
.programs-kids-header {
    max-width: 700px;
    
}

.programs-kids-title {
       font-size: calc(2rem + 0.5vw);
    font-weight: 600;
  
    color: #333;
  
    
}

.programs-kids-description {
    font-size: 1rem;
    color: #666666;
    line-height: 1.7;
   
    margin: 0;
}

/* Program Cards */
.program-kids-card {
    background: #522e90;
    border: 1px solid rgb(216, 216, 216);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: left;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); */
}

.program-kids-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.program-kids-icon {
    width: 60px;
    height: 60px;
   
    background: #f04e5a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.program-kids-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fafafa;
    margin-bottom: 15px;
   
}

.program-kids-card-description {
    font-size: 0.95rem;
    color: #efefef;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    list-style: disc;
    padding-left: 20px;
}

.learn-more-link {
   border: 1px solid #9e43ad;
    color: #333;
    padding: 12px 24px;
    border-radius: 3px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s 
ease;
    display: flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
}

.learn-more-link:hover {
    color: #1a237e;
}

.learn-more-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.learn-more-link:hover i {
    transform: translateX(3px);
}

/* Bottom Section */
.programs-kids-footer {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid #e0e0e0;
}

.programs-kids-footer-description {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
    color: #666666;
    line-height: 1.7;
    
    margin-bottom: 0 !important;
}

.btn-explore-programs {
    background: linear-gradient(135deg, #5e7ce2 0%, #3949ab 100%);
    color: white;
    padding: 14px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
   
}

.btn-explore-programs:hover {
    background: linear-gradient(135deg, #3949ab 0%, #1a237e 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(57, 73, 171, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    
    
    .programs-kids-title {
        font-size: 2.2rem;
    }
    
    .program-kids-card {
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    .programs-kids-title {
        font-size: 1.8rem;
    }
    
    .programs-kids-description {
        font-size: 0.95rem;
    }
    
    .program-kids-card-title {
        font-size: 1.25rem;
    }
    
    .program-kids-card-description {
        font-size: 0.9rem;
    }
    
    .programs-kids-footer {
        margin-top: 40px;
        padding-top: 40px;
    }
}

@media (max-width: 576px) {
    
    
    .programs-kids-title {
        font-size: 1.5rem;
    }
    
    .program-kids-card {
        padding: 25px 20px;
    }
    
    .program-kids-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .btn-explore-programs {
        width: 100%;
        text-align: center;
    }
}




/* ###### events section ####### */

.parallax-card {
  position: sticky;
  top: 15vh; /* Adjust as needed for spacing from top */

  margin-bottom: 20px; /* Optional spacing between stacked cards */
  overflow: hidden; /* Prevent content overflow during animations */
}

.card-inner {
      width: 100%;
    height: 100%;
    background: #fff;
    border: 1px solid grey;
    border-radius: 15px;
    transform-origin: center;
    will-change: transform, filter;
    overflow: hidden;
}
.sphere-video{
  border-left: 1px solid grey;
  height: 100%;
  object-fit: cover;
}


.event-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
}

.event-details span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #6c757d;
  font-weight: 500;
}

.event-details i {
  color: #6a2684;
  font-size: 0.8rem;
}

.event-image-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.event-image {
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.event-image:hover {
  transform: scale(1.05);
}

.parallax-card:hover .event-image {
  transform: scale(1.05);
}



@media (max-width: 768px) {
  
   .event-details {
    margin-top: 15px;
  }
  
  .event-details span {
    font-size: 0.8rem;
  }
}

 

/* ################# video section ################# */

/* Our Students Section */
.our-students-section {
  position: relative;
  overflow: hidden;

}

.students-video-container {
  position: relative;
  width: 100%;
   
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
 border-radius: 100px 0 100px 0;
}

.students-background-video {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 2;
} */

.students-content-overlay {
  position: absolute;
  z-index: 3;
  width: 100%;
  height: 100%;
  background-color: #00000069;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
      border-radius: 100px 0 100px 0;
}

.students-content {
  text-align: center;
  max-width: 800px;
  color: white;
}

.students-title {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 8px;
  color: #ffffff;
  opacity: 0.95;
}

.students-subtitle {
  font-size: 48px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 40px;
  color: #ffffff;
  opacity: 0.95;
}

.students-play-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.students-play-button:hover .play-button-circle {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 1);
}

.students-play-button:hover .play-button-text {
  color: #ffffff;
}

/* .play-button-circle {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.play-button-circle i {
  font-size: 24px;
  color: #333;
  margin-left: 3px;
}

.play-button-text {
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
} */

.video-caption {
  position: absolute;
  bottom: 40px;
  right: 40px;
  max-width: 400px;
  text-align: right;
}

.video-caption p {
  font-size: 14px;
  line-height: 1.5;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.5);
  padding: 12px 16px;
  border-radius: 8px;
  margin: 0;
  backdrop-filter: blur(10px);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .students-title,
  .students-subtitle {
    font-size: 42px;
  }
  
  .video-caption {
    bottom: 30px;
    right: 30px;
    max-width: 350px;
  }
}

@media (max-width: 992px) {
 
  
  .students-title,
  .students-subtitle {
    font-size: 36px;
  }
  
  .play-button-circle {
    width: 70px;
    height: 70px;
  }
  
  .play-button-circle i {
    font-size: 20px;
  }
  
  .play-button-text {
    font-size: 16px;
  }
  
  .video-caption {
    position: relative;
    bottom: auto;
    right: auto;
    max-width: 100%;
    text-align: center;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {

  .students-video-container, .students-content-overlay{
    border-radius: 50px 0 50px 0;
  }
  .students-content {
    padding: 0 15px;
  }
  
  .students-title,
  .students-subtitle {
    font-size: 28px;
  }
  
  .students-play-button {
    flex-direction: column;
    gap: 12px;
  }
  
  .play-button-circle {
    width: 60px;
    height: 60px;
  }
  
  .play-button-circle i {
    font-size: 18px;
  }
  
  .play-button-text {
    font-size: 14px;
  }
  
  .video-caption p {
    font-size: 12px;
    padding: 10px 12px;
  }
}

@media (max-width: 480px) {
   .play-button-text {
  display: none;
  }
  .students-video-container, .students-content-overlay{
    border-radius: 20px 0 20px 0;
  }
  .students-title,
  .students-subtitle {
    font-size: 24px;
  }
  
  .video-caption {
    margin-top: 15px;
  }
  
  .video-caption p {
    font-size: 11px;
  }
}

/* ################# Insights Cards Slider ################# */
.insights-slider {
  display: flex;
  gap: 60px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 50px;
  -webkit-overflow-scrolling: touch;
      overflow: hidden;
    overflow-x: scroll;
}
.projects-info {
    max-width: 600px;
}
.projects-description {
    font-size: 18px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 100px;
}
.insights-slider::-webkit-scrollbar {
  height: 8px;
}

.insights-slider::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.insights-slider::-webkit-scrollbar-thumb {
  background: #5a4a9d;
  border-radius: 10px;
}

.insights-slider::-webkit-scrollbar-thumb:hover {
  background: #9c7edb;
}

.insights-card {
  flex-grow: 1;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  
  display: flex;
  align-items: flex-end;
}
.insights-card::after{
      content: '';
    position: absolute;
    cursor: default;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
       background: linear-gradient(0deg, rgb(0 0 0) 5%, rgb(203 184 184 / 0%) 35%);
    z-index: 1;
}

.insights-card:hover,
.insights-card.active {


 transform: scale(1.15);
}

.insights-card:hover .insights-card-image img,
.insights-card.active .insights-card-image img {
  transform: scale(1.08);
}

.insights-card:hover .insights-card-subtitle,
.insights-card.active .insights-card-subtitle {
  display: block;
}

.insights-card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.insights-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.insights-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
   cursor: default;
  z-index: 2;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
  padding: 40px 25px 25px;
  color: white;
  transition: all 0.4s ease;
}

.insights-card-title {
  font-size: 24px;
  font-weight: 700;
  
  color: white;
  margin: 0;
  line-height: 1.3;
  letter-spacing: 0.5px;
}

.insights-card-subtitle {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  margin: 12px 0 0 0;
  line-height: 1.5;
  display: none;
  transition: opacity 0.4s ease 0.2s;
}


/* Responsive Design */
@media (max-width: 1200px) {
  .insights-card {
    flex: 0 0 260px;
    height: 380px;
  }

  .insights-card:hover {
    flex: 0 0 280px;
  }

  .insights-card-title {
    font-size: 22px;
  }
}

@media (max-width: 992px) {
  .insights-card {
    flex: 0 0 240px;
    height: 360px;
  }

  .insights-card:hover {
    flex: 0 0 260px;
  }

  .insights-card-overlay {
    padding: 35px 20px 20px;
  }

  .insights-card-title {
    font-size: 20px;
  }

  .insights-card-subtitle {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .insights-slider {
    gap: 15px;
  }

  .insights-card {
    flex: 0 0 220px;
    height: 320px;
  }

  .insights-card:hover {
    flex: 0 0 240px;
    transform: translateY(-3px);
  }

  .insights-card-overlay {
    padding: 30px 18px 18px;
  }

  .insights-card-title {
    font-size: 18px;
  }

  .insights-card-subtitle {
    font-size: 12px;
    margin-top: 10px;
  }
}

@media (max-width: 576px) {
  .insights-slider {
    gap: 12px;
  }

  .insights-card {
    flex: 0 0 180px;
    height: 280px;
  }

  .insights-card:hover {
    flex: 0 0 200px;
  }

  .insights-card-overlay {
    padding: 25px 15px 15px;
  }

  .insights-card-title {
    font-size: 16px;
  }

  .insights-card-subtitle {
    font-size: 11px;
    margin-top: 8px;
  }
}






/* testimonial */

 
 
 
 
  
 
  #tranding .tranding-slider {
    height: 70vh;
    padding: 2rem 0;
    position: relative;
  }
  
 
  
  .tranding-slide {
    position: relative;
    background: black;
    border: 1px solid white;
    overflow: hidden;
    border-radius: 20px;
    overflow: hidden;
  }
  .tranding-slide-content{
    position: relative;
    height: 100%;
  }
  .tranding-slide-content::before{
       content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgb(0 0 0) 30%, rgb(203 184 184 / 0%) 100%);
    z-index: 1;
  }

  .tranding-slide-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }
 .tranding-slide-content .slider-content{
    position: absolute;
    bottom: 1rem;
    left: 0;
    padding: 1rem;
    width: 100%;
   z-index: 2;
    color: white;
    text-align: center;
 }
  

  

  .tranding-slider-control .slider-arrow {
    background: var(--white);
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    left: 42%;
    transform: translateX(-42%);
    filter: drop-shadow(0px 8px 24px rgba(18, 28, 53, 0.1));
  }
  
  .tranding-slider-control .slider-arrow .ion-icon {
    font-size: 2rem;
    color: #222224;
  }
  
  .tranding-slider-control .slider-arrow::after {
    content: '';
  }
  
  .tranding-slider-control .swiper-pagination {
    position: relative;
    width: 15rem;
    bottom: 1rem;
  }
  
  .tranding-slider-control .swiper-pagination .swiper-pagination-bullet {
    filter: drop-shadow(0px 8px 24px rgba(18, 28, 53, 0.1));
  }
  
  .tranding-slider-control .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--primary);
  }

  .swiper-slide-shadow-left,
.swiper-slide-shadow-right {
  display: none;
}

.tranding-slider-control {
  position: absolute;
 top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.tranding-slider-control .swiper-button-next {
  left: 98% !important;
  transform: translateX(-100%) !important;
}
.tranding-slider-control .swiper-button-prev {
  left: 2% !important;
  transform: translateX(-20%) !important;
}


.tranding-slider-control .slider-arrow {
  background: rgb(255 255 255);
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    color: rgb(0 0 0);
    font-size: 50px;
  top: 50%;
  left: 42%;
  transform: translateX(-42%);
  filter: drop-shadow(0px 8px 24px rgba(18, 28, 53, 0.1));
}


.tranding-slider-control .slider-arrow:hover {
  color:  rgb(82 12 135);
}

.tranding-slider-control .swiper-pagination {
  position: relative;
  width: 15rem;
  bottom: 1rem;
  z-index: 100;
  bottom: 0;
}

.tranding-slider-control .swiper-pagination .swiper-pagination-bullet {
  filter: drop-shadow(0px 8px 24px rgba(18, 28, 53, 0.1));
}

.tranding-slider-control .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--primary);
}

.player-wrapper { 

margin: 25px auto;
 display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgb(248 77 80);
    border-radius: 5px;
    opacity: 1;
    padding: 0 15px;
    max-width: 200px;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* ################# Video Modal Popup ################# */
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

.video-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
}

.video-modal-content {
  position: relative;
  z-index: 10000;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  max-width: 90%;
  /* max-height: 90vh; */
  height: 90vh;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
  animation: slideIn 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.video-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
     border: 2px solid rgb(255 0 0);
    border-radius: 50%;
    color: #ff0000;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10001;
}

.video-modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
  transform: rotate(90deg);
}

.video-container {
  width: 100%;
  position: relative;
height: 100%;
  overflow: hidden;
}

.video-container video {
  
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

/* Responsive Video Modal */
@media (max-width: 768px) {
  .video-modal-content {
    max-width: 95%;
    max-height: 85vh;
  }

  .video-modal-close {
    width: 35px;
    height: 35px;
    font-size: 18px;
    top: 15px;
    right: 15px;
  }

  .video-container iframe {
    height: 100%;
  }
}


  /* FAQ Section Styles */
    .faq-section {
      
      background-color: #f5f5f5;
    }

    .faq-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 40px;
    }

    .faq-title {
      font-size: clamp(36px, 5vw, 48px);
      font-weight: 700;
      color: #000;
      margin-bottom: 10px;
    }

    .faq-subtitle {
      font-size: clamp(36px, 5vw, 48px);
      font-style: italic;
      color: #000;
      margin-bottom: 60px;
    }

    .faq-content-wrapper {
      display: flex;
      gap: 40px;
      align-items: flex-start;
    }

    .faq-sidebar {
      flex: 0 0 350px;
      background-color: #ffffff;
      border-radius: 20px;
      padding: 40px 30px;
      position: sticky;
      top: 100px;
    }

    .faq-category {
      padding: 15px 20px;
      color: #888;
      cursor: pointer;
      border-radius: 8px;
      margin-bottom: 10px;
      transition: all 0.3s;
      font-size: 16px;
      font-weight: 500;
    }

    .faq-category:hover {
      background-color: #520c87;
    color: #ffffff;
    }

    .faq-category.active {
    background-color: #520c87;
    color: #ffffff;
    }

    .faq-questions {
      flex: 1;
    }

    .faq-accordion .accordion-item {
      background-color: #fff;
      border: none;
      border-radius: 12px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    .faq-accordion .accordion-button {
      background-color: #fff;
      color: #000;
      font-size: 16px;
      font-weight: 500;
      padding: 25px 30px;
      border: none;
      box-shadow: none;
    }

    .faq-accordion .accordion-button:not(.collapsed) {
      background-color: #fff;
      color: #000;
      box-shadow: none;
    }

    .faq-accordion .accordion-button:focus {
      box-shadow: none;
      border: none;
    }

    .faq-accordion .accordion-button::after {
      content: '+';
      background-image: none;
      width: auto;
      height: auto;
      font-size: 24px;
      font-weight: 300;
      color: #000;
    }

    .faq-accordion .accordion-button:not(.collapsed)::after {
      content: '−';
      transform: none;
    }

    .faq-accordion .accordion-body {
      padding: 0 30px 25px 30px;
      color: #666;
      font-size: 15px;
      line-height: 1.6;
    }

    .faq-accordion .accordion-collapse {
      border: none;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .faq-content-wrapper {
        flex-direction: column;
      }

      .faq-sidebar {
        flex: 0 0 auto;
        width: 100%;
        position: static;
        display: flex;
        overflow-x: auto;
        padding: 20px;
        gap: 10px;
      }

      .faq-category {
        white-space: nowrap;
        margin-bottom: 0;
      }
    }

  
  
  
  
  /* UNION Section Styles */
    .union-section {
      min-height: 600vh;
      background-color: #000;
      position: relative;
    }

    .union-sticky-container {
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #ffffff;
      position: relative;
      z-index: 10;
    }

    .union-content {
      width: 100%;
      max-width: 1400px;
      padding: 0 40px;
      margin: 0 auto;
    }

    .union-letters {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0;
      margin-bottom: 60px;
          padding-top: 100px;
    }

    .union-letters .letter {
      font-size: 22rem;
         font-size: calc(3rem + 14vw);
      font-weight: 700;
      line-height: 1;
      color: #d6d6d6;
      transition: color 0.6s ease;
      letter-spacing: -0.02em;
    }

    .union-letters .letter.active {
      color: #000000;
    }

    .union-meaning {
      position: relative;
      max-width: 800px;
      margin: 0 auto;
      min-height: 150px;
    }

    .union-meaning .meaning {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      font-size: 16px;
      line-height: 1.6;
      color: #000000;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.6s ease, transform 0.6s ease;
      pointer-events: none;
    }

    .union-meaning .meaning.active {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    .union-meaning .meaning-word {
      font-weight: 600;
      font-size: 20px;
      display: inline-block;
      margin-right: 8px;
    }

    /* Scroll Indicator Styles */
    .union-scroll-indicator {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      z-index: 20;
      animation: fadeInOut 2.5s ease-in-out infinite;
    }

    .scroll-text {
      font-size: 12px;
      font-weight: 600;
      color: #666;
      
      letter-spacing: 1px;
    }

    .scroll-icon {
      width: 24px;
      height: 40px;
      border: 2px solid #999;
      border-radius: 12px;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      padding-top: 8px;
      position: relative;
    }

    .scroll-wheel {
      width: 3px;
      height: 8px;
      background-color: #666;
      border-radius: 2px;
      animation: scrollDown 1.5s ease-in-out infinite;
    }

    @keyframes scrollDown {
      0% {
        opacity: 1;
        transform: translateY(0);
      }
      100% {
        opacity: 0;
        transform: translateY(16px);
      }
    }

    @keyframes fadeInOut {
      0%, 100% {
        opacity: 1;
      }
      50% {
        opacity: 0.5;
      }
    }



 @media (max-width: 992px) {
.hero-section-main .video-wrapper{
  position: relative;
  width: 100%;
  min-height: auto;
  height: 100%;
  overflow: hidden;
}
.hero-section{
  min-height: auto;
          padding-bottom: 30px;
}
 }

 @media (max-width: 768px) {
  .insights-card:hover, .insights-card.active {
    transform: scale(1);
}
.projects-description{
  margin-bottom: 30px;
}
.insights-slider{
  padding: 0;
  padding-bottom: 20px;
}
  .tranding-slider-control{
    display: none;
  }

 .union-letters{
    padding-top: 30px;
    margin-bottom: 30px;
  } 
 }

  @media (max-width: 576px) {
    .acknowledgment-logo-card{
      padding: 0;
    }
    .tranding-slide-content {
    position: relative;
    height: auto;
}
.robokido-feature-card{
  padding: 15px;
}
.feature-title{
  font-size: 1.3rem;
}
.faq-container {
    
    padding: 0 15px;
}
.faq-accordion .accordion-button{
  padding: 15px;
}
 }


