    /* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
}
dl, ol, ul {
    margin-top: 0;
    margin: 0rem;
}

.navbar {
  background-color: #ff2677;
  color: white;
  padding: 10px 0;
}


.nav-links {
  list-style: none;
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: white;
  padding: 10px 15px;
  transition: 0.3s;
}

.nav-links a:hover {
  background-color: #555;
  border-radius: 5px;
}

/* Dropdown Styles */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 30px;
  left: 0;
  background-color: #ff2677;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 180px;
  border-radius: 5px;
  z-index: 10;
}

.dropdown-menu li {
  border-bottom: 1px solid #555;
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-menu a {
  color: white;
  padding: 10px 15px;
  display: block;
}

.dropdown-menu a:hover {
  background-color: #555;
}

/* Show Dropdown on Hover (Desktop) */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: white;
  transition: 0.3s;
}

/* Dots Menu */
.dots-menu {
  display: flex;
  gap: 5px;
}

.dot {
  width: 6px;
  height: 6px;
  background-color: white;
  border-radius: 50%;
}

/* Mobile View */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #333;
    position: absolute;
    top: 50px;
    left: 0;
    z-index: 10;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    text-align: left;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Mobile Dropdown Styles */
  .dropdown-menu {
    position: static;
    width: 100%;
    background-color: #444;
    display: none;
  }

  .dropdown-menu.show {
    display: block;
  }
}

.heading-color{   
    background: #ff2677;
    width: fit-content;
    padding: 10px 20px;
    border-radius: 30px;
    color: #fff;
}
h3.heading-color.top {
    text-align:center;
}
@media (min-width: 768px) {
h3.heading-color.top {
    margin-top: -30px;
    position: relative;
    z-index: 1; /* Higher than the image */
}
}

/* Slider Container */
.slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 500px;
  overflow: hidden;
  margin: 0 auto;
}

/* Slides Wrapper */
.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

/* Individual Slide */
.slide {
  min-width: 100%;
  transition: opacity 0.5s ease;
}

/* Slide Images */
.slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* Navigation Buttons */
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 128, 0, 0.7);
  color: #fff;
  border: none;
  padding: 12px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 18px;
  z-index: 100;
}

.prev {
  left: 15px;
}

.next {
  right: 15px;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 128, 0, 0.9);
}

/* Responsive Design */
@media (max-width: 768px) {
  .slider {
    height: 300px;
  }
  .slide img {
    height: 300px;
  }
  .prev,
  .next {
    padding: 8px;
    font-size: 14px;
  }
}

/* Welcome Section Styling */
.welcome-section {
    background-color: #f9f9f9;
}

/* Welcome Title */
.welcome-title {
    font-size: 36px;
    color: #2c3e50;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Green Letter Styling */
.green-letter {
    color: #0b6e4f;
}

/* Welcome Text */
.welcome-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

/* Image Container */
.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .text-content {
        text-align: center;
    }
    .image-container {
        margin-top: 20px;
    }
}

.about-section {
            padding: 50px 80px;
        }

        .image-container img {
            width: 100%;
            border-radius: 20px;
            margin-bottom: 20px;
            box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
        }

        .about-title {
            font-size: 42px;
            color: #124022;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .about-title span {
            font-family: 'Playfair Display', serif;
            font-size: 50px;
            font-style: italic;
            color: #315c2b;
            font-weight: 600;
        }

        .about-text {
            font-size: 18px;
            line-height: 1.8;
            color: #444;
        }
        .about-section-img{
            border-radius:15px;
            margin-top: -10px;
            margin-bottom: -10px;
        }
        @media (max-width: 768px) {
            .about-section {
                padding: 30px 20px;
            }

            .about-title {
                font-size: 32px;
                margin-top: 30px;
                text-align: center;
            }

            .about-title span {
                font-size: 28px;
            }

            .about-text {
                font-size: 16px;
            }
        }
        
        /* Section Padding */
.about-venue {
    background-color: #fff;
}

/* Title Styling */
.venue-title {
    font-size: 50px;
    color: #173c21;
    margin-bottom: 20px;
    font-weight: bold;
}

