/*
Theme Name: Theme Showtech
Theme URI: http://localhost/showtech_wordpress/
Author: Shihas
Description: A custom lightweight WordPress theme for Showtech
Version: 1.0
Text Domain: theme-showtech
*/
 * { margin: 0; padding: 0; box-sizing: border-box; }
    html, body {  min-height: 100%;; font-family: 'Arial', sans-serif; overflow-x: hidden; }

      .header-navigation {
      position: relative;
    /*  height: 100vh;
      overflow: hidden;*/
    }



    @font-face {
      font-family: 'Oswald Variable';
      src: url('assets/fonts/Oswald-VariableFont_wght.ttf') format('truetype');
      font-weight: 100 900;
      font-style: normal;
      font-display: swap;
    }

  @font-face {
    font-family: 'Dosis Variable';
    src: url('assets/fonts/Dosis-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
  }




   @font-face {
      font-family: 'Dosis Book';
      src: url('assets/fonts/dosis.book.ttf') format('truetype');
      font-weight: 100 900;
      font-style: normal;
      font-display: swap;
    }

  @font-face {
    font-family: 'Dosis Medium';
    src: url('assets/fonts/dosis.medium.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
  }


  @font-face {
    font-family: 'Helotypo';
    src: url('assets/fonts/Helotypo.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
  }









  @font-face {
    font-family: 'Poppins-Medium';
    src: url('assets/fonts/Poppins-Medium.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
  }




@font-face {
    font-family: 'Poppins-Light';
    src: url('assets/fonts/Poppins-Light.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
  }

  
/*@font-face {
  font-family: 'Arial Black';
  src: local('Arial Black');
}
@font-face {
  font-family: 'Tahoma';
  src: local('Tahoma');
}


h1 {
  font-family: 'Arial Black', Gadget, sans-serif;
}
p {
  font-family: Tahoma, Geneva, sans-serif;
}

*/

/*
h1 {font-family: 'Inter', sans-serif;}

p {font-family: 'Inter', sans-serif;}*/


.homepage_about-description{font-family: 'Poppins-Light', sans-serif !important; }
   

    /* Header */
    header {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      padding: 5px 10px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: #fff;
      z-index: 3;
      background: rgba(0, 0, 0, 0.4);
    }

    .logo {
      font-weight: bold;
      font-size: 20px;
    }

    nav {
      display: flex;
      gap: 30px;
      align-items: center;
    }

    nav > div, nav > a {
      position: relative;
    }

    nav a {
      text-decoration: none;
      color: white;
      font-weight: 500;
      padding: 5px 0;
    }

    nav#mainNav {
      font-family: 'Dosis Variable', sans-serif;
    }

    .nav-item {font-size: 15px}


    .nav-item:hover .dropdown {
      display: block;
    }

 /*   .dropdown {
      display: none;
      position: absolute;
      top: 30px;
      left: 0;
      background-color: rgba(0, 0, 0, 0.9);
      padding: 10px 0;
      min-width: 150px;
    }*/

    .dropdown a {
      display: block;
      padding: 8px 20px;
      white-space: nowrap;
    }

    .right-actions {
      display: flex;
      gap: 25px;
      align-items: center;
      font-size: 14px;
    }

    .quote-btn {
      background-color: red;
      color: white;
      padding: 10px 14px;
      font-weight: bold;
      border-radius: 3px;
      text-align: center;
      cursor: pointer;
    }

    .social-icons {
      position: absolute;
      right: 20px;
      bottom: 40px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 2;
    }

    .social-icons a {
      color: white;
      font-size: 18px;
    }

    /* Mobile Menu */
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 4px;
    }

    .hamburger span {
      width: 25px;
      height: 3px;
      background: white;
    }

    .mobile-menu-overlay {
      position: fixed;
      top: 0;
      left: -100%;
      width: 250px;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.95);
      color: white;
      padding: 30px 20px;
      z-index: 9999;
      transition: left 0.3s ease;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .mobile-menu-overlay.show {
      left: 0;
    }

    .mobile-menu-overlay a {
      color: white;
      text-decoration: none;
      font-weight: bold;
    }

    @media (max-width: 1100px) {
      header {
        flex-wrap: wrap;
        padding: 20px;
      }

      .hamburger {
        display: flex;
      }

      nav, .right-actions {
        display: none;
      }
    }


img.custom-logo {
    width: 170px;
    height: 75px;
}



.nav-item {
  position: relative;
}

.nav-item .dropdown {
  display: none;
  position: absolute;
  top: 100%; /* aligns submenu directly below parent */
  left: 0;
  /*background-color: rgba(0, 0, 0, 0.95);*/
  padding: 10px 0 0 0;
  min-width: 160px;
  z-index: 1000;
  transition: all 0.2s ease;
  padding-top:20px !important ;
}

.nav-item:hover .dropdown {
  display: block;
}

/* Optional: make dropdown links look nice */
.dropdown a {
  display: block;
  padding: 8px 20px;
  color: white;
  text-decoration: none;
  white-space: nowrap;
  background: rgba(0, 0, 0, 0.95);
}

.dropdown a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}



/* mobile menu  */


.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: -100%;
  width: 260px;
  height: 100%;
  background-color: #000;
  color: white;
  padding: 30px 20px;
  z-index: 9999;
  transition: left 0.3s ease;
  overflow-y: auto;
}

.mobile-menu-overlay.show {
  left: 0;
}

.mobile-close {
  font-size: 24px;
  font-weight: bold;
  color: red;
  text-align: right;
  cursor: pointer;
  margin-bottom: 20px;
}

.mobile-nav .mobile-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 14px 0;
}

