::after, ::before { line-height: normal; }

/* <<< Reset CSS >>> */
body {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 18px;
  color: #6c757d;
  line-height: 1.5;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

ol:after,
ul:after {
  content: "";
  display: block;
  line-height: 0;
  clear: both;
  overflow: hidden;
  height: 0;
}

pre {
  border-left: 10px solid #ccc;
  max-width: 500px;
}

/* <<< Headings >>> */
h1 { font-size: 40px; }
h2 { font-size: 32px; }
h3 { font-size: 28px; }
h4 { font-size: 24px; }
h5 { font-size: 20px; }
h6 { font-size: 16px; }
p, .font-weight-light { font-weight: 300; }

/* <<< WP-Image Hack >>> */
img {
  border: 0;
  height: auto;
  max-width: 100%;
}

/* <<< anchor >>> */
a {
  color: #99ccff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:hover {
  color: green;
  text-decoration: none;
}

a:focus {
  outline: 0;
  color: green;
}

/* <<< btn override >>> */
.btn {
  white-space: normal;
  cursor: pointer;
  font-size: 18px;
  padding: 12px 35px;
  border-radius: 0;
}

/* <<< btn-primary >>> */
.btn-primary {
  color: #fff;
  background-color: #356ba2;
  border-color: transparent;
}

.btn-primary.active, .btn-primary:active, .btn-primary.focus, .btn-primary:focus, .btn-primary.active.focus, .btn-primary.active:focus, .btn-primary.active:hover, .btn-primary:active.focus, .btn-primary:active:focus, .btn-primary:active:hover, .btn-primary:hover {
  color: #fff;
  background-color: #99ccff;
  border-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active {
  background-color: #99ccff;
  border-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.form-control {
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  -webkit-background-clip: padding-box;
  height: 50px;
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #fff;
  font-size: 18px;
  color: #fff;
  padding-left: 15px;
  padding-right: 15px;
}

.form-control::-webkit-input-placeholder { color: white; }
.form-control:-moz-placeholder { color: white; }
.form-control::-moz-placeholder { color: white; }
.form-control:-ms-input-placeholder { color: white; }

.form-control:focus {
  border-bottom: 1px solid #356ba2;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
  color: #fff;
}

textarea.form-control {
  min-height: 150px;
  padding: 10px 10px 10px 10px;
}

/* <<< Global >>> */
.container { max-width: 1150px; }
.container-2 { max-width: 1250px; }

/* <<< outer >>> */
#outer {
  position: relative;
  width: 100%;
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 991px) {
  #outer { display: block; }
}

/* <<< Header >>> */
.header {
  position: fixed;
  right: 0;
  width: 330px; /* slightly wider than 220px */
  height: 100%;
  background-color: #313a4d;
  overflow-y: auto;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

@media (max-width: 991px) {
  .header {
    position: fixed;
    right: -100%;
    top: 0;
    bottom: 0;
    width: 300px;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (max-width: 575px) {
  .header { width: 100%; }
}

.header.open { right: 0; }
.design { color: #fff; }

.design a {
  color: #fff;
  text-decoration: none;
}

.design a:hover { color: #99ccff; }

/* <<< Mobile Menu button >>> */
.navbar-button {
  width: 50px;
  height: 47px;  
  padding: 0;
  margin: 0;
  outline: 0;
  border: 0;
  z-index: 9;
  -webkit-box-shadow: none;
  box-shadow: none;
  position: fixed;
  top: 0px;
  right: 0px;
  background-color: #fff;
  padding: 10px;
  border-radius: 0;
  display: none;
  -webkit-box-shadow: 0px 5px 10px 0px rgba(50, 50, 50, 0.3);
  box-shadow: 0px 5px 10px 0px rgba(50, 50, 50, 0.3);
}

@media (max-width: 991px) {
  .navbar-button {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.navbar-button:focus {
  border: 0;
  outline: 0;
  -webkit-box-shadow: 0px 5px 10px 0px rgba(50, 50, 50, 0.3);
  box-shadow: 0px 5px 10px 0px rgba(50, 50, 50, 0.3);
}

.navbar-button .menu_icon {
  margin: 0;
  padding-top: 1px;
  float: left;
  width: 25px;
  height: 22px;
  position: relative;
  cursor: pointer;
}

.navbar-button .menu_icon .icon-bar {
  display: block;
  position: absolute;
  opacity: 1;
  width: 25px;
  height: 3px;
  background-color: #6699cc;
  margin: 0 auto;
  left: 0;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.navbar-button .menu_icon .icon-bar:nth-child(1) {
  top: 10px;
  -webkit-transform: rotate(145deg);
  /* WebKit */
  /* Mozilla */
  /* Opera */
  /* Internet Explorer */
  transform: rotate(140deg);
  /* CSS3 */
}

.navbar-button .menu_icon .icon-bar:nth-child(2) {
  top: 8px;
  opacity: 0;
  left: -10px;
}

.navbar-button .menu_icon .icon-bar:nth-child(3) {
  top: 10px;
  -webkit-transform: rotate(-145deg);
  /* WebKit */
  /* Mozilla */
  /* Opera */
  /* Internet Explorer */
  transform: rotate(-140deg);
  /* CSS3 */
}

.navbar-button.collapsed .icon-bar {
  -webkit-transform: rotate(0deg);
  /* WebKit */
  /* Mozilla */
  /* Opera */
  /* Internet Explorer */
  transform: rotate(0deg);
  /* CSS3 */
}

.navbar-button.collapsed .icon-bar:nth-child(1) {
  top: 0;
  -webkit-transform: rotate(0deg);
  /* WebKit */
  /* Mozilla */
  /* Opera */
  /* Internet Explorer */
  transform: rotate(0deg);
  /* CSS3 */
}

.navbar-button.collapsed .icon-bar:nth-child(2) {
  top: 10px;
  left: 0;
  opacity: 1;
}

.navbar-button.collapsed .icon-bar:nth-child(3) {
  top: 20px;
  -webkit-transform: rotate(0deg);
  /* WebKit */
  /* Mozilla */
  /* Opera */
  /* Internet Explorer */
  transform: rotate(0deg);
  /* CSS3 */
}

/* <<< Navigation >>> */
.navbar {
  padding: 0;
  margin-bottom: 0;
}

.navbar .navbar-collapse {
  display: flex;
  height: 100% !important;
  padding-left: 61px;
  padding-right: 61px;
}

@media (max-width: 1366px) {
  .navbar .navbar-collapse {
    padding-left: 31px;
    padding-right: 21px;
  }
}

.navbar @media (max-height: 580px) {
  .navbar }

.navbar .navbar-collapse::before {
  content: '';
  position: absolute;
  width: 1px;
  background-color: #fff;
  height: 100%;
  top: 0;
}

.navbar .navbar-nav > @media (max-width: 1366px) {
  .navbar .navbar-nav > }

.navbar .navbar-nav > .nav-item @media (max-width: 1366px) {
  .navbar .navbar-nav > .nav-item }

.navbar .navbar-nav > .nav-item:last-child { margin-bottom: 0; }

.navbar .navbar-nav > .nav-item:hover > a.nav-link,
.navbar .navbar-nav > .nav-item.active > a.nav-link,
.navbar .navbar-nav > .nav-item.current-menu-ancestor > a.dropdown-toggle {
  background-color: transparent;
  outline: 0;
  color: #99ccff;
  transition: all 0.3s ease;
}

.navbar .navbar-nav > .nav-item > a.navbar .navbar-nav > .nav-item > a.nav-link.current { color: #99ccff; }

.navbar .navbar-nav > .nav-item > a.nav-link.dropdown-toggle::after {
  content: '';
  vertical-align: middle;
}

@media (max-width: 767px) {
  .navbar .navbar-nav > .nav-item > a.nav-link.dropdown-toggle::after { display: none; }
}

@media (max-width: 767px) {
  .navbar .navbar-nav > .nav-item > a}

.navbar .navbar-nav > .nav-item ul.dropdown-menu {
  padding: 0;
  width: auto;
  border-radius: 0;
  border: 0;
  margin: 0;
}

.navbar .navbar-nav > .nav-item ul.dropdown-menu .navbar .navbar-nav > .nav-item ul.dropdown-menu .nav-item > a.dropdown-item {
  border-bottom: 0;
  color: #fff;
  padding: 5px;
}

@media (max-width: 767px) {
  .navbar .navbar-nav > .nav-item ul.dropdown-menu .nav-item > a.dropdown-item {
    padding-left: 20px;
  }
}

.navbar .navbar-nav > .nav-item ul.dropdown-menu .nav-item > a.dropdown-item.dropdown-toggle {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
}

.navbar .navbar-nav > .nav-item ul.dropdown-menu .nav-item > a.dropdown-item.dropdown-toggle::after {
  height: 2px !important;
  background-color: cyan;
  opacity: 1;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: 0;
  margin-left: 10px;
  display: block;
}

@media (max-width: 767px) {
  .navbar .navbar-nav > .nav-item ul.dropdown-menu .nav-item > a.dropdown-item.dropdown-toggle::after {
    display: none;
  }
}

.navbar .navbar-nav > .nav-item ul.dropdown-menu .nav-item:hover > a,
.navbar .navbar-nav > .nav-item ul.dropdown-menu .nav-item.active > a,
.navbar .navbar-nav > .nav-item ul.dropdown-menu .nav-item.current-menu-ancestor > a.dropdown-toggle {
  font-weight: 500;
  color: #fff;
  background-color: lightblue;
}

.navbar .navbar-nav > .nav-item ul.dropdown-menu .nav-item:hover > a.dropdown-toggle::after {
  opacity: 1;
}

.navbar .navbar-nav > .nav-item ul.dropdown-menu .nav-item ul.dropdown-menu {
  padding: 0;
}

@media (max-width: 767px) {
  .navbar .navbar-nav .caret::before {
    margin-left: 10px;
    font-size: 26px;
    content: '\f107';
    font-family: "fontawesome";
    vertical-align: middle;
  }
  .navbar .navbar-nav .caret.caret-open::before {
    content: '\f106';
  }
}

@media only screen and (min-width: 768px) {
  /**:: First Dropdown ::**/
  .navbar .navbar-collapse ul li {
    position: relative;
  }
  .navbar .navbar-collapse ul li:hover > ul {
    display: block;
  }
  .navbar .navbar-collapse ul ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    display: none;
    background-color: dodgerblue;
  }
  /**:: Second Dropdown ::**/
  .navbar .navbar-collapse ul ul li {
    position: relative;
  }
  .navbar .navbar-collapse ul ul li:hover > ul {
    display: block;
  }
  .navbar .navbar-collapse ul ul ul {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 250px;
    display: none;
    background-color: aqua;
  }
  /**:: Third Dropdown ::**/
  .navbar .navbar-collapse ul ul ul li {
    position: relative;
  }
  .navbar .navbar-collapse ul ul ul li:hover ul {
    display: block;
  }
  .navbar .navbar-collapse ul ul ul ul {
    position: absolute;
    top: 0;
    left: -100%;
    min-width: 250px;
    display: none;
    z-index: 1;
    background-color: bisque;
  }
  /**:: Fourth Dropdown ::**/
  .navbar .navbar-collapse ul ul ul ul li {
    position: relative;
  }
  .navbar .navbar-collapse ul ul ul ul li:hover ul {
    display: block;
  }
  .navbar .navbar-collapse ul ul ul ul ul {
    position: absolute;
    top: 0;
    left: -100%;
    min-width: 250px;
    display: none;
    z-index: 1;
    background-color: fuchsia;
  }
}

@media (max-width: 991px) {
  .navbar .navbar .navbar-collapse { padding-left: 0; }
  .navbar .navbar-collapse::before { height: 0; }

  .navbar .navbar-nav > .navbar .navbar-nav > .nav-link .fa-2x { font-size: 1.2em; }  
}

/* <<< content-box >>> */
#content-box {
  overflow: hidden;
  width: calc(100% - 330px); /* updated to match sidebar */
}

@media (max-width: 991px) {
  #content-box { width: 100%; }
}

.social-bar {
  margin-top: 0 !important;  /* force no spacing above */
}

.section {
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
}

/* <<< Banner side >>> */
.banner-section {
  position: relative;
  text-align: center;
  background-color: #99ccff;
  padding-top: 40px;
  align-items: flex-start;
}

.bg-blue-transparent { background-color: rgb(0 0 0 / 0.5); }

.banner-section .logo-fa {  
  color: #fff;
  max-width: 400px;
  margin-left: 5px;
  padding-top: 43px;
  padding-bottom: 35px;
  font-size: 32px;
  margin-bottom: 60px;
}

@media (max-width: 991px) {
  .banner-section .logo-fa { margin: 0 auto 30px; }
}

@media (max-width: 767px) {
  .banner-section .logo-fa {
    font-size: 28px;
    padding-top: 20px;
    padding-bottom: 15px;
  }
}

.banner-section .logo-fa span {
  font-size: 38px;
  display: block;
  text-transform: uppercase;
  margin-bottom: 17px;
}

@media (max-width: 767px) {
  .banner-section .logo-fa span {
    font-size: 32px;
    margin-bottom: 10px;
  }
}

.banner-section .simple {
  color: #fff;
  display: inline-block;
  margin: auto;
  margin-left: 97px;
  padding: 33px 68px 34px 68px;
}

@media (max-width: 991px) {
  .banner-section .simple { margin-left: 0; }
}

@media (max-width: 767px) {
  .banner-section .simple { padding: 16px 34px 17px 34px; }
}

.banner-section .simple p {
  margin-bottom: 0;
  font-size: 22px;
}

@media (max-width: 991px) {
  .banner-section .simple p { font-size: 20px; }
}

@media (max-width: 575px) {
  .banner-section .simple p { font-size: 18px; }
}

/* <<< Work Side >>> */
.work-section {
  padding-top: 90px!important;
  padding-bottom: 90px!important;
  min-height: 850px;
  background-color: #223759;
}

.work-section .container { max-width: 1242px; }

.tm-work-item-inner {
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .work-section .item {
    text-align: center;
    margin-bottom: 30px;
  }
}

.work-section .item.one { margin-top: 80px; }

@media (max-width: 767px) {
  .work-section .item.one { margin-top: 0;}
}

.work-section .item.two { margin-top: 161px; }

@media (max-width: 767px) {
  .work-section .item.two { margin-top: 0; }
}

.work-section .item @media (max-width: 767px) {
  .work-section .item }

.work-section .item h3 {
  color: #ffccff;
  text-transform: uppercase;
  font-size: 27px;
  letter-spacing: -1px;
  margin-bottom: 9px;
}

.work-section .item h4 {
  color: #ffccff;
  font-size: 22px;
  letter-spacing: -1px;
  margin-bottom: 9px;
}

.work-section .item p {
  color: #fff;
  line-height: 31px;
  margin-bottom: 0;
}

.work-section .title {
  margin-top: 5px;
  margin-left: 1px;
  border-bottom: 1px solid #fff;
}

.work-section .title h2 {
  color: #fff;
  font-size: 32px;
  margin-bottom: 12px;
}

/* <<< Gallery section >>> */
.gallery-slider figure {
	position: relative;
	float: left;
  overflow: hidden;
  margin: 0;
  max-width: 200px;
	height: auto;
	background: #3085a3;
	text-align: center;
	cursor: pointer;
}

.gallery-slider figure img {
	position: relative;
	display: block;
	min-height: 100%;
	max-width: 100%;
	opacity: 0.8;
}

.gallery-slider figure figcaption {
	padding: 1em;
	color: #fff;
	text-transform: uppercase;
	font-size: 1.25em;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.gallery-slider figure figcaption::before,
.gallery-slider figure figcaption::after {
	pointer-events: none;
}

.gallery-slider figure figcaption,
.gallery-slider figure figcaption > a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Anchor will cover the whole item by default */
/* For some effects it will show as a button */
.gallery-slider figure figcaption > a {
	z-index: 1000;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;
}

.gallery-slider figure h2 {
	word-spacing: -0.15em;
  font-weight: 300;
  font-size: 28px;
}

.gallery-slider figure h2 span {
	font-weight: 800;
}

.gallery-slider figure h2,
.gallery-slider figure p {
	margin: 0;
}

.gallery-slider figure p {
	letter-spacing: 1px;
	font-size: 68.5%;
}

.gallery-section {
  background-color: #99ccff;
}

.gallery-section .title {
  padding-right: 13px;
  margin-bottom: 80px;
}

/*---------------*/
/***** Julia *****/
/*---------------*/

figure.effect-julia {
	background: #2f3238;
}

figure.effect-julia img {
	-webkit-transition: opacity 1s, -webkit-transform 1s;
	transition: opacity 1s, transform 1s;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

figure.effect-julia figcaption {
	display: flex;
  align-items: center;
}

figure.effect-julia h2 {
	position: relative;
	padding: 0.5em 0;
}

figure.effect-julia p {
	display: inline-block;
	margin: 0 0 0.25em;
	padding: 0.4em 1em;
	background: rgba(255,255,255,0.9);
	color: #2f3238;
	text-transform: none;
	font-weight: 500;
	font-size: 75%;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(-360px,0,0);
	transform: translate3d(-360px,0,0);
}

figure.effect-julia p:first-child {
	-webkit-transition-delay: 0.15s;
	transition-delay: 0.15s;
}

figure.effect-julia p:nth-of-type(2) {
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

figure.effect-julia p:nth-of-type(3) {
	-webkit-transition-delay: 0.05s;
	transition-delay: 0.05s;
}

figure.effect-julia:hover p:first-child {
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
}

figure.effect-julia:hover p:nth-of-type(2) {
	-webkit-transition-delay: 0.05s;
	transition-delay: 0.05s;
}

figure.effect-julia:hover p:nth-of-type(3) {
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

figure.effect-julia:hover img {
	opacity: 0.4;
	-webkit-transform: scale3d(1.1,1.1,1);
	transform: scale3d(1.1,1.1,1);
}

figure.effect-julia:hover p {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

@media (max-width: 767px) {
  .gallery-section .title { margin-bottom: 40px; }
}

.gallery-section .title h2 { color: #006699; }
.gallery-section .slick-list { margin-bottom: 40px; }

.gallery-section .item {
  text-align: center;
  margin: 5px;
}

.gallery-section .slick-dots {
  position: unset;
  bottom: 0;
}

.gallery-section .slick-dots li {
  background-color: #6699cc;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  margin: 0 10px;
  transition: all 0.3s ease;
}

.gallery-section .slick-dots li.slick-active,
.gallery-section .slick-dots li:hover {
  background-color: #006699;
}

.gallery-section .slick-dots li button { display: none; }

.contact-section {
  background-color: #6699cc;
  flex-direction: column;
  justify-content: center;
}

.contact-section .title { margin-bottom: 50px; }

.contact-section .title h3 {
  color: #fff;
  font-size: 34px;
}

.contact-section .contact-form .form-group { margin-bottom: 24px; }
.tm-contact-item-inner { max-width: 360px; }
.tm-contact-item-inner-2 { max-width: 330px; }

.tm-contact-item-inner,
.tm-contact-item-inner-2 {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767px) {
  .contact-section .contact-details { margin-bottom: 30px; }
}

.contact-section .contact-details p {
  color: #fff;
  line-height: 31px;
  margin-bottom: 38px;
}

.contact-section .contact-details ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.contact-section .contact-details ul li {
  color: #fff;
  margin-bottom: 4px;
}

.contact-section .contact-details ul li .contact-section .contact-details ul li .lbl {
  display: inline-block;
  max-width: 55px;
  width: 100%;
}

.contact-section .contact-details ul li a {
  color: #fff;
  text-decoration: none;
}

.contact-section .contact-details ul li a:hover { color: #99ccff; }
.contact-section .map { text-align: center; }

.map-outer{
  position:relative;
  height:400px;
  width:100%;
}

.gmap-canvas {
  overflow:hidden;
  background:none!important;
  height:400px;
  width:100%;
}

/* <<< footer >>> */
.footer {
  position: relative;
  background-color: #6699cc;
  color: #fff;
  padding-top: 15px;
  padding-bottom: 15px;
  position: static;
  margin-top: 30px;
  /* <<< Dummy Side >>> */
}

@media (min-height: 600px){  
  .contact-section { position: relative; }

  .footer {
    position: absolute;
    bottom: 0;
    left: 60px;
  }
}

@media (max-width: 1300px) {
  .contact-section {
    height: auto;
    min-height: 100vh;
    padding-top: 50px;
  }

  .contact-form,
  .contact-details {
    width: 50%;
  }

  .map { width: 100%; }
}

.container {
  padding-left: 50px;
  padding-right: 50px;
}
.container-2 { max-width: 1250px; }

@media (max-width: 1800px) {
  .footer { left: 15px; }
  .container-2 { max-width: 1150px; }
}

@media (max-width: 1733px) {
  .footer {
    left: 0;
    padding-top: 30px;
  }
}

.parallax-window { background: transparent; }

@media (max-width: 991px) {
  .section {
    height: auto;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .banner-section { padding-top: 0; }
  .contact-section { padding-bottom: 0; }
}

@media (max-width: 620px) {
  .contact-form, .contact-details { width: 100%; }

  .contact-details { margin-bottom: 50px!important; }
}

.gallery-title-box {
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 8px 25px; /* reduced top/bottom padding */
  border-radius: 10px;
  border: 2px solid #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.7);
}


.gallery-title-box h2 {
  margin: 0;
  padding: 0;
  line-height: 1;
}


.social-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6); /* same background */
  border: 2px solid #fff;
  border-radius: 10px;
  padding: 5px 15px; /* less vertical padding */
  margin: 10px auto 20px auto; /* closer to top */
  max-width: 100%;
  text-align: center;
  flex-wrap: wrap;
}

.social-link {
  color: #fff;
  text-decoration: none;
  font-size: 1.25rem; /* larger text */
  padding: 10px 20px;
  transition: all 0.3s ease;
  flex: 1 1 33%;
  text-align: center;
}

.social-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transform: scale(1.05);
}

@media screen and (max-width: 768px) {
  .social-bar {
    flex-direction: column;
    text-align: center;
  }

  .social-link {
    flex: 1 1 100%;
    padding: 10px 0;
  }
}

/* >>> UPGRADED CONTACT SECTION <<< */
.contact-section {
  padding: 60px 20px;
  background: linear-gradient(180deg, #223759 0%, #1a2c4e 100%);
}

.contact-section .title h3 {
  font-size: 38px;
  margin-bottom: 40px;
  color: #fff;
  text-align: center;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
}

.contact-flex-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-box {
  flex: 1 1 45%;
  max-width: 45%;
  background: rgba(0,0,0,0.5);
  border: 3px solid #99ccff;
  border-radius: 15px;
  padding: 35px;
  color: #fff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.7);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}


.contact-box.contact-wide {
  flex: 0 0 100%;
  max-width: 100%;
  width: 100%;
  margin-top: 2rem;
}

.contact-box.contact-wide h3,
.contact-box.contact-wide p {
  text-align: center;
}

.contact-box.in-view {
  opacity: 1;
  transform: translateY(0);
}

.contact-box form input,
.contact-box form textarea {
  background: rgba(255,255,255,0.1);
  border: 1px solid #99ccff;
  color: #fff;
}

.contact-box form input:focus,
.contact-box form textarea:focus {
  outline: none;
  border-color: #66aaff;
  background: rgba(255,255,255,0.2);
}

.contact-box ul {
  list-style: none;
  padding-left: 0;
  font-size: 20px;
  line-height: 1.8;
}

.contact-box ul li i {
  margin-right: 10px;
  font-size: 22px;
  transition: color 0.3s ease;
}

/* Hover highlight on social icons */
.contact-box ul li a:hover i {
  color: #ffcc00;
}

.contact-box a {
  color: #99ccff;
  text-decoration: none;
}

.contact-box a:hover {
  text-decoration: underline;
}

@media (max-width: 991px) {
  .contact-box {
    flex: 1 1 90%;
    max-width: 90%;
  }
}

.navbar-nav .nav-item .navbar-nav .nav-item .nav-link:hover {
  background: rgba(255,255,255,0.1);
}

.navbar-nav .nav-item

/* --- FIXED MENU NAVIGATION STYLE --- */
.navbar-nav {
  padding: 0;
  margin: 0;
  list-style: none;
}

.navbar-nav .nav-item {
  display: flex;
  align-items: center;
  padding: 6px 0;
  margin: 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.navbar-nav .nav-item:last-child {
  border-bottom: none;
}

.navbar-nav .nav-link {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  padding: 6px 10px;
  width: 100%;
}

.navbar-nav .nav-link .icn {
  margin-right: 10px;
  font-size: 20px;
  color: #99ccff;
  min-width: 24px;
  text-align: center;
}

.navbar-nav .nav-link:hover {
  color: #ffcc00;
}

/* Section styling for dark theme background */


/* Responsive grid container */
.about-section .committee-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;               /* space between grid items */
  max-width: 1200px;
  margin: 0 auto;          /* center the grid within section if needed */
}

/* Committee member card */
.about-section .committee-member {
  flex: 1 1 calc(33.333% - 20px);  /* three columns on large screens */
  max-width: calc(33.333% - 20px);
  margin: 0;                      /* we use gap for spacing */
  text-align: center;
}
.about-section .committee-member img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;             /* rounded corners on thumbnails :contentReference[oaicite:9]{index=9} */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);  /* subtle shadow for depth :contentReference[oaicite:10]{index=10} */
  transition: transform 0.3s ease;          /* smooth animation for hover */
}
.about-section .committee-member:hover img {
  transform: scale(1.05);         /* zoom image slightly on hover :contentReference[oaicite:11]{index=11} */
}
.about-section .committee-member h3 {
  margin: 0.5em 0 0.2em;
  font-size: 1.1em;
}
.about-section .member-position {
  margin: 0;
  font-size: 0.95em;
  color: #ccc;  /* slightly lighter text for position/title */
}

/* Responsive column adjustments */
@media screen and (max-width: 800px) {
  .about-section .committee-member {
    flex: 1 1 calc(50% - 20px);   /* two columns on medium screens */
    max-width: calc(50% - 20px);
  }
}
@media screen and (max-width: 600px) {
  .about-section .committee-member {
    flex: 1 1 100%;               /* one column on small screens */
    max-width: 100%;
  }
}

/* Modal overlay (hidden by default, shown when targeted) */
.member-modal {
  display: none;               /* hidden until :target triggers it */
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.8);  /* translucent black overlay */
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.member-modal:target {
  display: flex;              /* show the modal when its id is targeted in URL :contentReference[oaicite:12]{index=12} */
}
/* Modal content box */
.member-modal-content {
  background: #fff;
  color: #333;
  max-width: 600px;
  width: 90%;
  padding: 20px;
  border-radius: 5px;
  position: relative;
}
.member-modal-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 1em;
  border-radius: 5px;
}
/* Modal text (ensure headings and text are readable) */
.member-modal-content h3 {
  margin-top: 0;
}
.member-modal-content .member-position {
  font-weight: bold;
  margin-bottom: 1em;
  color: #555;
}
.member-modal-content .member-bio {
  line-height: 1.6;
}
/* Close button (X) styling */
.member-modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #333;
  text-decoration: none;
  font-size: 1.5em;
  font-weight: bold;
}
.member-modal-close:hover {
  color: #000;
}
/* >>> SECTION 7: ABOUT US <<< */

.about-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6); /* darkens background image */
  z-index: 1;
}
.about-section .container {
  position: relative;
  z-index: 2;
}
.about-section .title {
  text-align: center;
  margin-bottom: 20px;
}
.about-section .title h2 {
  color: #99ccff;
  font-weight: 700;
  font-size: 42px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
  margin: 0 auto 40px;
}
.about-content-box {
  background: rgba(0, 0, 0, 0.5);
  border-left: 4px solid #99ccff;
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 8px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}
.committee-title {
  font-size: 30px;
  color: #ffcc00;
  text-align: center;
  margin: 50px 0 30px;
}

@media (min-width: 768px) {
  
}
@media (min-width: 1024px) {
  
}
.committee-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid #99ccff;
  border-radius: 10px;
  padding: 12px;
  text-align: center;
  width: 100%;
  max-width: 160px;
  cursor: pointer;
  transition: transform 0.3s ease;
  box-sizing: border-box;
}
.committee-card:hover {
  transform: scale(1.05);
}
.committee-card img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  border: 2px solid #99ccff;
  margin-bottom: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.committee-card h5 {
  font-size: 16px;
  margin: 4px 0 2px;
  color: #99ccff;
}
.committee-card p {
  font-size: 14px;
  margin: 0;
  color: #fff;
}

/* --- SECTION 7: ABOUT US & COMMITTEE --- */
#section-7

#section-7.about-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

#section-7 .container {
  position: relative;
  z-index: 1;
}

#section-7 .title {
  text-align: center;
  margin-bottom: 20px;
}

#section-7 .gallery-title-box h2 {
  margin: 0;
  padding: 0;
  line-height: 1;
}



/* Framed boxes */
#section-7 .about-content-box {
  background: rgba(0, 0, 0, 0.5);
  border-left: 4px solid #99ccff;
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 8px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

/* Committee grid */
#section-7 .committee-title {
  font-size: 30px;
  color: #ffcc00;
  text-align: center;
  margin: 50px 0 30px;
}

#section-7 

#section-7 .committee-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid #99ccff;
  border-radius: 10px;
  padding: 12px;
  text-align: center;
  max-width: 160px;
  cursor: pointer;
  transition: transform 0.3s ease;
  box-sizing: border-box;
}
#section-7 .committee-card:hover {
  transform: scale(1.05);
}
#section-7 .committee-card img {
  width: 100%;
  border-radius: 50%;
  border: 2px solid #99ccff;
  margin-bottom: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
#section-7 .committee-card h5 {
  font-size: 16px;
  margin: 4px 0 2px;
  color: #99ccff;
}
#section-7 .committee-card p {
  font-size: 14px;
  margin: 0;
  color: #fff;
}

/* Responsive tweaks */
@media (max-width: 767px) {
  #section-7 
}

.about-section {
  position: relative;
  padding: 60px 20px;
  color: #fff;
  overflow: hidden;
  background-color: transparent;
  z-index: 1;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.about-section .container {
  position: relative;
  z-index: 2;
}

.committee-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  justify-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .committee-gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .committee-gallery {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* --- ABOUT US SECTION --- */
#section-7 {
  position: relative;
  color: #fff;
  overflow: hidden;
  padding: 60px 20px;
}

#section-7::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6); /* dark overlay for readability */
  z-index: 1;
}

#section-7 .container {
  position: relative;
  z-index: 2;
}

