body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
   
  }
  
  .event-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    background-color: white;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  
  .event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .event-image {
    border-radius: 8px;
    width: 100%;
    height: auto;
  }
  
  .fade-in {
    opacity: 0;
    transition: opacity 1s;
  }
  
  .fade-in.visible {
    opacity: 1;
  }
  
  /* Scroll buttons */
 
  .scroll-to-bottom {
    position: fixed;
    right: 20px;
    background: rgba(0, 123, 255, 0.8); /* Semi-transparent background */
    color: white;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
    display: none; /* Hidden by default */
    transition: background 0.3s, transform 0.3s;
    font-size: 24px; /* Increased size for better visibility */
    text-align: center; /* Center the icon */
    animation: back 3s infinite ease-in-out;
    transition: 0.2s all;
  }
  @keyframes back {
    0% {
        transform: translateY(-20px) rotate(0deg) scale(1);
        padding: 15px;
        background-color: #007bff; /* Starting color */
    }
    20% {
        transform: translateY(10px) rotate(2deg) scale(1.05); /* Slight upward movement and rotation */
        padding: 12px;
        background-color: #0069d9; /* Intermediate color */
    }
    40% {
        transform: translateY(-5px) rotate(-2deg) scale(1); /* Back to normal position */
        padding: 13px;
        background-color: #0056b3; /* Middle color */
    }
    60% {
        transform: translateY(5px) rotate(2deg) scale(1.05); /* Slight downward movement and rotation */
        padding: 12px;
    }
    80% {
        transform: translateY(-10px) rotate(-2deg) scale(1); /* Back to normal position */
        padding: 13px;
    }
    100% {
        transform: translateY(20px) rotate(0deg) scale(1);
        padding: 10px;
        background-color: #007bff; /* Ending color */
    }
}


 
  
  .scroll-to-top {
    position: absolute;
    left: 20px;
    top: 3000px;
    background: rgba(0, 123, 255, 0.8); /* Semi-transparent background */
    color: white;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
    display: none; /* Hidden by default */
    transition: background 0.3s, transform 0.3s;
    font-size: 24px; /* Increased size for better visibility */
    text-align: center; /* Center the icon */
    animation: back 3s infinite ease-in-out;
    transition: 0.2s all;
  }
  
  .scroll-to-bottom {
    bottom: 20px; /* Positioning for the bottom button */
  }
  
  /* Add hover effect */
  .scroll-to-top:hover,
  .scroll-to-bottom:hover {
    background: rgba(0, 56, 123, 0.8); /* Darker blue on hover */
    transform: scale(1.1); /* Slightly enlarge on hover */
  }
  
  /* Icon rotation effect */
  .scroll-to-top i,
  .scroll-to-bottom i {
    transition: transform 0.3s;
  }
  
  /* Rotate icon on hover */
  .scroll-to-top:hover i {
    transform: rotate(360deg); /* Rotate on hover */
  }
  
  .scroll-to-bottom:hover i {
    transform: rotate(-360deg); /* Rotate on hover */
  }
  /* Hero Section */

  .hero-section {
    height: 90vh;
    background-image: url('Symposium-Photo-1-1536x1024.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-top: 56px;
    position: relative;
    overflow: hidden;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    padding: 0 15px;
  }
  
  /* Background Overlay for Better Contrast */

  
  /* Hero Container for Text */
  /* Hero Section Styles */
.hero-section {
    background: linear-gradient(to bottom, rgba(0, 0,0, 0.7), rgba(255, 255, 255, 0.4)), url('sympoback.jpeg') center center/cover no-repeat;
    height: 100vh;
    display: flex;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    padding-top: 100px; /* Adjust for spacing */
    padding-bottom: 100px; /* Adjust for spacing */
    position: relative;
    overflow: hidden;
}

/* Hero Container for alignment */
.hero-container {
    z-index: 2;
    max-width: 900px;
    margin:16%;
}

/* Hero Title Styling */
.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
}

