/* Wrapper for background image */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

body {
  font-family: "Poppins", sans-serif;
  background-color: #f8f9fa;
  
}

.sponsor-wrapper {
  position: relative;
  background-image: url("../images/10515406.png");
  /* Adjust the path */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  /* Optional: sticks image while scrolling */
  /* padding: 50px 0; Space above and below */
  z-index: 0;
}

/* -----------------------------navbar------------------------------------- */
.new-header {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.top-bar {
  background-color: #fff;
  border: 2px solid black;
  padding-right: 15px;
  /* padding: 15px 0; - Adjust or remove if 'top-nav' handles it */
}

/* Updated Logo Section Styling for the new design */
.topbar-two__logo {
  position: relative;
  overflow: hidden;
  height: 105px;
  /* Increased height to accommodate the new logo graphic */
  width: 280px;
  display: flex;
  align-items: center;
  z-index: 1;
  padding: 5px 50px 10px 10px;
  background: linear-gradient(270deg, #4848f7, #fcb875, #4dbbdf);
  background-size: 600% 600%;
  animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.topbar-two__logo a {
  display: flex;
  align-items: center;
  height: 100%;
  text-decoration: none;
  /* Remove underline from anchor */
}

/* --- NEW LOGO IMAGE STYLING --- */
.logo-image {
  height: 100%;
  /* Make image take full height of its container */
  width: auto;
  /* Maintain aspect ratio */
  max-width: 200px;
  /* Adjust based on your logo's width, to prevent it from being too large */
  object-fit: contain;
  /* Ensure the entire image is visible */
  padding: 1px 0;
  /* Add some padding if your logo has space around it */
}

/* Main Background for logo section, extending to the left */
.topbar-two__logo::before {
  content: "";
  background-color: #eac99a;
  /* The light background extending left */
  width: 100vw;
  /* Extend across the full viewport width */
  height: 100%;
  position: absolute;
  top: 0;
  left: -100vw;
  /* Position far to the left */
  z-index: -2;
  /* Furthest back */
}

/* Angled cut on the right side of the logo section */
.topbar-two__logo::after {
  content: "";
  background-color: #fff;
  /* Match header background */
  width: 89px;
  /* Adjust width of the cut */
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  clip-path: polygon(60% 0,
      100% 0,
      100% 100%,
      0% 100%);
  /* Angled cut from bottom-left to top-right */
  z-index: 0;
  /* Above the light background, but behind logo content */
}

/* Contact Info Styling */
.contact-info .info-item {
  color: #555;
  font-size: 0.9rem;
}

.contact-info .info-label {
  color: #888;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.contact-info .info-detail {
  font-weight: 500;
  color: #333;
  width: 150%;
}

.icon-circle {
  width: 30px;
  height: 30px;
  background-color: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e6a756;
  /* Orange/Gold color */
  font-size: 14px;
}

/* Social Media Icons (retaining previous styles for these specific classes) */
.social-circle {
  width: 35px;
  height: 35px;
  background-color: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.social-circle:hover {
  background-color: #e6a756;
  color: #fff;
}

/* --- NEW: Organized By Section Styling --- */
.organized-by-section {
  display: flex;
  align-items: center;
  padding-right: 10px;
  /* Adjust as needed */
}

.organized-by-text {
  font-size: 0.9rem;
  color: #555;
  margin-right: 10px;
  font-weight: 800;
}

.organized-by-logo {
  max-height: 85px;
  /* Adjust height of the organizer logo */
  width: auto;
  object-fit: contain;
}

.sm-nav {
  background-color: #3a0758c0;
}

/* Main Navbar Styling */
.main-navbar {
  padding: 10px 20px;
    background-color:#6b4481;
  z-index: 1020;
  /* Ensure it's above other content */
}

.main-navbar .navbar-nav .nav-link {
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  /* padding: 0.5rem 1rem; */
  transition: color 0.3s ease;
  border-radius: 5px;
  /* Rounded corners for links */
}

.main-navbar .navbar-nav .nav-link:hover,
.main-navbar .navbar-nav .nav-link.active {
  color: #ffffff;
  /* Orange/Gold hover color */
  background-color: rgba(255,
      255,
      255,
      0.1);
  /* Subtle background on hover/active */
}

/* Dropdown specific styles */
.main-navbar .dropdown-menu {
  /* Changed from rgba to a solid color to prevent transparency issues */
  background-color: #3a0758;
  /* Dark brown/grey, not transparent */
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.3s ease-out;
  /* Smooth fade-in */
  transform-origin: top center;
  /* Animation origin */
  min-width: 220px;
  /* Ensure enough width for longer text */
}

.main-navbar .dropdown-item {
  color: #fff;
  padding: 0.75rem 1.5rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.main-navbar .dropdown-item:hover,
.main-navbar .dropdown-item:focus {
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scaleY(0.9);
  }

  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

.main-navbar .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.1);
}

.main-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Right side icons and button */
.nav-icon {
  color: #fff;
  font-size: 1.1rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-icon:hover {
  color: #e6a756;
}

.btn-style503 {
  display: inline-block;
  padding: 10px 15px;
  border: 2px solid #dd6395;
  color: #dd6395;
  background-color: transparent;
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.5s ease;
  /* font-size: small; */
}

.btn-style503:hover {
  box-shadow: inset 5em 0 0 0 #dd7e2a, inset -6.3em 0 0 0 #dd7e2a;
  border-color: #dd7e2a;
  color: #fff;
  background-color: transparent;
}

.cart-badge {
  background-color: #e6a756;
  color: #fff;
  font-size: 0.7rem;
  padding: 0.3em 0.6em;
  border-radius: 50%;
  transform: translate(50%, -50%);
  /* Adjust position for badge */
}

.btn-book-appointment-nav {
  background-color: #e6a756;
  /* Orange/Gold */
  color: #fff;
  border: none;
  padding: 0.7rem 1.5rem;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-book-appointment-nav:hover {
  background-color: #d49545;
  /* Slightly darker orange on hover */
  transform: translateY(-2px);
  color: #fff;
}

/* Offcanvas Menu Styling */
.offcanvas-header {
  background-color: #3a0758c0;
  /* Dark header for offcanvas */
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  /* Add some padding to the header */
}

.offcanvas-title {
  color: #fff;
}

/* Custom Offcanvas Logo Styling */
.offcanvas-logo {
  height: 40px;
  /* Adjust as needed, reduced size slightly */
  width: auto;
  object-fit: contain;
}

.offcanvas-body {
  background-color: #333;
  /* Match main navbar background */
  padding: 0;
  /* Remove default padding that might cause space */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* Push footer to bottom */
  height: 100%;
  /* Ensure it takes full height of offcanvas */
  overflow-y: auto;
  /* Allow scrolling within offcanvas body */
}

.offcanvas-body .navbar-nav {
  padding-top: 0;
  /* Ensure no top padding on the nav list */
  padding-bottom: 20px;
  /* Keep some bottom padding */
  flex-grow: 1;
  /* Allow nav items to take available space */
}

.offcanvas-body .navbar-nav .nav-item {
  margin-bottom: 0;
  /* Reduce space between items if needed */
}

.offcanvas-body .navbar-nav .nav-link {
  padding: 12px 20px;
  /* Larger padding for touch targets */
  border-radius: 0;
  /* Remove rounded corners for full-width links */
  color: #fff;
  text-align: left;
}

.offcanvas-body .navbar-nav .nav-link:hover,
.offcanvas-body .navbar-nav .nav-link.active {
  background-color: rgba(255, 255, 255, 0.15);
  /* Stronger hover background */
  color: #df9e42;
  /* Orange text on hover */
}

/* Offcanvas Dropdown Styles */
.offcanvas-body .dropdown-menu {
  background-color: #2b2b2b;
  /* Slightly darker for nested dropdown */
  border: none;
  box-shadow: none;
  /* No shadow for nested dropdown */
  padding: 0;
  /* Remove default padding */
  width: 100%;
  /* Full width within offcanvas */
  position: static;
  /* Important for offcanvas to flow naturally */
  transform: none !important;
  /* Override animation for static position */
  animation: none !important;
  /* Disable animation for smooth internal toggle */
  margin-top: 0;
  /* Remove margin-top */
}

.offcanvas-body .dropdown-item {
  color: #fff;
  padding: 10px 30px;
  /* Indent dropdown items */
  font-size: 0.95rem;
}

.offcanvas-body .dropdown-item:hover,
.offcanvas-body .dropdown-item:focus {
  background-color: rgba(255, 255, 255, 0.1);
  color: #df9e42;
}

.offcanvas-footer {
  padding: 20px;
  background-color: #3a0758c0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  /* Position at the bottom of the offcanvas body */
  margin-top: auto;
  /* Pushes the footer to the bottom */
}

.offcanvas-footer .social-icons .social-circle {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.offcanvas-footer .social-icons .social-circle:hover {
  background-color: #df9e42;
}

/* --- EXHIBITION DATE BANNER STYLING --- */
.exhibition-date-banner {
  background-color: #3a0758c0;
  /* Dark background */
  color: #fff;
  /* White text */
  padding: 5px 0;
  /* Vertical padding */
  font-size: 1.2rem;
  /* Slightly larger font */
  font-weight: 500;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* Subtle shadow */
}

.exhibition-date-banner .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* Space out items */
  flex-wrap: wrap;
  /* Allow items to wrap on smaller screens */
}

/* --- MODIFIED: Align text to left --- */
.exhibition-date-banner .exhibition-date-text {
  flex-grow: 1;
  /* Allow text to take available space */
  text-align: left;
  /* Align the text content to the left */
  margin-bottom: 0;
  /* Remove default paragraph margin */
}

.exhibition-date-banner .highlight-date {
  color: #df9e42;
  /* Orange/Gold for highlighting dates */
  font-weight: 700;
  /* Bold the dates */
  font-size: 1.2rem;
  /* Even larger for dates */
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
  /* Subtle glow effect */
}

.exhibition-date-banner .social-icons-banner {
  display: flex;
  /* Always display as flex for consistent spacing */
  align-items: center;
  gap: 8px;
  /* Space between social circles */
  /* No margin-top needed here if not wrapping. If it wraps, flex-wrap handles spacing. */
}

.supported-by-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.supported-by-text {
  font-weight: bold;
  margin-bottom: 0.5rem;
  color:#000;
}

.supported-by-logo {
  max-width: 150px;
  height: auto;
}

.button-group .btn {
  white-space: nowrap;
}

.button-group {
  margin-left: 1rem;
  /* or any value like 20px */
}

.contact-infoo {
  margin-right: 0px;
  justify-content: right;
}

@media (min-width: 992px) {
  .button-group {
    padding-right: 1rem;
  }
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {

  /* Adjust for smaller screens when using the image logo */
  .navbar-brand .logo-image {
    height: 60px;
    /* Adjust height for mobile logo */
    max-width: 150px;
    /* Limit width for mobile */
  }

  /* No need for specific color overrides for the image logo, it will maintain its own colors */

  /* Hide the Organized By section on small screens if it clashes */
  .organized-by-section {
    display: none !important;
  }

  /* Adjust date banner for mobile */
  .exhibition-date-banner .container-fluid {
    justify-content: flex-start;
    /* Align all content to the left */
    text-align: left;
    /* Ensure text is left-aligned within its container */
    flex-direction: column;
    /* Stack items vertically */
    align-items: flex-start;
    /* Align stacked items to the left */
  }

  .exhibition-date-banner .exhibition-date-text {
    width: 100%;
    /* Full width for text on small screens */
    margin-bottom: 10px;
    /* Space between text and icons */
    text-align: left;
    /* Ensure text is left-aligned on mobile */
  }

  /* Hide social icons on small screens (below md breakpoint) */
  .exhibition-date-banner .social-icons-banner {
    display: none !important;
    /* Hide on small screens */
  }

  .exhibition-date-banner {
    font-size: 1rem;
    /* Smaller font on very small screens */
    padding: 10px 0;
    background-color: #e7b779;
    color: black;
  }

  .exhibition-date-banner .highlight-date {
    font-size: 1.2rem;
    /* Adjust highlighted date size for smaller screens */
    color: black;
  }

  /* Adjust the offcanvas footer position to prevent hiding */
  .offcanvas-footer {
    position: sticky;
    /* Make it sticky */
    bottom: 0;
    /* Stick to the bottom */
    width: 100%;
    /* Full width */
    background-color: #3a0758c0;
    /* Ensure it has a background */
    z-index: 10;
    /* Make sure it's above other content */
  }
}

@media (max-width: 767.98px) {
  .exhibition-date-banner {
    font-size: 1rem;
    /* Smaller font on very small screens */
    padding: 10px 0;
    background-color: #e7b779;
    color: black;
  }

  .exhibition-date-banner .highlight-date {
    font-size: 1.2rem;
    /* Adjust highlighted date size for smaller screens */
    color: black;
  }
}

/* ---------------section-1------------------------------- */

.pcss-section-wrapper {
  padding: 50px 50px 0 50px;
  /* Adjust this value for desired white space */
  border-radius: 15px;
  /* Adjust this value for desired roundness */
  background-color: #ffffff;
  /* Background for the wrapper */
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); Subtle shadow */
  overflow: hidden;
  /* Ensures content respects border-radius */
}

.pcss-banner-section {
  position: relative;
  width: 100%;
  height: 100vh;
  /* Full viewport height */
  overflow: hidden;
  border-radius: 50px;
  /* background: #222; Fallback background */
}

/* Carousel Image Styling */
.pcss-carousel-item img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  /* Ensures images cover the area without distortion */
  filter: brightness(65%);
  /* Slightly brighter than before for better quality dummy images */
  transition: filter 0.8s ease-in-out;
  /* Smooth transition for brightness */
}

/* Zoom effect on carousel images */
.pcss-carousel-item.active img {
  animation: zoomEffect 8s forwards;
  /* Adjust time to match carousel interval */
}

@keyframes zoomEffect {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.05);
  }
}

/* Banner Overlay */
.pcss-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  border-radius: 50px;
  flex-direction: row;
  /* Default to row for left/right sections */
  justify-content: center;
  align-items: center;
  color: #f8f9fa;
  /* Off-white for text on dark backgrounds */
  /* padding: 20px; */
  background-color: rgba(54, 53, 53, 0.354);
  /* Semi-transparent dark overlay */
  z-index: 10;
  /* Ensure overlay is above carousel */
}

.pcss-banner-content-wrapper {
  display: flex;
  width: 100%;
  /* max-width: 1200px; Max width for content */
  justify-content: space-between;
  /* Pushes content to edges */
  align-items: center;
  /* Vertically center items in wrapper */
  padding: 0 30px;
  /* Horizontal padding */
}

/* Left Section: Event Details */
.pcss-left-section {
  flex: 2;
  /* Takes more space */
  text-align: left;
  /* Align text to the left */
  padding-right: 30px;
  /* Space between left and right sections */
}

.pcss-banner-overlay h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 38px;
  /* Slightly smaller than before */
  font-weight: 700;
  margin-bottom: 25px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
  letter-spacing: 0.05em;
  line-height: 1.2;
  animation: fadeInTop 1s ease-out forwards;
}

