/* style.css */
/* Theme Name: Arcade Gaming Center
   Theme URI: https://example.com/arcade-theme
   Author: Your Name
   Description: A vibrant theme for arcade and gaming centers
   Version: 1.0
   License: GNU General Public License v2 or later
*/

:root {
  --primary-blue: #0af0ff;
  --primary-green: #b3ff00;
  --primary-pink: #ff3a99;
  --primary-purple: #6f00ff;
  --dark-bg: #120031;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--dark-bg);
  color: white;
  overflow-x: hidden;
}

/* Header Styles */
.site-header {
  padding: 1rem 0;
  background-color: rgba(18, 0, 49, 0.9);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.navbar-brand img {
  height: 50px;
}

.navbar-nav .nav-link {
  color: white;
  font-weight: 600;
  margin: 0 10px;
  transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-green);
}

.header-cta {
  background-color: var(--primary-pink);
  color: white;
  border-radius: 25px;
  padding: 8px 20px;
  font-weight: bold;
  border: none;
  transition: all 0.3s;
}

.header-cta:hover {
  background-color: var(--primary-green);
  transform: scale(1.05);
}

/* Hero Section */
.hero-section {
  position: relative;
/*   background: linear-gradient(rgba(18, 0, 49, 0.7), rgba(18, 0, 49, 0.7)), 
	  url(''); */
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  text-align: center;
	
/* 	margin-left: 10%;
    margin-right: 10%;
    border-bottom-right-radius: 190px;	 */
}

.hero-text h1 {
  font-size: 6rem;
  font-weight: 800;
  margin-bottom: 20px;

}

.hero-text h1 .blue-text {
  color: var(--primary-blue);
}

.hero-text h1 .green-text {
  color: var(--primary-green);
}

.cta-button {
  background-color: var(--primary-pink);
  color: white;
  border-radius: 25px;
  padding: 12px 30px;
  font-weight: bold;
  border: none;
/*   font-size: 1.2rem; */
	font-size: 12px;
  margin: 10px;
  transition: all 0.3s;
	text-decoration: none;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 58, 153, 0.7);
}

.cta-button.secondary {
  background-color: var(--primary-blue);
 
}

/* Features Section */
.features-section {
  padding: 60px 0;
}

.feature-box {
  text-align: center;
  padding: 30px 20px;
  transition: transform 0.3s;
}

.feature-box:hover {
  transform: translateY(-10px);
}

.feature-icon {
/*   background: linear-gradient(45deg, var(--primary-purple), var(--primary-pink)); */
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.feature-icon img{
	height: 65px;
}

.feature-icon i {
  font-size: 2rem;
  color: white;
}

.feature-title {
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
}

/* Attractions Section */
.attractions-section {
  padding: 60px 0;
}

.attraction-card {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 30px;
  position: relative;
/*   border: 3px solid var(--primary-blue); */
	 border-top: 4px solid #0af0ff;
  border-left: 4px solid #ff00ff;
  border-bottom: 4px solid #00ff00;
  border-right: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.attraction-image {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.attraction-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(18, 0, 49, 0.8);
  padding: 20px;
}

.planning-card {
  background: linear-gradient(135deg, var(--primary-purple), #390080);
  border-radius: 15px;
  padding: 40px 30px;
  height: 100%;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
	border-top: 4px solid #b026ff;
    border-right: 4px solid #b026ff;
    border-bottom: 4px solid #b026ff;
    border-left: none;
}

.planning-card h3 {
  color: var(--primary-green);
  font-weight: 700;
  margin-bottom: 20px;
}

/* Branches Section */
.branches-section {
  padding: 60px 0;
}

.branches-section h2 {
  text-align: center;
  margin-bottom: 50px;
  font-weight: 700;
}

.branch-card {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 30px;
  position: relative;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.branch-image {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.branch-name {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  background-color: var(--primary-pink);
  color: white;
  padding: 10px;
  text-align: center;
  font-weight: 700;
  font-size: 1.5rem;
}

.branch-card:nth-child(2) .branch-name {
  background-color: var(--primary-blue);
}

.branch-card:nth-child(3) .branch-name {
  background-color: var(--primary-green);
}

.branch-card:nth-child(4) .branch-name {
  background-color: var(--primary-purple);
}

.branch-card:nth-child(5) .branch-name {
  background-color: var(--primary-blue);
}

.branch-explore {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
  text-align: center;
}

.branch-explore .btn {
  border-radius: 25px;
/*   background: linear-gradient(45deg, var(--primary-pink), var(--primary-purple)); */
	background-color: rgba(18, 0, 49, 0.9);
  border: none;
  padding: 8px 20px;
  font-weight: 600;
}

/* Gallery Section */
.gallery-section {
  padding: 60px 0;
}

.gallery-section h2 {
  text-align: center;
  margin-bottom: 50px;
  font-weight: 700;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

/* Footer Styles */
.footer-contact a{
	color: white;
	text-decoration: none;
}
.footer-contact a:hover{
	color:#4deeea !important;
}
.site-footer {
  background-color: rgba(18, 0, 49, 0.95);
  padding: 60px 0 30px;
  position: relative;
}

.footer-logo img {
  height: 80px;
  margin-bottom: 20px;
}

.footer-about p {
  color: #ccc;
  line-height: 1.8;
}

.footer-heading {
  color: white;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(to right, var(--primary-pink), var(--primary-blue));
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary-green);
}

.footer-contact p {
  color: #ccc;
  margin-bottom: 15px;
}

.footer-contact i {
  color: var(--primary-pink);
  margin-right: 10px;
}

.footer-social {
  margin-top: 20px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #333;
  color: white;
  margin-right: 10px;
  transition: all 0.3s;
}

.social-icon:hover {
  background-color: var(--primary-pink);
  transform: translateY(-5px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 40px;
  text-align: center;
  color: #999;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .hero-text h1 {
    font-size: 3rem;
  }
}
/*Mobile Media Query*/
@media (max-width: 767px) {
	.contact_info_thumb img{
		max-width: 100%;
    	height: auto;
	}
	.breadcrumbs_bg.mb-140 {
        margin-bottom: 60px;
    }
    .breadcrumbs_bg {
        height: 420px;
    }
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .feature-box {
    margin-bottom: 30px;
  }
	.gaming_update_btn .cta-button{
		padding: 10px;
		font-size: 10px;
	}
	.live_streaming_text{
		padding: 0px !important;
	}
	    .about_thumb {
        max-width: 400px;
        margin: 0 auto;
    }
	.about_thumb img{
		max-width: 100%;
		height: auto;
	}
	    .about_title h5 {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 15px;
		position: initial !important;
    	padding-left: 0px !important;
    }
	 .about_titlee h5 {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 15px;
		position: initial !important;
    	padding-left: 0px !important;
    }
	.about_title h5::before{
		display: none;
	}
	
}

@media only screen and (max-width: 575px) {
    .about_title h5 {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 15px;
		position: initial;
    	padding-left: 0;
    }
	 .about_titlee h5 {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 15px;
		position: initial;
    	padding-left: 0;
    }
}
/* Animation Keyframes */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

/*Desktop Size Media Query*/
@media (min-width: 992px) {
	.hero-buttons{
		display: flex;
		justify-content: center;
	}
	.hero-text h1{
		text-align: center !important;
		
	}
	
	.feature-title{
		font-size: 22px !important;
	}
	.feature-box{
		background-color: rgba(0, 0, 0, 0.1);
	}
	.attraction-card, .planning-card {
    width: 100%;
    height: 100%;   
}
	.planning-card h3{
		font-size: 33px;
	}
	.planning-card{
	border-top: 4px solid #b026ff;
    border-right: 4px solid #b026ff;
    border-bottom: 4px solid #b026ff;
    border-left: none;
	}
}

/*Branch Section Css Start*/
    .branches-section {
        padding: 40px 0;
        position: relative;
    }

    .branches-slider {
        position: relative;
        overflow: hidden;
        width: 100%;
        /* Remove fixed height */
    }

    .branches-slider-container {
        display: flex;
        transition: transform 0.5s ease;
        /* Remove height: 100% */
        width: 126%; /* Adjusted for 4 cards at 30% width with margins */
        padding: 0 2%; /* Add some padding on sides */
        align-items: center; /* Vertically center cards */
    }

    .branch-card {
        flex: 0 0 15%;
        /* Remove height: 50% */
        margin: 0 1.5%;
        position: relative;
        overflow: hidden;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        min-width: 15%;
        aspect-ratio: 3/4; /* Maintain aspect ratio for cards */
    }

    .branch-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .branch-name {
        position: absolute;
        bottom: 60px;
        left: 0;
        right: 0;
        text-align: center;
        color: white;
        font-size: 24px;
        font-weight: bold;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    }

    .branch-explore {
        position: absolute;
/*         bottom: 20px; */
        left: 0;
        right: 0;
        text-align: center;
    }

    .slider-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0,0,0,0.5);
        color: white;
        border: none;
        padding: 10px 15px;
        cursor: pointer;
        border-radius: 50%;
        z-index: 10;
    }

    .prev {
        left: 10px;
    }

    .next {
        right: 10px;
    }

    /* Remove dots container styles */
    .slider-dots {
        display: none;
    }

    /* Responsive adjustments */
    @media (max-width: 1200px) {
        .branch-card {
            flex: 0 0 45%; /* Show 2 cards on tablet */
            min-width: 45%;
        }
        .branches-slider-container {
            width: 193%; /* Adjusted for 2 cards at 45% width with margins */
        }
    }

    @media (max-width: 768px) {
        .branch-card {
            flex: 0 0 100%; /* Full width on mobile */
            min-width: 100%;
            margin: 0 10px;
        }
        .branches-slider-container {
            width: 100%; /* Full width on mobile */
        }
    }

/*Branch Section Css end*/

/*Hero Section Css Start*/
.hero-section {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.container {
  position: relative;
  z-index: 1;
}
/*Hero Section Css End*/

/*Navbar Section Css Start*/
.navbar-nav {
    align-items: center;
    margin-right: 20px; 
}

.navbar-nav .menu-item {
    margin: 0 10px;
    position: relative;
}

.navbar-nav .menu-item a {
    color: #fff !important;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    padding: 8px 15px;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
}

/* Hover Effects */
.navbar-nav .menu-item a:hover {
    color: #f8b739 !important;
}

/* Active Menu Item */
.navbar-nav .menu-item.current-menu-item a {
    color: #f8b739 !important;
    font-weight: 600;
}

/* Mobile Menu */
@media (max-width: 991.98px) {
    .navbar-collapse {
        display: none !important; /* Hide by default on mobile */
        padding: 20px;
        margin-top: 15px;
        border-radius: 5px;
        background-color: #333; /* Add background for better visibility */
    }
    
    .navbar-collapse.show {
        display: flex !important; /* Show only when has 'show' class */
        flex-direction: column;
    }
    
    .navbar-nav {
        flex-direction: column;
        width: 100%;
        margin-right: 0;
    }
    
    .navbar-nav .menu-item {
        margin: 5px 0;
        width: 100%;
    }
    
    .navbar-nav .menu-item a {
        text-transform: none; /* Remove uppercase in mobile */
        font-size: 15px; /* Slightly smaller font */
        padding: 10px 15px;
        display: block;
    }
    
    .header-cta {
        margin-top: 15px !important;
        margin-left: 0 !important;
        display: block;
        width: 100%;
    }
}

/* Desktop Menu Styles */
@media (min-width: 992px) {
    .navbar-collapse {
        display: flex !important;
        justify-content: flex-end !important;
        flex-grow: 0 !important;
    }
}

/* Target menu items through navbarNav ID */
#navbarNav #menu-header li:nth-child(1) > a {  /* Home */
    color: #f000ff !important;
    background-color: rgba(240, 0, 255, 0.1);
}

#navbarNav #menu-header li:nth-child(2) > a {  /* Branch */
    color: #74ee15 !important;
    background-color: rgba(116, 238, 21, 0.1);
}

#navbarNav #menu-header li:nth-child(3) > a {  /* About Us */
    color: #001eff !important;
    background-color: rgba(0, 30, 255, 0.1);
}

#navbarNav #menu-header li:nth-child(4) > a {  /* Contact Us */
    color: #4deeea !important;
    background-color: rgba(77, 238, 234, 0.1);
}

