
/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #042c64;
  --secondary-color:              #181870;
  --section-bg-color:             #f0f8ff;
  --custom-btn-bg-color:          #181870;
  --custom-btn-bg-hover-color:    #c01f27;
  --dark-color:                   #000000;
  --p-color:                      #717275;
  --border-color:                 #7fffd4;
  --link-hover-color:             #B22727;

  --body-font-family:             'Outfit', sans-serif;

  --h1-font-size:                 74px;
  --h2-font-size:                 46px;
  --h3-font-size:                 32px;
  --h4-font-size:                 28px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  18px;
  --btn-font-size:                14px;
  --copyright-font-size:          16px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-light:            300;
  --font-weight-normal:           400;
  --font-weight-bold:             700;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family); 
}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
}

h1 {
  font-size: var(--h1-font-size);
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

.link-fx-1 {
  color: var(--primary-color);
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 6px;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.link-fx-1:hover {
  color: var(--link-hover-color);
}

.link-fx-1:hover::before {
  transform: translateX(17px) scaleX(0);
  transition: transform .2s;
}

.link-fx-1:hover .icon circle {
  stroke-dashoffset: 200;
  transition: stroke-dashoffset .2s .1s;
}

.link-fx-1:hover .icon line {
  transform: rotate(-180deg);
}

.link-fx-1:hover .icon line:last-child {
  transform: rotate(180deg);
}

.link-fx-1::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform-origin: right center;
  transition: transform .2s .1s;
}

.link-fx-1 .icon {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateX(100%) rotate(90deg);
  font-size: 32px;
}

.icon {
  --size: 1em;
  height: var(--size);
  width: var(--size);
  display: inline-block;
  color: inherit;
  fill: currentColor;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}

.link-fx-1 .icon circle {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset .2s;
}

.link-fx-1 .icon line {
  transition: transform .4s;
  transform-origin: 13px 15px;
}

.link-fx-1 .icon line:last-child {
  transform-origin: 19px 15px;
}


/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 50px;
  padding-bottom: 50px;
}

.section-bg {
  background-color: var(--section-bg-color);
}

.section-overlay {
  background-color: var(--dark-color);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}

.section-overlay + .container {
  position: relative;
}

.tab-content {
  background-color: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 45px;
}

.nav-tabs {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-large);
  border-bottom: 0;
  padding: 15px;
}

.nav-tabs .nav-link {
  border-radius: var(--border-radius-large);
  border: 0;
  padding: 15px 25px;
  transition: all 0.3s;
}

.nav-tabs .nav-link:first-child {
  margin-right: 15px;
}

.nav-tabs .nav-item.show .nav-link, 
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:focus, 
.nav-tabs .nav-link:hover {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  color: var(--primary-color);
}

.nav-tabs h5 {
  color: var(--p-color); 
  margin-bottom: 0;
}

.nav-tabs .nav-link.active h5,
.nav-tabs .nav-link:focus h5, 
.nav-tabs .nav-link:hover h5 {
  color: var(--primary-color);
}

/*---------------------------------------
  CUSTOM ICON COLOR               
-----------------------------------------*/
.custom-icon {
  color: var(--secondary-color);
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn:hover,
.custom-border-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
  color: var(--white-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}






/*---------------------------------------
  VIDEO              
-----------------------------------------*/
.video-wrap {
  z-index: -100;
}

.custom-video {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}


/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background-color: transparent;
  padding: 0;
  margin: 0;
  height: 0;
  overflow: hidden;
  border: none;
}


/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.logo {
  height: 100px;
  object-fit: contain;
  max-width: 100%;
}

/* Hide dark logo by default */
.logo-dark {
  display: none;
}

/* Show white logo initially */
.logo-white {
  display: block;
}



