   
    /* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
.clients-section {
  background-color: #000;
  padding: 30px 60px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.15); /* underline below entire section */

}

.clients-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.clients-heading {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

.clients-heading h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  color: #d8240e;
}

.clients-heading img {
  width: 50px;
  height: 200px;
}

.slider-container_clients {
  overflow: hidden;
  white-space: nowrap;
  flex: 1;
}

.slider_clients {
  display: flex;
  align-items: center;
  gap: 30px;
  width: max-content;
  animation: scroll 20s linear infinite;
}

.slider_clients img {
  width: 120px;
  height: auto;
  transition: transform 0.3s ease;
}

.slider_clients img:hover {
  transform: scale(1.05);
}

@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 768px) {
  .clients-section {
    padding: 20px 20px;
  }

  .clients-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .clients-heading {
    justify-content: center;
    width: 100%;
  }

  .clients-heading h2 {
    font-size: 22px;
    text-align: center;
  }

  .clients-heading img {
    width: 30px;
    height: 100px;
  }

  .slider-container_clients {
    width: 100%;
  }

  .slider_clients {
    gap: 20px;
  }

  .slider_clients img {
    width: 80px;
  }
}

/* --------------------------------------------------------------------------------------------------------------------------- */
/* Paragraph Styling */
.hero-section p {
  font-size: 18px;
  line-height: 1.6;
  margin-top: -150px;
  color: #555;
 
}
/* Highlighted Company Name */
.hero-section .highlight {
  color: #f4a024; /* Orange color */
  font-weight: bold;
}

.heading-container h1 {
  font-size: 30px;
    font-weight: 700;
    color: #000000;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0px;
}


/* Service Rows */
.heading-container {
  text-align: center;
  padding: 25px;
  color: #333;
  gap: 10;
  border-bottom: 2px solid #c0392b;
  margin-top: 20px;
  
}

.highlightes {
  color:  #01070ae9;
}

/* -----------------------------------------------services-row ------------------------------------------------------------------------------- */
.services-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 20px 0;
}

.services-box {
  flex: 1;
  padding: 20px;
  background-color: #e42a11;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(231, 202, 202, 0.1);
  text-align: left;
  /* border: 3px solid #083a43; Added border for enhanced design */
  background-color: #d32b2b; /* Updated background color */
}

.services-image, .services-images {
  flex: 1;
  text-align: center;
}

.services-image img, .services-images img {
  max-width: 100%;
  border-radius: 12px;
}

.service-item {
  margin-bottom: 15px;
}
.service-item  p{
  color: #000000;
}
h3 {
  color: #070606;
  margin-bottom: 5px;
  /* font-weight: bold; Enhanced text weight for emphasis */
}


/* Mobile View - Hide Images */
@media (max-width: 768px) {
  .services-image, .services-images {
      display: none;
  }
}

/* Larger Screens - Align Images in the Middle */
@media (min-width: 769px) {
  .services-row {
      justify-content: center;
  }

  .services-image, .services-images {
      order: 2; /* Ensures image is aligned in the middle */
  }

  .services-box {
      order: 1;
  }
}

/* Animate image on hover/tap without changing layout */
.services-row:hover .services-image img,
.services-row:hover .services-images img {
  transform: scale(1.15) translateY(-40px);
  z-index: 2;
}

/* Mobile tap support */
@media (max-width: 768px) {
  .service-item:active ~ .services-image img,
  .service-item:active ~ .services-images img,
  .services-box:active ~ .services-image img,
  .services-box:active ~ .services-images img {
    transform: scale(1.1) translateY(-30px);
  }
}

 
.service-item h2 {
  font-size: 90px;
    margin-right: 20px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 60px;
}

.service-item p {
  font-size: 12px;
  line-height: 1.5;
  text-align: left;
  display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    unicode-bidi: isolate;
}
/* ---------------------------------------------------------------------------------------------------------------- */

/* CTA Button */
.cta-button{
  text-align: center;
  margin-top: 30px;
}

.cta-button button {
  background: #ff5733;
  color: white;
  font-size: 18px;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.cta-button button:hover {
  background: #ff8c42;
  transform: scale(1.05);
}
/* -------------------------------------------android ios cards------------------------------------------------------------------ */
.head{
background-color: #faf0e6;
    margin-top: 60px;
}
.highlights{
  color: #f1b605;
  
}

.platforms {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  background-color: #faf0e6;
  margin: -50px 20px 50px 20px;
  padding: 20px;
  justify-items: center;
  margin-top: 30px;
}

.card {
  width: 100%;
  max-width: 450px;
  padding: 30px;
  border-radius: 15px;
  color: white;
  text-align: left;
  background-color: #333;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 4px solid #f5a623;
  position: relative;
}

.android-card {
  background: linear-gradient(135deg, #36fff8, #ddff00d6);
}

.ios-card {
  background: linear-gradient(135deg, #ff4453, #ff62dd);
}

.card h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 700;
  text-align: center;
}

.card p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #383838;
  text-align: center;
}

.icon-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.icon-badge i {
  font-size: 30px;
}

.android-icon {
  color: #d3da00;
}

.ios-icon {
  color: #ff0404;
}
/* Specific icon color if needed */
.icon-2d {
  color: #00bcd4; /* Cyan color for 2D */
}

.icon-3d {
  color: #e91e63; /* Pink color for 3D */
}


.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.text-uppercase {
  text-transform: uppercase;
}

.text-center {
  text-align: center;
}

@media (max-width: 768px) {
  .platforms {
    grid-template-columns: 1fr; 
    gap: 20px;
  }

  .card {
    padding: 20px;
  }

  .card h2 {
    font-size: 1.3rem;
  }

  .card p {
    font-size: 1rem;
  }

  .icon-badge {
    width: 50px;
    height: 50px;
  }

  .icon-badge i {
    font-size: 24px;
  }
}
/* -------------------------------------------------------------------------------------------------------------------- */
/* Default styles (desktop) — unchanged from your code */
.content-container {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
  opacity: 0;
  transform: perspective(1000px) rotateY(-10deg) translateX(-50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  z-index: 2;
  position: relative;
}

.content-container h1 {
  font-size: 48px;
  font-weight: bold;
  color: #000;
  margin-top: 60px;
  text-align: left;
  opacity: 0;
  transform: perspective(1000px) rotateY(-10deg) translateX(-50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.content-container p {
  font-size: 18px;
  line-height: 1.5;
  color: #000000;
  opacity: 0;
  transform: perspective(1000px) rotateX(10deg) translateY(30px);
  transition: opacity 0.8s ease-out 0.5s, transform 0.8s ease-out 0.5s;
}

/* Animation trigger */
.content-container.visible {
  opacity: 1;
  transform: perspective(1000px) rotateY(0) translateX(0);
}
.content-container.visible h1 {
  opacity: 1;
  transform: perspective(1000px) rotateY(0) translateX(0);
}
.content-container.visible p {
  opacity: 1;
  transform: perspective(1000px) rotateX(0) translateY(0);
}

/* Mobile view — centered text & smaller spacing */
@media (max-width: 768px) {
  .content-container {
    padding: 40px 15px;
    text-align: center; /* Center all content */
    transform: perspective(1000px) rotateY(-5deg) translateX(0); /* softer tilt */
  }

  .content-container h1 {
    font-size: 28px; /* smaller heading */
    margin-top: 20px;
    text-align: center;
    transform: perspective(1000px) rotateY(-5deg) translateX(0);
  }

  .content-container p {
    font-size: 16px;
    line-height: 1.4;
    transform: perspective(1000px) rotateX(5deg) translateY(15px);
  }
}

/* ------------------------------------------------------------------------------------------------------------------------ */

/* Hero Section */
.hero-section {
  text-align: center;
  padding: 50px 20px;
  background: white;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
      margin-top: -100px;
}
.hero-section h1 {
    font-size: 2.5rem;
  color: #fc0e0e;
  font-weight: bold;
}
.hero-section h2 {
  font-size: 2.5rem;
  color: #333;
  margin: 0;
  transform: translateY(-30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  font-weight: bold;
  border-bottom: 2px solid #c0392b;
  padding-bottom: 10px; /* Space between text and border */
}


.hero-section .highlight {
  color: #ff1111;
  font-weight: bold;
}
.hero-section p {
  font-size: 1.5rem;
  color: #3a3636;
  max-width: 800px;
  margin: 20px auto;
  text-align: left;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out 0.5s, transform 0.8s ease-out 0.5s;
}
.hero-section.visible {
  opacity: 1;
  transform: translateY(0);
}
.hero-section.visible h1 {
  opacity: 1;
  transform: translateY(0);
}
.hero-section.visible p {
  opacity: 1;
  transform: translateY(0);
}

/* ------------------------------------------card-------------------------------------------------------------------------------------------------------------- */

/* Card Container */
.card-container1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 20px;
  flex-wrap: wrap;
  position: relative;
  margin-left: -92px;
  margin-right: -100px;
  /* border-bottom: 2px solid #c0392b; */

}

.card1 {
  background-color: #fff;
  padding: 20px;
  width: 300px;
  height: 230px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  margin-left: -10px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  position: relative;
  overflow: hidden;
}

.card1 h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #333;
}

.card1 p {
  font-size: 12px;
  line-height: 1.6;
  color: #1e1d1d;
}

.card1:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* ✅ Unique Hover Effect */
.card1::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-30deg);
  transition: left 0.5s ease-in-out;
}

.card1:hover::before {
  left: 100%;
}

/* ✅ Animation on Scroll */
@keyframes floatIn {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-animate {
  animation: floatIn 0.8s ease-out forwards;
}

/* ✅ Mobile Responsiveness Fix */
@media (max-width: 768px) {
  .card1 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 25px;
  }
  .card1:nth-child(odd),
  .card1:nth-child(even) {
    transform: translateX(0);
  }
}

@media (max-width: 480px) {
  .card1 {
    width: 100%;
    padding: 20px;
  }
}

/* ------------------------------------------------------------------------------------------------------------------------ */
/* .highlight {
  color: #f1e904;
  font-weight: bold;
} */

/* Flexbox layout for Desktop (Cards on Left & Right) */
.game-development-section {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000; /* Black background */
  padding: 50px;
  gap: 30px;
  flex-wrap: wrap;
}

.image-container {
  display: flex;
  justify-content: center;
}

.image-container img {
  width: 300px;
  height: auto;
  margin-left: -50px;

}

/* Mobile View */
@media screen and (max-width: 768px) {
  .game-development-section {
    flex-direction: column;
    padding: 30px;
    text-align: center;
  }

  .card-container1 {
    flex-direction: column;
    align-items: center;
    gap: 15px; /* Reduce spacing */
  }

  .card1 {
    width: 90%; /* Make cards take up more space */
    max-width: 350px;
  }

  .image-container img {
    width: 200px; /* Reduce image size */
    height: auto;
  }

  .card1 h2 {
    font-size: 1.2rem; /* Slightly larger headings for readability */
  }

  .card1 p {
    font-size: 1rem;
  }
}
/* ---------------------------------------------------about-container----------------------------------------------------------------------------------------------------------------------------------------------------- */
.about-container {
  text-align: center;
  background: linear-gradient(135deg, #f3f3f3, #eaeaea);
  padding: 60px 20px;
  border-radius: 20px;
  margin: 40px auto;
  max-width: 1200px;
  position: relative;
  overflow: hidden;
}

/* Accent Gradient Line */
.about-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100px;
  height: 5px;
  background: linear-gradient(to right, #007bff, #ff6600);
  transform: translateX(-50%);
  border-radius: 5px;
}

/* Title */
.about-title {
  font-size: 24px;
  font-weight: bold;
  color: #222;
  margin-bottom: 40px;
  text-transform: uppercase;
  position: relative;
}

/* Cards Grid */
.about-cards {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

/* Individual Cards */
.about-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  width: 220px;
  position: relative;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1), -5px -5px 15px rgba(255, 255, 255, 0.7);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
  /* Floating Animation */
  animation: floating 3s infinite ease-in-out;
}

/* Hover Effect - Slants on Hover */
.about-card:hover {
  transform: skewY(-5deg) scale(1.05);
  box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.2), -5px -5px 20px rgba(255, 255, 255, 0.9);
}

