/* Ensure html and body take full height */



/* Slideshow container */
.slideshow-container {
  position: relative;
  width: 100%;
  height: 100vh;      
  margin: 0 auto;      
  padding: 0;         
  overflow: hidden;    
  background-color: #000;
}

.mySlides {
  position: absolute;  /* This ensures each slide is stacked on top of each other */
  width: 100%;
  height: 100%;
  opacity: 0; /* Hide all slides initially */
  transition: opacity 1s ease-in-out;
  z-index: 0;
}
.mySlides:first-child {
  display: block;
}

.mySlides.active {
  opacity: 1;  /* Only the active slide will be visible */
  z-index: 1;  /* Bring the active slide to the top */
}

.image-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1/* Ensure the image covers the container */
}
.slide-image::before {
  content: ""; 
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(248, 42, 42, 0.5); /* Dark overlay with opacity */
  z-index: 1; /* Ensure it's above the image, but below the text */
}


.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.); /* Dark overlay on image */
  z-index: 1; /* Overlay sits on top of the image */
}
.mySlides.active .slide-text {
  opacity: 1; /* Make text visible when active */
}
.image-container {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2; /* Place text above the overlay */
  text-align: center;
  color: white;
  font-size: 1.5em;
  font-family: Arial, sans-serif;
  font-weight: bold;
  transition: opacity 1s ease-in-out; /* Smooth text fade-in effect */
}

.text {
  position: relative;
  font-family: 'Arial', sans-serif;
  top: 20%;
  left:15%; /* Center horizontally */
  transform: translate(-50%, -50%); /* Ensure perfect centering */
  color: rgb(245, 242, 242);
  font-size: 3em;
  text-align: center;
  
  font-weight: bold;
   /* Text sits on top of the overlay */
  transition: opacity 0.5s ease-in-out;
  z-index: 100;

  /* Flexbox for column layout */
  display: flex;
  flex-direction: column;
  align-items: left; /* Horizontally centers the text in the column */
  justify-content: left; /* Vertically centers the text in the column */
  line-height: 1; /* Line spacing for better readability */
   /* Optional: add some padding around text */
  text-shadow: 2px 2px 4px rgba(15, 15, 15, 0.7); /* Optional: text shadow for better contrast */
  
  /* Allow text to wrap properly */
  
  word-wrap: break-word; /* Prevent overflow and ensure wrapping */
  width: 75%; /* Adjust the width to allow text wrapping */
  max-width: 600px; /* Optional: limit the maximum width */
  padding: 5px; /* Optional: padding around the text */
}
.text.active {
  opacity: 1; /* Text fades in when the 'active' class is added */
}

.text1 {
  position: relative;
  font-family: 'Arial', sans-serif;
  top: 80px;
  left: 1%;
  transform: translate(-40%, -50%); /* Ensure the text is centered both vertically and horizontally */
  color: white;
  font-size: 0.5em; /* Adjust font size for visibility */
  text-align: left;
  font-weight: bold;
  transition: opacity 0.5s ease-in-out;
  
  /* Flexbox to arrange text in column layout */
  display: flex;
  flex-direction: column; /* Stack the content in a column */
  align-items: flex-start; /* Align text to the left */
  justify-content: flex-start; /* Vertically align text from top */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Optional: Adds shadow for better contrast */
  line-height: 1.5; /* Adjust line spacing for readability */
  word-wrap: break-word; /* Ensure long words break and wrap onto the next line */
  width: 100%;
  white-space: wrap; /* Allow the text to take up 90% of the container width */
  max-width: 600px; /* Optional: limit the maximum width */
  padding: 5%; /* Optional: padding around the text */
  z-index: 100;

}
.promo-banner {
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center; /* Centers vertically */
  height: 300px; /* Adjust the height of the banner */
  background-color:transparent; /* Banner background color */
}