.sticky-wrapper.is-sticky {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

.sticky-wrapper.is-sticky .navbar {
  background-color: white !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

.sticky-wrapper.is-sticky .logo-white {
  display: none !important;
}

.sticky-wrapper.is-sticky .logo-dark {
  display: block !important;
}



/* When sticky: menu turns dark */
.sticky-wrapper.is-sticky .navbar .nav-link {
  color: var(--dark-color);
}

/* Active and hover state in both modes */
.navbar .nav-link.active,
.navbar .nav-link:hover {
  font-weight: var(--font-weight-bold);
}

/* Hover color for sticky mode */
.sticky-wrapper.is-sticky .navbar .nav-link:hover {
  color: var(--primary-color); /* or keep it var(--dark-color) if preferred */
}
/* Navbar turns white background on hover when not sticky */
.navbar:not(.is-sticky):hover {
  background-color: white !important;
  transition: background-color 0.3s ease;
}

/* Update nav link colors on hover for non-sticky state */
.navbar:not(.is-sticky):hover .nav-link {
  color: var(--dark-color) !important;
}
.navbar:not(.is-sticky):hover .logo-white {
  display: none !important;
}

.navbar:not(.is-sticky):hover .logo-dark {
  display: block !important;
}

.sticky-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin-top: 0;
}


.navbar {
  background: transparent;
  z-index: 9;
}

.navbar-brand,
.navbar-brand:hover {
  color: var(--white-color);
  font-size: var(--h5-font-size);
  font-weight: var(--font-weight-bold);
}

.navbar-expand-lg .navbar-nav .nav-link {
  border-radius: var(--border-radius-large);
  margin: 10px;
  padding: 10px 20px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
  color: var(--dark-color);
  font-weight: var(--font-weight-bold);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

/* Default: navbar at top with dark background */
.navbar-toggler .navbar-toggler-icon,
.navbar-toggler .navbar-toggler-icon::before,
.navbar-toggler .navbar-toggler-icon::after {
  background-color: var(--white-color);
  transition: background-color 0.3s ease, transform 0.3s ease, top 0.3s ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
  content: '';
}

/* Adjust spacing */
.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
  position: absolute;
}
.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
  position: absolute;
}

/* When navbar has white background OR on hover over white navbar */
.navbar-bg-white .navbar-toggler .navbar-toggler-icon,
.navbar-bg-white .navbar-toggler .navbar-toggler-icon::before,
.navbar-bg-white .navbar-toggler .navbar-toggler-icon::after,
.navbar:hover.navbar-bg-white .navbar-toggler .navbar-toggler-icon,
.navbar:hover.navbar-bg-white .navbar-toggler .navbar-toggler-icon::before,
.navbar:hover.navbar-bg-white .navbar-toggler .navbar-toggler-icon::after {
  background-color: var(--dark-color);
}
.navbar:hover .navbar-toggler .navbar-toggler-icon,
.navbar:hover .navbar-toggler .navbar-toggler-icon::before,
.navbar:hover .navbar-toggler .navbar-toggler-icon::after {
  background-color: var(--dark-color);
}


/* Toggle active (X) state */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  top: 0;
  transform: rotate(45deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  top: 0;
  transform: rotate(-45deg);
}
/* Make dropdown blend with navbar */
.navbar .dropdown-menu {
  border: none;
  margin-top: 0;
  border-radius: 0;
  box-shadow: none;
  padding-top: 0;
  padding-bottom: 0;
  background-color: #ffffff;
  width: 100vw; /* Full-width */
  left: 0 !important;
  right: 0 !important;
}

/* Remove any vertical spacing */
.navbar .dropdown-menu > .row {
  margin: 0;
  padding: 1rem 2rem;
}

/* Optional: reduce padding around nav links */
.navbar-nav .nav-link {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
/* Show/hide mega menu (only applies to 'Industries') */

.mega-dropdown .mega-menu {
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
}

.mega-dropdown:hover .mega-menu {
  display: flex;
  opacity: 1;
  visibility: visible;
}

/* Mega menu container layout */

/* Full mega dropdown container */
.mega-menu {
  display: flex;
  background-color: white;
  width: auto;
  max-width: 700px;
  margin: 0 auto;
  padding: 1rem;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  /* transition: none !important; */
}

/* Left: primary menu (expanded slightly) */
.mega-menu-left {
  width: 50%;
  /* min-width: 250px; */
  max-width: 300px;
  background-color: #f9f9f9;
  padding: 1rem;
  border-right: 1px solid #ddd;
}

/* Right: submenu panel (narrowed slightly) */
.mega-menu-right {
  width: 50%;
  padding: 1rem 2rem;
}
.mega-menu-left li {
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-weight: 500;
  color: #333;
}
.mega-menu-left,
.mega-menu-right {
  min-width: 300px;
}


.mega-menu-left li:hover,
.mega-menu-left li.active {
  background-color: #f0f0f5;
  color: #007bff;
}


.submenu-content {
  display: none;
}

.submenu-content.active {
  display: block;
}

.submenu-content h6 {
  font-size: 16px;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
}

.submenu-content ul {
  padding-left: 1rem;
  list-style: none;
}

.submenu-content ul li a {
  display: block;
  padding: 0.25rem 0;
  color: #212529;
  text-decoration: none;
}

.submenu-content ul li a:hover {
  text-decoration: underline;
  color: #007bff;
}
.nav-item.dropdown:hover .insights-mega-menu {
  display: block;
}

.insights-mega-menu {
  width: 100%;
  max-width: 800px;
  margin-left: 40px;
  left: 0;
  right: 0;
  /* top: 100%; */
  background: #fff;
  border: none;
  box-shadow: 0 1rem 2rem rgba(0,0,0,0.15);
  display: none;
  position: absolute;
  /* z-index: 9999; */
}



.insights-mega-menu h6 {
  font-size: 16px;
  font-weight: 600;
}
.mega-menu h6{
  font-size: 16px;
  font-weight: 600;
}
.insights-mega-menu p {
  font-size: 13px;
  color: #555;
}

.insights-mega-menu img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}


