@charset "UTF-8";
/* CSS Document */


html {
	transition: ease .2s;
	animation: fadein 2s;
    -moz-animation: fadein 2s; /* Firefox */
    -webkit-animation: fadein 2s; /* Safari and Chrome */
    -o-animation: fadein 2s; /* Opera */
	  	background: rgb(29,0,44);
}

@keyframes fadein {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-moz-keyframes fadein { /* Firefox */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-webkit-keyframes fadein { /* Safari and Chrome */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-o-keyframes fadein { /* Opera */
    from {
        opacity:0;
    }
    to {
        opacity: 1;
    }
}

body {
	width: 100%;
	padding: 0px;
	margin: auto;
	text-align: left;
}

header {
	height: 130px;
  transition: height 0.5s ease-in-out;
}

#topRibbonFrame {
	width: 100%;
	height: 130px;
	margin: auto;
	padding: 0px;
	border: none;
	text-align: left;
  transition: ease-in-out .5s;
}

#menu_icon {
	height: 30px;
	width: 40px;
	clear: left;
	cursor:pointer;
	right: 35px;
	position: fixed;
	z-index: 1000; 
	top: 30px;
	transform: scale(.95);
	transition: ease-in-out .3s;
	display: flex;
 	flex-direction: column;
 	justify-content: space-between;
}

#menu_icon span {
  display: block;
  width: 100%; /* Full width of the container */
  height: 4px; /* Thickness of each bar */
  background-color: #ffffff; /* Bar color */
  border-radius: 2px; /* Slight rounding for aesthetics */
  transition: transform 0.3s, opacity 0.3s; /* Smooth animation for transformations */
}

#menu_icon:hover {
	transform: scale(.99);
}

#menu_icon.active span:nth-child(1) {
	transform: rotate(45deg) translate(13px, 13px);
	background-color: orangered; /*changing top bar color*/
}

#menu_icon.active span:nth-child(2) {
	opacity: 0; /* Hide the middle bar */
}

#menu_icon.active span:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -5px);
	background-color: orangered; /*changing bottom bar color*/
}

iframe {
	margin: auto;
	padding: 0px;
	vertical-align: top;
	width: 100%;
	height: 550px;
	overflow: hidden;
	scroll-behavior: none;
}

#myNav {
  position: fixed;
  top: 0;
  right: 0;
  width: 30%;
  height: 100vh;
  border: none;
  background-color: transparent;
  z-index: 1000;

  /* Hidden state */
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  pointer-events: none;
}

#myNav.open {
  transform: translateX(0%);
  opacity: 1;
  pointer-events: auto;
}

#facebook {
	background-color: #0082E4 ;
	transition: ease-in-out .2s;
	border-radius: 50%;
}
#facebook:hover {
	background-color: #2593E5;
}

#youTube {
	background-color: #9E2622;
	transition: ease-in-out .2s;
	border-radius: 50%;
}
#youTube:hover {
	background-color: #c4302b;
}

/* ========== Social Media Toggle Widget ========== */

/* Main widget container */
#socialToggleWidget {
	border-radius: 50%;
  position: fixed;
  right: 20px;
  top: 75px ;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Toggle button style */
#socialToggleButton {
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: transform 0.5s ease, opacity 0.5s ease;
  transform: rotate(0deg); /* ✅ ensure it's set to default */
}

/* Social media icons container */
#socialMediaIcons {
  margin-top: 10px;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Individual icon styles */
.socialMediaIcon {
  width: 40px;
  transition: transform 0.3s;
}

.socialMediaIcon:hover {
  transform: scale(1.1);
}

/* Fade in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade out animation */
@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(10px);
  }
}

#mainTopSliderHolder {
  height: auto;
}

footer {
	width: 100%;
	color: #FFFFFF;
	text-align: center;
	padding-top: 5px;
	font-size: small;
}

@media (max-width: 840px) {
  header {
    height: 150px;
  }

  #topRibbonFrame {
    height: 150px
  }

}

@media (max-width: 768px) {

  header {
    height: 160px;
  }

	#topRibbonFrame {
		height: 160px;
	}
}

@media screen and (max-width: 680px) {

  header {
    height: 160px;
  }

  #topRibbonFrame {
    height: 160px;
  }

}

@media (max-width: 600px) {


   header {
    height: auto;
  }
	
  #myNav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    border: none;
    background-color: transparent;
    z-index: 1000;

    /* Hidden state */
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
    pointer-events: none;
  }

  #myNav.open {
    transform: translateX(0%);
    opacity: 1;
    pointer-events: auto;
  }

  #menu_icon {
    right: 20px; /* Adjusted for smaller screens */
    top: 20px; /* Adjusted for smaller screens */
  }

  #socialToggleWidget {
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column-reverse;
    align-items: center; /* ✅ fix alignment */
  }

  #socialMediaIcons {
    margin: 0;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column-reverse;
    align-items: center; /* ✅ fix icon alignment */
    gap: 10px;
  }

  .socialMediaIcon {
    width: 36px;
  }

  #socialToggleButton {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 599px) and (min-width: 501px) {
  header {
    height: 130px;
  }

  #topRibbonFrame {
    height: 130px;
  }

}

@media (max-width: 500px) and (min-width: 441px) {

  header {
    height: 125px;
    transition: height .5s ease-in-out;
  }

  #topRibbonFrame {
    height: 125px;
  }


}

@media (max-width: 440px) and (min-width: 401px) {

  header {
    height: 120px;
  }

  #topRibbonFrame {
    height: 120px;
  }

}

@media (max-width: 400px) and (min-width: 300px) {


  #menu_icon {
    margin-top: -5px;
    margin-right: 0px;
  }

  header {
    height: 115px;
  }

  #topRibbonFrame {
    padding: 0;
    height: 115px;
  }
}