/* Adjusted styling for date/time details block */
.pcss-banner-overlay .pcss-date-time-details {
  display: flex;
  flex-wrap: wrap;
  /* Allow wrapping on smaller screens */
  justify-content: flex-start;
  /* Align to start for left section */
  gap: 40px;
  /* Increased space between date and time blocks */
  margin-top: 25px;
  /* Adjust top margin */
  font-size: 1.5rem;
  /* Slightly larger for better readability with icons */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  animation: fadeIn 2s ease-out forwards;
  opacity: 0;
  /* Start hidden for animation */
}

.pcss-banner-overlay .pcss-date-time-details>div {
  display: flex;
  /* Use flexbox for icon and text alignment */
  align-items: center;
  /* Vertically center icon and text */
  flex-direction: row;
  /* Keep icon and text in a row */
}

/* Specific styling for the text within the blocks */
.pcss-banner-overlay .pcss-date-time-details .pcss-text-content {
  display: flex;
  flex-direction: column;
  /* Stack date/time lines */
  align-items: flex-start;
  /* Align text to the left within its column */
  margin-left: 15px;
  /* Space between icon and text */
}

.pcss-banner-overlay .pcss-date-time-details i {
  font-size: 31px;
  /* Larger icons for impact */
  color: #ff9800;
  /* Accent orange */
  /* Apply heartbeat animation */
  animation: heartbeat 1.5s infinite alternate ease-in-out;
  display: inline-block;
  /* Essential for transform to work */
  vertical-align: middle;
  /* Align icon vertically with text content */
}