/*----------------------------------------
-----------------ABOUT------------------
-----------------------------------------*/

/* About Page Custom Styles aligned with templatemo-festava-live.css */

.about-hero {
  background: url(../images/bg-1.webp) no-repeat center center;
  background-size: cover;
  padding: 200px 0;
  text-align: left;
  color: #fff;
  position: relative;
  width: 100vw; /* full viewport width */
  margin-left: calc(-50vw + 50%); /* aligns full-width section inside centered container */
}
.corporate-hero {
  background-image: url('/images/image.jpg');
  background-size: cover;
  padding: 200px 0;
  text-align: left;
  color: #fff;
  position: relative;
  width: 100vw; /* full viewport width */
  margin-left: calc(-50vw + 50%); /* aligns full-width section inside centered container */
}

.about-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white-color);
}

.about-section {
  background-color: var(--section-bg-color);
  padding: 150px 0;
}

.about-section h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--dark-color);
}

.about-section p {
  font-size: 1.125rem;
  color: #555;
  line-height: 1.7;
}
.about-section {
  background-image: url('../images/BU.jpg');
  background-color: #704010;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  /* color: #000; */
}

.about-image {
  border-radius: var(--border-radius-medium);
  display: block;
}

.about-text-wrap {
  position: relative;
}

.about-text-icon {
  background: var(--primary-color);
  border-radius: 100%;
  font-size: var(--h3-font-size);
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
}
.about-text-info a {
  color: #000;
}

.about-text-info {
  backdrop-filter: blur(5px) saturate(180%);
  -webkit-backdrop-filter: blur(5px) saturate(180%);
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: var(--border-radius-medium);
  border: 1px solid rgba(209, 213, 219, 0.3);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 20px;
  padding: 35px;
  
}
.fun-facts {
  position: relative;
  padding: 120px 0px 40px 0px;
  overflow: hidden;
  margin-bottom: 80px;
}

.fun-facts:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 95%;
  height: 100%;
  background-color: #042c64;
  content: '';
  border-top-right-radius: 500px;
  border-bottom-right-radius: 500px;
}

.fun-facts:after {
  background: url(../images/contact-dec-01.png);
  position: absolute;
  left: 15%;
  opacity: 0.5;
  top: 0;
  width: 318px;
  height: 119px;
  content: '';
  z-index: 2;
}

.fun-facts .counter {
  text-align: center;
  margin-bottom: 40px;
}

.fun-facts h2 {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
}

.fun-facts h2::after {
  content: '+';
  margin-left: 5px;
}

.fun-facts p {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  margin-top: 15px;
}


/* .team {
  margin-top: 20px;
  padding-top: 140px;
} */

.team-member {
  margin-top: 100px;
  position: relative;
}
.team h2{
  padding-bottom: 20px;
}
.team-member:hover img {
  top: -120px;
}

.team-member img {
  max-width: 220px;
  border-radius: 50%;
  position: absolute;
  top: -110px;
  left: 50%;
  transform: translateX(-110px);
  transition: all .3s;
}

.team-member .main-content {
  border-radius: 25px;
  padding: 140px 30px 40px 30px;
  background-color: #e4e4e4;
  text-align: center;
}

.team-member .main-content span.category {
  color: #042c64;
  font-size: 15px;
}

.team-member .main-content h4 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 8px;
  margin-bottom: 15px;
}

.team-member .main-content ul li {
  display: inline-block;
  margin: 0px 2px;
}