.mobile-link-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-link-wrapper a {
  color: white;
  font-weight: bold;
  text-decoration: none;
}

.mobile-submenu {
  display: none;
  flex-direction: column;
  padding-left: 15px;
  margin-top: 10px;
}

.mobile-submenu a {
  font-weight: normal;
  font-size: 14px;
  padding: 6px 0;
}

.mobile-submenu.show {
  display: flex;
}

.mobile-toggle {
  cursor: pointer;
  font-size: 18px;
  margin-left: 10px;
  transition: transform 0.2s;
}

.mobile-toggle.open {
  transform: rotate(180deg);
}


.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.mobile-logo img.custom-logo {
  width: 110px;
  height: auto;
}



/* footer */

.custom-footer {
  background: url('https://new.showtechevents.com/images/bg-footer.webp') no-repeat center bottom;
  background-size: cover;
  color: #fff;
  padding: 60px 40px 20px;
  font-family: 'Arial', sans-serif;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1 1 220px;
  min-width: 180px;
}

.footer-logo img {
  width: 130px;
  height: auto;
}

.footer-location h4,
.footer-email h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: white;
}

.footer-location p,
.footer-email p {
  color: #ff3333;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.6;
}

.footer-email a {
  color: #ff3333;
  text-decoration: none;
  font-weight: bold;
}

.footer-social ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 20px;
  justify-content: flex-start;
}

.footer-social ul li a img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  transition: transform 0.2s;
}

.footer-social ul li a:hover img {
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: white;
}

.footer-bottom a {
  color: #ff3333;
  text-decoration: none;
  font-weight: bold;
}


.nav-item .dropdown a
 {
    border-bottom-style: solid;
    border-bottom-color: #FFFFFF33;
    border-bottom-width: 1px;
    letter-spacing: 2.2px;
}



.nav-item .dropdown a {
  color: white;
  transition: all 0.3s ease-in-out;
}

.nav-item .dropdown a:hover {
  color: red;
  background: rgba(0, 0, 0, 0.95);;
}

section.event-slider-section .swiper-wrapper
 {
    position: relative;
    padding-bottom: 30px;
}


/* third section */

.homepage_about-section {
  background: #000;
  padding: 80px 20px;
  color: #fff;
}

.homepage_about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: auto;
  flex-wrap: wrap;
}

.homepage_about-image {
  flex: 1 1 50%;
  padding: 20px;
}

.homepage_about-image img {
  width: 100%;
  border-radius: 8px;
}

.homepage_about-content {
  flex: 1 1 50%;
  padding: 20px;
}

.homepage_about-tagline {
  display: inline-block;
  color: red;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.homepage_about-content h2 {
  font-size: 48px;
  font-weight: bold;
  line-height: 0.5;
  margin-bottom: 45px;
}

.homepage_about-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #ccc;
}

