/* Navbar styles */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,500;1,400&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    font-family: 'Roboto', sans-serif;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}
.header{
    border-bottom: 1px solid #E2E8F0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
}
.hamburger {
    display: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #101010;
}
.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-item {
    margin-left: 5rem;
}

.nav-link{
    font-size: 1.6rem;
    font-weight: 400;
    color: #475569;
}

.nav-link:hover{
    color: #482ff7;
}

.nav-logo {
    font-size: 2.1rem;
    font-weight: 500;
    color: #482ff7;
}
@media only screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 5rem;
        flex-direction: column;
        background-color: #ffffff;
        width: 100%;
        border-radius: 10px;
        text-align: center;
        transition: 0.3s;
        box-shadow:
            0 10px 27px rgba(0, 0, 0, 0.05);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 2.5rem 0;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }

}
.hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
.nav-logo {
  display: flex;
  align-items: center; /* Center images vertically */
}

.logo-image {
  height: 50px; /* Adjust the height as needed */
  margin-right: 10px; /* Space between images */
}





/* Slideshow Container */
#mySlideshow {
  position: relative;
  max-width: 100%;
  margin: auto;
}

/* Individual Slides */
#mySlideshow .mySlides {
  display: none; /* Hide all slides by default */
}

/* Images */
#mySlideshow .mySlides img {
  width: 100%;
  height: auto; /* Maintain aspect ratio */
}

/* Slide Number */
#mySlideshow .numbertext {
  color: #fff;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2; /* On top of the image */
}

/* Caption Text */
#mySlideshow .text {
  color: #fff;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
}

/* Navigation Buttons */

#mySlideshow .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: background-color 0.3s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  z-index: 2; /* On top of the image */
}

.prev {
  cursor: pointer;
  position: absolute; /* Correct position */
  left: 0; /* Place it on the left side */
  top: 50%; /* Vertically center it */
  width: auto;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: background-color 0.3s ease;
  border-radius: 0 3px 3px 0; /* Rounded right corners */
  user-select: none;
  z-index: 2; /* On top of the image */
  transform: translateY(-50%); /* Ensures vertical centering */
}

.prev:hover {
  background-color: rgba(0, 0, 0, 0.8); /* Dark background on hover */
}

#mySlideshow .next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

#mySlideshow .prev:hover, 
#mySlideshow .next:hover {
  background-color: rgba(0, 0, 0, 0.8); /* Darken on hover */
}

/* Dots for Navigation */
#mySlideshow .dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

/* Active Dot */
#mySlideshow .dot.active {
  background-color: #717171;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  #mySlideshow .text {
      font-size: 12px; /* Smaller font on mobile */
  }

  #mySlideshow .numbertext {
      font-size: 10px; /* Smaller font for numbers on mobile */
  }

  #mySlideshow .prev, 
  #mySlideshow .next {
      padding: 10px; /* Smaller buttons on mobile */
      font-size: 16px; /* Smaller font size */
  }

  #mySlideshow .dot {
      height: 10px;
      width: 10px;
  }
}





/* About Hackathon Section */
.about-hackathon {
  padding: 40px 20px;
  background-color: #43d2df;
  text-align: center;
}

.about-hackathon .container {
  max-width: 800px;
  margin: 0 auto;
}

.about-hackathon h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 20px;
}

.about-hackathon p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

/* Responsive for mobile devices */
@media (max-width: 768px) {
  .about-hackathon {
    padding: 20px 10px; /* Reduce padding for smaller screens */
  }

  .about-hackathon h2 {
    font-size: 24px; /* Reduce font size for the heading */
    margin-bottom: 15px; /* Adjust margin for better spacing */
  }

  .about-hackathon p {
    font-size: 14px; /* Reduce paragraph font size for readability */
    line-height: 1.5; /* Slightly reduce line height */
  }
}

/* For even smaller screens like mobile phones */
@media (max-width: 480px) {
  .about-hackathon {
    padding: 15px 5px; /* Further reduce padding */
  }

  .about-hackathon h2 {
    font-size: 20px; /* Further reduce font size */
  }

  .about-hackathon p {
    font-size: 13px; /* Smaller font size for very small screens */
  }
}



/* Target the specific image by class */
.responsive-image {
  max-width: 100%;  /* Ensures the image scales down to fit the screen width */
  height: auto;     /* Keeps the aspect ratio intact */
  display: block;   /* Ensures no extra space appears below the image */
  margin: 0 auto;   /* Centers the image */
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
  .responsive-image {
      max-width: 90%;  /* Reduce the image size for smaller screens */
  }
}