.team-member .main-content ul li a {
  background-color: #fff;
  color: #042c64;
  display: inline-block;
  text-align: center;
  line-height: 40px;
  font-size: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all .3s;
}

.team-member .main-content ul li a:hover {
  background-color: #042c64;
  color: #fff;
}


/*---------------------------------------
  HERO        
-----------------------------------------*/
.hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 150px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 51px);
}

.hero-section small {
  color: var(--white-color);
  text-transform: uppercase;
}

.hero-section .section-overlay {
  z-index: 2;
  opacity: 0.45;
}

.hero-section .container {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-bottom: 50px;
}

.hero-section .container .row {
  height: 100%;
}

.hero-tagline {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.2;
  white-space: nowrap; /* Keeps it on one line */
}

.hero-paragraph {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-top: 1rem;
  /* font-weight: bold; */
}

.hero-text-block {
  transform-origin: left center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  max-width: 950px;
  padding-left: 20px;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 4rem 1rem;
    text-align: center;
  }

  .hero-section .container {
    flex-direction: column;
    align-items: center;
  }

  .hero-section h1,
  .hero-section p {
    font-size: 1.5rem;
    line-height: 1.4;
    word-wrap: break-word;
    max-width: 100%;
  }

  .hero-section .btn {
    margin-top: 1rem;
  }
}


/*---------------------------------------
  PROJECTS           
-----------------------------------------*/

.section {
  /* background-image: url("../images/AC.jpg"); */
  padding-top: 30px;
  margin-top: 60px;
}
.section-heading {
  margin-bottom: 60px;
}
.courses {
  margin-top: 80px;
}

.event_filter {
  text-align: center;
}

.event_filter {
  background-color: #e4e4e4;
  border-radius: 50px;
  padding: 15px 40px;
  list-style: none;
  margin: 0 auto 70px;
  max-width: max-content;
}
/* .event_filter:hover{
  background-color: #9fc2ed;
} */

.event_filter li {
  display: inline-block;
  margin: 0px 20px;
}

.event_filter li a {
  font-size: 14px;
  font-weight: 500;
  color: #1e1e1e;
  transition: all .3s;
}

.event_filter li

.event_filter li a.is_active,
.event_filter li a:hover {
  color: #1c0796;
  font-weight: bold;
}

.events_item .thumb {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
}

.events_item .thumb img {
  margin-bottom: -5px;
}

.events_item .thumb span.category {
  position: absolute;
  left: 30px;
  top: 30px;
  font-size: 14px;
  text-transform: uppercase;
  color: #4f4f4f;
  background-color: rgba(250, 250, 250, 0.95);
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 500;
  display: inline-block;
}
.events_item:hover .thumb span.category{
  color: #1c0796;
}

.events_item .thumb span.price {
  position: absolute;
  right: -30px;
  top: -50px;
  background-color: #4f4f4f;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  display: inline-block;
  transition: all .3s;
}


.events_item .thumb span.price h6 {
  margin-top: 72px;
  margin-left: 22px;
  font-size: 28px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
}

.events_item .thumb span.price em {
  font-size: 18px;
  font-weight: 500;
  font-style: normal;
  vertical-align: top;
}

.events_item {
  background-color: #E4E4E4;
  border-radius: 25px;
  margin-bottom: 30px;
  position: relative;
  justify-content: center;
  align-items: center;
} 
.events_item:hover{
  background-color: #9fc2ed;
}
.events_item .down-content {
  padding: 20px 30px 25px 30px;
}

.events_item .down-content span.author {
  color: #1e0b8b;
  font-size: 15px;
  display: inline-block;
  margin-bottom: 6px;
}

.events_item .down-content h4 {
  font-size: 22px;
  font-weight: 600;
  transition: all .3s;
}

.events_item:hover .down-content h4 {
  color: #1c0796;
}

.events_item:hover .thumb span.price {
  transform: scale(1.2);
  background-color: #1c0796;
}