/* Hover effects */
#navbarNav #menu-header li > a:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

/* Active state */
#navbarNav #menu-header li.current-menu-item > a {
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Mobile responsive adjustments */
@media (max-width: 991px) {
    #navbarNav #menu-header li > a {
        display: block;
        padding: 10px 15px;
        margin: 2px 0;
        border-radius: 4px;
        background-color: transparent !important; /* Remove colored backgrounds in mobile */
        color: #fff !important; /* White text in mobile */
    }
    
    #navbarNav #menu-header li.current-menu-item > a {
        color: #f8b739 !important; /* Keep active color */
    }
}

/*Navbar Section Css End*/




/* Header Nav Image Logo Css Start */
.site-header {
    padding: 20px 0;
}

.header-logo-container {
    margin-right: 2rem;
    display: flex;
    align-items: center;
}

.header-logo {
    height: 70px; 
    width: auto;
    max-height: none;
    transition: all 0.3s;
	transform: scale(1.1);
}

.navbar {
    padding: 0;
    align-items: center;
}

.navbar-dark .navbar-toggler {
    margin-left: auto;
}

.navbar-nav {
    align-items: center;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .header-logo {
        height: 35px;
		transform: scale(1.89);
    }
    
    .navbar-collapse {
        margin-top: 15px;
    }
}

/* Header Nav Image Logo Css End */

/*Footer Css Start*/
.footer-links a:hover{
	color: #4deeea !important;
}
.footer-logo{
	display:flex;
	justify-content:center;
}
/* .footer-logo{
	transform: scale(1.5);
} */
/*Footer Css End*/