.get-started-button {
  background-color: #171815 !important;
  color: #e5f509 !important;
  padding: 10px 20px !important;
  font-size: 18px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.get-started-button i {
  margin-right: 10px;
}

.get-started-button:hover {
  background-color: #9906ee91 !important;
  color: #eeeee8 !important
}





.revolve {
  animation: revolve 15s infinite;
}
/* Make sure the images stretch correctly */
@keyframes revolve {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}

.text-overlay {
  position: absolute;
  top: 50px;    /* Position it near the top of the container */
  left: 50px;   /* Space from the left edge */
  right:50px;  /* Space from the right edge */
  background-color: rgba(250, 247, 247, 0.5); /* Semi-transparent black background */
  color: rgba(245, 7, 7, 0.959); /* Text color */
  padding: 15px;
  border-radius: 8px;
  font-family: Arial, sans-serif;
  max-width: 100%;
  z-index: 100; /* Ensure it stays above images */
  opacity: 0; /* Initially hidden */
  transition: opacity 1s ease-in-out; /* Fade effect for the text */
}

.text-overlay.active {
  opacity: 1; /* Text fades in */
}

/* Add fade effect to transition between slides */



/* Zoom-in effect */
.zoom {
  animation-name: zoomEffect;
  animation-duration: 60.5s;
  animation-timing-function: ease-in-out;
}

@keyframes zoomEffect {
  from {
    transform: scale(0.9);  /* Start scaled down */
    opacity: 0.4;
  }
  to {
    transform: scale(1);  /* Scale to full size */
    opacity: 1;
  }
}
.flip {
  animation: flipEffect 10s ease-in-out forwards;
}

@keyframes flipEffect {
  from {
    transform: rotateY(180deg); /* Start with the back facing the viewer */
    opacity: 0;                  /* Start invisible */
  }
  to {
    transform: rotateY(0deg);   /* End with the front facing the viewer */
    opacity: 1;                  /* End fully visible */
  }
}

.color-change {
  animation: colorChange 1s ease-in-out infinite alternate;
}

@keyframes colorChange {
  0% {
    color: red; /* Start with red text */
    background-color: rgb(255, 255, 253); /* Start with yellow background */
  }
  50% {
    color: rgb(224, 6, 6); /* Midway point, change text to blue */
    background-color: rgb(249, 248, 250); /* Midway point, change background to green */
  }
  100% {
    color: rgb(245, 248, 248); /* End with purple text */
    background-color: rgb(255, 8, 0); /* End with orange background */
  }
}
.fade-right {
  position: relative;
  animation: fadeRight 2s ease-in-out forwards;
  
}

@keyframes fade-Right {
  from {
    transform: translateX(-100%); /* Start off-screen to the left */
    opacity: 0;                   /* Start invisible */
  }
  to {
    transform: translateX(0);     /* End at normal position */
    opacity: 1;                   /* End fully visible */
  }
}
.fade-in-out {
  opacity: 0;
  visibility: hidden;
  animation: fadeInOut 20s forwards;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
    visibility: hidden; /* Text starts invisible */
  }
  25% {
    opacity: 1;
    visibility: visible; /* Text fades in */
  }
  50% {
    opacity: 1;
    visibility: visible; /* Text stays visible */
  }
  75% {
    opacity: 0;
    visibility: hidden; /* Text fades out */
  }
  100% {
    opacity: 0;
    visibility: hidden; /* Text stays invisible permanently */
  }
}

/* Second text starts after the first one disappears */
.fade-in-out:nth-child(2) {
  animation-delay: 20s; /* Starts after 10 seconds, when the first text disappears */
}
.faderight {
  position: relative;
  animation: fadeRight 25s ease-in-out forwards ;
}

@keyframes fadeRight {
  from {
    transform: translateX(-100%); /* Start off-screen to the left */
    opacity: 0;                   /* Start invisible */
  }
  to {
    transform: translateX(0);     /* End at normal position */
    opacity: 1;                   /* End fully visible */
  }
}
.scale-up-bottom {
  position: relative;
  animation: scaleUpBottom 20s ease-out forwards;
}

@keyframes scaleUpBottom {
  from {
    transform: translateY(30px) scale(0.5); /* Start below and small */
    opacity: 0;                             /* Start invisible */
  }
  to {
    transform: translateY(0) scale(1);      /* End at normal position and size */
    opacity: 1;                             /* End fully visible */
  }
}
.rotate-fade-in {
  animation: rotateFadeIn 1.5s ease-in-out forwards;
}

@keyframes rotateFadeIn {
  from {
    transform: rotate(-180deg);  /* Start at 180 degrees rotated */
    opacity: 0;                  /* Start invisible */
  }
  to {
    transform: rotate(0deg);     /* End at 0 degrees */
    opacity: 1;                  /* End fully visible */
  }
}
.bounce-in {
  display: inline-block;
  animation: bounceIn 1s ease-out;
}