/* Responsive */
@media (max-width: 991px) {
  .homepage_about-container {
    flex-direction: column;
    text-align: center;
  }

  .homepage_about-content h2 {
    font-size: 60px;
  }

  .homepage_about-content p {
    font-size: 16px;
  }
}


/* fourth section */

.homepage_highlights-section {
  background-color: #111;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.homepage_highlights-title {
  font-size: 48px;
  margin-bottom: 40px;
}

.homepage_highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1400px;
  margin: auto;
}

.homepage_highlights-item iframe {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.08);
}

.homepage_highlights-explore {
  margin-top: 40px;
}

.homepage_highlights-btn {
  background-color: red;
  color: white;
  padding: 12px 30px;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.homepage_highlights-btn:hover {
  background-color: #c70000;
}

@media (max-width: 768px) {
  .homepage_highlights-title {
    font-size: 32px;
  }

  .homepage_highlights-item iframe {
    height: 180px;
  }

  .homepage_about-content h2{
            font-size: clamp(13px, 8vw, 150px);
  }
}


/* home page gallery */

/* for services */
.servicepage_hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.servicepage_hero-overlay {
  background-color: rgba(0, 0, 0, 0.6); /* Dark overlay */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.servicepage_hero-overlay h1 {
  /*font-size: 48px;*/
  font-weight: bold;
  margin: 0;
  padding: 0 20px;
  color: #fff;
  z-index: 2;
}

/* Responsive */
@media (max-width: 768px) {
  .servicepage_hero {
    height: 50vh;
  }

  .servicepage_hero-overlay h1 {
    font-size: 28px;
  }
}



section.servicepage_hero {
    /*position: fixed;*/
    top: 0;
    left: 0;
    width: 100vw;
    height: 80vh;
    overflow: hidden;
    z-index: -1;
}

.servicepage_blocks {
  padding: 80px 20px;
  background-color: #f7f7f7;
}

.servicepage_blocks .container {
  max-width: 1200px;
  margin: 0 auto;
}

.servicepage_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.servicepage_item {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servicepage_item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.servicepage_item img {
  max-width: 80px;
  margin-bottom: 20px;
}

.servicepage_item h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #333;
}

.servicepage_item p {
  font-size: 15px;
  color: #000;
  line-height: 1.6;
}


/* --- Concepts Design Page --- */

.concepts_banner {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.concepts_banner .swiper-slide {
  height: 90vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.concepts_banner .slide-title {
  /*font-size: 48px;*/
  font-weight: bold;
  color: #fff;
  text-align: center;
  padding: 0 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  z-index: 10;
}

.concepts_content {
  padding: 80px 20px;
  background-color: #fff;
  text-align: center;
}

.concepts_content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #000;
}

.concepts_content .description {
  max-width: 900px;
  margin: 0 auto 40px;
  font-size: 16px;
  color: #000;
  line-height: 1.7;
  text-align: justify;
}

.concepts_content img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

/* Swiper Pagination Styling */
.swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: red;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .concepts_banner .slide-title {
    font-size: 28px;
  }

  .concepts_content h2 {
    font-size: 28px;
  }

  .concepts_content .description {
    font-size: 15px;
    padding: 0 10px;
  }
}


.trusspage_hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.trusspageSwiper .swiper-slide {
  background-size: cover;
  background-position: center;
  height: 100vh;
}

.trusspage_overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  width: 100%;
}

.trusspage_overlay h1 {
  /*font-size: 48px;*/
  font-weight: bold;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.trusspage_content {
  padding: 60px 20px;
  text-align: center;
}

.trusspage_content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.trusspage_content p {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.6;
}

.trusspage_image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.trusspage_logos {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

.logo-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.logo-item img {
  max-height: 40px;
  object-fit: contain;
}


/* Hero Section */
.stagepage_hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.stagepageSwiper {
  height: 100%;
}

.stagepageSwiper .swiper-slide {
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.stagepage_overlay {
  /*background: rgba(0, 0, 0, 0.5);*/
  padding: 40px;
  text-align: center;
  border-radius: 10px;
}

.stagepage_overlay h1 {
  color: #fff;
  /*font-size: 48px;*/
  font-weight: bold;
  margin: 0;
}

/* Swiper Pagination */
.stagepageSwiper .swiper-pagination {
  position: absolute;
  bottom: 20px;
  text-align: center;
  width: 100%;
  z-index: 10;
}

.stagepageSwiper .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.6;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.stagepageSwiper .swiper-pagination-bullet-active {
  background: red;
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .stagepage_overlay h1 {
    font-size: 28px;
    padding: 20px;
  }

  .stagepage_overlay {
    padding: 20px;
  }
}


/* for loader */

#site-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff; /* or #000000 */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.3s ease;
}

.loader-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #e0e0e0;
  border-top: 4px solid #ff0000; /* loader color */
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}



nav#mainNav a.nav-item,.nav-item a {
    font-weight: 700;
}


.nav-item .dropdown a {

  font-weight: 500;
  font-size: 15px;
}


.home_to_social_icons_vertical {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.home_to_social_icons_vertical a img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
  padding: 5px;
}

.home_to_social_icons_vertical a img:hover {
  transform: scale(1.1);
  box-shadow: 0 0 12px rgba(0,0,0,0.35);
}


@media (min-width: 769px) {

    .nav-item {margin-right: 25px;}


}

.nav-item {
  position: relative;
  display: inline-block;
  padding: 10px 0px;
  text-decoration: none;
  color: #fff; /* or your default text color */
  /*min-width: 145px;*/
  text-align: center;
}

.nav-item::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: red;
  transition: width 0.3s ease;
}