/* Heartbeat Animation */
@keyframes heartbeat {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
    /* Slightly larger pulse */
  }

  100% {
    transform: scale(1);
  }
}

.pcss-banner-overlay .pcss-date-time-details span {
  display: block;
  /* Ensure each span takes its own line */
  line-height: 1.2;
  /* Tighter line height for stacked text */
}

.pcss-banner-overlay .pcss-date-time-details .pcss-event-dates-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #f8f9fa;
  /* Keep date text light */
}

.pcss-banner-overlay .pcss-btn-register {
  background-color: #3f51b5;
  /* A deep blue for primary actions */
  border: 2px solid #3f51b5;
  font-size: 16px;
  padding: 15px 20px;
  margin-top: 40px;
  border-radius: 50px;
  transition: all 0.4s ease;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  animation: fadeInBottom 2.5s ease-out forwards;
  opacity: 0;
  /* Start hidden for animation */
}

.pcss-banner-overlay .pcss-btn-register:hover {
  background-color: transparent;
  border-color: #f8f9fa;
  transform: translateY(-5px) scale(1.02);
  color: #f8f9fa;
}

/* Right Section: Logos */
.pcss-right-section {
  flex: 1;
  /* Takes less space */
  display: flex;
  flex-direction: column;
  /* Stack logos vertically */
  align-items: center;
  /* Center logos horizontally */
  gap: 30px;
  /* Space between logos */
  animation: fadeInRight 2.5s ease-out forwards;
  opacity: 0;
  /* Start hidden for animation */
}