@keyframes bounceIn {
  0% {
    transform: scale(0.3); /* Start small */
    opacity: 0; /* Start invisible */
  }
  50% {
    transform: scale(1.1); /* Bounce larger than normal */
    opacity: 1; /* Become fully visible */
  }
  100% {
    transform: scale(1); /* Return to normal size */
  }
}
.slide-in-left {
  position: relative;
  animation: slideInRight 2s ease-out forwards;
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);  /* Start off-screen to the left */
    opacity: 0;                    /* Start invisible */
  }
  to {
    transform: translateX(0);      /* End at the normal position */
    opacity: 1;                    /* End fully visible */
  }
}
.fade-left-in-out {
  position: relative;
  opacity: 0; /* Initially invisible */
  animation: fadeLeftInOut 5s ease-in-out forwards; /* Apply the animation */
}

@keyframes fadeLeftInOut {
  0% {
    transform: translateX(-100%); /* Start off-screen to the left */
    opacity: 0; /* Start invisible */
  }
  25% {
    transform: translateX(0); /* Slide in to normal position */
    opacity: 1; /* Become fully visible */
  }
  50% {
    transform: translateX(0); /* Stay in position */
    opacity: 1; /* Stay fully visible */
  }
  75% {
    transform: translateX(-100%); /* Slide back to the left */
    opacity: 0; /* Fade out */
  }
  100% {
    transform: translateX(-100%); /* Stay off-screen */
    opacity: 0; /* Stay invisible */
  }
}
.slide-left-in-out {
  position: relative;
  animation: slideLeftInOut 5s ease-in-out forwards;
}

@keyframes slideLeftInOut {
  0% {
    transform: translateX(-100%); /* Start off-screen to the left */
  }
  25% {
    transform: translateX(0); /* Slide into position */
  }
  50% {
    transform: translateX(0); /* Stay in the normal position */
  }
  75% {
    transform: translateX(-100%); /* Slide back to the left */
  }
  100% {
    transform: translateX(-100%); /* Stay off-screen to the left */
  }
}
.slide-left-and-disappear {
  position: relative; /* Keep the element in the normal flow */
  animation: slideLeftAndDisappear 10s ease-in-out forwards; /* Apply the animation */
}

@keyframes slideLeftAndDisappear {
  0% {
    transform: translateX(0); /* Start at the normal position */
    opacity: 1; /* Fully visible */
  }
  50% {
    transform: translateX(0); /* Stay in the normal position */
    opacity: 1; /* Stay visible */
  }
  100% {
    transform: translateX(-100%); /* Slide off-screen to the left */
    opacity: 0; /* Fade out */
  }
}



.slide-in-right {
  position: relative;
  animation: slideInRight 8.5s ease-out forwards; /* Applying slideInRight animation */
}

@keyframes slideInRight {
  0% {
    transform: translateX(100%);  /* Start off-screen to the right */
    opacity: 0;                   /* Start invisible */
  }
  100% {
    transform: translateX(0);     /* End at the normal position */
    opacity: 1;                   /* End fully visible */
  }
}


/* Slide-in from the top */
.slide-from-top {
  animation: rotateInEffect 1.5s ease-in-out;
  z-index: 9995;
 
}

@keyframes slideTopEffect {
  from {
    transform: translateY(-50%);  /* Start off-screen above */
    opacity: 0;
  }
  to {
    transform: translateY(0);  /* Slide to the original position */
    opacity: 1;
  }
}


.rotate-in {
  position: absolute;  /* Makes the element movable with translateY */
  animation: rotateInEffect 1.5s ease-in-out;
  transform-origin: center;  /* Rotation happens around the center of the element */
}

@keyframes rotateInEffect {
  from {
    transform: translateY(50px) rotate(90deg);  /* Start below and rotated */
    opacity: 0;
  }
  to {
    transform: translateY(0) rotate(0deg);  /* Move to the original position and no rotation */
    opacity: 1;
  }
}



/* Fade effect */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;

}

@keyframes fade {
  from { opacity: 0.4; }
  to { opacity: 1; }
}