.nav-item:hover::after {
  width: 100%;
}

.nav-item {
  position: relative;
}

.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s linear 2s; /* 2s delay to hide */
  pointer-events: none;
}

.nav-item:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0s; /* No delay when showing */
  pointer-events: auto;
}



.project-detail .gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.project-detail .gallery img {
  max-width: 350px;
  border-radius: 6px;
  transition: transform 0.3s;
}

.project-detail .gallery a:hover img {
  transform: scale(1.05);
}

.featured-image img {
  width: 100%;
  max-width: 800px;
  margin: 20px 0;
  border-radius: 10px;
}

.hero-section {
  background: #000;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.hero-section h1 {
  font-size: 36px;
  font-weight: bold;
  margin: 0;
}

.project-detail .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}




.site-footer {
    background: url('https://new.showtechevents.com/images/bg-footer.png') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 60px 30px 20px;
}

.homepage_about-description {
    font-family: 'Dosis Variable', sans-serif;
    text-align: justify;
    font-size: 1.4rem;
    line-height: 1.5em;
}

.banner_heading_forallpages, .slide-title, section.event-slider-section .slider-heading h2, span.homepage_about-tagline, .homepage_about-content h2, .homepage_highlights-title{

    font-family: 'Oswald Variable', sans-serif;

}

span.homepage_about-tagline {
  font-size:24px;
}

footer.site-footer {
    font-family: font-family: 'Poppins-Medium', sans-serif;
}


.bannerTaglineFont{

   font-family: 'Oswald Variable', sans-serifVariable;

        color: white;
        font-size: 5.2rem;
        font-weight: bold;

        text-align: center;
        z-index: 2;
}




/* Laptop & Large Tablets (992px to 1199px) */
@media screen and (max-width: 1199px) {
    .bannerTaglineFont {
        font-size: 4rem;
    }
}

/* Tablets (768px to 991px) */
@media screen and (max-width: 991px) {
    .bannerTaglineFont {
        font-size: 3.2rem;
    }
}

/* Mobile Devices (up to 767px) */
@media screen and (max-width: 767px) {
    .bannerTaglineFont {
        font-size: 2.2rem;
    }
}

/* Extra small screens (below 480px) */
@media screen and (max-width: 480px) {
    .bannerTaglineFont {
        font-size: 1.8rem;
    }
}


.justify-text {
  text-align: justify;
}

/* for paragraphp */
.Dosis-font {
   font-family: 'Poppins-Light', sans-serif
}


/* for heading and banner tagline*/
.Oswald-font { 
   font-family:  'Oswald Variable', sans-serif;
} 

.InnerpageCanter-conatiner {

  max-width: 1200px;
  margin: 0 auto;

}



section.careers-section p {

    font-family: 'Poppins-Light', sans-serif;
     text-align: justify;

}