/* Icons */
.about-card i {
  font-size: 45px;
  color: #ff1111;
  margin-bottom: 15px;
  transition: color 0.3s ease, transform 0.3s ease;
}

/* Icon Bounce Animation on Hover */
.about-card:hover i {
  color: #ff6600;
  transform: translateY(-5px);
}

/* Headings */
.about-card h2 {
  font-size: 20px;
  font-weight: bold;
  color: #222;
  margin-bottom: 8px;
}

/* Paragraphs */
.about-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* Floating Keyframes Animation */
@keyframes floating {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0px); }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .about-cards {
    flex-direction: column;
    align-items: center;
  }

  .about-card {
    width: 90%;
    max-width: 300px;
  }
}

/* -------------------------------------------chooseus-------------------------------------------------------------------------------- */
.section__container_chooseus {
  max-width: 1500px;
  margin: auto;
  padding: 2rem 1rem;
  text-align: left;
  /* background-color: #ff32d6; */
  
}
.font-medium {
  font-size: 40px !important;
  line-height: 50px;
}
.headings-h2 {
  color: #000000;
  text-transform: uppercase;
  font-size: 40px;
  font-weight: 700;
}
.white-text {
  color: #000000 !important;
}
@media (max-width: 1024px) {
  .font-medium {
      font-size: 40px !important;
      line-height: 50px;
  }
}
.section__container_chooseus h2 {
  font-size: 1.5rem;
  font-weight: 600;
  /* color: var(--primary-color); */
}

.section__container_chooseus h1 {
  position: relative;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.section__container_chooseus h1::after {
  position: absolute;
  content: "";
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: 2px;
  width: 5rem;
  background-color: var(--primary-color);
}


  .section__grid_chooseus{
    /* background: linear-gradient(to top right, #ff32d6 0, #ee34f8 30%, #ff32d6 100%); */
    padding: calc(var(--fontsize) * 2) calc(var(--fontsize) * 1) calc(var(--fontsize) * 4) calc(var(--fontsize) * 2);
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 2fr)); /* Two columns */
    gap: 20px;
    justify-content: center;
    align-items: start; /* Align items to the top */
    transition: transform 0.5s;
    width: 80%;
    margin: 0 auto;
    
}


/* Responsive adjustments */
@media (max-width: 1024px) {
    .section__grid_chooseus {
        width: 80%; /* Increases width to occupy more space */
        margin-left: auto;
        margin-right: auto;
        padding: 2rem; /* Adjust padding for better spacing */
    }
}

@media (max-width: 768px) {
    .section__grid_chooseus {
        width: 100%; /* Takes full width on smaller devices */
        margin-left: 0;
        padding: 1.5rem;
        flex-direction: column; /* Stacks elements vertically */
        align-items: center;
    }
  }
.section__card_chooseus{
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 5rem 2rem 2rem;
  background-color:rgb(241, 241, 241);
  border-radius: 5px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  
  
}

.section__card_chooseus::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  width: 75%;
  aspect-ratio: 1;
  border-radius: 100%;
  background-color: var(--primary-color);
  z-index: -1;
  transition: 0.5s;
}

.section__card_chooseus span {
  position: absolute;
  top: 0;
  left: 0;
  padding: 1rem;
  font-size: 3rem;
  color: var(--white);
}

.section__card_chooseus h4 {
  margin-top: 3rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  transition: 0.3s;
}

.section__card_chooseus p {
  margin-bottom: 2rem;
  color: var(--text-light);
  transition: 0.3s;
}

.section__card_chooseus img {
  margin-bottom: 1rem;
  max-width: 100px;
  border-radius: 100%;
  border: 2px solid var(--primary-color);
  transition: 0.3s;
}

.section__card_chooseus h5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  transition: 0.3s;
}

.section__card_chooseus h6 {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-light);
  transition: 0.3s;
}

.section__card_chooseus:hover::before {
  width: 400%;
}

.section__card_chooseus:hover :is(h4, h5) {
  color: var(--white);
}

.section__card_chooseus:hover :is(p, h6) {
  color: var(--secondary-color);
}

.section__card_chooseus:hover img {
  border-color: var(--white);
}

@media (max-width: 768px) {
  .section__grid_chooseus {
    grid-template-columns: 1fr;
  }
  .section__container_chooseus h1 {
    font-size: 2rem;
  }
  .section__card_chooseus {
    padding: 4rem 1.5rem 1.5rem;
  }
  .section__card_chooseus h4 {
    font-size: 1.25rem;
  }
  .section__card_chooseus span {
    font-size: 2.5rem;
  }
}
.section__card1_chooseus{
  position: relative;
  /* background: #ffffff; */
  padding: 3.5rem 2rem;
  border-radius: 80px 0px 80px 80px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
  transition: all 0.4s ease-in-out;
  overflow: hidden;
  border: 3px solid #fff;
  background: linear-gradient(to top right, #fff 0, #fff 30%, #d9d7d5 100%);
    box-shadow: -20px 20px 40px rgba(150, 40, 27, .3);
}

.section__card2_chooseus{
  position: relative;
  /* background: #ffffff; */
  padding: 3.5rem 2rem;
  border-radius: 0px 80px 80px 80px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease-in-out;
  overflow: hidden;
  margin-top: 30px;
  border: 3px solid #fff;
  background: linear-gradient(to top right, #fff 0, #fff 30%, #d9d7d5 100%);
  box-shadow: -20px 20px 40px rgba(150, 40, 27, .3);

}
.why-us-content-number {
  font-size: 50px;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-weight: 7000;
  color: #ff00c8;
}
.section__card1_chooseus:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(69, 235, 18, 0.2);
  color: #101010;
}
.section__card2_chooseus:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(69, 235, 18, 0.2);
  color: #101010;
}
/* Number Styling (Like "01", "02" in Image) */
.section__card1_chooseus .number {
  font-size: 3rem;
  font-weight: 700;
  color: #ff9900;
  position: absolute;
  top: 20px;
  left: 20px;
}
.section__card2_chooseus .number {
  font-size: 3rem;
  font-weight: 700;
  color: #ff9900;
  position: absolute;
  top: 20px;
  left: 20px;
}

.section__card1_chooseus h4 {

  font-size: 14px;
    font-weight: 700;
    word-break: break-word;
    text-transform: uppercase;
    color: #4f5359;
    text-align: left !important;
}
.section__card2_chooseus h4 {
 
  font-size: 14px;
    font-weight: 700;
    word-break: break-word;
    text-transform: uppercase;
    color: #4f5359;
    text-align: left !important;
}
.section__card1_chooseus p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  text-align: left;
}
.section__card2_chooseus p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  text-align: left;
}
.section__card1_chooseus::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(135deg, #ffc400, #ff9900);
  border-radius: 50px 0 50px 0;
  z-index: -1;
  transition: 0.5s;
}
.section__card2_chooseus::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(135deg, #ffc400, #ff9900);
  border-radius: 0px 50 0px 50;
  z-index: -5;
  transition: 0.5s;
}

.section__card1_chooseus:hover::before {
  width: 200%;
  
}
.section__card2_chooseus:hover::before {
  width: 200%;
}