/* Optional: Add a dark overlay to make text more visible */
.banner-fixed:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);  /* Dark overlay */
  z-index: 1;
}
.button-bounce {
  display: inline-block;
  padding: 15px 25px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;
  border: 2px solid transparent;
  border-radius: 5px;
  background-color: #ff5733;
  color: white;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.button-bounce:hover {
  transform: translateY(-10px); /* Bounce upwards */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.card {
  width: 200px;
  height: 300px;
  perspective: 1000px; /* Creates 3D space for the card */
}

.card-inner {
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d; /* Ensure the back side is visible */
}

.card:hover .card-inner {
  transform: rotateY(180deg); /* Flip the card */
}

.card-front, .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden; /* Hide the back side when flipped */
}

.card-front {
  background-color: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-back {
  background-color: #3498db;
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.pulse {
  animation: pulseEffect 1.5s ease-in-out infinite;
}

@keyframes pulseEffect {
  0% {
    transform: scale(1);  /* Normal size */
  }
  50% {
    transform: scale(1.1); /* Slightly larger */
  }
  100% {
    transform: scale(1);  /* Back to normal size */
  }
}
.glowing-button {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  font-size: 15px;
  color: #fff;
  background-color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #fff;
  cursor: pointer;
  overflow: hidden;
  border-radius: 5px;
  transition: color 0.4s, box-shadow 0.4s;
}

.glowing-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
 
  transition: width 0.4s, height 0.4s, top 0.4s, left 0.4s;
  border-radius: 50%;
  z-index: 0;
  transform: translate(-50%, -50%);
}

.glowing-button:hover::before {
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
}

.glowing-button:hover {
  color: #333;
  box-shadow: 0 0 10px 5px rgba(255, 255, 255, 0.6);
}
.rolled-out-box {
  width: 300px;
  height: 200px;
  background-color: #3498db;
  color: white;
  padding: 20px;
  position: absolute;
  left: -300px;  /* Start off-screen on the left */
  opacity: 0;    /* Start fully transparent */
  animation: rollOut 5s ease-out forwards;  /* Animation applied to the box */
}

@keyframes rollOut {
  from {
    left: -300px;    /* Start off-screen to the left */
    opacity: 0;      /* Start invisible */
  }
  to {
    left: 50px;      /* Slide to the desired position */
    opacity: 1;      /* Become fully visible */
  }
}

/* Centering the banner content */
.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;  /* Ensure the content is above the image */
}

/* Optional: Style the text within the banner */
.banner-tagline h1, .banner-tagline p {
  color: white;
  z-index: 3;
}

.banner-tagline h1 {
  font-size: 36px;
  margin: 10px 0;
}

.banner-tagline p {
  font-size: 18px;
}

/* Next section styling */
.section {
  padding-top: 60px;
  background-color: #f4f4f4;
}


.section h2 {
  font-size: 24px;
  color: #333;
}
.design-box-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: transparent;
  z-index: 9999; /* Light gray background */
}



.overlay-box {
  position: relative;
  width: 1000px;
  max-width: 2000px;
  height: 2000px;
  background-color: #fff; /* White background for the box */
  border-radius: 15px;
  overflow: hidden; /* Hide the overflow outside the box */
}

/* Diagonal overlay effect */
.overlay-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #ff6f61 50%, transparent 50%);
  z-index: 1; /* Make sure the overlay stays on top */
}

/* Content area inside the box */
.overlay-content {
  position: relative;
  z-index: 2; /* Content stays above the overlay */
  padding: 50px;
  color: #333;
  font-family: Arial, sans-serif;
  text-align: center;
}

/* Title style inside the box */
.overlay-content h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

/* Paragraph text inside the box */
.overlay-content p {
  font-size: 16px;
  line-height: 1.6;
}


/* Main container for the box with the diagonal overlay */

/* Diagonal overlay effect */

/* Content area inside the box */



.overlay-content p {
  font-size: 16px;
  line-height: 1.6;
}
.fade {
  animation: fade 2s infinite;
}

@keyframes fade {
  0% { opacity: 1; }
  25% { opacity: 1; }
  75% { opacity: 1; }
  100% { opacity: 1; }
}

.fade-left {
  animation: fadeLeft 2s ease-out forwards; /* 2s duration, ease-out timing, forwards to retain the final state */
}

@keyframes fadeLeft {
  0% {
    opacity: 0; /* Start fully transparent */
    transform: translateX(-100%); /* Start from the left outside of the viewport */
  }
  100% {
    opacity: 1; /* End fully visible */
    transform: translateX(0); /* End at the original position */
  }
}

button {
  margin-top: 20px;
}
.marquee-style {
  background:transparent;
  padding: 0px;
  width: 100%;
  z-index: 999999
}

/* Fixed bottom bar */