.venue-title span {
    color: #4b7152;
}

/* Text Styling */
.venue-text {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

/* Image Styling */
.rounded-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}
        
        
        
/* Reach Us Section */
.reach-us {
    background-color: #edf5e1;
    padding-top: 50px;
    padding-bottom: 50px;
}

/* Title Styling */
.reach-title {
    font-size: 50px;
    color: #173c21;
    margin-bottom: 20px;
    font-weight: bold;
}

.reach-title span {
    color: #4b7152;
}

/* Map Styling */
.map-container {
    width: 100%;
    height: 450px;
    overflow: hidden;
}


/* Footer Section */
.footer-section {
    background-color: #ffffff;
    border-top: 2px solid #ccc;
}

/* ICS Info Section */
.ics-info h5 {
    color: #003399;
    font-weight: 500;
    font-family: fantasy;
}

.ics-info p {
    margin: 0;
    color: #333;
    font-size: 14px;
}

.ics-info a {
    color: #007bff;
    text-decoration: none;
}

/* ICS Logo */
.Ics-Logo {
    width: 250px;
}

/* CEZCON 2025 Title */
.cezcon-title {
    font-size: 36px;
    font-weight: bold;
    color: #124e2c;
    margin-bottom: 15px;
}

/* Secretariat Box */
.secretariat-box {
    border: 1px solid #333;
    padding: 15px;
    border-radius: 5px;
    font-size: 14px;
    line-height: 1.8;
    background-color: #f9f9f9;
}

/* Secretariat Title */
.secretariat-title {
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

/* Copyright Bar */
.copyright-bar {
    background-color: #ff1178;
    color: #fff;
    font-size: 14px;
}

.carousel-item-next, .carousel-item-prev, .carousel-item.active {
    display: flex;
    align-content: center;
    gap: 50px;
}
.carousel-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 500px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.carousel-item {
    width: 160px;
    height: 303px;
    background-color: #009879;
    border-radius: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    flex-wrap: wrap;
    transition: all 0.5s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    left: 39%;
}
.carousel-item.active {
    width: 250px;
    height: -webkit-fill-available;
    z-index: 5;
    transform: translateX(0%) scale(1);
    font-size:20px;
}

.carousel-item.left {
    transform: translateX(-160px) scale(1.4);
    z-index: 3;
}

.carousel-item.right {
    transform: translateX(250px) scale(1.4);
    z-index: 3;
}

.carousel-item.left-out {
    transform: translateX(-335px) scale(1.2);
    opacity: 0.5;
    z-index: 2;
}

.carousel-item.right-out {
    transform: translateX(425px) scale(1.1);
    opacity: 0.5;
    z-index: 2;
}
.carousel-caption {
  text-align: center;
  margin-top: 420px;
}
/* Mobile Styles */
@media (max-width: 768px) {
  .carousel-wrapper {
    height: 400px; /* Reduce height for mobile */
  }
  
  .carousel-item {
    width: 120px;
    height: 220px;
    border-radius: 100px; /* Smaller border radius */
    left: 50%; /* Center on smaller screens */
    transform: translateX(-50%);
  }
.carousel-item-next, .carousel-item-prev, .carousel-item.active {
     gap: 0px;
    }
  .carousel-item.active {
    width: 180px;
    height: 280px;
    transform: translateX(-50%) scale(1.1);
    font-size:15px;
}

  .carousel-item.left {
    transform: translateX(-170px) scale(1.2);
  }

  .carousel-item.right {
    transform: translateX(55px) scale(1.2);
  }

  .carousel-item.left-out,
  .carousel-item.right-out {
    opacity: 0.3;
    transform: translateX(-50%) scale(0.9);
  }

  .carousel-caption {
    margin-top: 300px;
  }
}
.content-box p{
    color: #fff;
}
.content-box img{
    border: 1px solid;
    border-radius: 20px;
    background:#fff;
}
.content-box{
   padding: 10px;
    background: #ff2677;
    border-radius: 30px 0px;
    box-shadow: -14px 16px 0px 4px;
    
}