@media (max-width: 480px) {
  .responsive-image {
      max-width: 85%;  /* Further reduce the image size for very small screens */
  }
}


/* Schedule Section Styling */
.schedule-section {
  padding: 50px 0;
  background-color: #f9f9f9;
  text-align: center;
}

.schedule-section h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #0a192f;
}

.schedule-section .subtitle {
  font-size: 18px;
  margin-bottom: 40px;
  color: #8892b0;
}

.schedule-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  text-align: left;
}

.schedule-item .date {
  flex-basis: 20%;
  text-align: center;
}

.schedule-item .date p {
  font-size: 16px;
  color: #0a192f;
  margin-bottom: 10px;
}

.schedule-item .date i {
  font-size: 30px;
  color: #0a192f;
}

.schedule-item .details {
  flex-basis: 80%;
  padding-left: 20px;
}

.schedule-item .details h3 {
  font-size: 24px;
  color: #0a192f;
  margin-bottom: 10px;
}

.schedule-item .details p {
  font-size: 16px;
  color: #5a5a5a;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .schedule-item {
    flex-direction: column;
    text-align: center;
  }

  .schedule-item .date,
  .schedule-item .details {
    flex-basis: 100%;
    padding-left: 0;
  }

  .schedule-item .details h3 {
    font-size: 20px;
  }

  .schedule-item .details p {
    font-size: 14px;
  }

  .schedule-item .date p {
    font-size: 14px;
  }

  .schedule-item .date i {
    font-size: 25px;
  }
}

@media (max-width: 480px) {
  .schedule-section h2 {
    font-size: 28px;
  }

  .schedule-section .subtitle {
    font-size: 16px;
  }

  .schedule-item .details h3 {
    font-size: 18px;
  }

  .schedule-item .details p,
  .schedule-item .date p {
    font-size: 12px;
  }

  .schedule-item .date i {
    font-size: 20px;
  }

  .schedule-section {
    padding: 30px 10px;
  }
}


/* Patron Section */
.patron-section {
  text-align: center;
  padding: 50px;
  background-color: #f5f5f5;
}

.patron-section h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #333;
}

.main-patron {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.co-patron-container {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Patron Card Styles */
.patron-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 250px;
  padding: 20px;
  transition: transform 0.3s ease;
}

.patron-card:hover {
  transform: translateY(-10px);
}

.patron-card img {
  border-radius: 50%;
  width: 120px;
  height: 120px;
  object-fit: cover;
  margin-bottom: 15px;
}

.patron-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
}

.patron-card p {
  font-size: 14px;
  color: #777;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .main-patron,
  .co-patron-container {
    flex-direction: column;
    align-items: center;
  }

  .patron-card {
    width: 80%;
    margin-bottom: 20px;
  }

  .patron-section h2 {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .patron-section {
    padding: 30px 15px;
  }

  .patron-section h2 {
    font-size: 24px;
  }

  .patron-card {
    width: 90%;
    padding: 15px;
  }

  .patron-card img {
    width: 100px;
    height: 100px;
  }

  .patron-card h3 {
    font-size: 16px;
  }

  .patron-card p {
    font-size: 12px;
  }
}


/* Prize Styles */
.prize-section {
  text-align: center;
  padding: 40px;
  background-color: #e9ecef; /* Light grey background color */
  border-radius: 10px; /* Optional: Rounded corners for a softer look */
  margin: 20px; /* Adds some space around the section */
}

.prize-title {
  font-size: 28px;
  font-weight: bold;
  color: #2a2a72; /* Dark blue color for the title */
  margin-bottom: 10px;
  position: relative;
}

.prize-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: #2a2a72;
  margin: 10px auto;
}

.prize-description {
  font-size: 18px;
  margin-bottom: 30px;
  color: #555;
}