.fixed-side-bar {
  
  position: absolute;
  top: 0;
  right: 0%;
   /* Or 'left: 0;' to position it on the left side */
  height: 100vh; /* Full height of the viewport */
  width: 100vh; /* Width of the vertical bar */
  background: linear-gradient(180deg,rgba(245, 90, 13, 0),rgba(27, 2, 114, 0.9)); /* Diagonal gradient with transparency */
  clip-path: polygon(
  40% 0%,
  100% 0%,
  60% 100%,
  0% 100%
);
  z-index: 1; /* Ensures the bar is above other content */
  -webkit-mask-image: linear-gradient(#000 0 0);
  -webkit-mask-size: 100% 0%;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: top;

  mask-image: linear-gradient(#000 0 0);
  mask-size: 100% 0%;
  mask-repeat: no-repeat;
  mask-position: top;

  animation: maskRevealTop 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;

  will-change: mask-size;
}
@keyframes maskRevealTop {
  from {
    opacity: 0;
  }
  to {
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    opacity: 1;
  }
}
.vanish-vertical {
  width: 100%;
  height: 160px;

  background: linear-gradient(
    180deg,
    rgba(245, 90, 13, 0),
    rgba(26, 4, 122, 0.9)
  );

  /* Keep inclined shape */
  clip-path: polygon(
    0% 0%,
    80% 0%,
    100% 100%,
    20% 100%
  );

  /* Mask for vertical vanish */
  -webkit-mask-image: linear-gradient(
    to right,
    #000 0%,
    #000 100%
  );
  -webkit-mask-size: 0% 100%;  /* start fully hidden */
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: left;

  mask-image: linear-gradient(
    to right,
    #000 0%,
    #000 100%
  );
  mask-size: 0% 100%;
  mask-repeat: no-repeat;
  mask-position: left;

  animation: vanishLeftToRight 1s ease-in forwards;

  will-change: mask-size, opacity;
}
@keyframes vanishLeftToRight {
  from {
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    opacity: 1;
  }
  to {
    -webkit-mask-size: 0% 100%;
    mask-size: 0% 100%;
    opacity: 0;
  }
}






.fixed-side-bar span {
  writing-mode: vertical-rl; /* Rotate the text vertically */
  transform: rotate(180deg); /* Optionally rotate it to make the text read top-to-bottom */
}
.fixed-top-bar {
  
  position:absolute;
  top: 0;
  left: 0px;
   /* Or 'left: 0;' to position it on the left side */
  height: 20vh; /* Full height of the viewport */
  width: 100%;; /* Width of the vertical bar */
 
  background:linear-gradient(180deg,rgba(238, 185, 9, 0.295),rgba(243, 244, 245, 0));
  
  z-index: 3; /* Ensures the bar is above other content */
}
.fixed-middle-bar {
  position: absolute; /* Positioned relative to its normal position */
  
  /* To center the bar horizontally, use left and translate */
  top: 600px; /* Aligns the bar to the top of its containing element */
  left: 50%; /* Centers the bar horizontally */
  transform: translateX(-50%); /* Offsets the left by 50% to center it exactly */
  
  height: 15vh; /* Full height of the viewport */
  width: 100vh; /* Width of the vertical bar */
  
  background:linear-gradient(45deg,rgba(12, 12, 12, 0.1),rgba(245, 90, 13, 0));
  
  z-index: 1; /* Ensures the bar is above other content */
  display: grid;
  flex-direction: column;
  align-items: left; /* Vertically centers the text */
  justify-content: left; /* Horizontally centers the text */
  color: white; /* White text color */
  font-size: 25px; /* Adjust font size as needed */
  font-family: Oswald-Bold;
  padding: 10px; /* Add padding if needed */
  text-align: left; /* Center align the text inside the bar */
  white-space: wrap;
  
}



.notice-board {
  width: 100%;
  max-width: 1000px;
  margin: 5%;
  padding: 20px; 
  z-index: 1;
}

/* Title of the notice board */
.notice-board h2 {
  text-align: center;
  color: #131111;
}

.notice-board h6 {
  text-align: justify;
  color: #ee0f0f;
}

/* Styling the individual notices */
.notice {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(252, 253, 253, 0.999),
    rgba(4, 160, 87, 0)
  );

  margin: 10px 0;
  padding: 45px;
  border-left: 1px solid #141314;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  border-radius: 6px; /* ✅ fixed */
  cursor: pointer;
  overflow: hidden;
}

.notice p {
  color: #f52f0c;
  font-weight: bold;
}

/* The animated light bar */
.notice::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.1)
  );
  transform: skewX(-25deg);
  animation: sweep 5.2s infinite ease-in-out;
}