#section-7 .title {
  text-align: center;
  margin-bottom: 20px;
}

#section-7 .title h2 {
  color: #99ccff;
  font-weight: 700;
  font-size: 42px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
  margin: 0 auto 30px;
}

#section-7 .about-content-box {
  background: rgba(0, 0, 0, 0.5);
  border-left: 4px solid #99ccff;
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 8px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

#section-7 .committee-title {
  font-size: 30px;
  color: #ffcc00;
  text-align: center;
  margin: 50px 0 30px;
}

#section-7 .committee-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  justify-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  #section-7 .committee-gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1024px) {
  #section-7 .committee-gallery {
    grid-template-columns: repeat(6, 1fr);
  }
}

#section-7 .committee-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid #99ccff;
  border-radius: 10px;
  padding: 12px;
  text-align: center;
  width: 100%;
  max-width: 160px;
  cursor: pointer;
  transition: transform 0.3s ease;
  box-sizing: border-box;
}

#section-7 .committee-card:hover {
  transform: scale(1.05);
}

#section-7 .committee-card img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  border: 2px solid #99ccff;
  margin-bottom: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

#section-7 .committee-card h5 {
  font-size: 16px;
  margin: 4px 0 2px;
  color: #99ccff;
}

#section-7 .committee-card p {
  font-size: 14px;
  margin: 0;
  color: #fff;
}