/* ---------------------------------------------------------------------------------------------------------------------------- */
.visual-container {
  display: flex;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  padding: 40px 0;
}
.visual-track {
  display: flex;
  transition: transform 0.5s ease;
}
.visual-item {
  min-width: 200px;
  margin: 0 10px;
  transition: transform 0.5s;
}
.visual-item img {
  width: 100%;
  border-radius: 10px;
}
/* --------------------------------------------------------------------------------------------------------------------------------- */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, auto);
  gap: 20px;
  padding: 40px;
  margin: 40px auto;
  max-width: 900px;
  position: relative;
  overflow: hidden;
}

.feature-cards {
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: left;
  opacity: 0;
  transform: translateX(-100%);
  transition: opacity 1s ease-out, transform 1s ease-out;
  position: relative;
  overflow: hidden;
  color: #333;
}

.feature-cards.right {
  transform: translateX(100%);
}

.feature-cards h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.feature-cards p {
  font-size: 12px;
  line-height: 1.6;
}

.feature-cards.reveal {
  opacity: 1;
  transform: translateX(0);
}

.feature-cards:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
  /* background-color: #fabff5; */
  color: white;
}

/* ---------------------------------------------------choose us---------------------------------------------------------------------------- */
.choose-us-card {
  /* background-color: rgb(93, 57, 87); */
  padding: 60px 20px;
  text-align: center;
  margin-top: 30px;
}

.choose-us-card h2 {
  font-size: 32px;
  font-weight: 600;
  color: #ff0808;
  text-transform: uppercase;
  margin-bottom: 40px;
  
}
/*------------------------------------------------------------ Grid Layout---------------------------------------------------------- */
.grid-layouts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  justify-content: center;
  padding: 20px;
}
/* ---------------------------------------------------------------------------------------------------------------------------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-cards {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border: 2px solid transparent;
  overflow: hidden;
}

.feature-cards::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #ff36e1, #007bff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.feature-cards:hover::before {
  transform: scaleX(1);
}

.feature-cards:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  /* border-color: #380101; */
}

.icon-circle {
  width: 70px;
  height: 70px;
  background-color: #c0392b;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 15px;
  transition: background-color 0.3s ease;
}

.feature-cards:hover .icon-circle {
  background-color: #FFD300;
}

.icon-circle i {
  font-size: 32px;
  color: #333;
  transition: color 0.3s ease;
}

.feature-cards:hover .icon-circle i {
  color: #fff;
}

.feature-cards h1 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
}