.pcss-supported-by-text {
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #f8f9fa;
  margin-bottom: 15px;
  /* Space between text and first logo */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pcss-logo-container {
  background-color: rgba(255,
      255,
      255,
      0.9);
  /* Slightly transparent white background for logos */
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 320px;
  /* Fixed width for logo containers */
  height: 130px;
  /* Fixed height for logo containers */
}

.pcss-logo-container img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  /* Ensure logo fits within container */
}

/* Animations for overlay elements */
@keyframes fadeInTop {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeInBottom {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .pcss-banner-overlay h1 {
    font-size: 2.5rem;
  }

  .pcss-banner-overlay .pcss-date-time-details {
    font-size: 1.3rem;
    gap: 30px;
  }

  .pcss-banner-overlay .pcss-date-time-details i {
    font-size: 2.2rem;
  }

  .pcss-banner-overlay .pcss-btn-register {
    font-size: 1.2rem;
    padding: 12px 30px;
  }

  .pcss-logo-container {
    width: 280px;
    /* Slightly smaller for tablets */
    height: 120px;
  }

  .pcss-supported-by-text {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .pcss-banner-content-wrapper {
    flex-direction: column;
    /* Stack content vertically */
    text-align: center;
    /* Center text for smaller screens */
    padding: 20px;
  }

  .pcss-left-section {
    padding-right: 0;
    margin-bottom: 40px;
    /* Space between stacked sections */
  }

  .pcss-banner-overlay h1 {
    font-size: 2rem;
  }

  .pcss-banner-overlay .pcss-date-time-details {
    font-size: 1.1rem;
    flex-direction: column;
    /* Stack date and time blocks vertically */
    gap: 20px;
    /* Adjust gap when stacked */
    justify-content: center;
    /* Center items when stacked */
    align-items: center;
    /* Center items when stacked */
  }

  .pcss-banner-overlay .pcss-date-time-details i {
    font-size: 2rem;
  }

  .pcss-banner-overlay .pcss-date-time-details .pcss-text-content {
    margin-left: 10px;
    /* Reduce margin when stacked */
    align-items: flex-start;
    /* Keep text aligned to left within its block */
  }

  /* Register button centering for small screens */
  .pcss-banner-overlay .pcss-btn-register {
    font-size: 1.1rem;
    padding: 12px 28px;
    margin-top: 30px;
    /* --- START FIX FOR BUTTON CENTERING --- */
    display: block;
    /* Make it a block element to use margin auto */
    margin-left: auto;
    /* Center horizontally */
    margin-right: auto;
    /* Center horizontally */
    /* --- END FIX FOR BUTTON CENTERING --- */
  }

  .pcss-right-section {
    margin-top: 50px;
    /* More space from button to logos */
    width: 100%;
    /* Take full width on small screens */
  }

  /* Larger logos for small screens */
  .pcss-logo-container {
    width: 250px;
    /* Bigger width for small screens */
    height: 100px;
    /* Bigger height for small screens */
    padding: 15px;
    /* More padding */
  }

  .pcss-supported-by-text {
    font-size: 1.3rem;
    /* Slightly larger text */
  }
}

@media (max-width: 576px) {
  .pcss-banner-overlay h1 {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }

  .pcss-banner-overlay .pcss-date-time-details {
    font-size: 1rem;
  }

  .pcss-banner-overlay .pcss-date-time-details i {
    font-size: 1.7rem;
  }

  .pcss-banner-overlay .pcss-btn-register {
    font-size: 0.9rem;
    padding: 8px 20px;
    margin-top: 20px;
  }

  .pcss-logo-container {
    width: 200px;
    /* Adjust further for very small screens */
    height: 80px;
  }

  .pcss-supported-by-text {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .pcss-section-wrapper {
    padding: 25px;
    /* This removes the padding on small screens */
    border-radius: 15px;
    background-color: #ffffff;
    overflow: hidden;
  }

  .pcss-banner-section {
    border-radius: 25px;
  }

  .pcss-banner-overlay {
    border-radius: 25px;
  }

  @media (min-width: 2560px) {
    .pcss-section-wrapper {
      padding: 50px 50px 0 50px;
      /* Adjust this value for desired white space */
      border-radius: 15px;
      /* Adjust this value for desired roundness */
      background-color: #ffffff;
      /* Background for the wrapper */
      /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); Subtle shadow */
      overflow: hidden;
      /* Ensures content respects border-radius */
      min-height: 20px;
      /* Example: Added min-height */
    }

    .pcss-banner-section {
      position: relative;
      width: 100%;
      height: 10vh;
      /* Full viewport height */
      min-height: 50vh;
      /* Example: Added min-height, could be more or less */
      overflow: hidden;
      border-radius: 50px;
      display: none;
      /* background: #222; Fallback background */
    }
  }
}

/* ---------------section-2------------------------------- */
.about-section {
  width: 100%;
  /* padding: 50px 0 50px 0; Space from the top */
  padding: 50px;
}

.about-image {
  border-radius: 10px;
  /* Rounded corners for the image */
  max-width: 100%;
  /* Ensure image is responsive */
  height: auto;
  /* Maintain aspect ratio */
  display: block;
  /* Remove extra space below image */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  /* Shadow for the image */
}

.about-content h2 {
  font-weight: 700;
  /* Bold heading */
  color: #343a40;
  /* Darker text color */
  margin-bottom: 25px;
  /* Space below heading */
}

.about-content p {
  color: #6c757d;
  /* Muted text color */
  line-height: 1.8;
  /* Better readability */
  margin-bottom: 20px;
  text-align: justify;
  font-weight: 600;
}

.about-content .more-text {
  display: none;
  /* Hidden by default */
}

.about-content .more-text.show {
  display: block;
  /* Show when 'show' class is added */
}

.read-more-btn {
  background-color: #007bff;
  /* Primary blue color */
  color: #ffffff;
  /* White text */
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  /* Pill-shaped button */
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
  /* Smooth transition for hover effects */
  text-decoration: none;
  /* Remove underline for anchor tag */
  display: inline-block;
  /* Allow padding and margin */
}

.read-more-btn:hover {
  background-color: #0056b3;
  /* Darker blue on hover */
  transform: translateY(-2px);
  /* Slight lift effect */
  color: #ffffff;
  /* Keep text white on hover */
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .about-section {
    /* padding: 80px 0; Top and bottom padding */
    width: 100%;

    /* border-radius: 15px; Rounded corners for the section */
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); Subtle shadow */
    margin-top: 0px;
    /* Space from the top */
    margin-bottom: 0px;
    /* Space from the bottom */
  }

  .about-image-col {
    margin-bottom: 30px;
    /* Space below image on small screens */
  }

  .about-section {
    padding: 50px;
  }
}

/* ---------------section-3------------------------------- */
.sponsors-section-body {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sponsors-section {
  background-color: #096c6c;
  padding: 30px 30px;
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sponsors-section h2 {
  color: #ffffff;
  font-weight: 500;
  font-size: 2.5em;
  position: relative;
  display: inline-block;
}

.sponsors-section h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 6px;
  background: linear-gradient(to right, #e06c75, #f7d794);
  margin: 15px auto 0;
  border-radius: 3px;
}

.decorative-brush-left,
.decorative-brush-right {
  position: absolute;
  width: 100px;
  height: 100px;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.1;
}

.decorative-brush-left {
  top: 20px;
  left: 20px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path fill="%23f7d794" d="M100 0c-27.614 0-50 22.386-50 50 0 13.807 5.514 26.307 14.47 35.32L0 200h200L135.53 85.32C144.486 76.307 150 63.807 150 50c0-27.614-22.386-50-50-50z" transform="rotate(-15 100 100)"/></svg>');
  transform: rotate(-15deg);
}

.decorative-brush-right {
  bottom: 20px;
  right: 20px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path fill="%23f7d794" d="M100 0c-27.614 0-50 22.386-50 50 0 13.807 5.514 26.307 14.47 35.32L0 200h200L135.53 85.32C144.486 76.307 150 63.807 150 50c0-27.614-22.386-50-50-50z" transform="rotate(165 100 100)"/></svg>');
  transform: rotate(165deg);
}

.sponsor-category {
  display: flex;
  flex-direction: column;
  /* Stack title and logo vertically */
  align-items: center;
  margin-bottom: 20px;
  /* Space between categories */
}

.sponsor-category h3 {
  color: white;
  margin-bottom: 15px;
  /* Space between title and logo */
  font-size: 1.8em;
}

.sponsor-logos {
  display: flex;
  justify-content: center;
  gap: 20px;
  /* Smaller gap between logos within a category */
}

.sponsor-card {
  width: 350px;
  /* Larger width */
  height: 170px;
  /* Fixed height for uniformity */
  padding: 25px;
  /* Increased padding */
  background-color: #f6f6f6cf;
  border: 1px solid #f0e6da;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.4s ease-out, box-shadow 0.4s ease-out,
    background-color 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sponsor-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg,
      transparent 0%,
      transparent 40%,
      #e06c75 50%,
      transparent 60%,
      transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  z-index: 0;
  opacity: 0.1;
}

.sponsor-card:hover::before {
  transform: translateX(100%);
}

.sponsor-card:hover {
  transform: translateY(-8px) scale(1.02);
  /* Less pronounced lift and scale */
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  background-color: #ffffff;
}

.sponsor-card img {
  width: 327px;
  /* Make image fill card width */
  /* max-width: 200px; Limit max width for smaller cards */
  height: 100px;
  margin-bottom: 10px;
  /* Reduced margin */
  border-radius: 8px;
  transition: filter 0.3s ease;
  z-index: 1;
  object-fit:contain;
}

.sponsor-card:hover img {
  filter: grayscale(0%);
}

.sponsor-card p {
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0;
  font-size: 1rem;
  z-index: 1;
}

/* Modal specific styling */
.modal-content {
  border-radius: 15px;
  background-color: #ffffff;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.modal-header {
  border-bottom: 1px solid #f0e6da;
  padding: 25px 30px;
  background-color: #f6f6f6cf;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.modal-header .btn-close {
  color: #ffffff;
  font-size: 1.3rem;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.modal-header .btn-close:hover {
  opacity: 1;
}

.modal-title {
  color: black;
  font-weight: 700;
  font-size: 1.2rem;
}

.modal-body {
  padding: 30px;
  color: #7b5f49;
}

.modal-body p {
  line-height: 1.7;
}

.modal-body h5 {
  color: #e06c75;
  font-weight: 400;
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 0.5rem;
  /* This seems too small, consider increasing if it's meant to be a subheading */
}

.modal-body ul {
  list-style: none;
  padding-left: 0;
}

.modal-body ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
}

.modal-body ul li::before {
  content: "\f058";
  font-weight: 900;
  color: #e06c75;
  position: absolute;
  left: 0;
  top: 2px;
}

.modal-footer {
  border-top: 1px solid #f0e6da;
  padding: 20px 30px;
}

.modal-footer .btn-secondary {
  background-color: #e06c75;
  border-color: #e06c75;
  color: #fff;
  font-weight: 500;
  border-radius: 10px;
  padding: 12px 25px;
  transition: background-color 0.3s ease, border-color 0.3s ease,
    transform 0.2s ease;
}

.modal-footer .btn-secondary:hover {
  background-color: #c95b65;
  border-color: #c95b65;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .sponsors-section h2 {
    font-size: 2.8rem;
  }

  .sponsor-card {
    width: 200px;
    /* Adjust card width for medium screens */
    padding: 20px;
  }

  .sponsor-card img {
    /* max-width: 150px; */
    width: 190px;
    height: 120px;
  }

  .sponsor-category h3 {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .sponsors-section h2 {
    font-size: 2.4rem;
    margin-bottom: 40px;
  }

  .sponsor-logos {
    gap: 15px;
  }

  .sponsor-card {
    width: 210px;
    /* Adjust card width for smaller screens */
    height: 140px;
    /* padding: 15px; */
  }

  .modal-title {
    font-size: 1.7rem;
  }

  .sponsor-category h3 {
    font-size: 1.4em;
  }
}

@media (max-width: 576px) {
  .sponsors-section {
    padding: 40px 15px;
  }

  .sponsors-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .sponsor-category {
    margin-bottom: 15px;
  }

  .sponsor-category h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
  }

  .sponsor-logos {
    flex-direction: column;
    /* Stack logos vertically on very small screens */
    gap: 15px;
  }

  .decorative-brush-left,
  .decorative-brush-right {
    width: 70px;
    height: 70px;
  }

  .modal-body h5 {
    font-size: 1rem;
  }

  .modal-body ul li {
    padding-left: 20px;
    font-size: 0.95rem;
  }
}

/* ---------------section-4------------------------------- */

.exhibitor-section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title .subtitle {
  color: #e53935;
  /* Red color for the subtitle */
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.section-title h2 {
  font-weight: 700;
  color: #333;
}

.section-title p.intro-text {
  max-width: 700px;
  margin: 15px auto 0;
  color: #666;
  font-size: 16px;
  line-height: 1.7;
}

/* --- Image with Decorative Border --- */
.image-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}

.image-frame {
  position: relative;
  padding: 15px;
  /* Creates space for the image to not touch the decorative border */
}

.decorative-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 90%;
  border: 4px solid #e53935;
  /* Red border */
  border-radius: 25px;
  /* Rounded corners for the border */
  z-index: 1;
}

.exhibitor-image {
  position: relative;
  width: 100%;
  border-radius: 18px;
  /* Slightly less rounded corners for the image */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 2;
  /* Ensures image is on top of the border */
}

/* --- Exhibitor Category Buttons --- */
.category-grid {
  list-style: none;
  padding: 0;
}

.category-item a {
  display: block;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px 20px;
  /* margin-bottom is now handled by the row's gutter class */
  text-decoration: none;
  color: #555;
  font-weight: 500;
  font-size: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  /* Ensures all buttons have the same height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.category-item a:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  color: #e53935;
}

/* ---------------section-5------------------------------- */
/* Custom Styles */

.visitor-section {
  padding: 80px 0;
  background-color: rgb(230, 176, 75);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title .subtitle {
  color: #e53935;
  /* Red color for the subtitle */
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.section-title h2 {
  font-weight: 700;
  color: #333;
}

.section-title p.intro-text {
  max-width: 700px;
  margin: 15px auto 0;
  color: #666;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
}

/* --- Visitor Category Buttons --- */
.visitor-category-grid {
  list-style: none;
  padding: 0;
}

.visitor-category-item a {
  display: block;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px 20px;
  text-decoration: none;
  color: #555;
  font-weight: 500;
  font-size: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  /* Ensures all buttons have the same height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.visitor-category-item a:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  color: #e53935;
}

/* ---------------------section-6------------------------------------- */

.vanue-sec {
  /* Adjusted padding for responsiveness */
  padding: 20px;
  /* Default padding for all screens */
}

@media (min-width: 768px) {
  .vanue-sec {
    padding: 50px;
    /* Larger padding for medium and larger screens */
  }
}

.event-card {
  background-color: #ffffff;
  border-radius: 15px;
  /* Rounded corners */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  /* Soft shadow */
  padding: 30px;
  margin-bottom: 20px;
  /* Space below card on smaller screens */
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Vertically center content */
  height: 100%;
  /* Ensure card takes full height of its column */
}

.event-card h2 {
  color: #3a0758c0;
  /* Blue color for the heading */
  font-weight: bold;
  margin-bottom: 25px;
}

.event-card p {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: #343a40;
  /* Darker text color */
}

.event-card p i {
  margin-right: 15px;
  color: #3a0758c0;
  /* Blue color for icons */
  font-size: 1.3rem;
}

.map-container {
  border-radius: 15px;
  /* Rounded corners for map */
  overflow: hidden;
  /* Hide overflow for rounded corners */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  /* Soft shadow */
  height: 300px;
  /* Adjusted fixed height for the map on smaller screens */
  width: 100%;
  /* Full width */
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  /* Remove default iframe border */
}

/* Responsive adjustments for larger screens */
@media (min-width: 768px) {
  .map-container {
    height: 100%;
    /* Make map take full height of its column on larger screens */
  }

  .row.h-100 {
    height: 500px;
    /* Set a fixed height for the row on larger screens to align content */
  }
}

/* ---------------section-7------------------------------- */
/* Container for the entire memories section to add overall top/bottom padding */
.memories-section-container {
  padding-top: 60px;
  /* Increased top padding for the whole section */
  padding-bottom: 60px;
  /* Added bottom padding for the whole section */
}

.mem-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
  color: #333;
  position: relative;
  animation: memFadeInDown 1s ease-out;
  font-weight: bold;
  /* Removed padding-top here as it's now on the section container */
}

@keyframes memFadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mem-swiper {
  width: 100%;
  padding: 40px 0;
  animation: memFadeInUp 1.2s ease-in;
  margin-bottom: 40px;
  /* Added space between Swiper slides and pagination */
}

@keyframes memFadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mem-slide {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s ease;
  height: 250px;
  /* Adjust this value as needed */
  display: flex;
  /* Use flexbox to center the image if necessary */
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.mem-slide::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(255, 255, 255, 0.4) 50%,
      rgba(255, 255, 255, 0.1) 100%);
  transform: rotate(25deg);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

/* Activate shine on hover */
.mem-slide:hover::before {
  animation: shineEffect 0.9s ease forwards;
  opacity: 1;
}

/* Animation keyframes */
@keyframes shineEffect {
  0% {
    transform: translateX(-100%) rotate(25deg);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: translateX(100%) rotate(25deg);
    opacity: 0;
  }
}

.mem-slide:hover {
  transform: translateY(-8px);
}

.mem-slide img {
  width: 100%;
  height: 100%;
  /* Make image take full height of the slide */
  object-fit: cover;
  /* This will crop the image to fit without distorting aspect ratio */
}

.mem-pagination {
  padding-top: 90px;
}

.mem-pagination-bullet {
  background: #007bff;
  opacity: 0.7;
}

.mem-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

/* Small screen styles */
@media (max-width: 576px) {
  .mem-title {
    font-size: 24px;
  }

  .mem-slide {
    height: 200px;
    /* Adjust height for smaller screens */
  }

  .memories-section-container {
    padding: 40px 20px 40px 20px;
  }

  .mem-swiper {
    margin-bottom: 30px;
    /* Adjust space for smaller screens */
  }
}

/* ------------------------------footer-------------------------- */

.contact-line {
  display: flex;
  align-items: center;
}

.main-content-dummy {
  flex: 1;
  background-color: #ffffff;
  /* padding: 50px; */
  text-align: center;
  border-bottom: 1px dashed #ccc;
  color: #666;
}

.logofooter {
  background-color: #3a0758c0;
  padding: 15px 0 15px 0;
}

.Organisedby {
  background-color: #ffffff;
  padding: 15px 15px 15px 15px;
}

.Supportedlogo {
  background-color: rgb(93, 150, 249);
  padding: 15px 0 15px 0;
}

/* --- Footer Styles --- */
.custom-footer {
  background-color: #f0f0f0;
  /* Light grey background for the top section */
  padding-top: 40px;
  position: relative;
  /* For the WhatsApp button */
  border-top: 1px solid #e0e0e0;
}

.custom-footer .footer-heading {
  font-size: 1.2em;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.custom-footer .footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  /* Underline width */
  height: 3px;
  background-color: #3a0758c0;
  /* Accent color */
  border-radius: 5px;
}

.custom-footer .footer-logo img {
  max-width: 180px;
  /* Adjust as needed */
  height: auto;
  margin-bottom: 15px;
  border-radius: 8px;
  /* Slightly rounded corners for the logo placeholder */
}

.custom-footer .footer-description {
  font-size: 0.9em;
  color: #555;
  line-height: 1.6;
}

.custom-footer .quick-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-footer .quick-links ul li {
  margin-bottom: 10px;
}

.custom-footer .quick-links ul li a {
  color: #555;
  text-decoration: none;
  font-size: 0.95em;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

.custom-footer .quick-links ul li a:hover {
  color: #3a0758c0;
  /* Accent color on hover */
}

.custom-footer .quick-links ul li a i {
  margin-right: 8px;
  font-size: 0.8em;
  /* Smaller arrow icon */
  color: #3a0758c0;
  /* Accent color for arrow */
  transition: transform 0.3s ease;
}

.custom-footer .quick-links ul li a:hover i {
  transform: translateX(3px);
  /* Slide arrow on hover */
}

.custom-footer .contact-info p {
  color: #555;
  font-size: 0.95em;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  /* Align icon to top of multiline text */
}

.custom-footer .contact-info p i {
  margin-right: 10px;
  color: #3a0758c0;
  /* Accent color for contact icons */
  font-size: 1.1em;
  flex-shrink: 0;
  /* Prevent icon from shrinking */
}

.custom-footer .contact-info p a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s ease;
}

.custom-footer .contact-info p a:hover {
  color: #3a0758c0;
}

.custom-footer .organization-logos img {
  max-width: 150px;
  /* Adjust as needed */
  height: auto;
  margin-bottom: 15px;
  border-radius: 8px;
}

.custom-footer .organization-logos .supported-by {
  margin-top: 25px;
  /* Space between organized by and supported by */
}

/* Copyright Section */
.footer-copyright {
  background-color: #3a0758c0;
  /* Solid accent color */
  color: white;
  padding: 15px 0;
  font-size: 0.85em;
  text-align: center;
}

/* Floating WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  /* WhatsApp green */
  color: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: transform 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
  /* Remove underline from link */
}

.whatsapp-button:hover {
  transform: scale(1.1);
  background-color: #1da851;
  /* Darker green on hover */
  color: white;
  /* Keep icon white on hover */
}

.contact-info-footer .con-info {
  justify-content: center;
  align-items: center;
  display: flex;
}

/* Responsive Adjustments */
@media (max-width: 991px) {

  .custom-footer .col-lg-3,
  .custom-footer .col-lg-2 {
    margin-bottom: 30px;
    /* Add space between columns on smaller screens */
  }

  .footer-heading {
    align-items: self-start;
    justify-content: left;
    display: flex;
  }

  .custom-footer .footer-heading::after {
    left: 12%;
    transform: translateX(-50%);
    /* Center underline on smaller screens */
  }

  .custom-footer .footer-description {
    justify-content: left;
    align-items: self-start;
    display: flex;
  }
}

@media (max-width: 767px) {
  .custom-footer .footer-heading {
    margin-bottom: 15px;
  }

  .custom-footer .footer-logo img {
    max-width: 150px;
  }

  .custom-footer .organization-logos img {
    max-width: 120px;
    justify-content: left;
    display: flex;
  }
}

/* ---------------------floating button----------------- */

.floating-book {
  position: fixed;
  top: 40%;
  /* vertically centered around 40% down */
  right: -20px;
  /* push 30px off the right edge */
  width: 180px;
  /* total visible width = 180px + 30px = 210px */
  padding: 10px 15px;
  /* vertical/horizontal padding */
  background-color: #4a0d6d;
  color: #fff;
  border-radius: 50px 0 0 50px;
  /* round only top-left & bottom-left */
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 99900;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid white;
  cursor: pointer;
}

/* Icon styling */
.floating-book i {
  margin-right: 8px;
  font-size: 1.2em;
  min-width: 24px;
  /* ensure alignment even if icon fails to load */
}

.floating-book a {
  text-decoration: none;
  font-weight: 600;
  color: #fff;
}

/* Hover / Focus effect */
.floating-book:hover,
.floating-book:focus {
  transform: translateY(-3px) translateX(2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  color: #fff;
}

/* Responsive tweaks */

/* On tablets and smaller (≤ 768px), pull it in a bit and shrink text/icon */
@media (max-width: 768px) {
  .floating-book {
    top: 45%;
    right: -6px;
    width: 160px;
    padding: 8px 12px;
    font-size: 15px;
    border-radius: 40px 0 0 40px;
  }

  .floating-book i {
    margin-right: 6px;
    font-size: 1.1em;
  }
}

/* On phones (≤ 576px), pull it in even more and shrink further */
@media (max-width: 576px) {
  .floating-book {
    top: 50%;
    right: -20px;
    width: 140px;
    padding: 6px 10px;
    font-size: 13px;
    border-radius: 35px 0 0 35px;
    margin-right: 14px;
  }

  .floating-book i {
    margin-right: 4px;
    font-size: 1em;
  }
}

/* About Page  */

.breadcrumb-section {
  margin: 50px 50px 0 50px;
  border-radius: 15px;
  padding-block-start: 70px;
  padding-block-end: 20px;
  /* margin-top: -30px; */
  background-color: #96c03e;
}

.breadcrumb-title {
  /* font-size: 2rem; */
  margin-bottom: 0.5rem;
  color: #fff;
  font-weight: 700;
}

.breadcrumb {
  font-size: 0.9rem;
  color: #fff;
}

.breadcrumb-link {
  text-decoration: none;
  color: #fff;
}

.breadcrumb-separator {
  margin: 0 0.5em;
}

.breadcrumb-current {
  color: #fff;
  font-weight: 500;
}

/* Exhibitor Page */

.exhibitor-section {
  background: #f8f9fa;

}

.exhibitor-section .exhibitor-form {

  border-radius: 12px;
  padding: 2rem;
  color: #fff;
  border: 1px solid #dee2e6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Section title */
.section-title {
  font-size: 2rem;
  color: #000;
  font-weight: 700;
}

/* Section subtitles */
.section-subtitle {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #000;
  /* border-bottom: 1px solid rgba(255,255,255,0.6); */
  display: inline-block;
  padding-bottom: 0.25rem;
}

/* Form labels (for the first two selects/inputs) */
.exhibitor-form .form-label {
  font-weight: 600;
  color: #000;
}

/* Inputs & selects */
.exhibitor-form .form-control,
.exhibitor-form .form-select {
  /* border: none;
  border-radius: 4px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem; */
  border: 1px solid #6b4481;
  border-radius: 0.5rem;
  background-color: #fff;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  color: #000;
}

/* Placeholder color */
.exhibitor-form .form-control::placeholder,
.exhibitor-form .form-select {
  color: #000;
}

@media (max-width: 575px) {
  .exhibitor-form {
    padding: 1.5rem;
  }
}

/* Visitor Regictration Page */
.registration-section .text-blue {
  color: #000;
  padding-bottom: 20px;
}

.registration-section {
  padding: 2rem 0;
}

.registration-section h2 {
  font-weight: 600;
}

.registration-section .status {
  color: #e63946;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.registration-section .form-control,
.registration-section .form-select {
  border-radius: 0.375rem;
  background-color: #f8f9fa;
  color: #000;
  border: 1px solid #6b4481;
}
.form-select:focus{
  box-shadow: none !important;
  border: 1px solid #6b4481 !important;
}

.registration-section .img-container {
  text-align: center;
}

.registration-section .img-container img {
  max-width: 100%;
  border-radius: 1.5rem;

}

.registration-section .dates .form-check {
  margin-bottom: .75rem;
}

.form-control:focus {
  border:1px solid  #6b4481 !important;
  box-shadow: none !important;

}



/* Why Exhibit Page */
.feature-section {
  background-color: #f9f9f9;
}

/* Tick‑mark bullet list */
.tick-list {
  list-style: none;
  padding-left: 0;
}

.tick-list li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

/* inject a green tick icon before each li */
.tick-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: #000;
  /* bootstrap success green */
  font-weight: bold;
}

/* Contact Us Page */

.info-section {
  background-color: #f8f9fa;
}

.info-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  padding: 1.5rem;
  height: 100%;
}

.info-icon {
  font-size: 1.75rem;
  color: #6b4481;
  flex-shrink: 0;
}

/* Title in your brand red */
.info-title {
  color: #6b4481;
  font-size: 1.25rem;
  margin: 0;
  font-weight: 600;
}

.info-text {
  color: #000;
  margin: 0.25rem 0 0;
  line-height: 1.5;
}

.info-text a {
  color: #000;
  text-decoration: none !important;
}

.info-text a:hover {
  color: #0997d4;

}

/* ======= Section Styles ======= */
.contact-section {
  padding: 4rem 1rem;
  background-color: #f8f9fa;
}

.contact-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
}

.contact-section .section-header p {
  color: #000;
  font-size: 1rem;
  margin-top: 0.5rem;
}

/* ======= Form Wrapper ======= */
.contact-section .form-wrapper {
  border: 1px solid #dee2e6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  padding: 2rem;
  border-radius: 1rem;
}

/* ======= Inputs & Textarea ======= */
.contact-section .form-control {
  border: 1px solid #6b4481;
  border-radius: 0.5rem;
  background-color: #fff;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  color: #000;
}

.contact-section .form-control:focus {
  box-shadow: none;
  border-color: #ced4da;
}

/* floor plan page */

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1050; /* Bootstrap offcanvas uses up to 1045 */
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms ease;
  visibility: hidden;
  opacity: 0;
  overflow-y: auto;
}

.popup h2 {
  margin-top: 0;
  color: #008bcf;
 
}
.overlay:target {
  visibility: visible;
  opacity: 1;
}

.popup {
  position: relative;
  margin: 70px auto;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  width: 90%;
  max-width: 700px;
  z-index: 1100; /* Ensure it's on top */
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.popup .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
  z-index: 1110;
}

.popup .close:hover {
  color: #008bcf;
}
.popup .content {
  max-height: 30%;
  overflow: auto;
}

@media screen and (max-width: 700px){
  .box{
    width: 70%;
  }
  .popup{
    width: 70%;
  }
}

/* Adjust .logo-image on screens 1024px wide and below */
@media (max-width: 1024px) {
  .logo-image {
    max-width: 100px;   /* reduce logo width for laptop screens */
    padding: 0.5px 0;  /* tighten vertical padding */
  }
}

.pad_class{
    padding-left:207px;
}
.date-change{
    font-size:14px;
}
.btn {
      padding: 10px 20px;
      margin: 10px;
      border: none;
      cursor: pointer;
      font-size: 16px;
      transition: all 0.3s ease;
      font-weight: 600;
      border-radius: 10px;
      color:white !important;
  }
  
   .btn:hover {
      color: black !important;
      background-color: #dd7e2a;

  }

  /* 1. Pulse Animation */
  .btn-pulse {
      background-color:#dd7e2a;
      color: white ;
      animation: pulse 1.5s infinite;
  }

  @keyframes pulse {
      0% {
          transform: scale(1);
      }

      50% {
          transform: scale(1.1);
      }

      100% {
          transform: scale(1);
      }
  }
  .header-btn{
      background-color:#dd7e2a;
  }