/* Fix section height and overflow for About Us */
#section-7.section {
  height: auto !important;
  min-height: 100vh;
  overflow: visible !important;
  padding-bottom: 80px;
}
.committee-modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow-y: auto; /* allows scroll if content too tall */
  padding: 60px 20px; /* gives space from top and sides */
  box-sizing: border-box;
}

.committee-modal.active {
  display: flex;
}

.committee-modal-content {
  background: #111;
  color: #fff;
  max-width: 600px;
  width: 100%;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 20px rgba(0,0,0,0.6);
}

.committee-modal-content img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
  border: 2px solid #99ccff;
}

.committee-modal-content h3 {
  font-size: 24px;
  color: #ffcc00;
  margin: 10px 0 5px;
}

.committee-modal-content .member-position {
  font-weight: bold;
  color: #99ccff;
  margin-bottom: 15px;
}

.committee-modal-content .member-bio {
  font-size: 16px;
  line-height: 1.6;
  color: #ddd;
}

.committee-modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
}

.committee-modal-close:hover {
  color: #ffcc00;
}

@media (max-width: 600px) {
  .section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .work-section .container,
  .news-section .container,
  .next-show-section .container {
    padding-left: 5px !important;
    padding-right: 5px !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  .work-section .item,
  .news-section .item,
  .next-show-section .item {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }

  .work-section .item p,
  .news-section p,
  .next-show-section p {
    font-size: 15px;
    line-height: 1.4;
  }

  .title, .title h2 {
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
  }
}
.contact-box {
  word-wrap: break-word;
  overflow-wrap: break-word;
}
@media (max-width: 600px) {
  .contact-box a {
    font-size: 0.95rem;
  }
}
/* === Previous Shows Modal === */
.previous-shows-container {
  text-align: center;
  margin-top: 30px;
}

.previous-shows-btn {
  font-size: 20px;
  padding: 12px 30px;
  border-radius: 8px;
  background: #356ba2;
  color: white;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.previous-shows-btn:hover {
  background: #99ccff;
  color: black;
}

/* Modal background */
.previous-shows-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  box-sizing: border-box;
}

/* Modal content */
.previous-shows-modal .modal-content {
  background: #111;
  color: #fff;
  max-width: 700px;
  width: 100%;
  border-radius: 10px;
  padding: 30px;
  position: relative;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  overflow-y: auto;
  max-height: 90vh;
}

.previous-shows-modal h2 {
  color: #ffcc00;
  margin-bottom: 20px;
  text-align: center;
}

/* Close button */
.previous-shows-modal .close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

.previous-shows-modal .close-modal:hover {
  color: #ffcc00;
}

.show-list {
  list-style: none;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.6;
}
.show-list li {
  padding: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* News Layout */
.news-grid {
  display: flex;
  flex-direction: row;
  gap: 30px;
  flex-wrap: wrap;
}

.previous-news {
  background: #111;
  color: white;
  padding: 15px;
  border-radius: 10px;
  font-size: 0.9rem;
  max-width: 250px;
  flex-shrink: 0;
}


.previous-news h3 {
  margin-bottom: 15px;
}

.news-item {
  background: #222;
  padding: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.news-item:hover {
  background: #333;
}

/* Modal Styling */
.news-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.news-modal .modal-content {
  background: #fff;
  color: #000;
  padding: 30px;
  border-radius: 10px;
  max-width: 600px;
  width: 90%;
  position: relative;
  text-align: left;
}

.news-modal .modal-content .modal-img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
  border-radius: 8px;
}

.news-modal .close {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 28px;
  color: #000;
  cursor: pointer;
}
@media (max-width: 768px) {
  .news-container {
    flex-direction: column;
  }

  .news-grid,
  .previous-news {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .previous-news {
    margin: 30px 16px 0 16px;
    padding: 15px;
    box-sizing: border-box;
  }
}
