@charset "UTF-8";

        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
        }
        .page {
            max-width: 1200px;
            margin: auto;
            
        }
        header {
            background: #fee0f9;
            color: #fff;
            padding: 20px 0;
            text-align: center;
        }
        nav {
            background: #333;
        }
        nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
        }
        nav ul li {
            position: relative;
        }
        nav ul li a {
            display: block;
            color: #fff;
            padding: 15px 20px;
            text-decoration: none;
        }
        nav ul li a:hover {
            background: #575757;
        }
        nav ul ul {
            display: none;
            position: absolute;
            left: 0; /* Default left alignment */
            top: 100%;
            background: #333;
            z-index: 1000;
        }
        nav ul li:hover > ul {
            display: block;
        }
        /* Styles for right submenu */
        nav ul li ul ul {
            left: 100%; /* Shift to the right */
            top: 0; /* Align top with parent */
        }
        .main {
            padding: 20px;
            background: #fff;
            border-radius: 5px;
            margin: 20px 0;
        }
        footer {
            text-align: center;
            padding: 10px 0;
            background: #0056b3;
            color: #fff;
            position: relative;
            bottom: 0;
            width: 100%;
        }
        
* {box-sizing: border-box;}
body {font-family: Verdana, sans-serif;}
.mySlides {display: none;}
img {vertical-align: middle;height:300px}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}


.scrollable-dropdown {
    max-height: 200px; /* Adjust height as needed */
    overflow-y: auto;  /* Enable vertical scrolling */
    background: #333;  /* Same background as your menu */
    position: absolute; /* Ensure it appears over other content */
    z-index: 1000;     /* Bring it to the front */
}

.scrollable-dropdown li {
    white-space: nowrap; /* Prevent text from wrapping */
}


.header {
    background-color: #666;
    color: white;
}

.header-topp {
    display: flex;
    justify-content: space-between;
    padding:  10px 20px;
    background-color: #232f3e;
    font-size: 14px;
}

.header-topp a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}


 header {
        text-align: center;
        padding: 10px;
    }
    .title {
        font-size: 24px; /* Adjust this size as needed */
        color: blue;
        font-weight: bold;
    }
    .tagline {
        font-size: 16px; /* Adjust this size as needed */
        color: blue; /* Optional: change the color */
    }
           .marquee
{
			font-size: 15px;
            color: yellow;
            padding: 2px;
            text-align: center;
            animation: blink 2s step-start infinite;
}
@keyframes blink {
            0% {
                visibility: visible;
            }
            50% {
                visibility: hidden;
            }
            100% {
                visibility: visible;
            }
        }