<style>
/* ==== HEADER & NAV STYLING ==== */
body { 
    margin: 0; 
    font-family: "Segoe UI", sans-serif; 
}
###################################
slide-body {
  margin: 0;
  background: #555;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}

/* Slider container */
.slider {
  position: relative;
  width: 100vw; /*default is 90vw */
  max-width: 1200px;
  height: 70vh; /*default is 70vh */
  overflow: hidden;
  border-radius: 0px;
  /*box-shadow: 0 10px 25px rgba(0,0,0,0.5);*/
}

/* Track for all slides */
.slides {
  display: flex;
  width: 400%; /* 4 images = 4x width */
  height: 100%;
  animation: slide 16s infinite;
}

/* Each image */
.slides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Keyframes: fast slide + 2s pause */
@keyframes slide {
  0%, 10%   { margin-left: 0%; }       /* Image 1 visible, pause */
  25%, 35%  { margin-left: -100%; }    /* Slide to image 2 */
  50%, 60%  { margin-left: -200%; }    /* Slide to image 3 */
  75%, 85%  { margin-left: -300%; }    /* Slide to image 4 */
  100%      { margin-left: 0%; }       /* Back to start */
}

#################################


 .ivd-img {
	 width:100%;
	 height:auto;
	 margin-top:0%;
	 opacity:0.9;
 }
.header-img {
	width:5%;
	height:'auto';
	border-radius:50%;
	margin-left:0%;
}
.header-text-main {
	margin-top:-15%;
	margin-left:25%;
	font-size:14px;
	letter-spacing:1px;
}

.header-hover-text-format:hover {
  /*text-decoration: underline;
  font-style: italic;*/
  cursor: pointer;
  transition: transform 0.3s ease;
  transform: scale(0.98);
}
.header-text-sub {
	margin-left:25%;
	margin-top:-5%;
	font-size:10px;
	letter-spacing:1px
}
.zoom-hover {
    width: 100%;
    /* Fixed missing height value */
    height: auto; 
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.zoom-hover:hover {
    transform: scale(1.1);
}

.pix {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-format {
    font-size: 17px;
    letter-spacing: 0.5px;
}

.herotext {
    width: 100%;
    height: 200px;
    z-index: 1;
    margin-top: -30%;
    /* Corrected 'centre' to 'center' */
    text-align: center; 
	
}

.flash-text {
    font-size: 72px;
    font-family: arial black; /* Added fallback fonts */
}

.logo img {
    width: 60px;
    border-radius: 50%;
    vertical-align: middle;
}

.logo-text {
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px;
    line-height: 1.2;
}

.topnav {
    overflow: hidden;
    color: #FFF;
}

.topnav a {
    float: left;
    display: block;
    color: white; /*#DDD*/
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 1px;
    
}

.topnav .active {
    color: #FF6600;
    /*font-weight: bold;*/
	background-color:inherit;
	text-transform: uppercase;
}

.topnav .icon {
    display: none;
}

.dropdown {
    float: left;
    overflow: hidden;
}

.dropdown .dropbtn {
    font-size: 17px;    
    border: none;
    outline: none;
    color: white; /*#DDD*/
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: inherit; /*color: #DDD;*/
    min-width: 300px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    margin-top: 45px;
}

.dropdown-content a {
    float: none;
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.topnav a:hover, .dropdown:hover .dropbtn {
    background-color: #EEE; /*#EEE*/
    color: red;
}

.dropdown-content a:hover {
    background-color: #EEE; /*#EEE*/
    color: red ; /*black*/
}

.dropdown:hover .dropdown-content {
    display: block;
}

.icon {
    display: none;
    color: #eee;
    font-size: 27px;
    cursor: pointer;
    padding: 10px;
}

// Scale images down if they're too large for available space
img {
  max-width: 100%;
}

/* Infinite Scrolling Cards */

.marquee {
  display: flex;
  block-size: var(--marquee-item-height);
  margin-block: var(--marquee-item-height);
  position: relative;
  overflow-x: hidden;
  mask-image: linear-gradient(
    to right,
    hsl(0 0% 0% / 0),
    hsl(0 0% 0% / 1) 20%,
    hsl(0 0% 0% / 1) 80%,
    hsl(0 0% 0% / 0)
  );
}

.marquee--8 {
  --marquee-item-width: 100px;
  --marquee-item-height: 100px;
  --marquee-duration: 36s;
  --marquee-items: 8;
}

.marquee--3 {
  --marquee-item-width: 100px;
  --marquee-item-height: 100px;
  --marquee-duration: 24s;
  --marquee-items: 3;
}

.marquee--6 {
  --marquee-item-width: 166px;
  --marquee-item-height: 100px;
  --marquee-duration: 32s;
  --marquee-items: 6;
}

.marquee__item {
  --marquee-item-offset: max(
    calc(var(--marquee-item-width) * var(--marquee-items)),
    calc(100% + var(--marquee-item-width))
  );
  --marquee-delay: calc(var(--marquee-duration) / var(--marquee-items) * (var(--marquee-items) - var(--marquee-item-index)) * -1);
  position: absolute;
  inset-inline-start: var(--marquee-item-offset);
  transform: translateX(-50%);
  animation: go linear var(--marquee-duration) var(--marquee-delay, 0s) infinite;
}

.marquee__item:nth-child(4n) {
  border-top-right-radius: 0rem;
}

.marquee__item:nth-child(4n + 1) {
  border-bottom-right-radius: 0rem;
}

.marquee__item:nth-child(4n + 2) {
  border-bottom-left-radius: 0rem;
}

.marquee__item:nth-child(4n + 3) {
  border-top-left-radius: 0rem;
}

.marquee--8 .marquee__item:nth-of-type(1) {
  --marquee-item-index: 1;
}

.marquee--8 .marquee__item:nth-of-type(2) {
  --marquee-item-index: 2;
}

.marquee--8 .marquee__item:nth-of-type(3) {
  --marquee-item-index: 3;
}

.marquee--8 .marquee__item:nth-of-type(4) {
  --marquee-item-index: 4;
}

.marquee--8 .marquee__item:nth-of-type(5) {
  --marquee-item-index: 5;
}

.marquee--8 .marquee__item:nth-of-type(6) {
  --marquee-item-index: 6;
}

.marquee--8 .marquee__item:nth-of-type(7) {
  --marquee-item-index: 7;
}

.marquee--8 .marquee__item:nth-of-type(8) {
  --marquee-item-index: 8;
}

.marquee--3 .marquee__item:nth-of-type(1) {
  --marquee-item-index: 1;
}

.marquee--3 .marquee__item:nth-of-type(2) {
  --marquee-item-index: 2;
}

.marquee--3 .marquee__item:nth-of-type(3) {
  --marquee-item-index: 3;
}

.marquee--6 .marquee__item:nth-of-type(1) {
  --marquee-item-index: 1;
}

.marquee--6 .marquee__item:nth-of-type(2) {
  --marquee-item-index: 2;
}

.marquee--6 .marquee__item:nth-of-type(3) {
  --marquee-item-index: 3;
}

.marquee--6 .marquee__item:nth-of-type(4) {
  --marquee-item-index: 4;
}

.marquee--6 .marquee__item:nth-of-type(5) {
  --marquee-item-index: 5;
}

.marquee--6 .marquee__item:nth-of-type(6) {
  --marquee-item-index: 6;
}

@keyframes go {
  to {  
    inset-inline-start: calc(var(--marquee-item-width) * -1);
  }
}
		

/* ==== MOBILE RESPONSIVE MENU ==== */
@media screen and (max-width: 768px) {
    .topnav a, .dropdown { display: none; }
    .icon { display: block; text-align:right}
    .topnav.responsive { position: relative; }
    .topnav.responsive a, .topnav.responsive .dropdown {
        display: block;
        float: none;
        text-align: left;
        width: 100%;
    }
    .topnav.responsive {
        position: relative;
        box-shadow: none;
    }
	.dropdown-content {
        position: relative;
        box-shadow: none;
		margin-top: 5px;
    }
}

/* ==== SLIDESHOW BASIC STYLING ==== */
.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
}

.slide { display: none; }

.pix { width: 100%; vertical-align: middle; }

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.3s;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next { 
    right: 0; 
    border-radius: 3px 0 0 3px; 
}

.prev:hover, .next:hover { 
    background-color: rgba(0,0,0,0.8); 
}

.dots-container {
    text-align: center;
    padding: 10px;
    margin-top: 0%;
    background: inherit;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 3px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover { 
    background-color: #717171; 
}

.site-footer {
    text-align: center;
    padding: 20px;
    /* Fixed missing background-color */
    background-color: #f1f1f1; 
    margin-top: 30px;
}
</style>
