* {
    box-sizing: border-box;
    --redColor: rgba(235,12,16,1.00);
    --yellowColor:  rgba(220,224,20,1.00);
    --orangeColor: rgba(221,142,0,1.00);
    --etherialBlue:  rgba(9,72,64,0.65);
    --greenColor: green;
    --shadowOutline:  1px 1px 1px rgb(0, 0, 0),-1px -1px 1px rgb(0, 0, 0),-1px 1px 1px rgb(0, 0, 0),1px -1px 1px rgb(0, 0, 0), -2px -2px 2px rgb(0, 0, 0), 2px 2px 2px rgb(0, 0, 0), 2px -2px 2px rgb(0, 0, 0), -2px 2px 2px rgb(0, 0, 0);
    --cellSize: 600px;
  }
  
  /* --------------Common-------------- */
  .carocel_body {
    width: 100%;
    height: 90%;
    min-height: 400px;
    max-height: 80vh;
    background-image: url('/public_html/images/BoardMeetingSM.jpg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center top;
    display: flex;
    justify-content: center top;
    align-items: center top ;
  }
  
  /* --------------Container-------------- */
  .container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 90vh;
    perspective: 6000px;
    overflow: hidden;
  }
  
  /* ---------Slide--------- */
  .slide {
    display: flex;

    justify-content:  center ;
    align-items: center ;
    width: 100%;
    transform-style: preserve-3d;
    animation: rotation 20s infinite linear;
  }
  
  .slide:hover {
    animation-play-state: paused;
  }
  
  /* Horizontal Rotation Animation */
  @keyframes rotation {
    0% {
      transform: rotateY(0deg);
    }
    100% {
      transform: rotateY(360deg);
    }
  }
  
  /* ---------Product Box--------- */
  .product-box {
    max-width: 28vw;
    position: absolute;
    padding: 0;
    border-radius: 20px;
    transform-origin: center;
  }
  
  .product-box:nth-child(1) {
    transform: rotateY(0deg) translateZ(var(--cellSize));
  }
  
  .product-box:nth-child(2) {
    transform: rotateY(72deg) translateZ(var(--cellSize));
  }
  
  .product-box:nth-child(3) {
    transform: rotateY(144deg) translateZ(var(--cellSize));
  }
  
  .product-box:nth-child(4) {
    transform: rotateY(216deg) translateZ(var(--cellSize));
  }
  
  .product-box:nth-child(5) {
    transform: rotateY(288deg) translateZ(var(--cellSize));
  }
  
 
  /* --------------Media Queries-------------- */
 /* --------------Media Queries-------------- */
 @media (max-width: 1024px) {
    .product-box {
      max-width: 25vw;
      padding-top: 15%; /* Reduced size for smaller screens */

    }
  
    .product-box p {
      font-size: 1.2em;
    }
    .carocel_body
    {
      background-image: url('/public_html/images/BoardMeeting.jpg');
      background-size:contain ;
     background-position: center top;
 
   
    }
    .container {
      padding-top: 0;

    max-height: 50vh;
    }
  }
  
  @media (max-width: 600px) {
    .product-box {
      max-width: 35vw; /* Reduced size for smaller screens */
      padding-top: 20%;
    }
  
    .product-box p {
      font-size: 1.3em;
    }
      
    .container {
      margin-top: 0px;
      padding-top: 1%;
      padding-bottom: 15%;
      
     max-height: 40vh;
     
    }
    .carocel_body
    {
      background-image: url('/public_html/images/BoardMeeting.jpg');
      background-size: contain;
     background-position: center top;
      min-height: 10vh;
      max-height: 20%;
   
    }
  }
  
  @media (max-width: 480px) {
    :root {
      --cellSize: 40px;
    }
    .product-box {
      max-width: 30vw; /* Reduced size for smaller screens */
      
    }
    .carocel_body
    {
      background-image: url('/public_html/images/BoardMeetingLong.jpg');
      background-size: contain;
     background-position: center top;
      min-height: 2vh;
      max-height: 10%;
   
    }
    .product-box p {
      font-size: 1em;
    }
  
    .container {
      padding-top: 2%;
     
     
    }
    .slide
    {
    
      object-position: flex-start   ;
    }
   
  }