/*---------------------------------------
  TICKET               
-----------------------------------------*/
.ticket-section {
  background-image: url('../images/BG.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 130px;
}

.ticket-form {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 50px;
}

.ticket-form .form-check {
  position: relative;
  min-height: 52px;
  padding-left: 35px;
}

.ticket-form .form-check .form-check-label {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 12px;
  margin-left: 35px;
  width: 100%;
  height: 100%;
}


/*---------------------------------------
  ARTICLES            
-----------------------------------------*/

.artists-section{
  background-image: url('../images/BG.jpg');
}
.artists-thumb {
  
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}
.artists-thumb:first-child .artists-image {
  max-height: 575px; 
  object-fit: cover;
}

.artists-image {
  border-radius: var(--border-radius-medium);
  display: block;
  width: 100%;
}

.artists-thumb:hover .artists-hover {
  transform: translateY(0);
  opacity: 1;
}

.artists-hover {
  background-color: var(--primary-color);
  background-color: rgba(248, 203, 46, 0.75);
  border-radius: var(--border-radius-medium);
  backdrop-filter: blur(5px) saturate(180%);
  -webkit-backdrop-filter: blur(5px) saturate(180%);
  margin: 20px;
  padding: 35px;
  transition: all 0.5s ease;
  transform: translateY(100%);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  opacity: 0;
}

.artists-hover p strong {
  color: var(--white-color);
  display: inline-block;
  min-width: 180px;
  margin-right: 20px;
}

.artists-hover p a {
  color: var(--secondary-color);
}

.artists-hover p a:hover {
  color: var(--white-color);
}

.artists-hover hr {
  margin: 1.5rem 0;
}

/*-----------------------------
SERVICES
-------------------------------*/
.services{
  background-image: url('../images/rm.jpg');
}
.section-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #343a40;
}

.section-subheading {
  color: #6c757d;
  font-size: 1.125rem;
  margin-top: -10px;
  margin-bottom: 30px;
}

.service-tile {
  background: linear-gradient(145deg, #ffffff, #f2f2f2);
  border: 1px solid #dee2e6;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.soft-edge {
  border-radius: 50px 0 50px 0;
}

.service-tile:hover {
  background: linear-gradient(145deg, #e0f7fa, #ffffff);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  transform: translateY(-10px) scale(1.05);
}

.service-tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(13, 202, 240, 0.05);
  transform: skewX(-20deg);
  transition: left 0.4s ease-in-out;
}

.service-tile:hover::before {
  left: 100%;
}

.service-tile:hover h5,
.service-tile:hover p {
  transform: scale(1.07);
  transition: transform 0.4s ease-in-out;
}

.service-tile h5 {
  font-weight: 700;
  color: #212529;
  transition: transform 0.4s ease-in-out;
}

.service-tile p {
  color: #495057;
  transition: transform 0.4s ease-in-out;
}

.service-icon i {
  font-size: 3rem;
  color: #0dcaf0;
  transition: transform 0.4s ease-in-out;
}

.service-tile:hover .service-icon i {
  transform: scale(1.2) rotate(5deg);
}

/*---------------------------------------
  PRICING              
-----------------------------------------*/
.pricing-thumb {
  border: 5px dotted var(--dark-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  padding: 50px;
}

.pricing-thumb h3 small {
  display: inline-block;
  font-size: var(--p-font-size);
  margin-right: 15px;
}

.pricing-list {
  column-count: 2;
  padding-left: 20px;
}

.pricing-list-item {
  line-height: normal;
  margin-right: 10px;
  margin-bottom: 10px;
}

.pricing-tag {
  /* background-color: var(--secondary-color); */
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  position: absolute;
  top: 0;
  right: 0;
  margin: 20px;
}

.pricing-tag span {
  font-size: 180%;
  line-height: normal;
}

.pricing-thumb .link-fx-1 {
  color: var(--primary-color);
}

.pricing-thumb .link-fx-1:hover {
  color: var(--link-hover-color);
}

/*---------------------------------------
      INSIGHTS               
-----------------------------------------*/
.related-articles .card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-articles .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.related-articles .card-img-top {
  object-fit: cover;
  height: 200px;
  width: 100%;
}

.related-articles .card-body {
  padding: 1rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.related-articles .card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.related-articles .card-text {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 1rem;
}

.related-articles .btn {
  align-self: flex-start;
}


.zoom-hover img {
  transition: transform 0.3s ease;
}

.zoom-hover img:hover {
  transform: scale(1.05);
}


/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.google-map {
  border-radius: var(--border-radius-medium);
}


/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  color: var(--p-color);
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  outline: none;
}

.custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-medium);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
}


/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  background-color: #e4e4e4;
  /* background-image: url('../images/AC.jpg'); */
  position: relative;
  overflow: hidden;
  /* padding: 40px 0px; */
  margin-top: 80px;
  padding-top: 20px;
  
  /* padding-bottom: 20px; */
}