/*About Us Page Css Start*/
.about_title h5 {
    font-size: 22px;
    line-height: 32px;
    font-weight: bold;
    color: #4deeea;
    position: relative;
    padding-left: 98px;
    margin-bottom: 25px;
}
.about_titlee h5 {
    font-size: 22px;
    line-height: 32px;
    font-weight: bold;
    color: #f000ff;
    position: relative;
    padding-left: 98px;
    margin-bottom: 40px;
}
.breadcrumbs_bg {
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
    height: 502px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.breadcrumbs_text h1 {
    font-size: 90px;
    line-height: 90px;
    font-family: "Metal Mania", cursive;
    text-shadow: 3px 3px 0px #001eff;
    margin-bottom: 25px;
}

.btn.btn-link {
    font-size: 23px;
    line-height: 73px;
    height: 73px;
    width: 230px;
    padding: 0 15px;
    background: url(/wp-content/uploads/2025/05/aboutbtn-bg.webp);
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
    position: relative;
    z-index: 9;
    color: #ffffff;
    border: 0;
    font-weight: 700;
    text-decoration: none;
}
.mb-140 {
    margin-bottom: 140px;
}
.about_section {
    margin-bottom: 125px;
}
.about_title h5::before {
    position: absolute;
    content: "";
    width: 68px;
    height: 5px;
    background: #4deeea;
    left: 0;
    top: 50%;
    -webkit-transform: translatey(-50%);
    transform: translatey(-50%);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .counterup_section.mb-115 {
    margin-bottom: 65px;
  }
}
@media only screen and (max-width: 767px) {
  .counterup_section.mb-115 {
    margin-bottom: 48px;
  }
}
@media only screen and (max-width: 767px) {
  .counterup_section.mb-115 {
    margin-bottom: 18px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .counterup_section.mb-130 {
    margin-bottom: 73px;
  }
}
@media only screen and (max-width: 767px) {
  .counterup_section.mb-130 {
    margin-bottom: 23px;
  }
}

@media only screen and (max-width: 767px) {
  .counterup_inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.single_counterup {
  margin-right: 85px;
  padding-right: 85px;
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single_counterup {
    margin-right: 55px;
    padding-right: 55px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single_counterup {
    margin-right: 33px;
    padding-right: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .single_counterup {
    width: 46%;
    margin-bottom: 30px;
    margin-right: 30px;
    padding-right: 62px;
  }
  .single_counterup:nth-child(2) {
    margin-right: 0;
    padding-right: 0;
  }
  .single_counterup:nth-child(2)::before {
    display: none;
  }
}
@media only screen and (max-width: 479px) {
  .single_counterup {
    width: 100%;
    margin-right: 0;
    padding-right: 0;
  }
  .single_counterup::before {
    display: none;
  }
}
.single_counterup:last-child {
  margin-right: 0;
  padding-right: 0;
}
.single_counterup:last-child::before {
  display: none;
}
.single_counterup::before {
  position: absolute;
  content: "/ /";
  right: 0;
  top: 50%;
  font-size: 14px;
  -webkit-transform: translatey(-50%);
          transform: translatey(-50%);
  color: #33cb33;
  font-weight: bold;
}

.counterup_text {
  text-align: center;
}
.counterup_text h2 {
  font-size: 80px;
  line-height: 80px;
  font-weight: 400;
  font-family: "Metal Mania", cursive;
  margin-bottom: 9px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .counterup_text h2 {
    font-size: 73px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .counterup_text h2 {
    font-size: 60px;
    line-height: 62px;
  }
}
@media only screen and (max-width: 767px) {
  .counterup_text h2 {
    font-size: 45px;
    line-height: 50px;
  }
}
.counterup_text h2.color1 {
  color: #ffb300;
}
.counterup_text h2.color2 {
  color: #1de3eb;
}
.counterup_text h2.color3 {
  color: #df4c21;
}
.counterup_text h2.color4 {
  color: #b154f0;
}
.counterup_text span {
  font-size: 18px;
  line-height: 35px;
  color: #f3f3f3;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .counterup_text span {
    font-size: 15px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .counterup_text span {
    font-size: 15px;
    line-height: 30px;
  }
}

.gaming_video_section.mb-118 {
    margin-bottom: 118px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .gaming_video_section.mb-118 {
        margin-bottom: 64px;
    }
}
@media only screen and (max-width: 767px) {
    .gaming_video_section.mb-118 {
        margin-bottom: 44px;
    }
}

.gaming_video_thumb {
    position: relative;
    text-align: center;
}
@media only screen and (max-width: 575px) {
    .gaming_video_thumb > img {
        height: 251px;
        object-fit: cover;
        width: 100%;
    }
}

.gaming_video_paly_icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .gaming_video_paly_icon img {
        width: 80px !important;
    }
}
@media only screen and (max-width: 767px) {
    .gaming_video_paly_icon img {
        width: 60px;
    }
}

.live_streaming_text {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: url(../img/others/text-mini-shape.webp);
    height: 86px;
    display: flex;
    align-items: center;
    padding: 0 86px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .live_streaming_text {
        height: 64px;
        padding: 0 104px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .live_streaming_text {
        height: 58px;
        padding: 0 60px;
        width: 480px;
        justify-content: center;
    }
}
@media only screen and (max-width: 767px) {
    .live_streaming_text {
        height: 49px;
        padding: 0 42px;
        width: 330px;
        background-size: cover;
        justify-content: center;
    }
}
@media only screen and (max-width: 575px) {
    .live_streaming_text {
        height: 44px;
        padding: 0 35px;
        width: 265px;
    }
}
.live_streaming_text h3 {
    font-size: 28px;
    margin-bottom: 0;
    color: #fff; /* Added for better visibility */
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .live_streaming_text h3 {
        font-size: 23px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .live_streaming_text h3 {
        font-size: 21px;
    }
}
@media only screen and (max-width: 767px) {
    .live_streaming_text h3 {
        font-size: 15px;
        line-height: 25px;
    }
}

.mb-130 {
    margin-bottom: 130px;
}

.live_streaming_text{
	    position: absolute;
    bottom: 0;
    left: 50%;
	transform: translateX(-50%);
  background: url(/wp-content/uploads/2025/05/text-mini-shape.webp);
	    height: 86px;
	display: flex;
    -webkit-box-align: center;
	align-items: center;
    padding: 0 96px;
}


.gaming_update_section {
  margin-bottom: 130px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .gaming_update_section {
    margin-bottom: 78px;
  }
}
@media only screen and (max-width: 767px) {
  .gaming_update_section {
    margin-bottom: 60px;
  }
}

.gaming_update_inner {
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
  background-size: cover;
  height: 300px;
  padding: 0 100px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .gaming_update_inner {
    padding: 0 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .gaming_update_inner {
    padding: 0 30px;
    height: 263px;
  }
}
@media only screen and (max-width: 767px) {
  .gaming_update_inner {
    padding: 0 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
    text-align: center;
  }
}
@media only screen and (max-width: 575px) {
  .gaming_update_inner {
    height: 260px;
  }
}

.gaming_update_btn {
  margin-left: 40px;
}
.gaming_update_btn .btn.btn-link {
  font-size: 19px;
  padding: 0 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .gaming_update_btn .btn.btn-link {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .gaming_update_btn .btn.btn-link {
    font-size: 17px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .gaming_update_btn {
    margin-left: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .gaming_update_btn {
    margin-left: 0;
    margin-top: 24px;
  }
}

.gaming_update_text h2 {
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .gaming_update_text h2 {
    font-size: 48px;
    line-height: 62px;
  }
	.about-lastbox{
	font-size: 55px;
    line-height: 72px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
	}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .gaming_update_text h2 {
    font-size: 38px;
    line-height: 55px;
  }
}
@media only screen and (max-width: 767px) {
  .gaming_update_text h2 {
    font-size: 30px;
    line-height: 47px;
  }
}
@media only screen and (max-width: 575px) {
  .gaming_update_text h2 {
    font-size: 22px;
    line-height: 36px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .gaming_page_section.mb-125 {
    margin-bottom: 68px;
  }
}
@media only screen and (max-width: 767px) {
  .gaming_page_section.mb-125 {
    margin-bottom: 50px;
  }
}

.gaming_page_inner {
  margin-bottom: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .gaming_page_inner {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .gaming_page_inner {
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 767px) {
  .gaming_header_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media only screen and (max-width: 767px) {
  .gaming_form_left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 25px;
  }
}


.contact_info_area {
  margin-bottom: 125px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact_info_area {
    margin-bottom: 76px;
  }
}
@media only screen and (max-width: 767px) {
  .contact_info_area {
    margin-bottom: 25px;
  }
}
.contact_info_area .row {
  margin-left: -20px;
  margin-right: -20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .contact_info_area .row {
    margin-left: -10px;
    margin-right: -10px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact_info_area .row {
    margin-left: -10px;
    margin-right: -10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact_info_area .row {
    margin-left: -10px;
    margin-right: -10px;
  }
}
@media only screen and (max-width: 767px) {
  .contact_info_area .row {
    margin-left: -10px;
    margin-right: -10px;
  }
}
.contact_info_area .col-lg-4 {
  padding-left: 20px;
  padding-right: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact_info_area .col-lg-4 {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact_info_area .col-lg-4 {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .contact_info_area .col-lg-4 {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.contact_info_list {
  text-align: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
  background-size: cover;
  padding: 45px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact_info_list {
    padding: 40px 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact_info_list {
    padding: 30px 12px;
  }
}
@media only screen and (max-width: 767px) {
  .contact_info_list {
    padding: 30px 15px;
    margin-bottom: 30px;
  }
}
.contact_info_list.left {
  text-align: left;
  padding-left: 65px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact_info_list.left {
    padding-left: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact_info_list.left {
    padding-left: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .contact_info_list.left {
    padding: 30px 15px;
    text-align: center;
  }
}
.contact_info_list.center {
  text-align: center;
}
.contact_info_list.right {
  text-align: right;
  padding-right: 65px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact_info_list.right {
    padding-right: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact_info_list.right {
    padding-right: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .contact_info_list.right {
    padding: 30px 15px;
    text-align: center;
  }
}

.contact_info_thumb {
  margin-bottom: 111px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact_info_thumb {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .contact_info_thumb {
    margin-bottom: 45px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact_info_thumb img {
    width: 90px;
  }
}
@media only screen and (max-width: 767px) {
  .contact_info_thumb img {
    width: 80px;
  }
}

.contact_info_text h3 {
  font-size: 30px;
  line-height: 32px;
  margin-bottom: 24px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact_info_text h3 {
    font-size: 23px;
    line-height: 38px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact_info_text h3 {
    margin-bottom: 13px;
    font-size: 18px;
    line-height: 38px;
  }
}
@media only screen and (max-width: 767px) {
  .contact_info_text h3 {
    margin-bottom: 11px;
    font-size: 20px;
    line-height: 30px;
  }
}
.contact_info_text p {
  font-size: 18px;
  line-height: 35px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact_info_text p {
    font-size: 15px;
    line-height: 34px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact_info_text p {
    font-size: 14px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 767px) {
  .contact_info_text p {
    font-size: 15px;
    line-height: 28px;
  }
}
.contact_info_text p a:hover {
  color: #b154f0;
}

.contact_map {
  margin-bottom: -12px;
}
.contact_map iframe {
  width: 100%;
  height: 700px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact_map iframe {
    height: 600px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact_map iframe {
    height: 550px;
  }
}
@media only screen and (max-width: 767px) {
  .contact_map iframe {
    height: 450px;
  }
}
@media only screen and (max-width: 575px) {
  .contact_map iframe {
    height: 380px;
  }
}

.contact_form {
  padding: 60px 50px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact_form {
    padding: 50px 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact_form {
    padding: 40px 25px;
  }
}
@media only screen and (max-width: 767px) {
  .contact_form {
    padding: 30px 20px;
  }
}
.contact_form h2 {
  font-weight: 600;
  color: #000000;
  margin-bottom: 28px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact_form h2 {
    font-size: 40px;
    line-height: 52px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact_form h2 {
    font-size: 35px;
    list-style: none;
  }
}
@media only screen and (max-width: 767px) {
  .contact_form h2 {
    margin-bottom: 24px;
    font-size: 32px;
    line-height: 38px;
  }
}

.form_input {
  margin-bottom: 30px;
}
.form_input input::-webkit-input-placeholder {
  color: #c2c2c2;
}
.form_input input::-moz-placeholder {
  color: #c2c2c2;
}
.form_input input:-ms-input-placeholder {
  color: #c2c2c2;
}
.form_input input:-moz-placeholder {
  color: #c2c2c2;
}
.form_input input {
  width: 100%;
  height: 62px;
  padding: 0 25px;
  line-height: 17px;
  color: #ffffff;
  background: inherit;
  border: 2px solid #281e4d;
  border-radius: 10px;
}
.form_input input:focus {
  border-color: #b154f0;
}
.form_input input:focus::-webkit-input-placeholder {
  color: #ffffff;
  border-color: #b154f0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .form_input input {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .form_input input {
    width: 100%;
    height: 50px;
  }
}

.form_textarea {
  margin-bottom: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .form_textarea {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .form_textarea {
    margin-bottom: 28px;
  }
}
.form_textarea textarea::-webkit-input-placeholder {
  color: #c2c2c2;
}
.form_textarea textarea::-moz-placeholder {
  color: #c2c2c2;
}
.form_textarea textarea:-ms-input-placeholder {
  color: #c2c2c2;
}
.form_textarea textarea:-moz-placeholder {
  color: #c2c2c2;
}
.form_textarea textarea {
  width: 100%;
  height: 295px;
  padding: 25px;
  line-height: 17px;
  color: #ffffff;
  background: inherit;
  border: 2px solid #281e4d;
  border-radius: 10px;
  resize: none;
}
.form_textarea textarea:focus {
  border-color: #b154f0;
}
.form_textarea textarea:focus::-webkit-input-placeholder {
  color: #ffffff;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .form_textarea textarea {
    height: 200px;
  }
}
@media only screen and (max-width: 767px) {
  .form_textarea textarea {
    height: 150px;
    padding: 18px 25px;
  }
}

.form_input_btn .btn {
  font-size: 20px;
}
.contactp a{
	color:white !important;
	text-decoration: none;
}


/* Make contact info containers flex containers */
.contact_info_list {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Make the text content grow to fill available space */
.contact_info_text {
    flex-grow: 1;
}

/* Ensure all parent containers have 100% height */


/* Optional: Add some padding or margin if needed */
.contact_info_list {
    padding: 20px;
    margin-bottom: 20px;
}


@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .breadcrumbs_text h1 {
    font-size: 72px;
    line-height: 75px;
    margin-bottom: 22px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .breadcrumbs_text h1 {
    font-size: 62px;
    line-height: 65px;
    margin-bottom: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .breadcrumbs_text h1 {
    font-size: 55px;
    line-height: 60px;
    margin-bottom: 18px;
  }
}
@media only screen and (max-width: 575px) {
  .breadcrumbs_text h1 {
    font-size: 42px;
    line-height: 48px;
    margin-bottom: 16px;
  }
}

.contact_gaming_update .gaming_update_inner{
	border-radius: 45px !important;
}
.contact_gaming_update {
  margin-top: -190px;
  z-index: 9;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .contact_gaming_update {
    margin-top: -100px;
  }
}

/*Branch Page Css Start*/
.player_list_section.mb-125 {
  margin-bottom: 125px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .player_list_section.mb-125 {
    margin-bottom: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .player_list_section.mb-125 {
    margin-bottom: 48px;
  }
}

.player_list_single_item .top {
  position: relative;
  overflow: hidden;
}
.player_list_single_item .image {
  display: block;
  border-radius: 38px;
}
.player_list_single_item .image img {
  border-radius: 38px;
  width: 100%;
}
.player_list_single_item .overlay {
  position: absolute;
  height: calc(100%);
  width: calc(100%);
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0.97);
          transform: translate(-50%, -50%) scale(0.97);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  border: 6px solid rgba(255, 255, 255, 0.4);
  border-radius: 38px;
  padding: 10px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.player_list_single_item .social-link {
  position: absolute;
  font-size: 24px;
  bottom: 40px;
}
.player_list_single_item .social-link a {
  margin-right: 30px;
  color: #ffffff;
  position: relative;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
}
.player_list_single_item .social-link a:nth-child(1) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.player_list_single_item .social-link a:nth-child(2) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.player_list_single_item .social-link a:nth-child(3) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.player_list_single_item .social-link a:nth-child(4) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.player_list_single_item .social-link a:last-child {
  margin-right: 0;
}
.player_list_single_item .social-link a::before, .player_list_single_item .social-link a::after {
  position: absolute;
  content: "";
  width: 48px;
  height: 39px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 1;
  z-index: -1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.player_list_single_item .social-link a::before {
  background-image: url("../img/icon/navigation-bg3.webp");
  opacity: 1;
}
.player_list_single_item .social-link a::after {
  background-image: url("../img/icon/navigation-bg4.webp");
  opacity: 0;
}
.player_list_single_item .social-link a:hover::before {
  background-image: url("../img/icon/navigation-bg3.webp");
  opacity: 0;
}
.player_list_single_item .social-link a:hover::after {
  background-image: url("../img/icon/navigation-bg4.webp");
  opacity: 1;
}
.player_list_single_item .content {
  position: relative;
  padding: 27px 20px;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1;
  margin-top: 30px;
}
.player_list_single_item .content .title {
  font-size: 25px;
  line-height: 38px;
  font-weight: 700;
}
.player_list_single_item .content .title a {
  color: #ffffff;
}
.player_list_single_item .content .content-shape-img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
}
.player_list_single_item .content .content-shape-img img {
  width: 100%;
  height: 126px;
  -o-object-fit: fill;
     object-fit: fill;
  position: absolute;
  top: 0;
  left: 0;
}
.player_list_single_item .content .content-shape-img img:nth-child(1) {
  opacity: 1;
}
.player_list_single_item .content .content-shape-img img:nth-child(2) {
  opacity: 0;
}
.player_list_single_item:hover .overlay {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}
.player_list_single_item:hover .social-link a {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.player_list_single_item:hover .content-shape-img img:nth-child(1) {
  opacity: 0;
}
.player_list_single_item:hover .content-shape-img img:nth-child(2) {
  opacity: 1;
}

.single-player-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  background: #09002a;
  padding: 70px;
  border-radius: 50px;
  overflow: hidden;
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-player-details {
    padding: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-player-details {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .single-player-details {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 30px;
  }
}
.single-player-details .side__left {
  width: 40%;
  margin-right: 70px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
  .single-player-details .side__left {
    width: 100%;
    margin-right: 0;
  }
}
.single-player-details .side__left .social-link {
  font-size: 18px;
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.single-player-details .side__left .social-link a {
  margin-right: 15px;
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #ffffff;
}
.single-player-details .side__left .social-link a:last-child {
  margin-right: 0;
}
.single-player-details .side__left .social-link a:nth-child(1) {
  border-color: #ffc400;
}
.single-player-details .side__left .social-link a:nth-child(2) {
  border-color: #1ee3eb;
}
.single-player-details .side__left .social-link a:nth-child(3) {
  border-color: #df4c21;
}
.single-player-details .side__left .social-link a:hover:nth-child(1) {
  background-color: #ffc400;
}
.single-player-details .side__left .social-link a:hover:nth-child(2) {
  background-color: #1ee3eb;
}
.single-player-details .side__left .social-link a:hover:nth-child(3) {
  background-color: #df4c21;
}
.single-player-details .side__right {
  width: calc(60% - 70px);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
  .single-player-details .side__right {
    margin-top: 30px;
    width: 100%;
  }
}
.single-player-details .image {
  border-radius: 15px;
  border: 5px solid rgba(255, 255, 255, 0.4);
}
.single-player-details .image img {
  width: 100%;
  border-radius: 10px;
}
.single-player-details .content {
  margin-top: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
  .single-player-details .content {
    margin-top: 30px;
  }
}
.single-player-details .content .title-tag {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #b154f0;
  margin-bottom: 15px;
  position: relative;
  padding-left: 96px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
  .single-player-details .content .title-tag {
    margin-bottom: 20px;
  }
}
.single-player-details .content .title-tag::after {
  position: absolute;
  content: "";
  width: 66px;
  height: 6px;
  background: #b154f0;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.single-player-details .content .title {
  font-size: 54px;
  line-height: 1.6;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
  .single-player-details .content .title {
    font-size: 45px;
  }
}
@media only screen and (max-width: 575px) {
  .single-player-details .content .title {
    font-size: 40px;
  }
}
.single-player-details .content p {
  font-size: 21px;
  line-height: 1.6;
  color: #f3f3f3;
  margin-bottom: 20px;
}
@media only screen and (max-width: 575px) {
  .single-player-details .content p {
    font-size: 17px;
  }
}
.single-player-details .content .btn {
  margin-top: 35px;
}
.single-player-details .mascot-logo {
  position: absolute;
  bottom: -100px;
  right: -50px;
}

.player-profile {
  position: relative;
  padding: 27px 20px;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1;
  margin-top: 30px;
}
.player-profile .title {
  font-size: 25px;
  line-height: 38px;
  font-weight: 700;
  color: #ffffff;
}
.player-profile .content-shape-img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
}
.player-profile .content-shape-img img {
  width: 100%;
  height: 126px;
  -o-object-fit: fill;
     object-fit: fill;
  position: absolute;
  top: 0;
  left: 0;
}

.mb-50 {
    margin-bottom: 50px;
}


/*Css for making the image container size equal*/
.player_list_single_item .top {
    height: 250px; /* Fixed height */
    overflow: hidden;
}

.player_list_single_item .top .image {
    display: block;
    width: 100%;
    height: 100%;
}

.player_list_single_item .top .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mb-1400 {
    margin-bottom: 50px;
}
/*Branch Page Css End*/


.player_list_single_item .overlay {
  position: absolute;
  height: calc(100%);
  width: calc(100%);
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0.97);
          transform: translate(-50%, -50%) scale(0.97);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  border: 6px solid rgba(255, 255, 255, 0.4);
  border-radius: 38px;
  padding: 10px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.player_list_single_item .social-link {
  position: absolute;
  font-size: 24px;
  bottom: 40px;
}
.player_list_single_item .social-link a {
  margin-right: 30px;
  color: #ffffff;
  position: relative;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
}
.player_list_single_item .social-link a:nth-child(1) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.player_list_single_item .social-link a:nth-child(2) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.player_list_single_item .social-link a:nth-child(3) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.player_list_single_item .social-link a:nth-child(4) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.player_list_single_item .social-link a:last-child {
  margin-right: 0;
}
.player_list_single_item .social-link a::before, .player_list_single_item .social-link a::after {
  position: absolute;
  content: "";
  width: 48px;
  height: 39px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 1;
  z-index: -1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.player_list_single_item .social-link a::before {
  background-image: url("/wp-content/uploads/2025/05/navigation-bg3.webp");
  opacity: 1;
}
.player_list_single_item .social-link a::after {
  background-image: url("/wp-content/uploads/2025/05/navigation-bg4.webp");
  opacity: 0;
}
.player_list_single_item .social-link a:hover::before {
  background-image: url("/wp-content/uploads/2025/05/navigation-bg3.webp");
  opacity: 0;
}
.player_list_single_item .social-link a:hover::after {
  background-image: url("/wp-content/uploads/2025/05/navigation-bg4.webp");
  opacity: 1;
}

.icofont-facebook:before {
    content: "\ed37";
}


.player_list_single_item .social-link a {
    margin-right: 30px !important;
    color: #ffffff;
    position: relative;
    z-index: 1;
   
}

.contactp a:hover{
	color:#0af0ff !important;
}



.footer-social a {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    color: #fff;
    margin: 5px;
    z-index: 1;
}

.footer-social a::before,
.footer-social a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    transition: opacity 0.3s ease-in-out;
    z-index: -1;
}

.footer-social a::before {
    background-image: url('/wp-content/uploads/2025/05/navigation-bg3.webp');
    opacity: 1;
}

.footer-social a::after {
    background-image: url('/wp-content/uploads/2025/05/navigation-bg4.webp');
    opacity: 0;
}

.footer-social a:hover::after {
    opacity: 1;
}

.footer-social a:hover::before {
    opacity: 0;
}

.service {
	color: white !important;
	margin-bottom: 10px !important;
	text-decoration: none;
}
.site-footer .service a:hover{
	color:#4deeea !important;
}




.gallery-slider {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    width: 100%;
}

.gallery-slider-container {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}

.gallery-item {
    flex: 0 0 auto;
    width: calc(33.333% - 20px);
    margin: 0 10px;
    box-sizing: border-box;
}

.gallery-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Navigation buttons */
.gallery-slider .slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    font-size: 18px;
}

.gallery-slider .prev {
    left: 10px;
}

.gallery-slider .next {
    right: 10px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .gallery-item {
        width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .gallery-item {
        width: calc(100% - 20px);
    }
}






@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_section.mb-90 {
    margin-bottom: 34px;
  }
}
@media only screen and (max-width: 767px) {
  .blog_section.mb-90 {
    margin-bottom: 30px;
  }
}

.single_blog {
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .single_blog {
    margin-bottom: 35px;
  }
}
@media only screen and (max-width: 575px) {
  .single_blog {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 32px;
  }
}

.blog_thumb {
  width: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog_thumb {
    width: 174px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_thumb {
    width: 160px;
  }
}
@media only screen and (max-width: 767px) {
  .blog_thumb {
    width: 160px;
  }
}

.blog_content {
  width: calc(100% - 200px);
  padding-left: 35px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog_content {
    width: calc(100% - 175px);
    padding-left: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_content {
    width: calc(100% - 160px);
    padding-left: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .blog_content {
    width: calc(100% - 160px);
    padding-left: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .blog_content {
    width: 100%;
    padding-left: 0;
    padding-top: 20px;
    text-align: center;
  }
}
.blog_content h3 {
  margin-bottom: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog_content h3 {
    margin-bottom: 15px;
    font-size: 20px;
    line-height: 33px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_content h3 {
    margin-bottom: 14px;
    font-size: 20px;
    line-height: 31px;
  }
}
@media only screen and (max-width: 767px) {
  .blog_content h3 {
    margin-bottom: 11px;
    font-size: 18px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .blog_content h3 {
    margin-bottom: 7px;
    font-size: 16px;
    line-height: 28px;
  }
}
.blog_content h3 a:hover {
  color: #b154f0;
}
.blog_content > a {
  font-size: 15px;
  position: relative;
  padding-left: 50px;
}
.blog_content > a:hover {
  color: #b154f0;
}
.blog_content > a::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 2px;
  background: #b154f0;
  left: 0;
  top: 50%;
  -webkit-transform: translatey(-50%);
          transform: translatey(-50%);
}

.blog_date {
  margin-bottom: 10px;
}
.blog_date span {
  font-size: 14px;
}
.blog_date span i {
  color: #b154f0;
}

.single_blog_grid .blog_thumb img {
    width: 100% !important;
    border-radius: 10px;
}

.single_blog_grid .blog_content {
    width: 100%;
    padding-left: 0;
    margin-top: 20px;
    text-align: left;
}
.blog_content h3{
	
font-size: 25px;
    line-height: 38px;
    font-weight: 700;
    color: #ffffff !important;
    text-transform: uppercase;
}


.single_blog_grid .blog_content a {
    color: white;
	text-decoration: none;
}

.blog_page_wrapper{
	margin-top: 50px;
}

#navbarNav #menu-header li:nth-child(5) > a {
    color: #f8b739  !important;
    background-color: #f8b7394d;
	text-decoration: none;
	font-weight: 500;
}



/* 04. blog details css here */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_details_section.mb-130 {
    margin-bottom: 78px;
  }
}
@media only screen and (max-width: 767px) {
  .blog_details_section.mb-130 {
    margin-bottom: 60px;
  }
}

.blog_details_header {
  margin-bottom: 60px;
}
@media only screen and (max-width: 767px) {
  .blog_details_header {
    margin-bottom: 50px;
  }
}

.blog__meta_date {
  margin-bottom: 28px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog__meta_date {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .blog__meta_date {
    margin-bottom: 18px;
  }
}
@media only screen and (max-width: 575px) {
  .blog__meta_date ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.blog__meta_date ul li {
  margin-right: 20px;
  padding-right: 22px;
  position: relative;
}
.blog__meta_date ul li span {
  color: #aaaaaa;
}
.blog__meta_date ul li:last-child {
  margin-right: 0;
  padding-right: 0;
}
.blog__meta_date ul li:last-child::before {
  display: none;
}
@media only screen and (max-width: 767px) {
  .blog__meta_date ul li {
    margin-right: 16px;
    padding-right: 16px;
    font-size: 15px;
  }
}
@media only screen and (max-width: 575px) {
  .blog__meta_date ul li {
    margin-right: 0;
    padding-right: 0;
  }
}
.blog__meta_date ul li::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  background: #b154f0;
  border-radius: 50%;
  right: 0;
  top: 50%;
  -webkit-transform: translatey(-50%);
          transform: translatey(-50%);
}
@media only screen and (max-width: 575px) {
  .blog__meta_date ul li::before {
    display: none;
  }
}

.blog_sticky_thumb {
  margin-bottom: 60px;
}
@media only screen and (max-width: 767px) {
  .blog_sticky_thumb {
    margin-bottom: 56px;
  }
}

.blog_details_title {
  margin-bottom: 31px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_details_title {
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .blog_details_title {
    margin-bottom: 22px;
  }
}
.blog_details_title h2 {
  margin-bottom: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .blog_details_title h2 {
    font-size: 46px;
    line-height: 62px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog_details_title h2 {
    font-size: 40px;
    line-height: 55px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_details_title h2 {
    font-size: 35px;
    line-height: 47px;
  }
}
@media only screen and (max-width: 767px) {
  .blog_details_title h2 {
    font-size: 30px;
    line-height: 45px;
  }
}
@media only screen and (max-width: 575px) {
  .blog_details_title h2 {
    font-size: 23px;
    line-height: 38px;
  }
}

/* .blog_details_content {
  padding: 0 100px;
} */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog_details_content {
    padding: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_details_content {
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  .blog_details_content {
    padding: 0;
  }
}

.blog_details_content_step {
  margin-bottom: 32px;
}
@media only screen and (max-width: 767px) {
  .blog_details_content_step {
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 575px) {
  .blog_details_content_step {
    text-align: center;
  }
}
.blog_details_content_step h3.title_margin {
  font-size: 28px;
  line-height: 45px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_details_content_step h3.title_margin {
    font-size: 24px;
    line-height: 38px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .blog_details_content_step h3.title_margin {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 18px;
  }
}
@media only screen and (max-width: 575px) {
  .blog_details_content_step h3.title_margin {
    font-size: 17px;
    line-height: 30px;
    margin-bottom: 18px;
  }
}

.blog_details_desc p {
  margin-bottom: 19px;
}
@media only screen and (max-width: 767px) {
  .blog_details_desc p {
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 30px;
  }
}
.blog_details_desc p:last-child {
  margin-bottom: 0;
}

.blog_details_table_content {
  margin-bottom: 44px;
}
@media only screen and (max-width: 767px) {
  .blog_details_table_content {
    margin-bottom: 30px;
  }
}
.blog_details_table_content ul li {
  margin-bottom: 10px;
}
.blog_details_table_content ul li:last-child {
  margin-bottom: 0;
}
.blog_details_table_content ul li a {
  line-height: 28px;
  padding: 15px 20px;
  border: 2px solid #281e4d;
  border-radius: 5px;
  color: #ffffff;
  display: block;
  border-radius: 10px;
}
.blog_details_table_content ul li a:hover {
  background: #b154f0;
  border-color: #b154f0;
}
.blog_details_table_content ul li a:hover i {
  color: #ffffff;
}
.blog_details_table_content ul li a i {
  margin-right: 8px;
  color: #b154f0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.blog_details_layer_thumb {
  margin: 41px 0 41px;
}
@media only screen and (max-width: 767px) {
  .blog_details_layer_thumb {
    margin: 28px 0 33px;
  }
}

.blog_related_text {
  padding: 60px 90px;
  margin: 42px 0;
  background-size: cover;
  text-align: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_related_text {
    padding: 50px 40px;
  }
}
@media only screen and (max-width: 767px) {
  .blog_related_text {
    padding: 30px;
    margin: 25px 0;
  }
}
@media only screen and (max-width: 575px) {
  .blog_related_text {
    padding: 22px;
  }
}
.blog_related_text h3 {
  font-size: 45px;
  line-height: 70px;
  font-weight: 700;
  margin-bottom: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .blog_related_text h3 {
    font-size: 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog_related_text h3 {
    font-size: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_related_text h3 {
    font-size: 33px;
    line-height: 52px;
  }
}
@media only screen and (max-width: 767px) {
  .blog_related_text h3 {
    font-size: 30px;
    line-height: 46px;
  }
}
@media only screen and (max-width: 575px) {
  .blog_related_text h3 {
    font-size: 20px;
    line-height: 36px;
  }
}

.widget_play_btn {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  -webkit-transform: translatey(-50%);
          transform: translatey(-50%);
}

.widget_tags ul li {
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 10px;
}
.widget_tags ul li a {
  border: 2px solid #281e4d;
  line-height: 45px;
  padding: 10px 10px 10px 10px;
  border-radius: 5px;
  color: #ffffff;
text-decoration: none;
	margin-right: 5px;
}
.widget_tags ul li a:hover {
  background: #b154f0;
  border-color: #b154f0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .widget_tags ul li a {
    padding: 0 24px;
  }
}
@media only screen and (max-width: 767px) {
  .widget_tags ul li a {
    padding: 0 23px;
  }
}


.post__social {
  border-top: 2px solid #281e4d;
  border-bottom: 2px solid #281e4d;
  padding: 20px 60px;
  margin: 62px 0 70px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .post__social {
    padding: 20px 0;
  }
}
@media only screen and (max-width: 767px) {
  .post__social {
    padding: 20px 0;
    margin: 52px 0 60px;
  }
}
@media only screen and (max-width: 575px) {
  .post__social {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.post__social h3 {
  font-size: 20px;
  line-height: 35px;
  margin-bottom: 0;
}
@media only screen and (max-width: 575px) {
  .post__social h3 {
    font-size: 17px;
    line-height: 32px;
    margin-bottom: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .post__social ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.post__social ul li {
  margin-right: 12px;
}
.post__social ul li:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 767px) {
  .post__social ul li {
    margin-right: 10px;
  }
}
.post__social ul li a {
  font-size: 14px;
  border: 2px solid #281e4d;
  width: 55px;
  height: 55px;
  line-height: 53px;
  text-align: center;
  color: #ffffff;
  font-size: 14px;
  border-radius: 10px;
	padding: 10px;
}
.post__social ul li a:hover {
  background: #b154f0;
  border-color: #b154f0;
}
@media only screen and (max-width: 767px) {
  .post__social ul li a {
    width: 48px;
    height: 48px;
    line-height: 45px;
  }
}




.gaming_page_header {
  background: #09002a;
  padding: 32px 70px;
  border-radius: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .gaming_page_header {
    padding: 32px 30px;
  }
}
@media only screen and (max-width: 767px) {
  .gaming_page_header {
    padding: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .gaming_page_header {
    padding: 30px 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .gaming_page_header.mb-70 {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .gaming_page_header.mb-70 {
    margin-bottom: 35px;
  }
}

.gaming_form_list {
  margin-right: 28px;
}
.gaming_form_list:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 767px) {
  .gaming_form_list {
    margin-right: 0;
    margin-bottom: 25px;
  }
  .gaming_form_list:last-child {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 575px) {
  .gaming_form_list {
    width: 100%;
  }
}
.gaming_form_list .nice-select {
  width: 298px;
  border: 2px solid #281e4d;
  background: inherit;
  height: 65px;
  line-height: 62px;
  padding: 0 46px 0 30px;
  font-weight: 500;
  font-size: 16px;
  border-radius: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .gaming_form_list .nice-select {
    width: 250px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .gaming_form_list .nice-select {
    width: 210px;
    padding: 0 35px 0 18px;
  }
}
@media only screen and (max-width: 575px) {
  .gaming_form_list .nice-select {
    width: 100%;
  }
}
.gaming_form_list .nice-select:hover {
  border-color: #b154f0;
}
.gaming_form_list .nice-select.open {
  border-color: #b154f0;
}
.gaming_form_list .nice-select::after {
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 7px;
  height: 7px;
  right: 28px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .gaming_form_list .nice-select::after {
    right: 18px;
  }
}
.gaming_form_list .nice-select ul.list {
  width: 100%;
}
.gaming_form_list .nice-select ul.list li {
  color: #000000;
  font-size: 14px;
  font-weight: 400;
}


.gaming_details_btn{
	margin-bottom: 30px;
	margin-top: 30px;
}








     .careers-container {
            display: flex;
            flex-wrap: wrap;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            min-height: 500px;
            background: url('/wp-content/uploads/2025/06/careers.jpeg') center/cover no-repeat;
            border-radius: 15px;
            overflow: hidden;
            position: relative;
        }
        
        .careers-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
        }
        
        .careers-image-column {
            flex: 1;
            min-width: 300px;
            position: relative;
            z-index: 1;
        }
        
        .careers-image-column img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        .careers-content-column {
            flex: 1;
            min-width: 300px;
            padding: 40px;
            display: flex;
            align-items: center;
            position: relative;
            z-index: 2;
        }
        
        .careers-glass-content {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            padding: 30px;
            width: 100%;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        }
        
        .careers-glass-content h2 {
            color: white;
            margin-top: 0;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
        }
        
        .careers-glass-content p {
            color: white;
            line-height: 1.6;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
        }
        
        .careers-glass-button {
            background: rgba(255, 255, 255, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.4);
            color: white;
            padding: 12px 25px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
            margin-top: 20px;
            display: inline-block;
            text-decoration: none;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
        }
        
        .careers-glass-button:hover {
            background: rgba(255, 255, 255, 0.4);
            transform: translateY(-2px);
        }
        
        @media (max-width: 768px) {
            .careers-container {
                flex-direction: column;
            }
            
            .careers-image-column {
                min-height: 300px;
            }
        }

.sjb-page .sjb-filters.sjb-filters-v1{
	background-color: rgba(255, 255, 255, 0.2) !important;
	backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 30px;
    width: 100%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
.sjb-page .list-data .v1{
	background-color: rgba(255, 255, 255, 0.2) !important;
	backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 30px;
    width: 100%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.sjb-page .sjb-filters.sjb-filters-v1 .form-control{
	background-color: rgba(255, 255, 255, 0.2) !important;
	border: none;
}
.job-title{
color: white;
    margin-top: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.sjb-page .list-data .v1 .sjb-apply-now-btn a{
	background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
  
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
    margin-top: 20px;
    display: inline-block;
    text-decoration: none;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2)
}

.sjb-page .sjb-filters.sjb-filters-v1 .btn-search{
	    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
.job-listings-section{
    margin-top: 50px;
    text-align: center;
}




/* Main Container */
.branch-container {
    display: flex;
    flex-direction: row; /* Changed from row-reverse to maintain logical order */
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 500px;
    background: url('/wp-content/uploads/2025/06/careers.jpeg') center/cover no-repeat;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

/* Overlay Gradient */
.branch-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
    z-index: 1;
}

/* Content Column (LEFT SIDE) */
.branch-content-column {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    order: 1; /* Explicitly set to first position */
}

/* Image Column (RIGHT SIDE) */
.branch-image-column {
    flex: 1;
    min-width: 300px;
    position: relative;
    z-index: 1;
    order: 2; /* Explicitly set to second position */
}

/* Glass Content Box */
.branch-glass-content {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 30px;
    width: 100%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Typography */
.branch-glass-content h2 {
    color: white;
    margin-top: 0;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    font-size: 2rem;
}

.branch-glass-content p {
    color: white;
    line-height: 1.6;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    font-size: 1.1rem;
}

/* Glass Button */
.branch-glass-button {
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
    margin-top: 20px;
    display: inline-block;
    text-decoration: none;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    font-size: 1rem;
}

.branch-glass-button:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Map Container */
.branches-map-container {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
}

.branches-map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
    border-radius: 15px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .branch-container {
        flex-direction: column;
    }
    
    .branch-content-column,
    .branch-image-column {
        order: initial; /* Reset order for mobile */
        min-width: 100%;
    }
    
    .branch-image-column {
        min-height: 300px;
    }
    
    .branch-content-column {
        padding: 30px 20px;
    }
    
    .branches-map-container iframe {
        height: 300px;
    }
}

/* Optional: Animation for glass content */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.branch-glass-content {
    animation: fadeInUp 0.6s ease-out both;
}
.branch-image-column{
	    margin-top: 50px;
    padding: 30px;
}

.branch-glass-content p {
    color: #fff;
    font-size: 16px;
    margin-bottom: 10px;
}
.branch-glass-content i {
    color: #fff;
}
.single-branch-container{
	    max-width: 92% !important;
}


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

    .offerings-section small {
      font-size: 15px;
      color: white;
      margin-bottom: 10px;
      display: block;
    }

    .offerings-section h2 {
      font-family: 'Poppins', sans-serif;
      font-size: 36px;
      color: #4deeea;
      font-weight: 700;
      margin-bottom: 50px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .offerings-cards {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 40px;
    }

    .offering-card {
      width: 400px;
      text-align: center;
    }

    .offering-card .img-wrap {
      background: #f0dbfa;
      width: 160px;
      height: 160px;
      margin: 0 auto 20px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .offering-card img {
      width: 100%;
      height: auto;
      max-width: 90%;
    }

    .offering-card h4 {
      font-family: 'Poppins', sans-serif;
      font-size: 18px;
      font-weight: 700;
      margin: 0 0 10px;
    }

    .offering-card p {
      font-size: 14px;
      color: #444;
      line-height: 1.5;
      margin: 0;
    }

    @media (max-width: 768px) {
      .offerings-cards {
        flex-direction: column;
        align-items: center;
      }
    }










@keyframes birthday-gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.birthday-bg-elements {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
}

.birthday-floating-pixel {
  position: absolute;
  width: 4px; height: 4px;
  background: #00ff41;
  animation: birthday-float 6s linear infinite;
  opacity: 0.7;
}

.birthday-floating-pixel:nth-child(odd) { background: #ff0080; }
.birthday-floating-pixel:nth-child(3n) { background: #00d4ff; }

@keyframes birthday-float {
  0% { transform: translateY(100vh) translateX(0); opacity: 0; }
  10%, 90% { opacity: 0.7; }
  100% { transform: translateY(-10vh) translateX(100px); opacity: 0; }
}

.birthday-container {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100vh;
	 flex-direction: column; 
  backdrop-filter: blur(1px);
}

.birthday-form-section,
.birthday-services-section {
  width: 100%;
  padding: 60px 40px;
}
.birthday-form-section {
  flex: 1;
  padding: 60px 40px;
  
  border-right: 2px solid #00ff41;
  position: relative;
  overflow: hidden;
}

.birthday-form-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0, 255, 65, 0.03) 2px, rgba(0, 255, 65, 0.03) 4px);
}

.birthday-form-content {
  position: relative;
  z-index: 3;
  max-width: 100%;
}
.birthday-form-title{
	text-align: center;
}

.birthday-form-title {
  font-size: 2.5rem;
  color: #00ff41;
  margin-bottom: 10px;
  text-shadow: 0 0 20px #00ff41;
  animation: birthday-glow 2s ease-in-out infinite alternate;
}

@keyframes birthday-glow {
  from { text-shadow: 0 0 20px #00ff41; }
  to { text-shadow: 0 0 40px #00ff41; }
}

.birthday-form-subtitle {
  color: #ff0080;
  font-size: 1.2rem;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align:center;
}

.birthday-form-group {
  margin-bottom: 25px;
}

.birthday-form-label {
  display: block;
  color: #00d4ff;
  margin-bottom: 8px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.birthday-form-input {
  width: 100%;
  padding: 15px;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid #333;
  color: #fff;
  font-family: 'Courier New', monospace;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.birthday-form-input:focus {
  outline: none;
  border-color: #00ff41;
  box-shadow: 0 0 15px rgba(0, 255, 65, 0.3);
  background: rgba(0, 0, 0, 0.8);
}

.birthday-form-input::placeholder {
  color: #666;
}

.birthday-submit-btn {
  width: 100%;
  padding: 18px;
  background: linear-gradient(45deg, #ff0080, #00ff41);
  border: none;
  color: #000;
  font-family: 'Courier New', monospace;
  font-size: 1.1rem;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.birthday-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 0, 128, 0.3);
}

.birthday-submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.birthday-submit-btn:hover::before {
  left: 100%;
}

.birthday-services-section {
  flex: 1;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

.birthday-services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 0, 128, 0.03) 2px, rgba(255, 0, 128, 0.03) 4px);
}

.birthday-services-content {
  position: relative;
  z-index: 3;
}

.birthday-services-title {
  font-size: 2.5rem;
  color: #ff0080;
  margin-bottom: 10px;
	text-align: center;
  text-shadow: 0 0 20px #ff0080;
  animation: birthday-glow-pink 2s ease-in-out infinite alternate;
}

@keyframes birthday-glow-pink {
  from { text-shadow: 0 0 20px #ff0080; }
  to { text-shadow: 0 0 40px #ff0080; }
}

.birthday-service-item {
  margin-bottom: 30px;
  padding: 25px;
  background: rgba(0, 255, 65, 0.1);
  border: 1px solid #00ff41;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.birthday-service-item:hover {
  transform: translateX(10px);
  border-color: #00ff41;
  box-shadow: 0 5px 20px rgba(0, 255, 65, 0.2);
}

.birthday-service-item::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 65, 0.1), transparent);
  transition: left 0.6s;
}

.birthday-service-item:hover::before {
  left: 100%;
}

.birthday-service-icon {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #00ff41;
}

.birthday-service-name {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.birthday-service-desc {
  color: #ccc;
  line-height: 1.6;
  font-size: 0.95rem;
}

.birthday-arcade-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #ff0080;
  color: #000;
  padding: 8px 15px;
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
  transform: rotate(15deg) !important;
  animation: pulse 2s infinite;
}

/* Mobile */
@media (max-width: 968px) {
  .birthday-container {
    flex-direction: column;
  }
  .birthday-form-section {
    border-right: none;
    border-bottom: 2px solid #00ff41;
  }
  .birthday-form-section, .birthday-services-section {
    padding: 40px 20px;
  }
  .birthday-form-title, .birthday-services-title {
    font-size: 2rem;
  }
	 .birthday-service-grid {
    grid-template-columns: 1fr;
  }
}

.birthday-service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.birthday-service-item:nth-child(1) {
  border-color: #f000ff;
}
.birthday-service-item:nth-child(2) {
  border-color: #74ee15;
}
.birthday-service-item:nth-child(3) {
  border-color: #001eff;
}
.birthday-service-item:nth-child(4) {
  border-color: #4deeea;
}
.birthday-service-item:nth-child(5) {
  border-color: #f8b739;
}
.birthday-service-item:nth-child(6) {
  border-color: #00ff41; /* fallback or repeat */
}



 

@keyframes sparkle {
            0% { transform: translateY(0px) rotate(0deg); }
            100% { transform: translateY(-100px) rotate(360deg); }
        }

        .tab-container {
            max-width: 1400px;
            width: 95%;
            margin: 50px auto;
            padding: 40px;
            border-radius: 25px;
            background: 
                linear-gradient(145deg, rgba(15, 15, 40, 0.95), rgba(40, 10, 60, 0.9)),
                linear-gradient(45deg, rgba(0, 255, 255, 0.03), rgba(255, 0, 150, 0.03));
            backdrop-filter: blur(20px);
            border: 3px solid;
            border-image: linear-gradient(45deg, #00ffff, #ff0080, #8000ff, #00ffff) 1;
            box-shadow: 
                0 0 100px rgba(0, 255, 255, 0.3),
                0 0 200px rgba(255, 0, 150, 0.2),
                inset 0 0 100px rgba(255, 255, 255, 0.03);
            position: relative;
            z-index: 10;
            overflow: hidden;
        }

        .tab-container::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #00ffff, #ff0080, #8000ff, #00ffff);
            border-radius: 25px;
            z-index: -1;
            animation: borderRotate 4s linear infinite;
        }

        @keyframes borderRotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .topic {
            font-size: 42px;
            font-weight: 900;
            margin-bottom: 40px;
            text-align: center;
            background: linear-gradient(45deg, #00ffff, #ff0080, #8000ff, #00ffff);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 50px rgba(0, 255, 255, 0.8);
            text-transform: uppercase;
            letter-spacing: 4px;
            position: relative;
            animation: gradientShift 3s ease-in-out infinite;
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .topic::after {
            content: '● ENTERTAINMENT ZONE ●';
            position: absolute;
            top: 60px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 14px;
            color: rgba(0, 255, 255, 0.7);
            letter-spacing: 2px;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.7; }
            50% { opacity: 1; }
        }

       .games-gallery-container .content {
            display: flex;
            gap: 50px;
            position: relative;
            z-index: 2;
        }

        .content input {
            display: none;
        }

        .content .list {
            display: flex;
            flex-direction: column;
            position: relative;
            width: 350px;
            background: rgba(0, 0, 0, 0.6);
            border-radius: 20px;
            padding: 15px;
            border: 2px solid rgba(0, 255, 255, 0.3);
            box-shadow: 
                0 0 30px rgba(0, 255, 255, 0.2),
                inset 0 0 30px rgba(255, 255, 255, 0.05);
        }

        .content .list::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, #00ffff, #ff0080, transparent);
            animation: energyFlow 2s linear infinite;
        }

        @keyframes energyFlow {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .content .list label {
            cursor: pointer;
            height: 80px;
            line-height: 25px;
            font-size: 18px;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.7);
            padding: 15px 30px;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            z-index: 10;
            position: relative;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            border-radius: 15px;
            margin: 3px 0;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .content .list label::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 6px;
            background: linear-gradient(180deg, #00ffff, #ff0080, #8000ff);
            transform: scaleY(0);
            transition: transform 0.4s ease;
            border-radius: 0 3px 3px 0;
        }

        .content .list label::after {
            content: '';
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-bottom: 8px solid rgba(0, 255, 255, 0.6);
            transform: translateY(-50%) rotate(-90deg);
            transition: all 0.3s ease;
            opacity: 0;
        }

        .content .list label:hover {
            color: #00ffff !important;
            background: 
                linear-gradient(135deg, rgba(0, 255, 255, 0.15), rgba(255, 0, 150, 0.1)),
                rgba(0, 0, 0, 0.3);
            box-shadow: 
                0 0 30px rgba(0, 255, 255, 0.4),
                inset 0 0 20px rgba(0, 255, 255, 0.1);
            transform: translateX(8px) scale(1.02);
            border: 1px solid rgba(0, 255, 255, 0.5);
        }

        .content .list label:hover::before {
            transform: scaleY(1);
        }

        .content .list label:hover::after {
            opacity: 1;
            transform: translateY(-50%) rotate(0deg);
        }

        .content .list label span {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            line-height: 1.3;
        }

        .content .list label span::before {
            content: attr(data-icon);
            font-size: 24px;
            margin-bottom: 5px;
            transition: all 0.3s ease;
        }

        .content .list label:hover span::before {
            transform: scale(1.2) rotate(10deg);
            filter: drop-shadow(0 0 10px currentColor);
        }

        /* Active state styles */
        #bowling:checked ~ .list label.tab-bowling,
        #trampoline:checked ~ .list label.tab-trampoline,
        #arcade:checked ~ .list label.tab-arcade,
        #virtual-reality:checked ~ .list label.tab-virtual-reality,
        #krafting:checked ~ .list label.tab-krafting {
            color: #000 !important;
            font-weight: 900;
            transform: translateX(15px) scale(1.05);
            background: linear-gradient(135deg, #00ffff, #ff0080);
            box-shadow: 
                0 0 40px rgba(0, 255, 255, 0.8),
                inset 0 0 20px rgba(255, 255, 255, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.8);
        }

        .content .slider {
            position: absolute;
            left: 15px;
            top: 18px;
            height: 80px;
            width: calc(100% - 30px);
            border-radius: 15px;
            transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            background: 
                linear-gradient(135deg, #00ffff, #ff0080, #8000ff),
                linear-gradient(45deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
            background-blend-mode: overlay;
            box-shadow: 
                0 0 50px rgba(0, 255, 255, 0.8),
                0 0 100px rgba(255, 0, 150, 0.6),
                inset 0 0 30px rgba(255, 255, 255, 0.2);
            z-index: 1;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .slider::before {
            content: '';
            position: absolute;
            top: 3px;
            left: 3px;
            right: 3px;
            bottom: 3px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
            border-radius: 12px;
            animation: shimmer 2s ease-in-out infinite;
        }

        @keyframes shimmer {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.7; }
        }

        #bowling:checked ~ .list .slider { top: 18px; }
        #trampoline:checked ~ .list .slider { top: 101px; }
        #arcade:checked ~ .list .slider { top: 184px; }
        #virtual-reality:checked ~ .list .slider { top: 267px; }
        #krafting:checked ~ .list .slider { top: 350px; }

        .content .text-content {
            flex: 1;
            background: 
                linear-gradient(145deg, rgba(0, 0, 0, 0.7), rgba(20, 20, 40, 0.8)),
                radial-gradient(circle at center, rgba(0, 255, 255, 0.05), transparent 70%);
            border-radius: 20px;
            padding: 40px;
            border: 2px solid rgba(0, 255, 255, 0.3);
            min-height: 500px;
            position: relative;
            overflow: hidden;
            box-shadow: 
                0 0 50px rgba(0, 255, 255, 0.2),
                inset 0 0 50px rgba(255, 255, 255, 0.03);
        }

        .content .text-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, #00ffff, #ff0080, transparent);
            animation: scanline 4s linear infinite;
        }

        .content .text-content::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                repeating-linear-gradient(
                    90deg,
                    transparent,
                    transparent 2px,
                    rgba(0, 255, 255, 0.03) 2px,
                    rgba(0, 255, 255, 0.03) 4px
                );
            pointer-events: none;
        }

        @keyframes scanline {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .content .text {
            display: none;
            animation: slideIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        @keyframes slideIn {
            from { 
                opacity: 0; 
                transform: translateX(30px) rotateY(10deg); 
            }
            to { 
                opacity: 1; 
                transform: translateX(0) rotateY(0deg); 
            }
        }

        .content .text .title {
            font-size: 32px;
            margin-bottom: 25px;
            font-weight: 900;
            background: linear-gradient(45deg, #00ffff, #ff0080, #8000ff);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-transform: uppercase;
            letter-spacing: 3px;
            animation: titleGlow 3s ease-in-out infinite;
            position: relative;
        }

        @keyframes titleGlow {
            0%, 100% { 
                background-position: 0% 50%;
                filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.5));
            }
            50% { 
                background-position: 100% 50%;
                filter: drop-shadow(0 0 30px rgba(255, 0, 150, 0.8));
            }
        }

        .content .text p {
            text-align: justify;
            line-height: 1.9;
            color: rgba(255, 255, 255, 0.9);
            font-size: 17px;
            text-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
            margin-bottom: 20px;
            padding: 20px;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 12px;
            border-left: 4px solid rgba(0, 255, 255, 0.5);
        }

        .tab-image {
            width: 100%;
            max-width: 400px;
            height: 250px;
            object-fit: cover;
            border-radius: 15px;
            margin: 25px 0;
            border: 3px solid rgba(0, 255, 255, 0.4);
            box-shadow: 
                0 0 40px rgba(0, 255, 255, 0.3),
                0 0 80px rgba(255, 0, 150, 0.2);
            filter: contrast(1.2) saturate(1.3);
            transition: all 0.3s ease;
        }

        .tab-image:hover {
            transform: scale(1.02);
            box-shadow: 
                0 0 60px rgba(0, 255, 255, 0.5),
                0 0 120px rgba(255, 0, 150, 0.3);
        }

        .content .text-content .content-bowling { display: block; }

        #bowling:checked ~ .text-content .content-bowling,
        #trampoline:checked ~ .text-content .content-trampoline,
        #arcade:checked ~ .text-content .content-arcade,
        #virtual-reality:checked ~ .text-content .content-virtual-reality,
        #krafting:checked ~ .text-content .content-krafting {
            display: block;
        }

        /* Hide all non-active content */
        #trampoline:checked ~ .text-content .content-bowling,
        #arcade:checked ~ .text-content .content-bowling,
        #virtual-reality:checked ~ .text-content .content-bowling,
        #krafting:checked ~ .text-content .content-bowling,
        #bowling:checked ~ .text-content .content-trampoline,
        #bowling:checked ~ .text-content .content-arcade,
        #bowling:checked ~ .text-content .content-virtual-reality,
        #bowling:checked ~ .text-content .content-krafting,
        #trampoline:checked ~ .text-content .content-arcade,
        #trampoline:checked ~ .text-content .content-virtual-reality,
        #trampoline:checked ~ .text-content .content-krafting,
        #arcade:checked ~ .text-content .content-trampoline,
        #arcade:checked ~ .text-content .content-virtual-reality,
        #arcade:checked ~ .text-content .content-krafting,
        #virtual-reality:checked ~ .text-content .content-trampoline,
        #virtual-reality:checked ~ .text-content .content-arcade,
        #virtual-reality:checked ~ .text-content .content-krafting,
        #krafting:checked ~ .text-content .content-bowling,
        #krafting:checked ~ .text-content .content-trampoline,
        #krafting:checked ~ .text-content .content-arcade,
        #krafting:checked ~ .text-content .content-virtual-reality {
            display: none;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .content {
                flex-direction: column;
                gap: 30px;
            }
            
            .content .list {
                width: 100%;
                flex-direction: row;
                overflow-x: auto;
                padding: 10px;
            }
            
            .content .list label {
                min-width: 200px;
                height: 60px;
                font-size: 14px;
                padding: 10px 20px;
            }
            
            .content .slider {
                height: 60px;
                width: 200px;
                top: 10px;
            }
            
            #bowling:checked ~ .list .slider { left: 10px; }
            #trampoline:checked ~ .list .slider { left: 210px; }
            #arcade:checked ~ .list .slider { left: 410px; }
            #virtual-reality:checked ~ .list .slider { left: 610px; }
            #krafting:checked ~ .list .slider { left: 810px; }
        }



.branchhero {
  background-image: url('https://hungama.roiyatech.com/wp-content/uploads/2025/05/gallery-2.png');
  height: 500px;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.branchhero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.branchhero p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.branchbtn-primary {
  background-color: #fff;
  color: #333;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}

.branchbtn-primary:hover {
  background-color: #333;
  color: #fff;
}

.branch-highlights {
  background: #fdf8ff;
  padding: 60px 20px;
  text-align: center;
}
.branch-highlights-container {
  max-width: 1200px;
  margin: 0 auto;
}
.branch-highlights-title {
  font-size: 2.2rem;
  color: #441b99;
  margin-bottom: 40px;
  font-weight: bold;
}
.branch-highlights{
	 color: #441b99;
}
.branch-highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.branch-highlights-box {
  background: white;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}
.branch-highlights-box:hover {
  transform: translateY(-8px);
}
.branch-highlights-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}
.branch-highlights-text {
  font-size: 1.2rem;
  color: #333;
  font-weight: 600;
}


.gallery-preview {
  background: #fdfdfd;
  padding: 60px 20px;
  text-align: center;
}

.gallery-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-heading {
  font-size: 2.2rem;
  color: #301c76;
  font-weight: 700;
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* exactly 3 per row */
  gap: 25px;
}
.gallery-item{
	width: 100%;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid6:hover img {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.gallery-cta {
  margin-top: 40px;
}

.gallery-button {
  background-color: #5e3fbc;
  color: #fff;
  padding: 12px 30px;
  font-size: 1rem;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.gallery-button:hover {
  background-color: #3f28a8;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}


/*tab css for branch single page*/
/* Container */
.simple-tab-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 30px;
  background: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Title */
.simple-topic {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  color: #441b99;
  margin-bottom: 30px;
}

/* Hide radio buttons */
.simple-content input {
  display: none;
}

/* Layout flex */
.simple-content {
  display: flex;
  flex-wrap: wrap;
}

/* Tab list styles */
.simple-list {
  display: flex;
  flex-direction: column;
  width: 220px;
  margin-right: 20px;
}

.simple-list label {
  cursor: pointer;
  padding: 12px 16px;
  font-size: 16px;
  color: #555;
  background: #fff;
  border-left: 4px solid transparent;
  transition: background 0.3s;
  margin-bottom: 5px;
  border-radius: 4px;
}

/* Hover effect */
.simple-list label:hover {
  background: #f1f1f1;
}

/* Active State Styling (ALL 6 tabs) */
#simple-arcade-games:checked ~ .simple-list .simple-tab-arcade-games,
#simple-soft-play:checked ~ .simple-list .simple-tab-soft-play,
#simple-vr-games:checked ~ .simple-list .simple-tab-vr-games,
#simple-redemption:checked ~ .simple-list .simple-tab-redemption,
#simple-toddler:checked ~ .simple-list .simple-tab-toddler,
#simple-interactive:checked ~ .simple-list .simple-tab-interactive {
  background: #ececff;
  border-left: 4px solid #441b99;
  color: #441b99;
  font-weight: 600;
}

/* Text container */
.simple-text-content {
  flex: 1;
  padding: 20px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 4px;
  min-height: 300px;
}

/* Hide all by default */
.simple-text {
  display: none;
}

/* Heading in text */
.simple-title {
  font-size: 24px;
  margin-bottom: 18px;
  color: #441b99;
  font-weight: bold;
}

/* Paragraph text */
.simple-text-content p {
  color: #444;
  font-size: 15px;
  line-height: 1.7;
}

/* Show selected tab content */
#simple-arcade-games:checked ~ .simple-text-content .simple-content-arcade-games,
#simple-soft-play:checked ~ .simple-text-content .simple-content-soft-play,
#simple-vr-games:checked ~ .simple-text-content .simple-content-vr-games,
#simple-redemption:checked ~ .simple-text-content .simple-content-redemption,
#simple-toddler:checked ~ .simple-text-content .simple-content-toddler,
#simple-interactive:checked ~ .simple-text-content .simple-content-interactive {
  display: block;
}

/* Optional Responsive */
@media (max-width: 768px) {
  .simple-content {
    flex-direction: column;
  }

  .simple-list {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }

  .simple-list label {
    flex: 1 1 48%;
    margin: 5px;
  }
}




.birthday-events-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 30px;
  font-family: sans-serif;
  background: #120031;
  border-radius: 12px;
}

/* Title */
.birthday-title {
  text-align: center;
  font-size: 36px;
  color: white;
  margin-bottom: 40px;
}

/* Packages */
.birthday-packages {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 50px;
}

.package-card {
  flex: 1;
  background: #fff;
  border: 2px solid #441b99;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}






.package-card h3 {
  font-size: 22px;
  color: #b81e6e;
  margin-bottom: 10px;
}

.package-card p {
  color: #555;
  font-size: 15px;
}

/* Two Column Layout */
.birthday-columns {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

/* Form Style */
.booking-form {
  flex: 1;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  border: 1px solid #ffd6e3;
}

.booking-form h3 {
  color: #120031;
  margin-bottom: 20px;
}

.booking-form label {
  display: block;
  margin-bottom: 15px;
  color: #333;
  font-weight: 500;
}

.booking-form input,
.booking-form select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

/* Submit Button */
.booking-form button {
  padding: 12px 25px;
  background: #441b99;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 10px;
  font-weight: bold;
}

/* Testimonials */
.testimonial-slider {
  flex: 1;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #441b99;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.testimonial-slider h3 {
  color: #441b99;
  margin-bottom: 20px;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.testimonial {
  background: #441b991c;
  border-left: 4px solid #441b99;;
  padding: 15px;
  border-radius: 6px;
}

.testimonial p {
  margin: 0 0 5px;
  font-size: 15px;
  color: #444;
}

.testimonial span {
  font-size: 14px;
  color: #888;
}





/* Container */
.deals-section {
  padding: 60px 20px;
  background: #0f1929;
  color: #fff;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.deals-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
}

/* Deal Card Grid */
.deals-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* Card Style */
.deal-card {
  position: relative;
  background: #fff;
  color: #222;
  border-radius: 10px;
  width: 300px;
  padding: 30px 20px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.2);
  overflow: hidden;
  text-align: left;
}

.deal-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 700;
}

.deal-card p {
  font-size: 14px;
  line-height: 1.6;
}

/* Ribbon Wrapper */
.ribbon-wrapper {
  position: absolute;
top: -16px;
    right: -31px;
  width: 120px;
  height: 120px;
  overflow: hidden;
  z-index: 1;
}

/* Ribbon Tag */
.ribbon-tag {
  position: absolute;
  top: 30px;
  left: -30px;
  width: 180px;
  padding: 6px 0;
  text-align: center;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  transform: rotate(45deg);
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Color Variants */
.purple { background: linear-gradient(to right, #cb60b3, #db36a4); }
.red    { background: linear-gradient(to right, #f85032, #e73827); }
.blue   { background: linear-gradient(to right, #4949fa, #4036d1); }