@keyframes sweep {
  0% { left: -120%; }
  60% { left: 120%; }
  100% { left: 120%; }
}

/* Shake animation (not applied yet) */
@keyframes shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  50% { transform: translateX(5px); }
  75% { transform: translateX(-5px); }
  100% { transform: translateX(0); }
}

.shake {
  animation: shake 0.5s ease-in-out infinite;
}
.notice:hover {
  animation: shake 0.5s ease-in-out 1;  /* Run once when hovered */
}


.section-container {
  position: relative; /* Ensure the section itself is the reference point */
  height: 800px; /* Adjust as necessary */
  width: 50%; /* Section takes the full width */
  background-color:transparent; /* Example background color */
}

.fixed-faq-bar {
  position:relative; /* Use 'fixed' to keep the bar in place as you scroll */
  
  top: 40px; /* Position the bar 40px from the top */
  left: 50%; /* Centers the bar horizontally */
  transform: translateX(-50%); /* Offsets by 50% to exactly center the bar */
  height: 250vh; /* Height of 150% of the viewport height */
  width: 1500px;
  overflow-y: auto; /* Ensures the content scrolls vertically if it overflows */
  background: linear-gradient(45deg, rgba(247, 245, 245, 0.8), rgba(240, 211, 197, 0)); /* Gradient background */
  display: flex; /* Use 'flex' to arrange content */
  flex-direction: column;
  align-items: flex-start; /* Align content to the left */
  justify-content: flex-start; /* Align content to the top */
  
  color: rgb(12, 2, 2); /* White text color */
  font-size: 25px; /* Font size for text */
  font-family: 'Oswald', sans-serif; /* Ensure correct font family */
  padding: 25px; /* Padding for spacing inside the bar */
  
  text-align: left; /* Align text to the left */
  white-space: normal; /* Allow text to wrap if needed */
  
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3), 0 1px 3px rgba(0, 0, 0, 0.1); /* Added subtle shadow */
  
  z-index: 1; /* Ensure the bar is on top of other content */
}

@media (max-width: 1700px) {


.fixed-side-bar {
  
 
  width: 800px; /* Width of the vertical bar */
  
}

.fixed-middle-bar {
  
  display: none;
  
}
 
  .text {
    
    font-size: 2em !important;
    
  }
  .text.active {
    opacity: 1; /* Text fades in when the 'active' class is added */
  }
  
  .text1 {
    
    font-size: .5em !important ;/* Adjust font size for visibility */
    
  
  }
}

/* Responsive design */
@media (max-width:768px) {

  
  .fixed-side-bar {
    display: none;
    
  }
  
  .fixed-middle-bar {
   
    display: none;
    
  }
  .fixed-faq-bar {
    
  width:80%;
  height: 50%;
  }
  .notice-board {
display:none;
  }


/* Title of the notice board */
.notice-board h2 {
  display: none;
}

/* Styling the individual notices */
.notice {
  
  display: none;
}
}

/* Overlay: solid black */
/* Overlay */
/* Overlay */
#flash-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18, 18, 19, 0.5);
  opacity: 0;
  pointer-events: none;
  z-index: 9998;
  transition: opacity 0.45s ease;
}
#flash-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

/* Flash popup */
.flash {
  position: fixed;
  top: -300px; /* slide down animation */
  left: 50%;
  transform: translateX(-50%);
  min-width: 300px;
  max-width: 80%;
  padding: 70px 40px;
  border-radius: 10px;
  color: white;
  line-height: 1.5;
  opacity: 0;
  transition: top 0.45s ease, opacity 0.45s ease;
  z-index: 9999;
  cursor: grab;
}
.flash:active { cursor: grabbing; }
.flash.show { top: 50px; opacity: 1; }

/* Close button */
#flash-close {
  background: none; border: none;
  font-size: 25px; font-weight: bold; color: inherit;
  cursor: pointer; position: absolute; top: 8px; right: 12px;
}