/* gallery details page  */

/*.hero-banner {
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  color: #fff;
  text-align: center;
}*/
.hero-banner h1 {
  font-size: 3rem;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.6);
}
@media (max-width: 768px) {
  .hero-banner h1 {
    font-size: 2rem;
  }
}






.hero-banner {
    position: relative;
    height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}



/* Tablet devices (width between 768px and 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .hero-banner {
    height: 60vh;
  }
}

/* Mobile devices (width up to 767px) */
@media (max-width: 767px) {
  .hero-banner {
    height: 40vh;
  }
}


.gallery-view-title {color: #000;}

.gallery-view-featured-image {
    text-align: center;
}


.gallery-view-featured-image img {
    width: 100%;
}


.gallery-view-description {
  font-size: 1rem;
  line-height: 1.8;
  color: #000;
  /*max-width: 900px;*/
  margin: 40px auto;
  padding: 0 20px;
  /*font-family: 'Arial', sans-serif;*/
}


.gallery-view-description.Dosis-font.justify-text p {
    margin-bottom: 15px;
}



.gallery_portfolio_heading {
  text-align: center;
  margin: 0 0 40px;
}
.gallery_portfolio_heading img {
  height: 32px;
  margin-bottom: 10px;
}


.color-Black {color: #000;}

.quote-btn-a {
    color: #fff;
    text-decoration: initial;
}



.home_to_social_icons_vertical a img:hover {
  background-color: red;
}



.mobile-menu-actions .quote-btn {
  background-color: #e32626;
  padding: 12px 20px;
  color: white;
  text-align: center;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: bold;
}

.mobile-menu-actions .quote-btn:hover {
  background-color: #b91c1c;
}

.mobile-contact {
  margin-top: 15px;
  text-align: center;
  font-size: 0.95rem;
}


.m-number {
    margin-bottom: 10px;
}

.d-mobile a, .d-mail a {
    font-size: 13px;
    text-decoration: none;
}

@media (min-width: 1537px) and (max-width: 1615px) {
  .d-mobile a, .d-mail a {
      font-size: 15px;
      text-decoration: none;
  }
}




@media (min-width: 1100px) and (max-width: 1537px) {
  .d-mobile a, .d-mail a {
      font-size: 12px;
      text-decoration: none;
  }
}


.contact-form{
  background: #f5f5f5;
    padding: 40px;
    margin-top: 40px;
    border-radius: 8px;
}



.details-column {
  font-family: 'Arial', sans-serif;
  font-size: 16px;
  color: #111;
  line-height: 1.8;
  padding: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.details-column p {
  margin: 0 0 10px;
}

.details-column strong {
  color: #000;
  /*font-weight: bold;*/
}

@media (max-width: 768px) {
  .details-column {
    font-size: 15px;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .details-column {
    font-size: 14px;
    padding: 10px;
  }
}



.color-Red {
    color: red;
}


#mainNav .nav-item > a:hover, #mainNav a:hover{
    color: red !important;
}




/* Change link color to red on hover over nav-item */
#mainNav .nav-item:hover > a {
    color: red !important;
}


/* First submenu item - top rounded corners */
.dropdown a:first-child {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

/* Last submenu item - bottom rounded corners */
.dropdown a:last-child {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}


/*
h1, h2, h3 {
  font-family: 'Dosis Medium', sans-serif;
}

p {
  font-family: 'Dosis Book', sans-serif;
}

.logo-text {
  font-family: 'Helotypo', sans-serif;
}
*/


nav#mainNav a.nav-item, .nav-item a, .mobile-item a {
    font-weight: 400;
    /*font-family: 'Dosis Book', sans-serif;*/
    font-family: 'Poppins-Medium', sans-serifVariable;
    letter-spacing: 2.2px;
}



.nav-item .dropdown a, .mobile-submenu.show .mobile-item a {
  /*font-family: 'Dosis Medium', sans-serif;*/
  font-family: 'Poppins-Medium', sans-serifVariable;


}

.slide-title {

  font-family:'Oswald Variable', sans-serif;

}


h2.bannerTaglineFont.color-Black {
    text-align: left;
    /*font-size: 36px;*/
     font-family: 'Oswald Variable', sans-serif;
}



.Helotypo-font {
   font-family: 'Helotypo', sans-serif;
}



/*.bannerTaglineFont.trustagline {
  white-space: normal;    
  word-wrap: break-word;  
  overflow-wrap: break-word;
  line-height: 1.2;       
}*/


/*@media (max-width: 480px) {
  .bannerTaglineFont.trustagline: 35px 
}*/




.home_to_social_icons_vertical a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-right: 10px; /* spacing between icons */
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.home_to_social_icons_vertical a:hover {
  color: red;
}



@media (max-width: 767px) {

  .home_to_social_icons_vertical {
    top: 31%;
    gap: 0px;
  }

}



@media (max-width: 1382px) {

.nav-item{padding: 10px 0}

}


@media (max-width: 1202px) {

.nav-item{margin-right:0px}

}


.home-about-head {
    text-align: left;
    margin-bottom: 30px;
}


.vimeo-background-wrapper .slide-title {
  font-size: clamp(14px, 2.5vw, 24px);
}


h2.bannerTaglineFont.gallery-view-title
 {
    margin-bottom: 30px;
}



/* === Careers Banner === */
.career-banner {
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    text-align: center;
    color: #fff;
    position: relative;
}

.career-banner-content {
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.career-banner-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.career-banner-content p {
    font-size: 18px;
    margin: 0;
}

/* === Job Listings Section === */
.career-jobs-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.career-jobs-heading {
    font-size: 36px;
    margin-bottom: 10px;
    text-align: center;
    color: #000;
}

.career-jobs-subtext {
    font-size: 16px;
    margin-bottom: 40px;
    color: #666;
}

.career-job-listings {
    display: grid;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.career-job-item {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.career-job-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.career-job-item p {
    font-size: 16px;
    color: #444;
}

.career-job-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: red;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.career-job-btn:hover {
    /*background-color: #005f90;*/
        background-color: #fff;
    color: red;
    border: 1px solid red;
}

/* === No Job Message === */
.career-no-jobs {
    max-width: 700px;
    margin: 40px auto;
    font-size: 18px;
    color: #666;
}


.Poppins-Light{
  font-family: 'Poppins-Light', sans-serif;
}

.slider-heading {margin-bottom: 30px;}


.soundpage_text, .lightspage_text, .videopage_text {
    margin-bottom: 30px;
}

.about-head-section h2.bannerTaglineFont.color-Black {
    line-height: 0.9;
}

.details-column.slide-title a {
    color: #000;
}

/* === Corporate Event Detail Page === */
.event-detail-page {
  padding: 40px 0;
}

.event-banner-swiper,
.event-thumbnail-swiper {
  width: 100%;
  margin-bottom: 40px;
}

.event-banner-swiper .swiper-slide img,
.event-thumbnail-swiper .swiper-slide img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.event-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.event-main-image {
  text-align: center;
  margin-bottom: 30px;
}

.event-main-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.event-description {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 40px;
  padding: 0 20px;
}

.event-thumbnail-swiper .swiper-slide {
  width: auto;
  max-width: 200px;
}

.swiper-pagination {
  text-align: center;
  margin-top: 15px;
}


/* === Event Category Page === */
.event-category-page {
  padding: 40px 0;
}

.event-category-title {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 40px;
}

.event-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.event-grid-item {
  width: 260px;
  text-align: center;
  transition: transform 0.3s ease;
}

.event-grid-item:hover {
  transform: translateY(-5px);
}

.event-grid-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.event-title {
  margin-top: 15px;
  font-size: 18px;
  font-weight: 500;
}


/* === Corporate Events Landing Page === */
.corporate-events-banner {
  background-size: cover;
  background-position: center;
  padding: 120px 20px;
  text-align: center;
  color: white;
  position: relative;
}

.corporate-events-banner .overlay {
  background: rgba(0,0,0,0.5);
  padding: 40px;
  border-radius: 8px;
  display: inline-block;
}

.event-types-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  padding: 40px 0;
}

.event-type-box {
  display: block;
  width: 260px;
  background: #f8f8f8;
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;
  text-decoration: none;
  color: #000;
  transition: 0.3s ease;
}

.event-type-box:hover {
  background: #eee;
  transform: translateY(-5px);
}



/* === Corporate Events Page === */
.corporate-events-banner {
  background-size: cover;
  background-position: center;
  padding: 120px 20px;
  text-align: center;
  color: white;
  position: relative;
}

.corporate-events-banner .overlay {
  background: rgba(0,0,0,0.5);
  padding: 40px;
  border-radius: 8px;
  display: inline-block;
}

.event-types-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  padding: 40px 0;
}

.event-type-box {
  display: block;
  width: 260px;
  background: #f8f8f8;
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;
  text-decoration: none;
  color: #000;
  transition: 0.3s ease;
}

.event-type-box:hover {
  background: #eee;
  transform: translateY(-5px);
}

.event-type-thumbnail {
  height: 160px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 15px;
}

.event-type-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.event-type-banner {
  position: relative;
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.event-type-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* Dark overlay */
  z-index: 1;
}

.event-type-banner .overlay {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.event-type-banner .banner-title {
  font-size: clamp(24px, 5vw, 48px);
  font-weight: 700;
  margin: 0;
  color: #fff;
}


.homepage-latest-blogs {
  padding: 60px 20px;
  background: #f9f9f9;
}
.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: bold;
}
.section-title .dot {
  color: #0055ff;
  font-size: 1.8rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  width: 75%;
  margin: 0 auto;
}



.blog-card {
  border: 1px solid #eee;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.blog-thumb img {
  width: 100%;
  height: 220px;
  display: block;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-thumb {
  overflow: hidden;
  display: block;
}

.blog-thumb img {
  transition: transform 0.4s ease-in-out;
  display: block;
}

.blog-thumb:hover img {
  transform: scale(1.1);
}



a.view-blog {
    color: #000;
    text-decoration: none;
}


h3.blog-title a {
    color: #000;
    text-decoration: none;
}

h3.blog-title {
    text-align: center;

    font-family: 'Oswald Variable', sans-serif;
}

.blog-content
 {
    text-align: center;
}

article.blog_card {
    text-align: center;
}


a.read-more-btn {
    padding: 12px 30px;
    background: red;
    color: #fff;
    border: none;
    border-radius: 6px;
}

a.read-more-btn:hover {
    background: #fff;
    color: red;
    border: 1px solid red;
}

p.blog-excerpt {
    height: 10px;
}

.blog-title {
  font-size: 1.25rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.blog-meta {
  font-size: 0.875rem;
  color: #000;
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-family: 'Poppins-Light', sans-serif !important;
}

.blog-excerpt {
  margin-bottom: 15px;
  font-family: 'Poppins-Light', sans-serif !important;
}

.read-more-btn {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid #000;
  text-decoration: none;
  color: #000;
  transition: 0.2s ease;
  font-size: 14px;
}
.read-more-btn:hover {
  background: #000;
  color: #fff;
}

.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 2rem;
}


.blog_hero {
  position: relative;
  height: 60vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.blog_hero .overlay {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 30px;
  width: 100%;
}

.blog_hero .banner-text {
  color: white;
  font-size: 3rem;
  font-weight: bold;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.blog-single .post-title {
  text-align: center;
  font-size: 2.2rem;
  margin: 40px 0 20px;
}

.blog-single .featured-image {
  text-align: center;
  margin-bottom: 30px;
}

.blog-single .post-content {
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 0 20px;
}


a.corporate_gallery_item, .event_gallery_item {
    width: 380px;
    height: 250px;
}

h2.section-title.homepage_highlights-title {text-align: center;}


h2.bannerTaglineFont.gallery-view-title.viewBlog-title {
    font-size: 3rem;
}

p.carrier-short-heading {
    font-weight: bolder;
    font-family: 'Oswald Variable', sans-serif !important;
}

form.contact-form.Dosis-font input, form.contact-form.Dosis-font textarea, form.contact-form.Dosis-font select, .freelancer-form input,.freelancer-form textarea{
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    font-size: 1rem;
}



/* Make the container follow the slide height nicely */
.eventSwiper { padding-bottom: 40px; }

/* Responsive slide height */
.eventSwiper .swiper-slide {
  height: clamp(320px, 28vw, 720px); /* min 320px, scale with viewport, max 720px */
  background-size: cover;
  background-position: center;
}
