body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #FFF5F0;
  color: #111;
}
 
.navbar {
  background: linear-gradient(to right, #804fb3 0%, #ff99cc 100%);
  padding: 5px 0;
}

.navbar h1 {
 font-size: 35px;
  font-weight: bold;
  margin-right: -10%;
  width: 50%;
  line-height: 2.5rem;
  color: white;;
}

.navbar h1 span {
  display: block;
  font-weight: 100;
  font-size: 15px;
  text-align: center;
  margin-right: 40%;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
 
.navbar .container {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
 
.logo img {
 padding: 2px 3px;
  height: 140px;
  width: 140px;
  margin-left: 10px;
  border-radius: 70px;
}

.toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.menu li {
  position: relative;
}

.menu li a {
  display: block;
  padding: 10px 10px;
  font-size: 23px;
  justify-content: space-between;
  text-decoration: none;
  color: white;
}

/* Dropdown menu hidden by defualt */

.dropdown-content {
  display: none;
  position: absolute;
  list-style: none;
  text-align: justify;
  top: 100%;
  left: 0;
  background-color: #ff99cc;
  min-width: 150px;
  box-shadow: 0 2px 6px rgba(0 0 0 0.2);
    z-index: 9999;  /*Fix dropdown hiding behind image*/
}

.dropdown-content li a {
  font-size: 15px;
  margin-left: -5%;
  text-align: justify;
  font-weight: bold;
}

/*Reveal dropdown on hover*/

.dropdown:hover .dropdown-content{
  display: block;
}

.don {
  padding: 15px;
  border-radius: 50px;
  color: white;
  margin-left: 5%;
  font-size: 30px;
  font-family: 'Playfair Display', serif;;
  text-decoration: none;
  background-color: #ca32cd;
  box-shadow: 5px 5px 5px lightblue;
}

.don:hover {
    background-color: white;
  color: black;
}

/* Section Styles */
.section {
  padding: 60px 20px;
}
.section h2{
  text-align: center;
  margin-top: -2%;
  font-size: 50px;
  color: #8e2de4;
  font-family: 'Abril Fatface', cursive;
}

.section h3 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  margin-left: 15%;
  color: #111;
  font-weight: bold;
  position: relative;
  font-family: 'Courier New', Courier, monospace;
}
 
.section h3::after {
  content: '';
  width: 60px;
  height: 4px;
  display: block;
  margin: 10px auto 0;
}
 
.section p {
  font-size: 1.3rem;
  line-height: 1.7;
  width: 78%;
  text-align: justify;
  margin-left: 15%;
}

.section .head-vision {
font-size: 2.5rem;
  margin-bottom: 20px;
  margin-left: 8%;
  color: #111;
  font-weight: bold;
  position: relative;
}

.section .para-vision {
  font-size: 1.3rem;
  line-height: 1.7;
  width: 75%;
  text-align: justify;
  margin-left: 10%;
}
 
/* Two-Column Layout */
.two-column {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}
 
.two-column .text {
  flex: 1;
}
 
.two-column .image {
  flex: 1;
  text-align: center;
  width: 100%;
}
 
.two-column img {
  width: 550px;
  height: 350px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Reverse column */
.reverse {
  flex-direction: row-reverse;
}
 
/* Footer */
footer {
  background-color: #fff;
  text-align: center;
  padding: 20px;
  border-top: 1px solid #ccc;
}
 
/* Animation */
.text {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease-out;
}
        
.text.visible {
  opacity: 1;
  transform: translateY(0);
}

.event-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-slideshow {
    position: relative;
    width: 550px;
    height: 350px;
    margin: auto;
    overflow: hidden;
}

.mySlide {
    display: none;
    width: 100%;
    height: 100%;
}

/*next and previous button*/
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    padding: 10px;
    color: black;
    transition: 0.3s;
    transform: translateY(-50%);
    background: transparent;
    border-radius: 50%;
    border: none;
}

.next {
    right: 10px;
}

.prev {
    left: 10px;
}

.prev:hover, .next:hover {
    background: gray;
}

.fade {
  animation: fade 2s ease-in-out;
}
 
@keyframes fade {
  from {opacity: 0.4} 
  to {opacity: 1}
}