/* Navigation buttons */
.flash-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  font-size: 2rem; background: transparent; border: none;
  color: white; cursor: pointer; padding: 0 10px;
}
#flash-prev { left: 10px; }
#flash-next { right: 10px; }
.flash-nav:hover { color: #ffd700; }

/* Text */
.flash-title { font-size: clamp(20px, 4vw, 30px); margin: 10px 0 4px; text-align:left; color: #f1f1ef; }
.flash-subtitle { font-size: clamp(14px, 3.5vw, 18px); margin: 0; text-align:left; color: #f1f1ee; }
#flash-text { text-align:left; position: relative; color: #f4f5f1; }

/* Flag in top-left corner */
.flash-flag {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 40px;
  max-width: 10vw;
  height: auto;
  border-radius: 4px;
}

/* Images stacked */
.flash-images {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 15px;
}
.flash-slide-image {
  width: 100%;
  max-width: 700px;
  object-fit: contain;
  border-radius: 8px;
}
@media (max-width: 480px) {
  .flash-slide-image { width: 100%; max-width: 100%; }
}

/* Button */
.flash-button {
  margin-top: 15px;
  display: inline-block;
  background: white;
  color: #333;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
 
  
}

/* Slide indicators */
.flash-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
}
.flash-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.3s;
}
.flash-dot.active { background: #ffd700; }

/* Themes */
.theme-default { background: linear-gradient(160deg, #f8a36a, #f1df8d); }
.theme-success { background: linear-gradient(160deg, #4caf50, #81c784); }
.theme-danger  { background: linear-gradient(160deg, #e53935, #ef5350); }
.theme-warning { background: linear-gradient(160deg, #f57c00, #ffa726); }
.theme-info    { background: linear-gradient(-90deg,rgba(245, 90, 13, 0),rgba(34, 4, 165, 0.9)); }
.theme-dark    { background: linear-gradient(160deg, #222, #555); }



#flash-text {
  position: relative;
  text-align:left;
  min-height: 150px; /* prevent popup jump */
}

/* Smooth fade for slides */
.flash-slide-content {
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  position: absolute;
  width: 80%;
  top: 0;
  left: 0;
}

.flash-slide-content.show {
  opacity: 1;
  position: relative; /* show current slide */
}



/* Toast box */
.toast {
  background: #d62828; /* German theme red */
  color: white;
  padding: 14px 20px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  transform: scale(0.4) translateY(40px);
  opacity: 0;
  animation: zoomIn 0.35s forwards ease-out;
}

/* Icon */
.toast img {
  width: 26px;
  height: 26px;
}

/* Zoom animation */
@keyframes zoomIn {
  0% { transform: scale(0.4) translateY(40px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

/* Toast container */
#toast-container {
  position: fixed;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

/* Positions */
.toast-top-right { top: 20px; right: 20px; }
.toast-top-left { top: 20px; left: 20px; }
.toast-bottom-right { bottom: 20px; right: 20px; }
.toast-bottom-left { bottom: 20px; left: 20px; }
.toast-bottom-center { bottom: 20px; left: 50%; transform: translateX(-50%); }
.toast-top-center { top: 20px; left: 50%; transform: translateX(-50%); }
.toast-center { top: 50%; left: 50%; transform: translate(-50%, -50%); }

/* Toast box */
.toast {
  background: #d62828;
  color: white;
  padding: 14px 20px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  transform: scale(0.4) translateY(40px);
  opacity: 0;
  animation: zoomIn 0.35s forwards ease-out;
  pointer-events: auto;
  cursor: grab;
}

.toast img { width: 26px; height: 26px; }

@keyframes zoomIn {
  to { transform: scale(1) translateY(0); opacity: 1; }
}

.fade-out {
  animation: fadeOut 0.35s forwards ease-in;
}
@keyframes fadeOut {
  to { transform: scale(0.4); opacity: 0; }
}

/* Toast themes */
.toast-success { background: linear-gradient(140deg, #2ecc71, #27ae60); }
.toast-danger { background: linear-gradient(140deg, #e53935, #ef5350); }
.toast-warning { background: linear-gradient(140deg, #ff9800, #ffc107); }
.toast-info { background: linear-gradient(140deg, #0288d1, #29b6f6); }
.toast-dark { background: linear-gradient(140deg, #333, #666); }
.toast-top-left { top: 20px; left: 20px; }
.toast-bottom-left { bottom: 20px; left: 20px; }
/* Progress bar inside toast */
.toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 0 0 12px 12px;
  width: 100%;
  transform-origin: left;
}
.toast {
  position: relative;
  /* ...existing styles... */
}