.feature-cards p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .choose-us-card {
    padding: 40px 15px;
  }

  .choose-us-card h2 {
    font-size: 26px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .feature-cards {
    padding: 20px;
  }

  .icon-circle {
    width: 60px;
    height: 60px;
  }

  .icon-circle i {
    font-size: 28px;
  }

  .feature-cards h1 {
    font-size: 16px;
  }

  .feature-cards p {
    font-size: 13px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 15px;
  }

  .feature-cards {
    text-align: left;
  }

  .feature-cards h3 {
    font-size: 1.2rem;
  }

  .feature-cards p {
    font-size: 13px;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
.vr-content, .vr-image {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.vr-content h2{
  font-size: 40px;
} 
.vr-image
{
  width: 70%;
 margin-left: 100px;
 margin-bottom: 50px;
 margin-top: 20px;
}
.vr-content h2 {
  opacity: 0;
  transform: translateX(-100%);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.vr-container.visible .vr-content,
.vr-container.visible .vr-image {
  opacity: 1;
  transform: translateY(0);
  text-align: left;
}


.vr-container.visible .vr-content h2 {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .vr-image {
    width: 90%;
    margin: 20px auto 50px auto;
    display: block;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------------- */
.section-titles {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  margin-top: 30px;
}

.wrapper.visible .section-titles {
  opacity: 1;
  transform: translateY(0);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.service-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(20px);
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, box-shadow 0.3s ease-in-out, background 0.5s ease-in-out, color 0.3s ease-in-out;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.service-card:hover {
  transform: rotateY(15deg) translateY(-5px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  background: black;
  color: white;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background 0.5s ease-in-out, color 0.3s ease-in-out;
}

.service-card:hover h3, 
.service-card:hover p {
  color: white; /* Ensures text remains visible */
}

.wrapper.visible .service-grid {
  opacity: 1;
  transform: scale(1);
}
/* ---------------------------------------------------------------------------------------------------------------------------------- */
.dev-process-container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  text-align: center;
  background-color: #f9f9f9;
  border-radius: 10px;
  margin-top: 40px;
}

/* Heading Styling */
.dev-heading {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #222;
  margin-top: 20px;
}

.dev-heading span {
  color: #ff5733; /* Highlight color */
}

/* Grid Layout */
.dev-process-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

/* Animation Keyframes */
@keyframes fadeInDrop {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Step Boxes */
.dev-step {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
  opacity: 0; /* Start hidden */
}

/* Triggered Animation Class */
.dev-step.animate {
  animation: fadeInDrop 0.8s ease forwards;
}

/* Raindrop-style staggered delay */
.dev-step:nth-child(1).animate { animation-delay: 0.1s; }
.dev-step:nth-child(2).animate { animation-delay: 0.2s; }
.dev-step:nth-child(3).animate { animation-delay: 0.3s; }
.dev-step:nth-child(4).animate { animation-delay: 0.4s; }
.dev-step:nth-child(5).animate { animation-delay: 0.5s; }
.dev-step:nth-child(6).animate { animation-delay: 0.6s; }
.dev-step:nth-child(7).animate { animation-delay: 0.7s; }

/* Hover Effect */
.dev-step:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
}

/* Step Number Styling */
.dev-step::before {
  content: attr(data-step);
  position: absolute;
  top: -10px;
  left: -10px;
  background: #ff1111;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 10px 14px;
  border-radius: 50%;
}

/* Responsive Design */
@media (max-width: 768px) {
  .dev-heading {
    font-size: 24px;
  }

  .dev-process-row {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------------------------------------------------------------------------------------------------------------------- */

.highlightes {
  color: #ff1111;
}

.about-us-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.about-us-feature {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
  cursor: pointer;
}

.about-us-feature:hover {
  transform: translateY(-5px);
  background-color: #ff1111;
  color: #fff;
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.feature-title {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 10px;
}

.feature-description {
  font-size: 1rem;
  color: #666;
}

@media (max-width: 768px) {
  .about-us-feature {
      width: 100%;
  }
}
.about-us-panel {
    /* background: url('AboutUs_Panel.webp') center/80% no-repeat; */
    padding: 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-us-container {
    max-width: 800px;
    text-align: center;
}

/* Headings */
.h2 {
    font-size: 90px;
    font-weight: 700;
    color: #4b535a;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.highlight-text {
    color: #f7b12d;
}

/* Feature Sections */
.about-us-feature {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
    overflow: hidden;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-right: 20px;
}

.feature-content {
    text-align: left;
}

.feature-title {
    font-size: 15px;
    font-weight: bold;
    color: #ec0d0d;
    margin-bottom: 5px;
}

.feature-description {
    font-size: 12px;
    color: #333;
}
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
.vr-card {
  background-color: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
  transform-style: preserve-3d;
  perspective: 1000px;
  position: relative;
  opacity: 0;
  transform: translateY(50px);
}

.vr-card.visible {
  animation: raindrop 0.8s ease-out forwards;
}

@keyframes raindrop {
  0% {
    opacity: 0;
    transform: translateY(-50px) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.vr-card:hover {
  transform: rotateY(15deg) rotateX(10deg) scale(1.08);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

.vr-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: none;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.vr-card:hover::before {
  opacity: 0;
}

.vr-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease-in-out;
}

.vr-card:hover img {
  transform: scale(1.15) rotate(2deg);
}

.vr-card-content {
  padding: 20px;
  transform: translateZ(30px);
  text-align: center;
}

.vr-card-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
  transition: color 0.4s ease-in-out;
}

.vr-card:hover .vr-card-content h3 {
  color: #ffcc00;
}

.vr-card-content p {
  font-size: 15px;
  color: #cccccc;
  transition: color 0.4s ease-in-out;
}

.vr-card:hover .vr-card-content p {
  color: #ffffff;
}

/* Cards container with responsive grid layout */
.vr-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Optional: improve card spacing and scaling for very small devices */
@media (max-width: 480px) {
  .vr-card {
    transform: none !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  }

  .vr-card:hover {
    transform: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  }

  .vr-card-content h3 {
    font-size: 18px;
  }

  .vr-card-content p {
    font-size: 14px;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------------------- */
.vr-industries-section {
  padding: 50px 20px;
}

.vr-highlight {
  color: #f5a623;
}

.vr-industries-subtext {
  font-size: 18px;
  margin-bottom: 40px;
  color: #cccccc;
}

/* Grid Layout */
.vr-industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Industry Card Styling */
.vr-industry-card {
  position: relative;
  height: 250px;
  border-radius: 10px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  transition: transform 0.3s ease-in-out;
}

.vr-industry-card:hover {
  transform: translateY(-10px);
}

.vr-card-content {
  background: rgba(0, 0, 0, 0.7);
  padding: 20px;
  width: 100%;
  text-align: left;
}

.vr-card-content h3 {
  color: #f5a623;
  font-size: 20px;
  margin-bottom: 10px;
}

.vr-card-content p {
  font-size: 14px;
  color: #cccccc;
}

/* Responsive Design */
@media (max-width: 768px) {
  .vr-industries-grid {
      grid-template-columns: 1fr;
  }
}


.vr-industry-section {
  max-width: 1200px;
  margin: auto;
}

.industry-title {
  font-size: 36px;
  font-weight: bold;
  margin-top: 50px;
}

.industry-highlight {
  color: #ff9800;
}

.industry-subtext {
  font-size: 5px;
  margin-bottom: 30px;
  color: #313131;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
}

.industry-card {
  background-color: #222;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  height: 550px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.industry-image-container {
  height: 55%;
  width: 100%;
  overflow: hidden;
}

.industry-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industry-text {
  height: 45%;
  padding: 20px;
  background-color: #000;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.industry-card-heading {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #ff9800;
}

.industry-card-description {
  font-size: 15px;
  line-height: 1.6;
  color: #ddd;
}

/* Responsive Design */
@media (max-width: 768px) {
  .industry-grid {
      grid-template-columns: 1fr;
  }

  .industry-card {
      height: auto;
  }

  .industry-text {
      height: auto;
      padding: 15px;
  }
}

/* --------------------------------------------------------------------------------------------------------------------------------------------- */

.simulation-header {
  width: 100%;
  height: 40vh;
  background: url('https://source.unsplash.com/1600x900/?vr,technology') no-repeat center center/cover;
  display: flex;
  align-items: center;
  text-align: left;
  padding-left: 50px;
  color: white;
  background-blend-mode: darken;
  background-color: rgba(0, 0, 0, 0.5);
}

/* Container for Title and Subtitle */
.simulation-container {
  max-width: 800px;
}

.simulation-title {
  font-size: 32px;
  font-weight: 600;
}

.simulation-subtitle {
  font-size: 18px;
  font-weight: 300;
  margin-top: 10px;
}

/* Content Section */
.simulation-content {
  display: flex;
  justify-content: flex-start;
  padding: 50px;
  background-color: white;
}

.simulation-text {
  max-width: 800px;
  text-align: left;
  opacity: 0;
  transform: translateY(30px);
}

/* List Styling */
.simulation-list {
  margin-top: 20px;
  list-style: none;
  padding-left: 0;
}

.simulation-list li {
  background: #f1f1f1;
  padding: 12px;
  margin-bottom: 10px;
  border-left: 4px solid #333;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px);
}

/* Hover Effect */
.simulation-list li:hover {
  background: #ddd;
  border-left-color: #007bff;
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .simulation-content {
    flex-direction: column;
    padding: 20px;
  }

  .simulation-header {
    height: 30vh;
    padding-left: 20px;
  }

  .simulation-title {
    font-size: 26px;
  }

  .simulation-subtitle {
    font-size: 16px;
  }

  .simulation-text {
    width: 100%;
  }

  .simulation-list li {
    font-size: 14px;
    padding: 10px;
  }
}

/* =================== Animation Section =================== */

/* Keyframes */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animated State Classes */
.simulation-text.reveal {
  animation: fadeInUp 0.8s ease-out forwards;
}

.simulation-list li.reveal {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* Staggered Delays for List Items */
.simulation-list li:nth-child(1).reveal { animation-delay: 0.2s; }
.simulation-list li:nth-child(2).reveal { animation-delay: 0.4s; }
.simulation-list li:nth-child(3).reveal { animation-delay: 0.6s; }
.simulation-list li:nth-child(4).reveal { animation-delay: 0.8s; }
.simulation-list li:nth-child(5).reveal { animation-delay: 1s; }

/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* Wrapper and Heading Styles */
.unique-wrapper {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.unique-wrapper.animate {
  opacity: 1;
  transform: translateY(0);
}

.unique-wrapper h1, h2 {
  color: #2c3e50;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 40px;
}

/* Unique Blocks */
.unique-block {
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.unique-block.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Flex layout */
.unique-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Image Styling */
.unique-content img {
  max-width: 50%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1s ease, transform 1s ease;
}

.unique-content img.animate {
  opacity: 1;
  transform: translateX(0);
}

/* Text Styling */
.unique-text {
  flex: 1;
  text-align: left;
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 1s ease, transform 1s ease;
}

.unique-text.animate {
  opacity: 1;
  transform: translateX(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .unique-content {
    flex-direction: column;
  }

  .unique-content img {
    max-width: 100%;
    order: 2; /* keeps the image after text visually, but doesn't alter layout code */
  }

  .unique-text {
    width: 100%;
    order: 1;
  }

  .unique-wrapper h1, h2 {
    font-size: 24px;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* a.learn-more {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  color: #ffffff;
  background: #2980b9;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s ease-in-out;
}
a.learn-more:hover {
  background: #1f5f8b;
} */
.arvr-wrapper {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  text-align: center;
}

.arvr-wrapper h1 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

/* Raindrop animation for smoother transition */
@keyframes raindrop {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }
  50% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-30px);
    opacity: 1;
  }
}

.arvr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.arvr-card {
  background: #1a1a1a;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0; /* Start as invisible */
  transform: translateY(-100px); /* Start offscreen */
  animation: none; /* Initially, no animation */
}

/* When the card is in view, trigger the animation */
.arvr-card.show {
  opacity: 1;
  transform: translateY(0); /* Slide into position */
  animation: raindrop 1s ease-out forwards; /* Apply the animation */
}

.arvr-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
}

.arvr-card h2 {
  font-size: 1.5rem;
  color: #fbc531;
  margin-bottom: 10px;
}

.arvr-card p {
  font-size: 1.5rem;
  color: #dcdde1;
}

@media (max-width: 768px) {
  .arvr-wrapper h1 {
    font-size: 2rem;
  }
}

/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
.edu-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  text-align: center;
  font-size: 1.5rem;
  margin-left: 50px;
margin-top: -100px;
}

/* Section Heading */
.edu-section h1 {
  font-size: 3rem;
  font-weight: bold;
  color: #1e293b;
  margin-bottom: 10px;
}

/* Divider */
.divider {
  width: 1000px;
  height: 4px;
  border-bottom: 2px solid #c0392b;
  margin: 20px auto 30px;
}

/* Content Container */
.edu-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 30px;
  text-align: left;
  padding: 20px;
  flex-wrap: wrap;
}

/* Image Container */
.edu-image {
  flex: 1;
  display: flex;
  justify-content: center;
  max-width: 50%;
}

/* Image Styling */
.edu-image img {
  width: 150%;
  max-width: 450px;
  border-radius: 10px;
  margin-right: 70px;
}

/* Text Container */
.edu-text {
  flex: 1;
  max-width: 50%;
}

/* Paragraph Styling */
.edu-text p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

/* List Styling */
.edu-text ul {
  padding: 0;
  list-style: none;
  margin-top: 15px;
}

.edu-text ul li {
  margin: 10px 0;
  font-size: 15px;
  color: #444;
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.edu-text ul li::before {
  content: "•";
  color: #ff6600;
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .edu-section {
    margin-left: 20px;
    font-size: 1.3rem;
  }

  .divider {
    width: 90%;
  }

  .edu-image img {
    width: 100%;
    margin-right: 0;
  }

  .edu-content {
    gap: 30px;
  }

  .edu-text p,
  .edu-text ul li {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .edu-section {
    margin: 20px auto;
    font-size: 1.2rem;
  }

  .edu-section h1 {
    font-size: 2rem;
  }

  .divider {
    width: 80%;
  }

  .edu-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 10px;
  }

  .edu-image {
    max-width: 100%;
  }

  .edu-text {
    max-width: 100%;
    text-align: center;
  }

  .edu-text p,
  .edu-text ul li {
    font-size: 1rem;
  }
}

/* --------------------------- */

/* Container */
.container_edu {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  margin-top: -80px;
  margin-bottom: -40px;
}

/* Section */
.education-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Content Box */
.edu-container {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
  background: linear-gradient(135deg, #ffffff 0%, #f6f7f9 100%);
}

/* Hover Effect */
.edu-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Headings */
.edu-container h2 {
  color: #2c3e50;
  font-size: 2rem;
  margin-bottom: 15px;
  border-bottom: 3px solid #ff6600;
  display: inline-block;
  padding-bottom: 5px;
}

/* Paragraphs */
.edu-container p {
  color: #555;
  font-size: 0.9rem;
  margin: 0;
  text-align: left;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container_edu {
    padding: 10px;
  }

  .edu-container h2 {
    font-size: 1.6rem;
  }

  .edu-container p {
    font-size: 1rem;
  }
}

.containers{
  max-width: 1200px;
  margin: 50px auto;
  text-align: center;
 background-color: 	#ffa02b;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Section Title */
.gzs-section-title  {
 font-size: 50px;
  color: #ff0270;
  margin-bottom: 40px;
  font-family: 'Georgia', serif;
  font-weight: bold;
}

/* Feature Container */
.gzs-feature-container {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}

/* Feature Card */
.gzs-feature-card {
  background: #ffdf2d;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gzs-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Gamepad Icon */
.gzs-feature-icon {
  width: 100px;
  margin-bottom: 20px;
}

/* Feature Title */
.gzs-feature-title {
  font-size: 20px;
  color: #ff1e1e;
  margin: 1px 0;
  font-weight: bold;
}

/* Feature Description */
.gzs-feature-description {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
  .gzs-feature-container {
      flex-direction: column;
      align-items: center;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------------ */
/* Section Styling */
.game-platform-testing {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px;
  background-color: #ffffff;
  margin-top: 50px;
}

/* Top Content */
.testing-content {
  width: 100%;
  margin-bottom: 30px;
}

.testing-title {
  font-size: 32px;
  font-weight: bold;
  color: #222;
  line-height: 1.4;
  text-align: center;
}

.testing-title span {
  color: #000000;
}

.testing-description {
  font-size: 16px;
  color: #211d1d;
  margin-top: 10px;
  margin-bottom: 30px;
  text-align: center;
}

/* ----------------------------------------------------------------------------------------------------------------------------------------------------- */

.character-design-section {
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #333;
  font-weight: bold;
}

.highlight {
  color: #FA003F;
  font-weight: bold;
}
.strengths-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.strength {
  display: flex;
  align-items: center;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  opacity: 0;
}

/* Slide in from left for odd rows */
.strength.animate-slide-in-left {
  animation: slideInFromLeft 1s ease-out forwards;
}

/* Slide in from right for even rows */
.strength.animate-slide-in-right {
  animation: slideInFromRight 1s ease-out forwards;
}

.strength:nth-child(even) {
  flex-direction: row-reverse;
}

.strength-image {
  width: 40%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.strength-image:hover {
  transform: scale(1.1);
}

.strength-content {
  padding: 20px;
  width: 60%;
}

.strength-title {
  color: #23b6f5;
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: bold;

}

.strength-description {
  font-size: 1rem;
  line-height: 1.6;
  text-align: left;
}

/* Animations */
@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .strength {
    flex-direction: column;
  }

  .strength:nth-child(even) {
    flex-direction: column;
  }

  .strength-image {
    width: 100%;
  }

  .strength-content {
    width: 100%;
  }
}

/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* Title Styling */
.section-title {
  font-size: 28px;
  font-weight: bold;
  margin: 50px 0;
  text-align: center;
}

.highlight-text {
  color: #f40000;
}

/* Expertise Row */
.expertise-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 10%;
  text-align: left;
  opacity: 0;
}

/* Reverse layout */
.expertise-row.reverse {
  flex-direction: row-reverse;
}

/* Reverse image position tweak */
.expertise-row.reverse .expertise-image {
  margin-left: 0;
  margin-right: 40px;
  margin-top: 50px;
}

/* Text section */
.expertise-text {
  flex: 1;
  max-width: 50%;
}

.expertise-text_reverse {
  flex: 1;
  max-width: 50%;
}

.expertise-text h3 {
  font-size: 22px;
  font-weight: bold;
  color: #222;
}

.expertise-text p {
  font-size: 16px;
  color: #666;
}

/* Image styling */
.expertise-image {
  width: 290px;
  height: 250px;
  object-fit: contain;
  object-position: center;
  margin-left: 0;
  margin-top: 50px;
}

/* Hide last image */
.expertise-row:last-child .expertise-image {
  display: none;
}

/* Animation keyframes for whole rows */
@keyframes rowSlideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes rowSlideInRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Hidden by default */
.expertise-row.animate-hidden {
  opacity: 0;
}

/* Slide-in classes */
.expertise-row.animate-slide-in-left {
  animation: rowSlideInLeft 1s ease forwards;
}

.expertise-row.animate-slide-in-right {
  animation: rowSlideInRight 1s ease forwards;
}

@media (max-width: 768px) {
  .expertise-row,
  .expertise-row.reverse {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    gap: 20px;
  }

  .expertise-text,
  .expertise-text_reverse {
    max-width: 100%;
    padding: 0 15px;
    text-align: justify;
  }

  .expertise-text p,
  .expertise-text_reverse p {
    font-size: 16px;
    line-height: 1.7;
    margin: 10px 0;
    text-align: justify;
  }

  .expertise-image {
    display: block;
    width: 90%;
    height: auto;
    object-fit: cover;
    margin: 0 auto 10px !important;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .expertise-row.reverse .expertise-image {
    margin: 0 auto 10px !important;
  }

  .expertise-row.reverse .expertise-text_reverse {
    padding: 0 15px;
  }
}

/* ------------------------------------------------------------------------------------------------------------------------------------------------------ */
.liveops h1 {
  font-size: 30px;
  font-weight: 700;
  color: #4B5563;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0px;
  margin-top: -50px;
}

.liveops-container {
  display: flex;
  align-items: center;
  max-width: 1200px;
  overflow: hidden;
  padding: 20px;
  margin-top: -200px;
}

.liveops-content {
  padding: 20px;
  flex: 1;
  text-align: left;
}

.liveops-image {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.liveops-image img {
  width: 400%;
  max-width: 400px;
  border-radius: 10px;
  margin-top: 70px;
  margin-left: 80px;
}

.liveops-image-left img {
  width: 400%;
  max-width: 250px;
  border-radius: 10px;
  margin-top: 250px;
  margin-left: 80px;
}

.liveops-title {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin-left: 20px;
}

.liveops-description {
  font-size: 16px;
  color: #666;
  margin-bottom: 0px;
}

.liveops-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 50px;
}

.liveops-feature {
  background: none;
  padding: 15px;
  border-left: 5px solid #c0392b;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

.liveops-feature h2 {
  font-size: 18px;
  color: #222;
  margin-bottom: 5px;
}

.liveops-feature p {
  font-size: 14px;
  color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
  .liveops h1 {
    font-size: 24px;
    margin-top: -20px;
  }

  .liveops-container {
    flex-direction: column-reverse; /* Stack image below content */
    align-items: center;
    margin-top: -100px;
    padding: 15px;
  }

  .liveops-content {
    text-align: center;
    padding: 10px;
  }

  .liveops-title {
    font-size: 24px;
    margin-left: 0;
  }

  .liveops-description {
    font-size: 14px;
  }

  .liveops-image {
    width: 100%;
    margin-top: 20px;
  }

  .liveops-image img,
  .liveops-image-left img {
    display: none; /* Hide images to optimize mobile layout */
  }

  .liveops-features {
    margin-top: 30px;
  }

  .liveops-feature {
    text-align: left;
    padding: 10px;
  }

  .liveops-feature h2 {
    font-size: 16px;
  }

  .liveops-feature p {
    font-size: 13px;
  }
}

/* Extra small screens - Fine tuning for devices below 480px */
@media (max-width: 480px) {
  .liveops h1 {
    font-size: 20px;
  }

  .liveops-title {
    font-size: 20px;
  }

  .liveops-description {
    font-size: 13px;
  }

  .liveops-feature h2 {
    font-size: 15px;
  }

  .liveops-feature p {
    font-size: 12px;
  }
}

/* ---------------------------------------------------------------------------------------------------------------------------------------- */
/* .slider-ourwork {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
}
.project {
    flex: 0 0 33.33%;
    text-align: center;
    color: white;
    position: relative;
}
.background-image-holder img {
    width: 100%;
    height: auto;
} */
/* ----------------------------------------STUDIO HIGHLIGHTS-------------------------------------------------------------------------------------------------- */
.highlight-list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap; /* prevent wrapping */
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  gap: 0; /* remove extra spacing that could push items to next line */
}

.highlight-item {
  flex: 0 0 25%; /* exactly 4 items in a row */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  box-sizing: border-box;
}

.circle {
  width: 90px;
  height: 90px;
  border: 3px solid #1793a5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.circle i {
  font-size: 40px;
  color: #1793a5;
}

.line {
  width: 3px;
  height: 40px;
  background-color: #1793a5;
  margin-top: 10px;
}

.dot-circle {
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 3px solid #1793a5;
  border-radius: 50%;
  margin-top: 8px;
  transition: background-color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.highlight-item:hover .dot-circle,
.dot-circle.active {
  background-color: #1793a5;
  border-color: #1793a5;
}

.highlight-text {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 600;
  color: #2d2d2d;
  text-align: center;
  line-height: 1.4;
}

/* Responsive for smaller screens */
@media (max-width: 992px) {
  .highlight-list {
    flex-wrap: wrap;
    gap: 30px;
  }

  .highlight-item {
    flex: 1 1 45%;
  }
}

@media (max-width: 600px) {
  .highlight-item {
    flex: 1 1 100%;
  }
}
/* -------------------------------------NEWS------------------------------------------------------------------------------------------------------ */
.news-slider-wrapper {
  overflow: hidden;
  position: relative;
  max-width: 600px;
  margin: auto;
}

.news-slider-track {
  display: flex;
  transition: transform 0.8s ease-in-out;
}

.blog-item {
  flex: 0 0 100%;
  margin: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.blog-item img {
  width: 90%;
  height: auto;
}

.news-title {
  padding: 15px;
}

.news-title h2 {
  font-size: 18px;
  margin: 10px 0;
}

.news-title p {
  font-size: 14px;
  color: #555;
}

.news-title p.more-text {
  display: none;
  margin-top: 10px;
}

.news-link-text {
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
  color: #080808;
  cursor: pointer;
}

.news-link-text:hover {
  text-decoration: underline;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.5);
  border: none;
  color: white;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 10;
  font-size: 20px;
}

.carousel-btn.left {
  left: 0;
}

.carousel-btn.right {
  right: 0;
}
/* ----------------------------------------------------------------------------------------------------------------------------- */

#carousel-container-collaboration {
  width: 100%;
  max-width: 1000px;
  perspective: 1000px;
  overflow: hidden;
  position: relative;
  margin: 60px auto;
  display: flex;
  justify-content: center;
  align-items: center;
margin-bottom: -50px;

}

/* Make carousel items flex-centered */
#carousel-collaboration {
  display: flex;
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
  justify-content: center;
  align-items: center;
}

/* Default Item Style */
.carousel-collaboration-item {
  flex: 0 0 auto;
  width: 200px;
  margin: 0 10px;
  opacity: 0.5;
  transform: scale(0.8) translateZ(-100px);
  transition: transform 0.5s ease, opacity 0.5s ease;
}

/* Active Item (Centered) */
.carousel-collaboration-item.active {
  opacity: 1;
  transform: scale(1) translateZ(0);
  z-index: 1;
}

/* Image Styling */
.carousel-collaboration-item img {
  width: 80%;
  height: 50%;
  max-width: 400%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  margin-bottom: 50px;
  gap: 20px;
}

/* Dots Navigation */
.dots {
  position: absolute;
  bottom: 10px;
  /* margin-top: 50px; */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
}

/* Dots */
.dot {
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background: #bbb;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: #333;
}

/* 📌 Responsive Fixes for Centering */
@media (max-width: 768px) {
  .carousel-collaboration-item {
    width: 150px;
    margin: 0 5px;
  }
}

@media (max-width: 480px) {
  .carousel-collaboration-item {
    width: 200px;
    margin: 0 10px;
    
  }
}

  /* -------------------------------------------------------------------------------------------------------------- */
  .games-carousel {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    scroll-snap-type: x mandatory;
    padding: 2rem;
  }

  .games-carousel::-webkit-scrollbar {
    display: none;
  }

  .game-card {
    flex: 0 0 auto;
    width: 80px;
    height: 300px;
    cursor: pointer;
    overflow: hidden;
    scroll-snap-align: start;
    transition: all 0.3s ease-in-out;
  }

  .game-card:hover {
    width: 300px;
    z-index: 2;
  }

  .game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Crop in thumbnail view */
    display: block;
    transition: object-fit 0.3s ease-in-out;
  }

  .game-card:hover img {
    object-fit: fill; /* Expand when hovered */
  }
  /* ---------------------------------------------------------------------------------------------------------------------------- */
  .testimonial-box {
    width: 100%;
    max-width: 700px;
    margin: 20px auto;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-top: 180px;
    margin-left: -1px;
  }
  
  .section-heading {
    font-size: 24px;
    text-transform: uppercase;
  }
  
  .testimonial-inner {
    display: flex;
    flex-direction: column;
  }
  
  .testimonial-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
  }
  
  .testimonial-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
  }
  
  .testimonial-content {
    padding: 20px;
  }
  
  .testimonial-content h2 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
  }
  
  .testimonial-content p {
    font-size: 16px;
    color: #555;
    text-align: justify;
    line-height: 1.6;
  }
  
  .Testimonial-card {
    position: relative;
    z-index: 0;
    background-color: #ffffff;
    border-radius: 10px;
    max-width: 300px;
    margin: 10px auto;
    transition: transform 0.3s ease;
    text-align: center;
  }
  
  .Testimonial-card:hover {
    transform: translateY(-5px);
  }
  
  .view-more-link {
    display: inline-block;
    color: #ff0000;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
  }
  
  .view-more-link:hover {
    color: #0056b3;
    text-decoration: underline;
  }
  
  /* Mobile Responsive */
  @media (max-width: 768px) {
    .testimonial-box {
      margin-top: 40px;         /* Shifts section upward on mobile */
      margin-left: auto;
      margin-right: auto;
      max-width: 95%;
    }
  
    .section-heading {
      font-size: 20px;
    }
  
    .testimonial-content {
      padding: 15px;
    }
  
    .testimonial-content h2 {
      font-size: 18px;
    }
  
    .testimonial-content p {
      font-size: 14px;
      line-height: 1.5;
    }
  
    .Testimonial-card {
      max-width: 90%;
    }
  
    .view-more-link {
      font-size: 14px;
    }
  }
  
  
/* -------------------------------------------------------------------------------------------------------------------------------------------------   */
.view-more-card {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  background: #ffffff;
  border-radius: 8px;
  transition: background 0.3s ease;
  margin-top: -40px;
}
.view-more-container {
  text-align: center;
  margin-top: 30px;
}

.view-more-link {
  text-decoration: none;
  color: #c80e30;
  margin-top: -1px;
  font-weight: bold;
  font-size: 18px;
  transition: color 0.3s ease;
}

.view-more-card:hover .view-more-link {
  color: #0b5c66;
}

h2.our-heading {
  margin-top: -600px;
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  color: #333;
  margin-top: -10px;
  text-transform: uppercase;
}
/* ----------------------------------------------------------------------------------------------------------------------------------- */
.card-distribute-stack {
  position: relative;
  width: 300px;
  height: 100vh;
  max-height: 800px;
}

.card-item {
  position: absolute;
  width: 250px;
  height: auto;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 1s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  border-radius: 8px;
}

.card-item img {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}
@media (max-width: 600px) {
  .card-distribute-stack {
    width: 100%;
    height: auto;
    max-height: none;
    padding: 20px 0;
  }

  .card-item {
    position: static;
    transform: none;
    margin: 0 auto 20px;
    width: 90%;
  }

  .card-item img {
    max-height: 200px;
    
  }
}

/* -------------------------------------------------------------------------------------------------------------------------- */
.nilee-highlight-banner {
  position: relative;
  padding: 60px 0;
  background-color: rgba(0, 0, 0, 0.7); /* fallback for background image overlay */
  overflow: hidden;
  color: #fff;
}

.nilee-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.nilee-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.nilee-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  margin-top: 50px;
}

.nilee-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.nilee-text-col {
  flex: 1 1 50%;
  color: #252525;
}

.nilee-text-col h1 {
  font-size: 32px;
  margin-bottom: 20px;
  text-align: left;
}

.nilee-text-col p {
  font-size: 16px;
  line-height: 1.7;
  text-align: justify;
}

.nilee-video-col {
  flex: 1 1 50%;
}

.nilee-video-col iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 12px;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .nilee-row {
    flex-direction: column;
  }

  .nilee-video-col iframe {
    height: 300px;
  }

  .nilee-text-col h1 {
    font-size: 24px;
  }
}
/* ----------------------------------------------------------------------------------------------------------------- */
.media-section {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  overflow: hidden;
  padding: 60px 0;
  color: #000000;
  margin-top: 100px;
  margin-right: -20px;
}

.media-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.media-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.media-video-col {
  flex: 1 1 50%;
}

.media-video-col iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 8px;
}

.media-text-col {
  flex: 1 1 50%;
}

.media-text-col h1 {
  font-size: 30px;
  margin-bottom: 20px;
  color: #4f4f4f;
}

.media-text-col p {
  font-size: 15px;
  line-height: 1.7;
  color: #212121;
  text-align: justify;
  margin-bottom: 25px;
}

.media-btn {
  display: inline-block;
  background-color: #007bff;
  color: #fff;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  min-width: 100%;
  text-align: center;
}

.media-btn:hover {
  background-color: #000000;
}

@media (max-width: 768px) {
  .media-row {
    flex-direction: column;
  }

  .media-video-col iframe {
    height: 250px;
  }

  .media-btn {
    width: 100%;
  }

  .media-section {
    margin-top: -20px; /* reduced from 100px to 40px on mobile */
  margin-left: -5px;
  }
}


/* ----------------------------------------------------------------------------------------------------------------------------------------- */
.project-card {
  position: relative;
  width: 100%;
  max-width: 450px;
  height: 200px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  margin: 50px auto;
  margin-top: -5px;
}

.project-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover; /* try 'contain' if you want full image without crop */
  background-position: center center;
  background-repeat: no-repeat;
  transition: transform 0.4s ease;
  
  
}


.project-card:hover .project-image {
  transform: scale(1.05);
}

.hidden-img {
  display: none;
}

.project-hover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.plank-title {
  color: #00CED1; /* Example: turquoise */
}
.cycle-title {
  color: #4CAF50; /* green - customize as you like */
}


.project-card:hover .project-hover {
  opacity: 1;
}

.project-content {
  color: #fff;
  padding: 20px;
}

.project-content h1 {
  font-size: 22px;
  margin-bottom: 15px;
}

.project-content p {
  font-size: 16px;
  line-height: 1.6;
}
/* -------------------------------------------------------------------------------------------------- */
.nilee-service-panel {
  width: 100%;
  max-width: 400px;
  margin: 30px auto;
  padding: 1px;
 
}

.nilee-service-heading {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  color: #222;
  margin-bottom: 10px;
  margin-top: 10px;
}

.nilee-service-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.nilee-service-card:hover {
  transform: translateY(-6px);
}

.nilee-service-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 16px;
}

.nilee-service-title {
  font-size: 18px;
  color: #333;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 20px;
}

.nilee-service-description {
  font-size: 14px;
  color: #555;
  text-align: justify;
  margin-bottom: 20px;
}

.nilee-service-button {
  background-color: #007bff;
  color: #fff;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.nilee-service-button:hover {
  background-color: #000000;
}
/* ------------------------------------------------------------------------------------------------------------------------------ */
/* General Styling */
.dev-process-container-process {
  background: linear-gradient(145deg, #1a1a1a, #2b2b2b);
  border-radius: 24px;
  padding: 50px 20px;
  margin-top: 60px;
  box-shadow: 0 0 40px rgba(255, 87, 34, 0.2);
  animation: slideUpFade 2.5s ease-out both;
}

.dev-heading-container {
  text-align: center;
  font-size: 2.7rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 50px;
  position: relative;
}

.dev-heading-container span {
  color: #ff1744;
  animation: flashColor 2s infinite;
}

.dev-process-rows {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.dev-steps {
  background: linear-gradient(145deg, #3b0a24, #1e1e1e);
  border-radius: 18px;
  padding: 28px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.dev-steps:hover {
  transform: translateY(-18px) scale(1.08);
  background: linear-gradient(145deg, #3b0a24, #1e1e1e);
  box-shadow: 0 20px 60px rgba(255, 0, 0, 0.0); /* removed red border shadow */
}

.dev-steps::before {
  content: '';
  position: absolute;
  top: -70%;
  left: -70%;
  width: 300%;
  height: 300%;
  background: conic-gradient(from 0deg, rgba(255, 255, 255, 0.05) 10%, transparent 70%);
  animation: rotateLight 5s linear infinite;
  z-index: 0;
  border-radius: 50%;
}

.steps-content {
  position: relative;
  z-index: 1;
}

.steps-content h3 {
  margin-top: 0;
  color: #ffcccb;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.steps-content p {
  color: #e0e0e0;
  font-size: 0.96rem;
  line-height: 1.5;
}

@keyframes flashColor {
  0%, 100% { color: #ff1744; }
  50% { color: #ff5252; }
}

@keyframes rotateLight {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes slideUpFade {
  0% { opacity: 0; transform: translateY(100px); }
  100% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .dev-heading-conatiner {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .dev-steps {
    padding: 20px;
    transform: none !important;
  }

  .dev-steps:hover {
    transform: none;
  }
}
/* Step Content */
.steps-content h3 {
  font-size: clamp(1.2rem, 3vw, 1.4rem);
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #ff3b3b;
  transition: color 0.4s;
}

.steps-content p {
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  line-height: 1.5;
  opacity: 0.9;
  transition: color 0.4s;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .dev-heading-conatiner {
    font-size: 1.6rem;
  }

  .dev-steps {
    padding: 16px;
  }

  .steps-content h3 {
    font-size: 1.2rem;
  }

  .steps-content p {
    font-size: 0.95rem;
  }
}
/* -------------------------------------------------image-container --------------------------------------------------------------------------------------------------------------*/
.image-container {
  text-align: center;
  perspective: 1000px;
  margin-bottom: 30px;
}

.flip-card {
  width: 100%;
  max-width: 500px;
  margin: auto;
  position: relative;
}

.flip-inner {
  position: relative;
  width: 100%;
  padding-top: 65%; /* Controls aspect ratio (adjust based on image dimensions) */
  transform-style: preserve-3d;
  transition: transform 0.8s;
}

.flip-front,
.flip-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 12px;
  overflow: hidden;
}

.flip-front img,
.flip-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.flip-back {
  transform: rotateY(180deg);
}

/* UI/UX Steps Section */
.uiux-steps {
  max-width: 900px;
  margin: auto;
  padding: 40px 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* Section Title */
.uiux-steps h2 {
  font-size: 26px;
  font-weight: bold;
  color: #ff1111;
  margin-bottom: 20px;
  position: relative;
}

/* Underline Effect for Title */
.uiux-steps h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #ff1111;
  display: block;
  margin: 8px auto 0;
  border-radius: 2px;
}

/* Step Content */
.step-content {
  text-align: left;
}

/* Steps List */
.step-content ul {
  list-style: none;
  padding: 0;
}

/* Individual Step */
.step-content li {
  background: #f9f9f9;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #333;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.08);
  transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}

/* Step Icons (Optional) */
.step-content li::before {
  content: "✔"; /* Can replace with an actual icon */
  font-size: 18px;
  color: #ff1111;
  font-weight: bold;
  margin-right: 12px;
}

/* Hover Effect */
.step-content li:hover {
  background: #ff1111;
  color: white;
  transform: translateY(-3px);
}

.step-content li:hover::before {
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .uiux-steps {
    padding: 30px 15px;
  }

  .uiux-steps h2 {
    font-size: 22px;
  }

  .step-content li {
    font-size: 14px;
    padding: 12px;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------------------------------------ */
.container3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* More flexible for mobile */
  gap: 20px;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}
/* Individual Card Styling */
.card2 {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, 
              box-shadow 0.3s ease-in-out, 
              background 0.3s ease-in-out;
  text-align: center;
}

/* Card Hover Effects */
.card2:hover {
  transform: translateY(-5px);
  background: #060606; /* Changes background color on hover */
  color: white; /* Text color changes for better visibility */
  box-shadow: 0px 8px 16px rgba(255, 87, 51, 0.3);
}

/* Ensure heading and text change color on hover */
.card2:hover h3,
.card2:hover p {
  color: white;
}

/* Card Headings */
.card2 h3 {
  font-size: 22px;
  color: #ff1111;
  margin-bottom: 10px;
  font-weight: bold;
  transition: color 0.3s ease-in-out;
}

/* Card Text */
.card2 p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
  transition: color 0.3s ease-in-out;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .container3 {
    grid-template-columns: 1fr; /* Stacks cards in a single column */
    padding: 15px;
  }

  .header-text {
    font-size: 24px;
    padding: 8px;
  }

  .card2 {
    padding: 18px;
    border-radius: 10px;
  }

  .card2 h3 {
    font-size: 20px;
  }

  .card2 p {
    font-size: 14px;
  }
}

/* Extra Small Devices */
@media (max-width: 480px) {
  .header-text {
    font-size: 22px;
  }

  .card2 {
    padding: 15px;
  }

  .card2 h3 {
    font-size: 18px;
  }

  .card2 p {
    font-size: 13px;
  }
}
/* ---------------------------------------------------------------------------------------------------------------- */
/* ✅ Container for the Boxes */
.container2 {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: space-around;
  align-items: stretch; /* Ensures all boxes have equal height */
  flex-wrap: wrap; /* Ensures proper wrapping on smaller screens */
  padding: 20px;
}

/* ✅ Box Styling */
.box {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 45%;
  text-align: center;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Ensures content is balanced */
  min-height: 250px; /* Ensures equal height */
}

/* ✅ Hover Effect */
.box:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 20px rgba(211, 43, 43, 0.2);
}

/* ✅ Heading Styling */
.box h2 {
  color: #d32b2b;
  margin-bottom: 10px;
  font-size: 22px;
}

/* ✅ Paragraph Styling */
.box p {
  color: #555;
  line-height: 1.6;
  font-size: 16px;
  flex-grow: 1; /* Ensures paragraph content expands */
}

/* ✅ Responsive Design */
@media (max-width: 767px) {
  .container2 {
    flex-direction: column;
    align-items: center;
  }

  .box {
    width: 90%;
    min-height: auto; /* Adjust height for mobile */
  }
}
/* ---------------------------------------------------------------------------------------------------------------------------------------- */
.game-dev-section {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 50px 0;
}

/* Image Styling */
.game-image-wrapper {
  flex: 1;
  text-align: center;
}

.game-image-wrapper img {
  max-width: 100%;
  height: auto;
  transform: scale(1.05) translateY(10px);
  margin-left: 0;
}

/* Text Styling */
.game-text-content {
  flex: 1;
  padding-left: 20px;
  margin-left: 0;
}

.game-text-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.game-text-content p {
  font-size: 1.5rem;
  color: #666;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .game-dev-section {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }

  .game-text-content {
    padding-left: 0;
    text-align: center;
  }

  .game-text-content h2 {
    font-size: 2.2rem;
  }

  .game-text-content p {
    font-size: 1.3rem;
  }

  .game-image-wrapper img {
    max-width: 90%;
  }
}

/* Hide Image on Mobile */
@media (max-width: 768px) {
  .game-dev-section {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .game-text-content {
    padding-left: 0;
  }

  .game-text-content h2 {
    font-size: 2rem;
  }

  .game-text-content p {
    font-size: 1.1rem;
  }

  .game-image-wrapper {
    display: none; /* Hide Image on Mobile */
  }
}

@media (max-width: 480px) {
  .game-text-content h2 {
    font-size: 1.8rem;
  }

  .game-text-content p {
    font-size: 1rem;
  }

  .game-dev-section {
    padding: 15px;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------------------- */
/* Main Section */
.choose-us {
  text-align: center;
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

/* Headings */
.choose-us h2 {
  font-size: 36px;
  color: #070707;
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: 1px;
}

.highlighte {
  color: #ff0720;
  font-size: 38px;
  text-transform: uppercase;
  font-weight: bold;
  display: inline-block;
  position: relative;
}

/* Underline effect for highlight */
.highlighte::after {
  content: '';
  width: 60%;
  height: 4px;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
}
/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
  padding: 0 10px;
}

/* Feature Card */
.feature-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.5s ease-in-out, box-shadow 0.3s ease-in-out;
  text-align: left;
  position: relative;
  border-left: 5px solid #ff9800;
  overflow: hidden;
  cursor: pointer;
}

/* Sliding Hover Effect */
.feature-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 25px rgba(255, 152, 0, 0.3);
}

/* Hover Glow Effect */
.feature-card::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background:#bbb;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  border-radius: 15px;
  z-index: -1;
}

/* Active Glow on Hover */
.feature-card:hover::before {
  opacity: 1;
}

/* Feature Heading */
.feature-card h1 {
  font-size: 24px;
  color:  E53935;

  margin-bottom: 12px;
  font-weight: bold;
  transition: color 0.3s ease-in-out;
}

/* Hover Color Change */
.feature-card:hover h1 {
  color: #086891;
}

/* Feature Description */
.feature-card p {
  font-size: 16px;
  color: #090909;
  line-height: 1.5;
}

/* Animation on Load */
@keyframes slideIn {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.features-grid .feature-card {
  animation: slideIn 0.8s ease-in-out forwards;
  opacity: 0;
}

/* Delay Each Card */
.features-grid .feature-card:nth-child(1) { animation-delay: 0.2s; }
.features-grid .feature-card:nth-child(2) { animation-delay: 0.4s; }
.features-grid .feature-card:nth-child(3) { animation-delay: 0.6s; }
.features-grid .feature-card:nth-child(4) { animation-delay: 0.8s; }
.features-grid .feature-card:nth-child(5) { animation-delay: 1s; }
.features-grid .feature-card:nth-child(6) { animation-delay: 1.2s; }

/* Responsive Design */
@media (max-width: 768px) {
  .choose-us h2 {
    font-size: 30px;
  }

  .highlighte {
    font-size: 32px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    text-align: center;
    border-left: none;
    border-top: 5px solid #ff9800;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------------------------------ */
.section__container {
  max-width: 1500px;
  margin: auto;
  padding: 2rem 1rem;
  text-align: center;
  /* background-color: #440a1c; */
}
.font-medium {
  font-size: 40px !important;
  line-height: 50px;
}
.headings-h2 {
  color: #4b535a;
  text-transform: uppercase;
  font-size: 40px;
  font-weight: 700;
}
.white-text {
  color: #fff !important;
}
@media (max-width: 1024px) {
  .font-medium {
      font-size: 40px !important;
      line-height: 50px;
  }
}
.section__container h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
}

.section__container h1 {
  position: relative;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.section__container h1::after {
  position: absolute;
  content: "";
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: 2px;
  width: 5rem;
  background-color: var(--primary-color);
}

.section__grid {
    /* background-color: #d3d1d2; */
    padding: calc(var(--fontsize) * 2) calc(var(--fontsize) * 1) calc(var(--fontsize) * 4) calc(var(--fontsize) * 2);
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 2fr)); /* Two columns */
    gap: 20px;
    justify-content: center;
    align-items: start; /* Align items to the top */
    transition: transform 0.5s;
    width: 80%;
    margin: 0 auto;
   
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .section__grid {
        width: 80%; /* Increases width to occupy more space */
        margin-left: auto;
        margin-right: auto;
        padding: 2rem; /* Adjust padding for better spacing */
    }
}

@media (max-width: 768px) {
    .section__grid {
        width: 100%; /* Takes full width on smaller devices */
        margin-left: 0;
        padding: 1.5rem;
        flex-direction: column; /* Stacks elements vertically */
        align-items: center;
    }
}

.section__card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 5rem 2rem 2rem;
  background-color:rgb(241, 241, 241);
  border-radius: 5px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.section__card::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  width: 75%;
  aspect-ratio: 1;
  border-radius: 100%;
  background-color: var(--primary-color);
  z-index: -1;
  transition: 0.5s;
}

.section__card span {
  position: absolute;
  top: 0;
  left: 0;
  padding: 1rem;
  font-size: 3rem;
  color: var(--white);
}

.section__card h4 {
  margin-top: 4rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  transition: 0.
}

.section__card p {
  margin-bottom: 2rem;
  color: var(--text-light);
  transition: 0.3s;
}

.section__card img {
  margin-bottom: 1rem;
  max-width: 100px;
  border-radius: 100%;
  border: 2px solid var(--primary-color);
  transition: 0.3s;
}

.section__card h5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  transition: 0.3s;
}

.section__card h6 {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-light);
  transition: 0.3s;
}

.section__card:hover::before {
  width: 400%;
}

.section__card:hover :is(h4, h5) {
  color: var(--white);
}

.section__card:hover :is(p, h6) {
  color: var(--secondary-color);
}

.section__card:hover img {
  border-color: var(--white);
}

@media (max-width: 768px) {
  .section__grid {
    grid-template-columns: 1fr;
  }
  .section__container h1 {
    font-size: 2rem;
  }
  .section__card {
    padding: 4rem 1.5rem 1.5rem;
  }
  .section__card h4 {
    font-size: 1.25rem;
  }
  .section__card span {
    font-size: 2.5rem;
  }
}
.section__card {
  position: relative;
  background: #ffffff;
  padding: 2.5rem 2rem;
  border-radius: 0px 20px 50px 20px; /* Rounded corners like in the image */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease-in-out;
  overflow: hidden;
}

.section__card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(69, 235, 18, 0.2);
  color: #101010;
}

/* Number Styling (Like "01", "02" in Image) */
.section__card .number {
  font-size: 3rem;
  font-weight: 700;
  color: #da0909;
  position: absolute;
  top: 20px;
  left: 20px;
}

.section__card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  transition: 0.3s;
}

.section__card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Background Gradient for Half Curve Effect */
.section__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(135deg, #ce2b2b, #f50505);
  border-radius: 50px 0 50px 0;
  z-index: -1;
  transition: 0.5s;
}

.section__card:hover::before {
  width: 100%;
}
/* -------------------------------------------------------------------------------------------------------------------------------------------- */
.services-section {
  text-align: center;
  padding: 50px 20px;
}

.services-section h1 {
  font-size: 2.8rem;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.services-section h1 span {
  color: #ff9800;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

.service-box1 {
  background: linear-gradient(145deg, #c62828, #8e0000);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.service-box1:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 16px rgba(255, 152, 0, 0.4);
}

.service-box1 i {
  font-size: 3rem;
  color: #ff9800;
  margin-bottom: 15px;
}

.service-box1 h2 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.service-box1 p {
  font-size: 1rem;
  color: #eee;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .services-section {
    padding: 30px 15px;
  }

  .services-section h1 {
    font-size: 2rem;
  }

  .service-box1 h2 {
    font-size: 1.3rem;
  }

  .service-box1 p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .services-container {
    grid-template-columns: 1fr;
  }

  .service-box1 {
    padding: 20px;
  }

  .service-box1 i {
    font-size: 2.2rem;
  }

  .service-box1 h2 {
    font-size: 1.1rem;
  }

  .service-box1 p {
    font-size: 0.9rem;
  }
}
/* --------------------------------------------------------------------------------------------------------------------- */
.custom-action-banner {
  position: relative;
  padding: 40px 20px;
  overflow: hidden;
}

.custom-background-image-holder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.custom-background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-container {
  max-width: 1200px;
  margin: 0 auto;
}

.custom-flex-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.custom-text-block {
  flex: 1;
  color: rgb(0, 0, 0);
}

.custom-heading {
  font-size: 28px;
  margin-bottom: 15px;
  color: #030303;
  font-weight: bold;
text-align: left;
}

.custom-paragraph {
  font-size: 16px;
  text-align: justify;
  color: #030303;
}

.custom-video-block {
  flex: 1;
}

.custom-video-block iframe {
  width: 100%;
  height: 400px;
  border: none;
  margin-right: -70px;
  margin-top: 100px;
}

/* Responsive: Stack on mobile */
@media (max-width: 768px) {
  .custom-flex-row {
    flex-direction: column;
  }

  .custom-video-block iframe {
    height: 450px;
    margin-right: 30px;
    margin-top: 30px;
  }
}
/* ---------------------------------------------------------------------------------------------------------- */
.carousel-wrapper {
  max-width: 1200px;
  margin: 60px auto;
  overflow: hidden;
  position: relative;
  padding: 60px 0px;
  margin-top: -15px;
}


.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
  align-items: center;
}

.carousel-slide {
  flex: 0 0 auto;
 
  width: 15%;
  height: 300px;
  overflow: hidden;
  margin-top: 60px;
  position: relative;
  transition: all 0.6s ease; 
  cursor: pointer;
}

.carousel-slide.center {
  width: 70%;
  height: 490px;
  margin-top: 0;
  z-index: 2;
    flex: 0 0 70%;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* .carousel-slide.center img {
  border: 6px solid #ffcc00; 
  box-shadow: 0 0 25px rgba(255, 204, 0, 0.7);
  transition: all 0.3s ease-in-out;
} */
 /* .carousel-slide.center {
  position: relative;
  display: inline-block;
}

.carousel-slide.center img {
  display: block;
}

.carousel-slide.center::before,
.carousel-slide.center::after,
.carousel-slide.center span::before,
.carousel-slide.center span::after {
  content: '';
  position: absolute;
  width: 20px;   
  height: 20px; 
  border: 3px solid #ffcc00; 
  box-sizing: border-box;
}

.carousel-slide.center::before {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}


.carousel-slide.center::after {
  top: 0;
  right: 0;
  border-left: none;
  border-bottom: none;
}


.carousel-slide.center span::before {
  bottom: 0;
  left: 0;
  border-right: none;
  border-top: none;
}

.carousel-slide.center span::after {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
} */

.carousel-slide.center {
  position: relative;
  display: inline-block;
  padding: 20px; /* space for corners */
}

.carousel-slide.center img {
  display: block;
  position: relative;
  z-index: 1;
}

/* Create all four corners using only pseudo-elements */
.carousel-slide.center::before,
.carousel-slide.center::after {
  content: '';
  position: absolute;
  width: 25px;  /* corner length */
  height: 25px;
  border: 3px solid #ffcc00;
}

/* Top-left corner */
.carousel-slide.center::before {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

/* Top-right corner */
.carousel-slide.center::after {
  top: 0;
  right: 0;
  border-left: none;
  border-bottom: none;
}

/* Bottom-left corner using box-shadow */
.carousel-slide.center::before {
  box-shadow: 0 calc(100% + 3px) 0 0 #ffcc00, calc(0) calc(100% + 3px) 0 0 #ffcc00;
  transform: translateY(0);
}

/* Bottom-right corner using box-shadow */
.carousel-slide.center::after {
  box-shadow: -25px calc(100% + 3px) 0 0 #ffcc00, 0 calc(100% + 3px) 0 0 #ffcc00;
}

/* Tooltip */
.hover-tooltip {
  display: none;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
 background: rgba(34, 34, 34, 0.9);
border: 1px solid #ffcc00;

  color: #FFD300;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 14px;
  white-space: nowrap;
  z-index: 10; /* bring tooltip above image */
}



.carousel-slide.center:hover .hover-tooltip {
  display: block;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  cursor: pointer;
  z-index: 5;
  padding: 10px;
  border-radius: 50%;
}
.carousel-slide.center .hover-tooltip {
    display: block !important; /* always show */
    bottom: 20px;              /* adjust position for mobile */
    font-size: 12px;           /* optional smaller font */
     /* transform: scale(1.05); */
  }
.carousel-arrow.left { left: 10px; }
.carousel-arrow.right { right: 10px; }

/* Make tooltip always visible on center slide in mobile view */
@media (max-width: 768px) {
  .carousel-slide.center .hover-tooltip {
    display: block !important; /* always show */
    bottom: 20px;              /* adjust position for mobile */
    font-size: 12px;           /* optional smaller font */
     /* transform: scale(1.05); */
  }
/* .carousel-wrapper {

  overflow: hidden;
  position: relative;
  padding: 60px 0px;
 margin-left: -50px;
} */
  /* Adjust slide sizes if needed */
  .carousel-slide { 
    width: 20%;
    height: 200px; 
    margin-left: 2px;
  }

  .carousel-slide.center { 
    width: 70%; 
    height: 280px;
    margin-top: 35px;
    
  }
}

.game-heading {
	
	
  font-size: 36px; /* adjust size as needed */
  font-weight: bold;
  color: #000;     /* default text color */
}

.game-heading .highlight {
  color:#FF0000;  /* yellow for emphasis */
}