.site-footer-top {
  background-color: var(--primary-color);
  
  background-repeat: no-repeat;
  /* margin-bottom: 20px; */
  padding-top: 8px;
  padding-bottom: 8px;
  margin-top: 20px;
  
}


.site-footer-title {
  color: var(--primary-color); 
}

.site-footer-link,
.copyright-text {
  color: var(--dark-color);
}

.site-footer-links {
  padding-left: 0;
}

.site-footer-link-item {
  list-style: none;
  display: inline-block;
  margin-right: 15px;
}

.copyright-text {
  font-size: var(--copyright-font-size);
  color: #fff;
}
footer .contact-form input {
  /* margin-left: 20px; */
	border-radius: 20px;
	height: 40px;
	line-height: 40px;
	display: inline-block;
	padding: 0px 15px;
	color: #aaa!important;
	background-color: #ffff;
	font-size: 13px;
	text-transform: none;
	box-shadow: none;
	border: none;
	margin-bottom: 15px;
}

footer .contact-form input:focus {
	outline: none;
	box-shadow: none;
	border: none;
	background-color: #ffff;
}

footer .contact-form textarea {
	border-radius: 20px;
	height: 120px;
	max-height: 200px;
	min-height: 120px;
	display: inline-block;
	padding: 15px;
	color: #aaa!important;
	background-color: #ffff;
	font-size: 13px;
	text-transform: none;
	box-shadow: none;
	border: none;
	margin-bottom: 15px;
}

footer .contact-form textarea:focus {
	outline: none;
	box-shadow: none;
	border: none;
	background-color: #ffff;
}

footer .contact-form ::-webkit-input-placeholder { /* Edge */
  color: #aaa;
}
footer .contact-form :-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #aaa;
}
footer .contact-form ::placeholder {
  color: #aaa;
}

footer .contact-form button.filled-button {
	background-color: transparent;
	color: #fff;
	background-color: #042c64;
	border: none;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 700;
	padding: 12px 30px;
	border-radius: 30px;
	display: inline-block;
	transition: all 0.3s;
	outline: none;
	box-shadow: none;
	text-shadow: none;
	cursor: pointer;
}

footer .contact-form button.filled-button:hover {
	background-color: #fff;
	color: #042c64;
} 

.submenu{
  display: none; 
  padding-left: 20px;
}

/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  display: block;
  margin-right: 10px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 36px;
  transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.social-icon-link span {
  display: block;
}

.social-icon-link span:hover::before{
  animation: spinAround 2s linear infinite;
}

@keyframes spinAround {
  from {
    transform: rotate(0deg)
  }
  to {
    transform: rotate(360deg);
  }
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 991px) {
  h1 {
    font-size: 62px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .navbar {
    background-color: var(--dark-color);
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 30px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
  }

  .hero-section {
    padding-top: 150px;
  }

  .pricing-thumb {
    padding: 35px;
  }

  .schedule-table h3 {
    font-size: 22px;
  }

  .schedule-table th {
    padding: 20px;
  }

  .schedule-table tr, 
  .schedule-table td {
    padding: 25px;
  }

  .ticket-section {
    padding-top: 130px;
  }

  .ticket-form {
    padding: 30px;
  }
}

@media screen and (max-width: 767px) {
  .custom-btn {
    font-size: 14px;
    padding: 10px 20px;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }
}

/* ----------------------------
CAREERS
----------------------------*/

.career-heading{
  margin-top: 20px;
  text-align: center;
}
.career-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 40px 20px;
  text-align: center;
  align-items: start;
  /* background-color: #f9f9f9; */
}
.career-tile:hover {
  transform: translateY(-5px);
}


.career-tile {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 25px 20px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.tile-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #1e0b8b;
}

.tile-content p {
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: #333;
}

.toggle-arrow {
  background: none;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  transition: transform 0.3s ease;
}

.arrow-icon {
  display: block;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.career-tile.expanded .arrow-icon {
  transform: rotate(180deg);
}

.career-tile.expanded .toggle-arrow {
  transform: rotate(180deg);
}

/* Initially hidden */
.tile-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.3s ease;
  opacity: 0;
  margin-top: 0;
}

.career-tile.expanded .tile-details {
  max-height: 300px; /* Adjust depending on content */
  opacity: 1;
  margin-top: 15px;
}

.apply-now-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #1e0b8b;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.apply-now-btn:hover {
  background-color: #000;
}
html {
  scroll-behavior: smooth;
}
section {
  scroll-margin-top: 100px; /* Prevents hidden anchor jump under fixed navbar */
}


