.hero-slider {
    position: relative;
    overflow: hidden;
    padding-bottom: 0px;
  }
  
  .slider-container {
      /* display: flex;
      transition: transform 0.5s ease; */
      position: relative;
      width: 100%;
      height: 100vh; /* Set the height for the slider */
  }
  
  .slide {
      /*min-width: 100%;  Each slide takes full width */
      position: absolute;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 1s ease-in-out;
  }

  .slide.active {
    opacity: 1;
}
  
  .slide img {
      width: 100%; /* Image covers the slide */
      height: 90vh; /* Ensure it fills the slide height */
      object-fit: cover; /* Maintain aspect ratio and cover the entire slide */
      border-radius: 10px; 
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add a subtle shadow for depth */
      transition: transform 0.3s ease; /* Smooth zoom effect on hover */
  }

  .slides {
    /*min-width: 100%;  Each slide takes full width */
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slides.active {
  opacity: 1;
}

.slides img {
    width: 100%; /* Image covers the slide */
    height: 90vh; /* Ensure it fills the slide height */
    object-fit: cover; /* Maintain aspect ratio and cover the entire slide */
    border-radius: 10px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add a subtle shadow for depth */
    transition: transform 0.3s ease; /* Smooth zoom effect on hover */
}
  
  
  /* .slide img:hover {
      transform: scale(1.05); 
  } */
  
  .hero-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: white; /* Adjust as needed for visibility */
      text-align: center;
      padding: 20px; /* Add padding for better spacing */
      background: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
      border-radius: 10px; /* Match the border radius of images */
  }
  
  .hero-buttons {
      margin-top: 20px;
  }
  
  @media (max-width: 760px) {
      .hero-content {
          font-size: 14px; /* Adjust font size for mobile */
      }
      
      .hero-title {
          font-size: 24px; /* Responsive title size */
      }
  
      .hero-description {
          font-size: 12px; /* Responsive description size */
      }
      .logo img{
          width: 100px;
      }
      .button{
        font-size: 0.7rem;
      }
  }