/* Hero Subtitle Styling */
.hero-subtitle {
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

/* Hero Description Styling */
.hero-description {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

/* Additional Info Styling */
.hero-additional-info {
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: -1rem;
}

/* Hero Button */
.hero-button {
    font-size: 1.2rem;
    font-weight: 500;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.hero-button:hover {
    transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-title {
      font-size: 1.3em;
      margin-top:22px; /* Increased for better visibility */
  }
  .hero-subtitle {
      font-size: 1.1rem;
white-space:nowrap;/* Slightly larger */
  }
  .hero-description {
      font-size: 1rem;
margin-bottom:1rem; /* Keep this size */
  }
  .hero-additional-info {
      font-size: 0.9rem; /* Increased for better visibility */
  }
  .hero-button {
      font-size: 1rem; /* Increased for better visibility */
      padding: 0.75rem 2rem; /* Increased padding */
      background-color: #007bff; /* Ensure contrast */
      color: white; /* Ensure text is readable */
  }
}

/* Animations using Animate.css */
.animate-slide-in {
    animation: slideInFromLeft 1.2s ease-out;
}

.animate-slide-in-delay {
    animation: slideInFromLeft 1.5s ease-out;
}

.animate-fade-in {
    animation: fadeIn 1.8s ease-in;
}

.animate-bounce-in {
    animation: bounceIn 2s ease-out;
}
@keyframes slide-out {
  0% {
      transform: translateX(0); /* Start at original position */
      opacity: 1;
  }
  100% {
      transform: translateX(100%); /* Move off-screen to the right */
      opacity: 0;
  }
}
.animate-slide-out {
  animation: slide-out 0.8s ease forwards; /* Duration, timing, and play direction */
  opacity: 1; /* Ensure elements are visible initially */
}

.animate-slide-out.delay-1 {
  animation-delay: 0.2s;
}
.animate-slide-out.delay-2 {
  animation-delay: 0.4s;
}
.animate-slide-out.delay-3 {
  animation-delay: 0.6s;
}
/* Add more delay classes as needed */
@keyframes fade-up {
  0% {
      transform: translateY(20px); /* Start slightly below */
      opacity: 0;
  }
  100% {
      transform: translateY(0); /* End at original position */
      opacity: 1;
  }
}

.fade-up {
  opacity: 0; /* Hidden by default */
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.show {
  animation: fade-up 0.6s ease forwards; /* Duration and timing */
  opacity: 1;
  transform: translateY(0);
}

/* Custom Animations Keyframes */
@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-50%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes bounceIn {
    0%, 20%, 40%, 60%, 80%, 100% {
        transition-timing-function: cubic-bezier(0.8, -0.5, 0.2, 1.4);
    }
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

/* Navbar Styles */
.navbar {
    background-color: rgba(255, 255, 255, 1) !important; /* Semi-transparent background */
    transition: background-color 0.5s, box-shadow 0.5s; /* Smooth transition */
  }
  
  .navbar.scrolled {
    background-color: rgba(255, 255, 255, 1) !important; /* Fully opaque when scrolled */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); /* Shadow effect on scroll */
  }
  
  .nav-link {
    font-size: 16px; /* Font size */
    margin: 0 15px; /* Horizontal margin */
    transition: color 0.3s; /* Smooth color transition */
  }
  
  .nav-link:hover {
    color: #007bff; /* Change color on hover */
    font-size: 20px;
  }
  
  .dropdown-menu {
    border-radius: 0; /* Remove default border radius */
  }
  
  .dropdown-item:hover {
    background-color: rgba(0, 123, 255, 0.1); /* Light blue background on hover */
  }
  
  /* Media Query for Responsive Design */
  @media (max-width: 768px) {
    .navbar {
      padding: 10px 0; /* Reduce padding on mobile */
    }
  }
  /* Contact Section */
    /* Contact Section */


/* Styling for the container */
/* General Container Styling */
.about-container {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  margin-top:-23px;
}

/* Title Styling with Icon */
.about-title {
  font-size: 2.5rem;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 25px;
  border-bottom: 3px solid #3498db;
  display: inline-block;
  padding-bottom: 10px;
}

.about-title i {
  margin-right: 8px; /* Space between icon and text */
  color: #3498db; /* Blue color for the icon */
}

/* Content Area */
.about-content {
  display: grid;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: #34495e;
}

/* Description Paragraph with Icon */
.about-description {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #555;
}

.about-description i {
  margin-right: 8px; /* Space between icon and text */
  color: #f39c12; /* Orange color for the lightbulb icon */
}

/* List of Details */
.about-details {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

/* List Item Styling with Icons */
.about-details li {
  font-size: 1.1rem;
  background-color: #ffffff;
  padding: 12px 18px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 10px;
  color: #2c3e50;
  transition: transform 0.3s ease;
}

/* Icon Styling in List Items */
.about-details li i {
  color: #3498db; /* Blue color for all icons */
  font-size: 1.3rem;
}

/* Hover Effect for List Items */
.about-details li:hover {
  transform: translateY(-5px);
  background-color: #3498db;
  color: white;
}

.about-details li:hover i {
  color: white; /* Change icon color on hover */
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .about-content {
      text-align: left;
      padding: 0 10px;
  }

  .about-title {
      font-size: 2rem;
  }

  .about-details li {
      font-size: 1rem;
  }
}


/* Modal styles */
#events {
  position: relative;
}

.event-item {
  cursor: pointer;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 5px;
  transition: background-color 0.3s, border 0.3s;
}

.event-item:hover {
  background-color: #3694f9;
  color: white;
  border: 1px solid #09090a;
}

/* Popup Styles */
.popup {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
}

.popup-content {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.5s;
  width: 80%;
  max-width: 600px;
}

.close-btn {
  cursor: pointer;
  font-size: 20px;
  position: absolute;
  right: 20px;
  top: 20px;
}

@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}
/* General Styles */
.fade-in {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.fade-in.visible {
  opacity: 1;
}

/* Modal Styles */
.close {
  color: #aaa;
  position: absolute; /* Position it relative to the modal */
  top: 10px; /* Distance from the top */
  right: 20px; /* Distance from the right */
  font-size: 36px; /* Increased font size */
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s; /* Smooth color transition */
}

.close:hover,
.close:focus {
  color: black; /* Change color on hover */
  text-decoration: none;
}

/* Animation keyframes */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from { transform: translateY(-50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}




/* Basic Styling */

.events-marquee {
  overflow: hidden; /* Hide anything outside of the container */
  background-color: #f1f1f1; /* Background color for the marquee */
  position: relative;
  padding: 10px 0; /* Add some vertical padding */
}
.marquee-content {
  display: flex; /* Use flexbox for horizontal alignment */
  animation: marquee 30s linear infinite ; /* Animation for the marquee */
}

.event-item {
  padding: 0 50px; /* Spacing between event items */
  white-space: nowrap; /* Prevent line breaks */
  font-size: 18px; /* Font size for event text */
  cursor: pointer; /* Pointer cursor on hover */
  transition: transform 0.2s ease, color 0.2s ease; /* Animation on hover */
}

.event-item:hover {
  transform: scale(1); /* Slightly increase size on hover */
  background-color:#28a745;

 
}

.model ul li::marker
{
  content:"✅";
  font-size:15px;
}


/* Modal Background Overlay */
.model
{
display: none; /* Hidden by default, shown when needed */
position: relative; /* Ensures it appears above other elements */
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0, 0, 0, 0.85); 
}/* Adds a semi-transparent black background */


/* Modal Content Box */
.modal-content {
    background-color: #ffffff; /* Light background for better contrast */
    color: #333333; /* Dark text for readability */
    margin: 10% auto; /* Centered vertically and horizontally */
    padding: 20px;
    border: 2px solid #3498db; /* Blue border for emphasis */
    border-radius: 12px;
    width: 80%; /* Default width for desktop */
    max-width: 600px; /* Maximum width constraint */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5); /* Subtle shadow */
    animation: fadeIn 0.5s ease; /* Fade-in animation */
    position: relative; /* Relative positioning for internal alignment */
}

/* Close Button Styling */
.close {
    color: #e74c3c; /* Red for clear visibility */
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    transition: color 0.3s ease;
}

/* Close Button Hover Effect */
.close:hover {
    color: #ff6b6b;
}

/* Title Icon and Styling */
.icon-event {
    color: #3498db; /* Blue color for the event icon */
    margin-right: 8px;
}

/* Title Styling */
.modal-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    border-bottom: 2px solid #3498db; /* Accent line for title */
    padding-bottom: 8px;
    display: flex;
    align-items: center;
}

/* General Paragraph Styles */
.modal-content p {
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.6;
}

/* Bold Text for Date and Venue */
.modal-content p strong {
    color: #3498db; /* Blue for bold items */
    font-weight: 600;
}

/* Event Rules and Guidelines Icon */
.modal-content #modalRules span {
    font-size: 1.2rem;
    color: #27ae60; /* Green icon color for emphasis */
    margin-right: 8px;
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
#modalTitle
{
  text-align: center;
  font-size: 20px;
}
/* Responsive Design for Smaller Screens */
@media screen and (max-width: 768px) {
    .modal-content {
        width: 90%; /* Slightly narrower for mobile */
        padding: 15px;
    }

    .close {
        font-size: 24px;
        top: 10px;
        right: 10px;
    }

    .modal-content h2 {
        font-size: 1.6rem;
    }

    .modal-content p {
        font-size: 0.95rem;
    }
}


@keyframes marquee {
  0% { transform: translateX(100%); } /* Start from the right */
  100% { transform: translateX(-100%); } /* Move to the left */
}
.event-list {
  list-style-type: none;
  padding: 0;
}

/* Advanced Card Styling */
/* General Card Styles */
.advanced-card {
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 12px;
}

.advanced-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Event Item Styles */
.event-list {
    margin: 0;
    padding: 0;
}

.event-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.event-item:hover {
    background-color: rgba(0, 126, 245, 0.651);
    box-shadow: 0px 6px 12px rgba(2, 128, 245, 0.1);
}

.event-icon {
    font-size: 1.5rem;
    margin-right: 10px;
}

.event-title {
    font-weight: bold;
    font-size: 1.1rem;
    margin-right: auto;
}

/* Button Styles */
.view-more-btn {
    background-color: #17a2b8;
    color: white;
    border: none;
    padding: 6px 16px;
    font-size: 0.9rem;
    border-radius: 5px;
    transition: background-color 0.3s;
    white-space: nowrap;  /* Prevents button text wrapping */
    flex-shrink: 0;        /* Prevents button from shrinking */
}

.view-more-btn:hover {
    background-color: #138496;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .advanced-card {
        padding: 20px;
    }

    .event-item {
        padding: 10px;
        font-size: 0.95rem;
        flex-direction: column;  /* Stack items vertically on smaller screens */
        align-items: flex-start;  /* Align items to the left */
    }

    .event-title {
        margin-bottom: 8px;  /* Add spacing between title and button */
        font-size: 1rem;      /* Adjust font size for mobile */
    }

    .view-more-btn {
        font-size: 0.85rem;       /* Slightly reduce font size on mobile */
        padding: 8px 12px;        /* Adjust padding for mobile screens */
        width: 100%;              /* Make the button full-width on mobile */
        text-align: center;       /* Center-align text in the button */
        margin-top: 8px;          /* Add margin on top for spacing */
    }
}


.animated-heading {
  font-size: 2.5rem; /* Adjust the size as needed */
  font-weight: bold; /* Make the text bold */
  color: #007bff; /* Change to your preferred color */
  text-align: center; /* Center the text */
  margin: 20px 0; /* Add margin above and below */
  position: relative; /* Required for the pseudo-element */
  overflow: hidden; /* Hide overflow for the animation effect */
}

.animated-heading::before {
  content: ""; /* Pseudo-element for animation */
  position: absolute; /* Position it absolutely */
  height: 5px; /* Height of the underline */
  width: 0; /* Start width at 0 */
  background-color: #007bff; /* Color of the underline */
  bottom: 0; /* Align to the bottom of the heading */
  left: 50%; /* Start from the middle */
  transition: width 0.5s ease, left 0.5s ease; /* Animation for width and position */
}

.animated-heading:hover::before {
  width: 100%; /* Full width on hover */
  left: 0; /* Align to the left */
}


/* General Styles */
.fade-in {
  opacity: 0;
  animation: fadeIn 1s forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }
.delay-6 { animation-delay: 1.2s; }

/* Fade-in Keyframes */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Contact Item Styles */
.contact-info-wrapper {
  margin: 20px 0;
}

.contact-item {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 15px;
  margin: 10px;
  width: 300px; /* Adjust width as needed */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.icon-animate {
  font-size: 2rem;
  color: #007bff; /* Icon color */
  transition: color 0.3s, transform 0.3s;
}

.icon-animate:hover {
  color: #0056b3; /* Hover color */
  transform: scale(1.1); /* Scale on hover */
}

/* Link Styles */
.contact-link {
  font-weight: bold;
  color: #007bff; /* Link color */
  text-decoration: none;
  transition: color 0.3s;
}

.contact-link:hover {
  color: #0056b3; /* Link hover color */
}

/* Button Hover Styles */
.animate-btn {
  padding: 10px 20px;
  border-radius: 4px;
  transition: transform 0.3s, background-color 0.3s;
}

.animate-btn:hover {
  background-color: #0056b3; /* Button hover color */
  transform: scale(1.05);
}

/* Contact Form Styles */
.contact-form .form-wrapper {
  max-width: 600px;
  margin: 20px auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.form-control:focus {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Custom styles */
.contact-info-wrapper {
  margin-bottom: 30px; /* Space between contact items and location */
}

.contact-item {
  flex: 1 1 200px; /* Allow items to be responsive */
  margin: 10px;
  transition: transform 0.3s; /* Animation on hover */
}

.contact-item:hover {
  transform: scale(1.05); /* Slight scaling effect on hover */
}

.icon-animate {
  font-size: 40px; /* Increase icon size */
  color: #007bff; /* Bootstrap primary color */
  margin-bottom: 10px; /* Space below icon */
}

.location-section {
  background-color: #f8f9fa; /* Light background for location */
}

.location-box {
  background-color: white; /* White background for the box */
  border-radius: 10px; /* Rounded corners */
  transition: transform 0.3s; /* Animation on hover */
}

.location-box:hover {
  transform: translateY(-5px); /* Lift effect on hover */
}

.location-icon {
  font-size: 40px; /* Increase icon size */
  color: #007bff; /* Bootstrap primary color */
}

.location-text {
  font-size: 16px; /* Adjust font size for location text */
  color: #333; /* Dark text color */
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeIn 0.5s forwards; /* Animation for fading in */
}

@keyframes fadeIn {
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Delays for fade-in */
.delay-1 {
  animation-delay: 0.1s;
}
.delay-5 {
  animation-delay: 0.5s;
}
.location-section {
  background: url('2021-09-28.jpg') no-repeat center; /* Center the image */
  background-size: 600px; /* Set the width of the background image */
  padding: 50px 0; /* Add padding for spacing */
  color: black; /* Set text color to black for visibility */
}

.location-box {
  background: rgba(255, 255, 255, 0.8); /* Optional: semi-transparent background for better text readability */
  border-radius: 10px; /* Rounded corners for the box */
  padding: 20px; /* Padding inside the box */
  position: relative; /* Position for better layering */
  z-index: 1; /* Bring the box in front of the background */
}



#registration {

  padding: 80px 0;
}

.registration-wrapper {
   background-color: white;
  padding: 40px;
  border-radius: 10px;
 border:2px solid whitesmoke;
}

.registration-wrapper h2,
.registration-wrapper h4,
.registration-wrapper h5,
.registration-wrapper p {
  color: bleck; /* Set text color to black */
}

.registration-wrapper .btn {
  background-color: #007bff; /* Default Bootstrap primary button color */
  border: none;
  padding: 10px 20px;
  font-size: 18px;
  border-radius: 5px;
  color: white;
}

.registration-wrapper .btn:hover {
  background-color: #0056b3; /* Darker blue on hover */
}

.badge-success {
  background-color: #28a745;
  padding: 5px 10px;
  font-size: 14px;
  border-radius: 3px;
  color: white;
}
.custom-list {
  list-style-type: none; /* Remove default markers */
  padding: 0; /* Remove padding */
}

.custom-list li {
  position: relative; /* Position for pseudo-element */
  padding-left: 20px; /* Space for custom marker */
}

.custom-list li:before {
  content: "✔"; /* Custom marker (checkmark) */
  position: absolute; /* Position it absolutely */
  left: 0; /* Align to the left */
  color: #007bff; /* Custom color */
  font-size: 20px; /* Size of the marker */
}
#a
{
  height: 30px;
  width: 30px;
}
#registration a img,.b
{
  height: 20px;
  width:20px;
}

nav ul li:hover
{
  font-size: 20px;
}
.rules-icon {
  font-size: 18px;
  color: #3498db; /* Adjust color as needed */
  margin-right: 8px;
  vertical-align: middle;
}
/* General Marquee Section Styling */

/* Modal Image Styling */
/* Centered Title with Advanced Font Styling */
.centered-title {
  text-align: center; /* Center the title text */
  font-family: 'Poppins', sans-serif; /* Use a modern, clean font like Poppins */
  font-size: 2rem; /* Adjust the size of the title */
  color: #333; /* Darker color for better readability */
  font-weight: 700; /* Bold text for emphasis */
  letter-spacing: 1.5px; /* Slight spacing between letters */
  text-transform: uppercase; /* Uppercase for a formal look */
  margin: 20px 0; /* Space above and below the title */
  position: relative; /* Enable pseudo-elements */
}

/* Decorative Line Under Title */
.centered-title::after {
  content: '';
  display: block;
  width: 60px; /* Width of the line below the title */
  height: 4px; /* Thickness of the line */
  background-color: #007bff; /* Accent color */
  margin: 10px auto 0 auto; /* Center the line and add spacing */
  border-radius: 2px; /* Rounded edges for the line */
}

/* Optional Icon Style */
.centered-title i.icon-event {
  margin-right: 10px; /* Space between the icon and text */
  color: #007bff; /* Accent color for the icon */
  font-size: 1.8rem; /* Slightly larger icon size */
}

/* Hover Effect for Title */
.centered-title:hover {
  color: #007bff; /* Change color on hover */
  transition: color 0.3s ease; /* Smooth transition for color */
}


/* Font Import (if needed) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');
/* Card styling */
/* Base Date Card Styles */
.date-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  background-color: #f3f4f6; /* Light background */
  color: #333; /* Text color */
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 120px;
  margin-left: auto;
}

/* Style for day abbreviation */
.date-day-abbreviation {
  font-size: 1.2rem;
  font-weight: bold;
  color: #ff6347; /* Example color for day abbreviation */
  margin-bottom: 0.5rem;
}

/* Style for the day */
.date-day {
  font-size: 2rem;
  font-weight: bold;
}

/* Style for the month */
.date-month {
  font-size: 1rem;
  color:black;
  margin-top: 0.5rem;
}

/* Responsive adjustments for mobile screens */
@media (max-width: 600px) {
  .date-details {
      position: fixed;
      right: 1px;
      flex-direction: column;
      font-size: 0.8rem;
      padding: 0.1rem;
      max-width: 80px; /* Reduce max-width for mobile */
      z-index: 1000; /* Ensure it stays on top */
  }

  /* Adjust font sizes for mobile */
  .date-day-abbreviation {
      font-size: 1rem;
  }
  .date-day {
      font-size: 1.5rem;
  }
  .date-month {
      font-size: 0.8rem;
  }
}
@media (max-width: 600px) {
    .marquee-content {
        animation: marquee 30s linear infinite; /* Faster marquee speed on mobile */
    }
}
#particle-container {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}
.particle {
    position: absolute;
    width: 20px;
    height: 20px;
  background: linear-gradient(to right, #ff7e5f, #feb47b, #86a8e7);
    border-radius: 50%;
  
}
.carousel-container {
    width: 80%;
    margin: auto;
    padding: 40px 0;
}

.owl-carousel .item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    transition: transform 0.3s;
}

.owl-carousel .item img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s;
}

.owl-carousel .item:hover img {
    transform: scale(1.1) rotate(5deg); /* Zoom and slight rotation on hover */
}