.prize-boxes {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.prize-box {
  background-color: #1e73be; /* Blue color for the boxes */
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 150px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.prize-box h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.prize-box p {
  font-size: 16px;
  margin: 0;
}
.timeline {
  position: relative;
  max-width: 800px;
  margin: 40px auto;
  padding: 0 10px;
}

.timeline-item {
  margin-bottom: 30px;
  position: relative;
  padding-left: 40px;
  border-left: 3px solid #2a2a72;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -7px;
  width: 15px;
  height: 15px;
  background-color: #1e73be;
  border-radius: 50%;
  border: 3px solid #f1f1f1;
}

.timeline-content {
  padding: 15px 20px;
  border-radius: 5px;
  border: 1px solid #ddd;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.timeline-item h3 {
  font-size: 20px;
  color: #2a2a72;
  margin-bottom: 10px;
}

.timeline-item p {
  font-size: 16px;
  color: #555;
}

.timeline-item {
  position: relative;
  margin-bottom: 20px;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


/* Tabbed Interface Styling */
.tab-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.tab-buttons {
  display: flex;
  justify-content: space-around;
  background-color: #2a2a72;
}

.tab-buttons button {
  background-color: #2a2a72;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.tab-buttons button:hover {
  background-color: #444;
}

.tab-buttons button.active {
  background-color: #1a1a4b;
}

.tab-content {
  display: none;
  background-color: #fff;
  padding: 20px;
  margin-top: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.tab-content.active {
  display: block;
}

.tab-content h4 {
  margin-top: 0;
}





/* Basic Styles for the FAQ Section */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap');

body {
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1rem;
}

.container h1 {
    color: #333;
    margin-bottom: 1rem;
}

details {
    background-color: #303030;
    color: #fff;
    font-size: 1.2rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

summary {
    padding: 1em 1.5rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    border-bottom: 1px solid #444;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

summary:hover {
    background-color: #424242;
}

summary::-webkit-details-marker {
    display: none;
}

summary:after {
    content: "\002B";
    font-size: 1.2em;
}

details[open] summary {
    border-bottom: 1px solid #aaa;
    background-color: #383838;
}

details[open] summary:after {
    content: "\00D7";
}

details[open] div {
    padding: 1em;
    background-color: #404040;
    border-top: 1px solid #555;
}

details {
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

/* Optional Section Styling */
.optional-section {
  text-align: center;
  margin: 40px 0; /* Add more margin if needed */
}

.optional-section h2 {
  font-size: 2.5em; /* Adjust size as needed */
  margin-bottom: 15px;
  color: #333; /* Adjust color as needed */
}

.optional-section p {
  font-size: 1.2em;
  color: #666; /* Adjust color as needed */
  max-width: 800px; /* Adjust max-width as needed */
  margin: 0 auto; /* Center-align text */
  line-height: 1.6; /* Improve readability */
}

/* Mobile Responsive Styling */
@media (max-width: 768px) {
  /* Container and Text Adjustments */
  .container {
    max-width: 90%;
    margin: 1.5rem auto;
    padding: 0.5rem;
  }

  .container h1 {
    font-size: 1.8rem;
  }

  details {
    font-size: 1rem;
  }

  summary {
    padding: 0.8em 1rem;
  }

  details[open] div {
    padding: 0.8em;
  }

  /* Optional Section Adjustments */
  .optional-section h2 {
    font-size: 2em;
  }

  .optional-section p {
    font-size: 1em;
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  /* Container and Text Adjustments */
  .container {
    max-width: 100%;
    margin: 1rem auto;
    padding: 0.5rem;
  }

  .container h1 {
    font-size: 1.5rem;
  }

  details {
    font-size: 0.9rem;
  }

  summary {
    padding: 0.6em 0.8rem;
  }

  details[open] div {
    padding: 0.6em;
  }

  /* Optional Section Adjustments */
  .optional-section h2 {
    font-size: 1.8em;
  }

  .optional-section p {
    font-size: 0.9em;
    max-width: 100%;
    margin: 0 10px;
  }
}


/* Make sure to use a unique class to prevent overlapping */



.uhack-registration {
  text-align: center;
  padding: 20px;
  max-width: 800px;
  margin: 20px auto;
  border-radius: 10px;
  background: linear-gradient(135deg, #e0f7fa, #ffffff); /* Light blue to white gradient */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.uhack-registration .title {
  font-size: 3em;
  font-weight: bold;
  color: #14213d;
}

.uhack-registration .underline {
  width: 500px;
  height: 3px;
  background-color: #00aaff;
  margin: 0 auto 20px auto;
  border: none;
}

.uhack-registration .description {
  font-size: 2em;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

.uhack-registration .guideline-link, 
.uhack-registration .idea-link {
  color: #ff1493;
  font-weight: bold;
  text-decoration: none;
}

.uhack-registration .guideline-link:hover, 
.uhack-registration .idea-link:hover {
  text-decoration: underline;
}

.uhack-registration .register-button {
  background-color: #00aaff;
  color: #fff;
  padding: 10px 20px;
  font-size: 1.2em;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
}

.uhack-registration .register-button:hover {
  background-color: #008ecc;
}



/* Basic Footer Styles */
/* Footer Section */





/* styles.css */

/* Styles for the Past Edition Highlights section */
/* styles.css */

/* Styles for the Past Edition Highlights section */
#past-highlights {
  background: linear-gradient(to right, #f9f9f9, #e0e0e0);
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.highlights-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.highlights-container h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2.5rem;
  color: #333;
  position: relative;
  display: inline-block;
}

.highlights-container h2::before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background: #007bff;
  border-radius: 5px;
}

.highlights-achievements, .highlights-statistics, .highlights-media-gallery, .highlights-testimonials, .highlights-impact-stories, .highlights-cta {
  margin-bottom: 50px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 30px;
  transition: transform 0.3s ease;
}

.highlights-achievements:hover, .highlights-statistics:hover, .highlights-media-gallery:hover, .highlights-testimonials:hover, .highlights-impact-stories:hover, .highlights-cta:hover {
  transform: scale(1.02);
}

.highlights-container h3 {
  border-bottom: 3px solid #007bff;
  padding-bottom: 12px;
  margin-bottom: 25px;
  color: #007bff;
  font-size: 1.8rem;
}

.highlight-item, .impact-story {
  margin-bottom: 25px;
}

.media-photos img {
  width: 100%;
  max-width: 350px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.media-photos img:hover {
  transform: scale(1.05);
}

.media-videos a {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(to right, #007bff, #00aaff);
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-size: 1.2rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.media-videos a:hover {
  background: linear-gradient(to right, #0056b3, #0088cc);
  transform: translateY(-2px);
}

blockquote {
  border-left: 5px solid #007bff;
  padding-left: 20px;
  margin: 0;
  font-style: italic;
  background: #f0f8ff;
  border-radius: 10px;
  padding: 20px;
  position: relative;
  transition: background 0.3s ease;
}

blockquote::before {
  content: '“';
  font-size: 3rem;
  color: #007bff;
  position: absolute;
  top: 10px;
  left: 10px;
}

blockquote:hover {
  background: #e6f7ff;
}

.highlights-cta {
  text-align: center;
}

.cta-btn {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(to right, #007bff, #00aaff);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 1.2rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.cta-btn:hover {
  background: linear-gradient(to right, #0056b3, #0088cc);
  transform: scale(1.05);
}



/* Styling for the 'Why Primathon' Section */
.primathon-section {
  padding: 40px 20px;
  background-color: #f9f9f9;
}

/* Box with rounded corners */
.rounded-box {
  background-color: white;
  border-radius: 15px; /* Rounded corners */
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; /* Allow content to wrap on smaller screens */
}

/* Image container styling */
.primathon-image-container {
  flex: 1;
  padding-right: 20px;
}

.primathon-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* Text container styling */
.primathon-text-container {
  flex: 1.5;
  padding-left: 20px;
}

.primathon-text-container h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

.primathon-text-container p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

/* Mobile Responsive Styling */
@media (max-width: 768px) {
  /* Stack image and text containers vertically */
  .rounded-box {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  /* Remove padding between image and text containers */
  .primathon-image-container, .primathon-text-container {
    padding: 0;
  }

  /* Reduce text size for smaller screens */
  .primathon-text-container h2 {
    font-size: 24px;
  }

  .primathon-text-container p {
    font-size: 14px;
  }

  .primathon-image {
    width: 80%; /* Reduce image width for smaller screens */
    margin-bottom: 20px; /* Add spacing below the image */
  }
}

@media (max-width: 480px) {
  /* Further adjust for very small screens */
  .primathon-text-container h2 {
    font-size: 20px;
  }

  .primathon-text-container p {
    font-size: 12px;
  }

  .primathon-image {
    width: 100%; /* Full width for small mobile screens */
  }
}


.footer-logo {
  text-align: center; /* Center the logo */
  margin-bottom: 20px; /* Add some space below the logo */
}

.footer-logo-image {
  width: 150px; /* Adjust the width as needed */
  height: auto; /* Maintain aspect ratio */
}



/* Fullscreen Popup Overlay */
.fullscreen-popup-overlay {
  display: none; /* Hidden initially */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent black background */
  z-index: 1000; /* Bring it to the front */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Fullscreen Popup Image */
.fullscreen-popup-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover; /* Keeps the image ratio intact */
}

/* Close Button */
.fullscreen-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 5px 10px;
  border-radius: 50%;
  z-index: 1001; /* Above the overlay */
}