.hero-title-primary::after {
    content: '|'; /* Cursor */
    animation: blink 0.7s infinite; /* Blinking effect */
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}
#info{
    background: #7D1D4D;
    color: white;
    padding: 20px;
}
.accordion-item {
    border: 1px solid #d9a1b8;
    border-radius: 5px;
    margin-bottom: 10px;
    font-family: Arial, sans-serif;
    overflow: hidden;
  }

  .accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff0f6;
    padding: 15px;
    cursor: pointer;
    font-weight: bold;
    color: #6e1244;
    transition: background 0.3s;
  }

  .accordion-number {
    background-color: #6e1244;
    color: white;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 4px;
    margin-right: 10px;
    font-weight: bold;
    flex-shrink: 0;
  }

  .accordion-title {
    flex: 1;
    padding-left: 10px;
  }

  .accordion-icon {
    font-size: 20px;
    color: #6e1244;
    transition: transform 0.3s;
    flex-shrink: 0;
  }

  .accordion-content {
    padding: 15px;
    display: none;
    background-color: #fff;
    color: #333;
    border-top: 1px solid #eee;
    font-size: large;
    font-weight: 500;
  }

  .accordion-item.active .accordion-content {
    display: block;
  }

  .accordion-item.active .accordion-icon {
    /* transform: rotate(45deg); */
  }
  .about-section {
    padding: 60px 20px;
    background-color: #fff;
    /*height: 60vh;*/
    transition: background-color 0.3s, color 0.3s;
  }

  .about-container {
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

  .about-section.visible .about-container {
    opacity: 1;
    transform: translateY(0);
  }

  .about-image {
    flex: 1 1 300px;
  }

  .about-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    height: 45vh;
  }

  .about-text {
    flex: 1 1 400px;
    color: #333;
    text-align: justify;
  }

  .about-text h2 {
    color: #6e1244;
    font-size: 28px;
    margin-bottom: 20px;
  }

  .about-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  /* Dark mode */
  /*@media (prefers-color-scheme: dark) {*/
  /*  .about-section {*/
  /*    background-color: #1a1a1a;*/
  /*  }*/

  /*  .about-text {*/
  /*    color: #eee;*/
  /*  }*/

  /*  .about-text h2 {*/
  /*    color: #ffaad4;*/
  /*  }*/

  /*  .about-image img {*/
  /*    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);*/
  /*  }*/
  /*  .about-section {*/
        /* padding: 60px 20px; */
  /*      background-color: #fff;*/
  /*      height: auto;*/
  /*      transition: background-color 0.3s, color 0.3s;*/
  /*    }*/
  /*}*/

  /* Responsive */
  @media (max-width: 1290px) {
    .about-section {
        padding: 60px 20px;
        background-color: #fff;
        height: auto;
        transition: background-color 0.3s, color 0.3s;
    }
    
  }
  @media (max-width: 768px) {
    .about-container {
      flex-direction: column;
      text-align: center;
    }
    .about-section {
        padding: 60px 20px;
        background-color: #fff;
        height: auto;
        transition: background-color 0.3s, color 0.3s;
      }

    .about-text h2 {
      font-size: 24px;
    }
  }
  .accordion-content ul{
    list-style: circle;
    padding: 10px;
  }
  .services-grid ul{
    list-style: thai;
  }


  /* Scroll Animate Section */
  .scroll-animate {
    background: #070b1e;
    color: #fff;
    min-height: 82vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .scroll-img-container {
    position: relative;
    width: 320px;
    height: 320px;
    margin-bottom: 44px;
    transition: transform 0.9s cubic-bezier(.4,.39,.65,1.04);
    z-index: 2;
    filter: drop-shadow(0 18px 64px #9eb3d1aa);
  }
  .scroll-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(.2,.8,.61,1.23), filter 0.4s;
    will-change: transform;
  }
  .scroll-texts {
    position: relative;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 600px;
  }
  .scroll-text {
    font-size: 2.1rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    opacity: 0;
    transform: translateY(46px) scale(0.97) skewY(0.4deg);
    filter: blur(2.5px);
    transition: opacity 0.7s, transform 0.7s, filter 0.7s;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 0;
    width: 100%;
    pointer-events: none;
    z-index: 2;
  }
  .scroll-text.active {
    opacity: 1;
    filter: blur(0);
    transform: none;
    pointer-events: auto;
    animation: textIn 0.9s cubic-bezier(.44,.2,0,1) both;
  }
  @keyframes textIn {
    from {
      opacity: 0.1;
      transform: translateY(64px) scale(1.2) skewY(2deg);
      filter: blur(8px);
    }
    to {
      opacity: 1;
      transform: none;
      filter: blur(0);
    }
  }
  /* Responsive Design */
  @media (max-width: 900px) {
    .about-content {
      flex-direction: column-reverse;
      gap: 32px;
    }
    .products-grid {
      flex-direction: column;
      align-items: center;
      gap: 24px;
    }
    .scroll-img-container {
      width: 58vw;
      height: 58vw;
      min-width: 160px;
      min-height: 160px;
      margin-bottom: 28px;
    }
    .about-img img {
      max-width: 270px;
    }
    
  }
  @media (max-width: 990px) {
    .icon {
        width: 50px !important;
        height: 50px !important;
    }
    .social-icons{
        gap: 20px;
    }
  }
  @media (max-width: 890px) {
    /* section {
      padding: 38px 2vw;
    } */
    .hero {
      min-height: 96vh;
    }
    .hero-title {
      padding-left: 0.5vw;
      font-size: 1.5rem;
    }
    .scroll-img-container {
      width: 90vw;
      height: 90vw;
      min-width: 110px;
      min-height: 110px;
    }
    .about-text h2, .products h2, .clients h2 {
      font-size: 1.23rem;
    }
    .bgimg-1, .bgimg-2, .bgimg-3 {
        position: relative;
        /* opacity: 0.65; */
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
      
      }
      /* .logo-slider{
        align-items: normal;
        justify-content: inherit;
        flex-wrap: nowrap;
        animation: logoslide 3s linear infinite;
      } */
  }
  .bgimg-1, .bgimg-2, .bgimg-3 {
    position: relative;
    /* opacity: 0.65; */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    /* background-size: cover; */
  
  }
  .bgimg-1 {
    background-image: url("images/CEO_CIF.png");
    min-height: 100vh;
  }
  
  .bgimg-2 {
    background-image: url("images/Picture.png");
    min-height: 100vh;
  }
  
  .bgimg-3 {
    background-image: url("images/1.png");
    min-height: 400px;
  }
  
  .caption {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    text-align: center;
    color: #000;
  }
  
  .caption span.border {
    /* background-color: #111;
    color: #fff; */
    background-color: #fff0f6;
    color: #000;
    padding: 12px;
    /* font-size: 25px; */
    letter-spacing: 10px;
  }
  
  .ceo_desc {
    letter-spacing: 5px;
    text-transform: uppercase;
    font: 20px "Lato", sans-serif;
    color: #fff;
  }
  /* Clients
  -------------------------------------- */
  .clients {
    /* background: #fff;
    padding-top: 60px;
    padding-bottom: 50px; */
    /* background: #fff0f6; */
    padding-top: 90px;
    padding-bottom: 90px;
    text-align: center;
  }
  .clients h2 {
    color: var(--blue-main);
    margin-bottom: 40px;
    font-size: 2.1rem;
  }
  /* .logo-slider {
    display: flex;
    gap: 100px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    animation: logoslide 8s linear infinite;
  }
  .logo-slider img {
    height: 54px;
    width: auto;
    filter: grayscale(0.16) drop-shadow(0 2px 8px #c6cee6cc);
    opacity: 0.95;
    transition: filter 0.28s;
  }
  .logo-slider img:hover {
    filter: none;
    opacity: 1;
  }
  @keyframes logoslide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-25%); }
  } */
  .logo-slider-container {
    overflow: hidden;
    width: 100%;
    position: relative;
  }
  
  .logo-slider {
    display: flex;
    gap: 100px;
    align-items: center;
    white-space: nowrap;
    animation: logoslide 25s linear infinite;
  }
  
  .logo-slider img {
    height: 54px;
    width: auto;
    filter: grayscale(0.16) drop-shadow(0 2px 8px #c6cee6cc);
    opacity: 0.95;
    transition: filter 0.28s;
    flex-shrink: 0;
  }
  
  .logo-slider img:hover {
    filter: none;
    opacity: 1;
  }
  
  @keyframes logoslide {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  
  /* Base styling */
.social-media-section {
    text-align: center;
    padding: 50px 20px;
    /* background: linear-gradient(to right, #0f2027, #203a43, #2c5364); */
    background: linear-gradient(to right, #7D1D4D, #7D1D4D, var(--gray-700));

    color: white;
    animation: fadeIn 2s ease-in-out;
  }
  
  .social-media-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    animation: float 3s infinite ease-in-out;
  }
  
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  /* Icon styling */
  .icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    /* background-color: #fff; */
    background-color: #fff0f6;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: all 0.4s ease-in-out;
    box-shadow: 0 0 10px rgba(255,255,255,0.2);
    position: relative;
    animation: pulse 3s infinite ease-in-out;
  }
  
  .icon:hover {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 0 20px #00f7ff, 0 0 40px #00f7ff;
    color: #fff;
  }
  
  /* Platform specific colors */
  .facebook:hover { background-color: #3b5998; }
  .x:hover { background-color: #000; color: #fff !important; }
  .instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  }
  .youtube:hover { background-color: #ff0000; }
  .linkedin:hover { background-color: #0077b5; }
  
  /* Animations */
  @keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
  }
  
  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  hr{
    color: #7D1D4D;
    border: 2px solid #7D1D4D;
    display: none;
  }
  @media (min-width: 770px) {
    .bgimg-1, .bgimg-2, .bgimg-3 {
        background-size: contain !important;
    }
  }
/* General Reset */
.form-embed-container, .form-redirect-container {
  max-width: 900px;
  margin: 3rem auto;
  padding: 2rem;
  background: url('images/istockphoto-1947499362-612x612.jpg');
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  animation: slideInUp 1s ease;
  font-family: 'Segoe UI', sans-serif;
}
@media (max-width: 900px) {
    .form-embed-container, .form-redirect-container {
        font-size: 0.9rem;    }
  }

.form-heading {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #222;
}

.form-section {
  margin-bottom: 3rem;
  border-top: 1px solid #eee;
  padding-top: 1.5rem;
}

.form-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

/* Redirect Card Styling */
.form-card {
  background: #f9f9f9;
  border-left: 6px solid #7D1D4D;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  animation: fadeIn 0.8s forwards;
}

.form-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.form-card h3 {
  margin-top: 0;
  font-size: 1.3rem;
  color: #2c2c2c;
}

.form-card p {
  margin-bottom: 1rem;
  color: #555;
}

.form-button {
  background: #7D1D4D;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.form-button:hover {
  background: #7D1D4D;
  color: #fff;
}

/* Fade-in Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  animation: fadeIn 0.9s ease forwards;
}

.delay-1 {
  animation-delay: 0.5s;
}

@keyframes slideInUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
} */

/* body {
  font-family: 'Inter', sans-serif;
  background-color: #f4f4f4;
  color: #333;
} */

.f_pane {
  display: flex;
  height: 100vh;
  /* background-color: #fff0f6; */
  /*padding: 20px;*/
}

.left-pane {
  /* background-color: #7D1D4D; */
  color: #000;
  flex: 0.5;
  padding: 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.left-pane .logo {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.left-pane h1 {
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #7D1D4D;
  padding-right: 9vw;
}

.left-pane p {
  font-size: 0.95rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  color: #7D1D4D;
}

.left-pane .buttons {
  display: flex;
  gap: 1rem;
}

.left-pane .buttons button {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.left-pane .buttons .primary {
  background-color: #7D1D4D;
  color: white;
}

.left-pane .buttons .primary:hover {
  background-color: #0a1e3f;
  color: #fff;
}

.left-pane .buttons .secondary {
  background-color: #7D1D4D;
  color: white;
  border: 2px solid #fff;
}

.left-pane .buttons .secondary:hover {
  background-color: #0a1e3f;
  color: #fff;
}

.right-pane {
  flex: 1;
  /* background-image: url('images/newmeet.jpg');
  background-size: cover;
  background-position: center;
  position: relative; */
  display: flex;
  flex-direction: column;
  padding: 1%;
  align-items: center;

}

.right-pane .navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 2rem;
  /* background-color: rgba(255, 255, 255, 0.95); */
  position: absolute;
  width: 60vw;
}


.right-pane .navbar ul {
  list-style: none;
  display: flex;
  gap: 5.5rem;
}

.right-pane .navbar ul li a, .nav-button a{
  text-decoration: underline;
  color: #fff;
  font-weight: 800;
  text-decoration-line: underline;
  text-decoration-color: #7D1D4D;
  text-underline-offset: 15px;
}

.right-pane .navbar ul li a:hover, .contactUs:hover {
  text-decoration: none;
  background-color: #7D1D4D;
  color: #fff !important;
  /* font-weight: 800; */
  padding: 15px;
  border-radius: 10px;
}

.right-pane .navbar .auth {
  display: flex;
  gap: 1rem;
}

.right-pane .navbar .auth button {
  padding: 0.5rem 1rem;
  border: none;
  background-color: #0a1e3f;
  color: #fff;
  font-weight: 600;
  border-radius: 3px;
  cursor: pointer;
}

.leftP{
  font-size: 3rem;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
  }

  .left-pane,
  .right-pane {
    flex: 1;
    height: auto;
  }

  .navbar ul {
    flex-direction: column;
    gap: 1rem;
  }
}

.stellar-navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* background: rgba(0, 0, 0, 0.6); */
  background: #fff0f6;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  z-index: 10;
}

.stellar-brand {
  font-size: 1.5rem;
  font-weight: bold;
}

.stellar-nav-links {
  display: flex;
  gap: 1.5rem;
  transition: all 0.3s ease-in-out;
}

.stellar-nav-links a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}

.stellar-nav-links a:hover {
  background-color: #7D1D4D;
}

/* Hamburger Menu Icon */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: #7D1D4D;
  transition: all 0.3s ease;
}

/* Banner Container */
.panorama-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.aurora-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.luminous-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  color: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  z-index: 2;
}

.radiant-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.radiant-paragraph {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.radiant-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.radiant-button {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.radiant-button.primary {
  background-color: #7D1D4D;
  color: #fff;
}

.radiant-button.primary:hover {
  background-color: #7D1D4D;
}

.radiant-button.secondary {
  background-color: transparent;
  border: 2px solid #000;
  color: #000;
}

.radiant-button.secondary:hover {
  background-color: #7D1D4D;
  border-color: transparent;
  color: #fff !important;
}

/* Responsive Design */
@media screen and (max-width: 1000px) {
  .luminous-overlay {
    width: 70%;
  }

  .radiant-title {
    font-size: 3.5rem;
    font-weight: 1000;
  }

  .radiant-paragraph {
    font-size: 1.1rem;
  }

  .hamburger {
    display: flex;
  }

  .stellar-nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    flex-direction: column;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
  }

  .stellar-nav-links a {
    padding: 1rem 2rem;
    border-bottom: 1px solid #333;
  }

  .stellar-navbar.open .stellar-nav-links {
    max-height: fit-content; /* Enough height for visible links */
  }
}

@media screen and (max-width: 480px) {
  .luminous-overlay {
    width: 100%;
    padding: 1rem;
  }

  .radiant-title {
    font-size: 1.53rem;
    font-weight: 1000;
  }

  .radiant-paragraph {
    font-size: 1rem;
  }

  .radiant-buttons {
    flex-direction: column;
  }

  .radiant-button {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 1000px) {
  #mobile_surf{
    display: contents !important;
  }
  
  .f_pane{
    display: none;
  }
}
@media screen and (max-width: 1326px) {
  .right-pane .navbar ul {
    gap: 1.5rem !important;
  }
}

.ceoSpotlight-wrap {
  background: #f9f9f9;
  padding: 4rem 2rem;
}

.ceoSpotlight-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  animation: fadeSlideIn 1.2s ease-in-out;
}

.ceoSpotlight-imageWrapper {
  flex: 1 1 350px;
  display: flex;
  justify-content: center;
}

.ceoSpotlight-img {
  width: 100%;
  /* max-width: 400px; */
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.ceoSpotlight-img:hover {
  transform: scale(1.03);
}

.ceoSpotlight-content {
  flex: 1 1 400px;
}

.ceoSpotlight-label {
  color: #7D1D4D;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.ceoSpotlight-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #222;
}

/* .ceoSpotlight-text {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 1.5rem;
} */

.ceoSpotlight-btn {
  background: #7D1D4D;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.ceoSpotlight-btn:hover {
  background: #7D1D4D;
}

.ceoSpotlight-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.ceoSpotlight-stats h3 {
  font-size: 1.8rem;
  color: #7D1D4D;
  margin-bottom: 0.2rem;
}

.ceoSpotlight-stats p {
  font-size: 1rem;
  color: #333;
}

/* Animations */
@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .ceoSpotlight-container {
    flex-direction: column;
    text-align: justify;
  }

  .ceoSpotlight-stats {
    justify-content: center;
  }
}
@media screen and (max-width: 1024px) and (max-height: 600px) {
  /* Styles for Nest Hub */
  .left-pane h1 {
    font-size: 1.8rem !important;
    font-weight: 1000;
  }
  .radiant-buttons {
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1366px) and (orientation: portrait) {
  /* Styles for iPad Pro Portrait */
  .left-pane h1 {
    font-size: 3rem !important;
}
}

@media screen and (max-width: 1300px) and (min-height: 720px) and (max-height: 820px) {
  /* Styles for Nest Hub */
  .left-pane h1 {
    font-size: 2.5rem !important;
  }
  .radiant-buttons {
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 1000px) and (max-width: 1364px) and (min-height: 900px) {
  .left-pane h1 {
    font-size: 2.5rem !important;
}
}
.modal-left {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100vh;
  width: 300px; /* Adjust width as needed */
  transition: left 0.3s ease;
  background-color: #fff0f6;
  z-index: 1050; /* Above other content */
  overflow-y: scroll;
}
.modal-left.show {
  right: 0;
}
.close-btn {
  position: absolute;
  /* top: 10px; */
  right: 10px;
  font-size: 24px;
  cursor: pointer;
}
.helium-hollow {
    background-color: #ffffff;
    padding: 5rem 2rem;
    font-family: 'Segoe UI', sans-serif;
  }

  .quartz-hatch {
    max-width: 1200px;
    margin: 0 auto;
  }

  .lunar-crest {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3.5rem;
    color: #7D1D4D;
    font-weight: 700;
  }

  .felix-flexboard {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    padding: 3rem;
  }

  .polar-pod {
    background-color: #fff;
    border: 1px solid #f2f2f2;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    max-width: 360px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /*height: 50vh;*/
  }

  .polar-pod:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 24px rgba(125, 29, 77, 0.15);
  }

  .starfall-label {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #7D1D4D;
  }

  .opal-words {
    flex-grow: 1;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .lucid-list {
    flex-grow: 1;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
    padding-left: 1.25rem;
    margin-bottom: 1.5rem;
  }

  .lucid-list li {
    margin-bottom: 0.75rem;
  }

  .berry-button {
    background-color: #7D1D4D;
    color: white;
    padding: 0.65rem 1.25rem;
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    align-self: center;
    transition: background-color 0.3s ease;
    text-align: center;
  }

  .berry-button:hover {
    background-color: #5a1435;
    color: #fff;
  }

  @media (max-width: 1024px) {
    .polar-pod {
      flex: 1 1 45%;
    }
  }

  @media (max-width: 768px) {
    .felix-flexboard {
      flex-direction: column;
      align-items: center;
    }

    .polar-pod {
      flex: 1 1 100%;
    }
  }