/* Hero section styles */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-section .carousel-item {
  height: 100vh;
  max-height: 500px;
}

.hero-section .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-caption {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0 !important;
  width: 100%;
  height: 100%;
  padding: 20px;
  text-align: center;
 
}


@media (max-width: 700px) {
  .hero-section .carousel-item {
    height: auto;
  }
  
  .hero-section .carousel-item img {
    height: auto;
  }

  .carousel-caption {
    padding: 10px;
    }
  
  .carousel-caption h2.display-4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .carousel-caption h2 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }
  
  .carousel-caption h4 {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 1rem;
  }
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f7f7f7;
}

header {
    background: #060047;
    color: #fff;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1em;
}

.logo {
   width: 200px;
   height: auto;
   padding-left: 24px;
}

.nav-menu {
    display: flex;
    gap: 1em;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    padding: 1.75em 1.75em;
    border-radius: 4px;
    transition: background 0.2s;
}

.nav-menu a:hover {
    background: #444;
}

main {
    
    background: #fff;
}

footer {
    text-align: center;
    color: #fff;
    position: relative; /* Updated to relative positioning */
    width: 100%;
    bottom: auto; /* Removed fixed bottom positioning */
}

form {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

input,
button {
    padding: 0.5em;
    border-radius: 4px;
    border: 1px solid #ccc;
}

button {
    background: #FF2D55;
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(6,0,71,0.08);
    transition: background 0.2s;
}
.btn-primary {
    background: #FF2D55!important;
    color: #fff;
    border: none;
    font-weight: 600;
    padding: 0.5em 1em;
    text-decoration: none;
    display: inline-block;
}

button:hover {
    background: #da1c3f;;
}
.speaker {
    color: #ffffff;
}
.speaker-company {

    color: #ffffff !important;
}
.speaker-designation {
    color: #ffc107;
}
.footer-bg {
    background-color: #00165c!important;
    color: #fff;
}
.event-highlights {
    background-color: #fff3cd;
    width: 100%;
    border-radius: 20px !important;
    padding: 30px 40px !important;
}
.why-sponsor-list .list-group-item {
  background: #f8f9fa;
  border: none;
  font-size: 1.1rem;
  padding-left: 2.2em;
  position: relative;
  margin-bottom: 0.5em;
  border-radius: 8px;
}
.why-sponsor-list .list-group-item::before {
  content: '✔️';
  position: absolute;
  left: 1em;
  color: #28a745;
  font-size: 1.2em;
  top: 50%;
  transform: translateY(-50%);
}
.accordion-button:hover,
.accordion-button:focus {
  background-color: #1a1655 !important; /* Deep blue */
  color: #fff !important;
  box-shadow: none;
}
#showMoreSpeakers {
  font-weight: 600;
  padding: 0.5rem 2rem;
  border-radius: 2rem;
  transition: background 0.2s, color 0.2s;
}
#showMoreSpeakers:hover, #showMoreSpeakers:focus {
  background: #060047;
  color: #fff;
  border-color: #060047;
}
.nav-spacing {
    padding-right: 24px !important;
}
.button-visibilty {
    display: none;
}


@media (max-width: 700px) { 
    .button-visibilty {
    display: block;
}

    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
    }

    .nav-menu a {
        margin: 0.25em 0;
        width: 100%;
    }

    main {
        padding: 1em;
    }
   
}