


/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #DA7501;
  --secondary-color:              #EE5007;
  --section-bg-color:             #f0f8ff;
  --custom-btn-bg-color:          #EE5007;
  --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(--white-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: 100px;
  padding-bottom: 100px;
}

.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: var(--primary-color);
  padding-top: 12px;
  padding-bottom: 12px;
}


/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.sticky-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin-top: 0;
}

.sticky-wrapper.is-sticky .navbar {
  background-color: var(--dark-color);
}

.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(--secondary-color);
}

/* Professional Dropdown Menu Styles */
.dropdown-menu {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border: 1px solid rgba(218, 117, 1, 0.2);
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(218, 117, 1, 0.1);
  padding: 8px 0;
  margin-top: 8px;
  min-width: 220px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: dropdownFadeIn 0.3s ease-out;
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.dropdown-item {
  color: #e5e5e5;
  padding: 12px 24px;
  transition: all 0.2s ease;
  border: none;
  background: transparent;
  font-weight: 500;
  font-size: 14px;
  position: relative;
  overflow: hidden;
}

.dropdown-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, rgba(218, 117, 1, 0.1) 0%, rgba(218, 117, 1, 0.3) 100%);
  transition: width 0.3s ease;
  z-index: -1;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background: transparent;
  color: #ffffff;
  padding-left: 32px;
  transform: translateX(5px);
}

.dropdown-item:hover::before,
.dropdown-item:focus::before {
  width: 100%;
}

.dropdown-toggle {
  position: relative;
  transition: all 0.3s ease;
}

.dropdown-toggle::after {
  margin-left: 8px;
  vertical-align: 0.15em;
  border-top: 0.4em solid;
  border-right: 0.4em solid transparent;
  border-bottom: 0;
  border-left: 0.4em solid transparent;
  transition: transform 0.3s ease;
}

.dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

.dropdown-toggle:hover {
  color: var(--secondary-color) !important;
}

/* Ensure dropdown is visible and properly positioned */
.navbar-nav .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1050;
  display: none;
}

.navbar-nav .dropdown-menu.show {
  display: block;
}

/* Remove hover functionality - click only */
/* Removed the hover rule that was causing dropdown to disappear on hover */

/* Professional dropdown arrow */
.dropdown-toggle::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid rgba(218, 117, 1, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1051;
}

.dropdown-menu.show + .dropdown-toggle::before {
  opacity: 1;
}

/* Professional dropdown item icons and spacing */
.dropdown-item:first-child {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.dropdown-item:last-child {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.dropdown-item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Add subtle icons to dropdown items */
.dropdown-item[href="/blog"]::after {
  /* content: '📝'; */
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  opacity: 0.7;
}

.dropdown-item[href="/case-studies"]::after {
  /* content: '📊'; */
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  opacity: 0.7;
}

.dropdown-item[href="/research-papers"]::after {
  /* content: '📋'; */
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  opacity: 0.7;
}

/* About Us dropdown icons */
.dropdown-item[href="/what-we-do"]::after {
  /* content: '⚙️'; */
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  opacity: 0.7;
}

.dropdown-item[href="/why-choose-us"]::after {
  /* content: '⭐'; */
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  opacity: 0.7;
}

/* Download items styling */
.dropdown-item[href*="/downloads/"] {
  color: #f8f9fa;
  font-weight: 600;
}

.dropdown-item[href*="/downloads/"]:hover,
.dropdown-item[href*="/downloads/"]:focus {
  background: linear-gradient(90deg, rgba(218, 117, 1, 0.15) 0%, rgba(218, 117, 1, 0.25) 100%);
  color: #ffffff;
}

.dropdown-item[href*="/downloads/"] i {
  color: var(--secondary-color);
  font-size: 16px;
}

.dropdown-item[href*="/downloads/"]:hover i,
.dropdown-item[href*="/downloads/"]:focus i {
  color: #ffffff;
  animation: downloadPulse 0.6s ease-in-out;
}

@keyframes downloadPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* Dropdown divider styling */
.dropdown-divider {
  margin: 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.5;
}

/* Mobile responsiveness */
@media (max-width: 991.98px) {
  .navbar-nav .dropdown-menu {
    position: static;
    float: none;
    width: 100%;
    margin-top: 0;
    background-color: rgba(26, 26, 26, 0.95);
    border: none;
    box-shadow: none;
    border-radius: 8px;
    margin-left: 15px;
    margin-right: 15px;
    display: none !important;
  }
  
  .navbar-nav .dropdown-menu.show {
    display: block !important;
  }
  
  .dropdown-item {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #e5e5e5;
  }
  
  .dropdown-item:hover,
  .dropdown-item:focus {
    padding-left: 25px;
    transform: none;
    background-color: rgba(218, 117, 1, 0.2);
    color: #ffffff;
  }
  
  .dropdown-item:last-child {
    border-bottom: none;
  }
  
  /* Download items on mobile */
  .dropdown-item[href*="/downloads/"] {
    background-color: rgba(218, 117, 1, 0.1);
    margin: 2px 0;
    border-radius: 4px;
  }
  
  .dropdown-item[href*="/downloads/"]:hover,
  .dropdown-item[href*="/downloads/"]:focus {
    background-color: rgba(218, 117, 1, 0.3);
    transform: none;
    padding-left: 20px;
  }
  
  /* Mobile divider */
  .dropdown-divider {
    margin: 12px 0;
    border-top: 1px solid rgba(218, 117, 1, 0.3);
  }
  
  /* Remove desktop-specific dropdown arrow on mobile */
  .dropdown-toggle::before {
    display: none;
  }
  
  /* Ensure dropdown toggle works on mobile */
  .dropdown-toggle {
    cursor: pointer;
  }
}

.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;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*---------------------------------------
  HERO        
-----------------------------------------*/
/* Professional Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #000;
}

/* Video Background */
.video-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.custom-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.7) 0%, 
    rgba(0, 0, 0, 0.4) 50%, 
    rgba(218, 117, 1, 0.1) 100%);
  z-index: 2;
}

/* Animated Particles */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, rgba(218, 117, 1, 0.2) 1px, transparent 1px),
    radial-gradient(circle at 40% 40%, rgba(59, 130, 246, 0.15) 1px, transparent 1px);
  background-size: 50px 50px, 80px 80px, 100px 100px;
  animation: floatParticles 20s ease-in-out infinite;
}

@keyframes floatParticles {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

/* Hero Content */
.hero-content {
  position: relative;
  margin-top: 100px;
  z-index: 4;
  color: #ffffff;
  text-align: center;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(218, 117, 1, 0.2);
  border: 1px solid rgba(218, 117, 1, 0.3);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
  animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-badge i {
  color: #DA7501;
  font-size: 1rem;
}

/* Hero Title */
.hero-title {
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease-out 0.7s both;
}

.title-line {
  /* display: block; */
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.title-line.primary {
  background: linear-gradient(135deg, #DA7501 0%, #EE5007 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

/* Hero Subtitle */
.hero-subtitle {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 25px;
  animation: fadeInUp 1s ease-out 0.9s both;
}

.subtitle-text {
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.subtitle-highlight {
  color: #DA7501;
  text-shadow: 0 2px 10px rgba(218, 117, 1, 0.3);
}

/* Hero Description */
.hero-description {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #e2e8f0;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease-out 1.1s both;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
  animation: fadeInUp 1s ease-out 1.3s both;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #DA7501;
  line-height: 1;
  margin-bottom: 5px;
  text-shadow: 0 2px 10px rgba(218, 117, 1, 0.3);
}

.stat-label {
  font-size: 0.9rem;
  color: #a0aec0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

/* Hero Actions */
.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 50px;
  animation: fadeInUp 1s ease-out 1.5s both;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.hero-btn.primary {
  background: linear-gradient(135deg, #DA7501 0%, #EE5007 100%);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(218, 117, 1, 0.4);
}

.hero-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(218, 117, 1, 0.6);
  color: #ffffff;
}

.hero-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.hero-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  color: #ffffff;
}

/* Trust Indicators */
.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 30px;
  animation: fadeInUp 1s ease-out 1.7s both;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #a0aec0;
  font-weight: 500;
  justify-content: center;
}

.trust-item i {
  color: #DA7501;
  font-size: 1rem;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  text-align: center;
  animation: fadeInUp 1s ease-out 1.9s both;
}

.scroll-arrow {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  animation: bounce 2s infinite;
}

.scroll-arrow i {
  color: #ffffff;
  font-size: 1.2rem;
}

.scroll-text {
  font-size: 0.8rem;
  color: #a0aec0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}


/*---------------------------------------
  ABOUT              
-----------------------------------------*/
.about-section {
  background-image: url('../images/edward-unsplash-blur.jpg');
  background-color: #704010;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.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 {
  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;
}


/*---------------------------------------
  TICKET               
-----------------------------------------*/
.ticket-section {
  background-image: url('../images/nicholas-green-unsplash-blur.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%;
}


/*---------------------------------------
  ARTISTS              
-----------------------------------------*/
.artists-thumb {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.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;
}


/*---------------------------------------
  SCHEDULE              
-----------------------------------------*/
.schedule-section {
  background-image: url('../images/nainoa-shizuru-unsplash-blur.jpg');
  background-color: #242424;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.table-responsive {
	filter: drop-shadow(2px 2px 4px #606060);
}

.schedule-table {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.schedule-table .bg-warning {
  background: #f0a5a5 !important;
}

.schedule-table thead th {
  background-color: var(--secondary-color);
}

.schedule-table th,
.schedule-table tr,
.schedule-table td {
  border-bottom-color: #363a3e;
  padding: 30px;
}

.schedule-table tr:last-child th,
.schedule-table tr:last-child td {
  border-bottom-color: transparent;
}

.schedule-table thead th {
  border-right: 1px solid #c7460a;
  border-bottom-color: transparent;
}

.schedule-table th + td {
  border-bottom: 0;
}

.schedule-table thead th:last-child {
  border-right-color: transparent;
}

.schedule-table .pop-background-image {
  background-image: url('../images/artists/joecalih-UmTZqmMvQcw-unsplash.jpg');
}

.schedule-table .rock-background-image {
  background-image: url('../images/artists/abstral-official-bdlMO9z5yco-unsplash.jpg');
}

.schedule-table .country-background-image {
  background-image: url('../images/artists/soundtrap-rAT6FJ6wltE-unsplash.jpg');
}

.table-background-image-wrap {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow: none;
  position: relative;
}

.schedule-table h3,
.schedule-table p {
  color: var(--white-color);
  position: relative;
  z-index: 2;
}


/*---------------------------------------
  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);
}


/*---------------------------------------
  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;
}


/*---------------------------------------
  MODERN FOOTER              
-----------------------------------------*/
.modern-footer {
  background-color: #000000;
  color: #ffffff;
  padding: 60px 0 30px;
  position: relative;
}

/* Left Section - Contact Information */
.footer-left {
  padding-right: 40px;
}

.footer-logo {
  margin-bottom: 40px;
}

.logo-image {
  height: 60px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: brightness(0) invert(1); /* Makes the logo white */
  transition: filter 0.3s ease;
}

.logo-image:hover {
  filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(30deg); /* Golden color on hover */
}

.addresses {
  margin-bottom: 30px;
}

.address-item {
  margin-bottom: 25px;
}

.city-name {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.address-text {
  font-size: 14px;
  color: #ffffff;
  line-height: 1.5;
  margin: 0;
}

.email-contact {
  margin-bottom: 30px;
}

.email-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.email-link:hover {
  color: #DA7501;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: #ffffff;
  color: #000000;
}

/* Right Section - Contact Form */
.footer-right {
  padding-left: 40px;
}

.form-title {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 40px;
  line-height: 1.2;
}

.contact-form {
  max-width: 100%;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  position: relative;
  flex: 1;
  margin-bottom: 20px;
}

.form-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #ffffff;
  color: #ffffff;
  font-size: 16px;
  padding: 12px 0;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-input:focus {
  border-bottom-color: #DA7501;
}

.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
  transform: translateY(-20px);
  font-size: 12px;
  color: #DA7501;
}

.form-label {
  position: absolute;
  left: 0;
  top: 12px;
  color: #ffffff;
  font-size: 16px;
  transition: all 0.3s ease;
  pointer-events: none;
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
}

.form-footer {
  margin-top: 30px;
}

.privacy-text {
  font-size: 12px;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.4;
}

.privacy-link {
  color: #ffffff;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.privacy-link:hover {
  color: #DA7501;
}

.consent-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 30px;
}

.consent-checkbox input[type="checkbox"] {
  margin: 0;
  width: 16px;
  height: 16px;
  accent-color: #DA7501;
}

.consent-checkbox label {
  font-size: 14px;
  color: #ffffff;
  line-height: 1.4;
  cursor: pointer;
}

.send-button {
  background-color: #3b82f6;
  color: #ffffff;
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.send-button:hover {
  background-color: #2563eb;
}

/* Bottom Section - Awards and Copyright */
.footer-bottom {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #333333;
}

.awards-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
  justify-content: center;
  align-items: center;
}

.award-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-width: 120px;
}

.award-logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.award-logo:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}

.copyright-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.copyright-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.copyright-text {
  font-size: 14px;
  color: #ffffff;
  margin: 0;
}

.credits-text {
  font-size: 12px;
  color: #ffffff;
  margin: 0;
  text-align: right;
}

.footer-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.scroll-top-btn,
.accessibility-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  background: transparent;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.scroll-top-btn:hover,
.accessibility-btn:hover {
  background-color: #ffffff;
  color: #000000;
}

.accessibility-btn {
  background-color: #3b82f6;
  border-color: #3b82f6;
}

.accessibility-btn:hover {
  background-color: #2563eb;
  border-color: #2563eb;
  color: #ffffff;
}

/* Responsive Design */
@media screen and (max-width: 991px) {
  .footer-left {
    padding-right: 0;
    margin-bottom: 40px;
  }
  
  .footer-right {
    padding-left: 0;
  }
  
  .form-title {
    font-size: 28px;
  }
  
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .awards-section {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  
  .award-item {
    min-width: auto;
    justify-content: center;
  }
  
  .award-logo {
    /* width: 80px; */
    width: 150px;
    height: auto;
  }
  
  .copyright-section {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .credits-text {
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .modern-footer {
    padding: 40px 0 20px;
  }
  
  .form-title {
    font-size: 24px;
  }
  
  .awards-section {
    gap: 25px;
  }
  
  .award-item {
    flex-direction: column;
    text-align: center;
  }
  
  .award-logo {
    width: 70px;
    height: 70px;
  }
  
  .footer-actions {
    justify-content: center;
    gap: 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);
  }
}


/*---------------------------------------
  COUNTER SECTION              
-----------------------------------------*/
.counter-section {
  background-color: var(--white-color);
  padding: 80px 0;
}

.counter-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.counter-item {
  position: relative;
  text-align: center;
}

.counter-content {
  padding: 20px;
}

.counter-number-wrapper {
  margin-bottom: 8px;
}

.counter-number {
  font-size: 4.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--dark-color);
  line-height: 1;
}

.counter-suffix {
  font-size: 3rem;
  font-weight: var(--font-weight-bold);
  color: var(--dark-color);
  line-height: 1;
}

.counter-description {
  color: var(--dark-color);
  font-size: 0.875rem;
  font-weight: var(--font-weight-normal);
  margin: 0;
  line-height: 1.4;
}

.counter-divider {
  display: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 64px;
  background-color: var(--dark-color);
}

/* Responsive Grid Layout */
@media screen and (min-width: 768px) {
  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  
  .counter-number {
    font-size: 5rem;
  }
  
  .counter-suffix {
    font-size: 3.5rem;
  }
  
  .counter-description {
    font-size: 1rem;
  }
}

@media screen and (min-width: 992px) {
  .counter-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
  
  .counter-divider {
    display: block;
  }
  
  .counter-item:last-child .counter-divider {
    display: none;
  }
  
  .counter-number {
    font-size: 5.5rem;
  }
  
  .counter-suffix {
    font-size: 4rem;
  }
}

@media screen and (min-width: 1200px) {
  .counter-number {
    font-size: 6rem;
  }
  
  .counter-suffix {
    font-size: 4.5rem;
  }
}

/*---------------------------------------
  TESTIMONIALS SECTION               
-----------------------------------------*/
.testimonial-gradient-header {
  height: 8px;
  background: linear-gradient(90deg, 
    #1e3a8a 0%, 
    #3b82f6 25%, 
    #000000 40%, 
    #3b82f6 60%, 
    #000000 100%);
  width: 100%;
}

.testimonials-section {
  background-color: #000000;
  padding: 80px 0;
  position: relative;
}

.testimonial-page-number {
  position: absolute;
  top: 20px;
  left: 20px;
  color: #9ca3af;
  font-size: 14px;
  font-weight: 300;
}

.testimonial-main-heading {
  font-size: 5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin: 0;
  padding: 0;
  text-align: left;
}

.testimonial-carousel {
  position: relative;
  min-height: 400px;
  overflow: hidden;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.5s ease-in-out;
}

.testimonial-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.testimonial-company {
  margin-bottom: 30px;
}

.company-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 8px;
}

.company-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: #d1d5db;
  line-height: 1.2;
}

.company-suffix {
  font-size: 1rem;
  font-weight: 300;
  color: #9ca3af;
  line-height: 1.2;
}

.company-tagline {
  font-size: 0.75rem;
  color: #6b7280;
  font-weight: 300;
  margin-top: 5px;
}

.testimonial-quote {
  margin-bottom: 30px;
}

.testimonial-quote p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ffffff;
  font-weight: 300;
  margin: 0;
}

.testimonial-author {
  margin-top: 20px;
}

.testimonial-author p {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 300;
  margin: 0;
  font-style: italic;
}

.testimonial-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  gap: 12px;
}

.pagination-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #4b5563;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pagination-dot.active {
  background-color: #ffffff;
  transform: scale(1.2);
}

.pagination-dot:hover {
  background-color: #9ca3af;
}

/* Responsive adjustments for testimonials */
@media screen and (max-width: 991px) {
  .testimonial-main-heading {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 40px;
  }
  
  .testimonials-section {
    padding: 60px 0;
  }
  
  .testimonial-carousel {
    min-height: 350px;
  }
}

@media screen and (max-width: 767px) {
  .testimonial-main-heading {
    font-size: 2.5rem;
  }
  
  .testimonials-section {
    padding: 40px 0;
  }
  
  .testimonial-carousel {
    min-height: 300px;
  }
  
  .company-name {
    font-size: 1.4rem;
  }
  
  .company-suffix {
    font-size: 0.9rem;
  }
  
  .testimonial-quote p {
    font-size: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .testimonial-main-heading {
    font-size: 2rem;
  }
  
  .testimonial-page-number {
    top: 15px;
    left: 15px;
    font-size: 12px;
  }
}

/*---------------------------------------
  ANIMATED TITLE EFFECTS               
-----------------------------------------*/
.animated-title {
  position: relative;
  overflow: hidden;
  font-size: 6rem;
  font-weight: 900;
  text-align: center;
  line-height: 1.1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 2rem 0;
}

.animated-title .letter {
  display: inline-block;
  position: relative;
  opacity: 0;
  transform: translateY(150px) rotate(180deg) scale(0.3);
  transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  color: #ffffff;
  text-shadow: 
    2px 2px 4px rgba(0, 0, 0, 0.8),
    0 0 20px rgba(255, 255, 255, 0.9),
    0 0 40px rgba(255, 255, 255, 0.6),
    0 0 60px rgba(255, 255, 255, 0.3);
  margin: 0 4px;
  font-weight: 900;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.8));
}

.animated-title .letter.animate-in {
  opacity: 1;
  transform: translateY(0) rotate(0deg) scale(1);
}

.animated-title .letter.animate-juggle {
  animation: letterJuggle 0.8s ease-in-out infinite alternate;
}

.animated-title .letter.animate-final {
  animation: letterFinal 1.5s ease-out forwards;
  color: #DA7501 !important;
  text-shadow: 
    2px 2px 4px rgba(0, 0, 0, 0.8),
    0 0 20px #DA7501,
    0 0 40px #DA7501,
    0 0 60px #DA7501,
    0 0 80px #DA7501 !important;
  opacity: 1 !important;
  transform: translateY(0) rotate(0deg) scale(1) !important;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.8)) !important;
}

.animated-title .space {
  display: inline-block;
  width: 0.3em;
}

@keyframes letterJuggle {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
    color: #ffffff;
    text-shadow: 
      2px 2px 4px rgba(0, 0, 0, 0.8),
      0 0 20px rgba(255, 255, 255, 0.9),
      0 0 40px rgba(255, 255, 255, 0.6);
  }
  25% {
    transform: translateY(-30px) rotate(8deg) scale(1.2);
    color: #ff6b35;
    text-shadow: 
      2px 2px 4px rgba(0, 0, 0, 0.8),
      0 0 25px #ff6b35,
      0 0 50px #ff6b35,
      0 0 75px #ff6b35;
  }
  50% {
    transform: translateY(-15px) rotate(-5deg) scale(0.8);
    color: #DA7501;
    text-shadow: 
      2px 2px 4px rgba(0, 0, 0, 0.8),
      0 0 20px #DA7501,
      0 0 40px #DA7501,
      0 0 60px #DA7501;
  }
  75% {
    transform: translateY(-25px) rotate(3deg) scale(1.1);
    color: #ff6b35;
    text-shadow: 
      2px 2px 4px rgba(0, 0, 0, 0.8),
      0 0 25px #ff6b35,
      0 0 50px #ff6b35,
      0 0 75px #ff6b35;
  }
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
    color: #ffffff;
    text-shadow: 
      2px 2px 4px rgba(0, 0, 0, 0.8),
      0 0 20px rgba(255, 255, 255, 0.9),
      0 0 40px rgba(255, 255, 255, 0.6);
  }
}

@keyframes letterFinal {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
    color: #ffffff;
    text-shadow: 
      2px 2px 4px rgba(0, 0, 0, 0.8),
      0 0 20px rgba(255, 255, 255, 0.9),
      0 0 40px rgba(255, 255, 255, 0.6);
    opacity: 1;
  }
  50% {
    transform: translateY(-10px) scale(1.15);
    color: #ff6b35;
    text-shadow: 
      2px 2px 4px rgba(0, 0, 0, 0.8),
      0 0 25px #ff6b35,
      0 0 50px #ff6b35,
      0 0 75px #ff6b35;
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1);
    color: #DA7501;
    text-shadow: 
      2px 2px 4px rgba(0, 0, 0, 0.8),
      0 0 20px #DA7501,
      0 0 40px #DA7501,
      0 0 60px #DA7501,
      0 0 80px #DA7501;
    opacity: 1;
  }
}

/* Glow effect for the final state */
.animated-title.final-state {
  animation: titleGlow 2s ease-in-out infinite alternate;
}

.animated-title.final-state .letter {
  color: #DA7501 !important;
  text-shadow: 
    2px 2px 4px rgba(0, 0, 0, 0.8),
    0 0 20px #DA7501,
    0 0 40px #DA7501,
    0 0 60px #DA7501,
    0 0 80px #DA7501 !important;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.8)) !important;
}

@keyframes titleGlow {
  0% {
    text-shadow: 
      2px 2px 4px rgba(0, 0, 0, 0.8),
      0 0 20px #DA7501,
      0 0 40px #DA7501,
      0 0 60px #DA7501,
      0 0 80px #DA7501;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.8));
  }
  100% {
    text-shadow: 
      2px 2px 4px rgba(0, 0, 0, 0.8),
      0 0 30px #DA7501,
      0 0 60px #DA7501,
      0 0 90px #DA7501,
      0 0 120px #DA7501;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.8));
  }
}

/* Responsive adjustments for animated title */
@media screen and (max-width: 1200px) {
  .animated-title {
    font-size: 5rem;
  }
}

@media screen and (max-width: 991px) {
  .animated-title {
    font-size: 4rem;
  }
}

@media screen and (max-width: 767px) {
  .animated-title {
    font-size: 3rem;
  }
  
  .animated-title .letter {
    margin: 0 2px;
  }
}

@media screen and (max-width: 480px) {
  .animated-title {
    font-size: 2.5rem;
  }
  
  .animated-title .letter {
    margin: 0 1px;
  }
}

/*---------------------------------------
  NEW SERVICES SECTION               
-----------------------------------------*/
.new-services-section {
  background-color: var(--white-color);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

/* Main Title */
.main-title {
  font-size: 4.5rem;
  font-weight: 300; /* Made lighter */
  color: var(--dark-color);
  line-height: 1.1;
  margin: 0;
  text-align: center;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(50px);
  animation: slideInUp 1s ease-out 0.5s forwards;
}

/* Changing Word Styles */
#changingWord {
  font-weight: 700;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

/* Title Divider */
.title-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  margin: 0 auto;
  border-radius: 2px;
  opacity: 0;
  transform: scaleX(0);
  animation: expandDivider 1s ease-out 1.5s forwards;
}

@keyframes expandDivider {
  from {
    opacity: 0;
    transform: scaleX(0);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

/* Services Header */
.services-main-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--dark-color);
  line-height: 1.1;
  margin: 0;
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInLeft 1s ease-out 1s forwards;
}

.services-description {
  opacity: 0;
  transform: translateX(50px);
  animation: slideInRight 1s ease-out 1.2s forwards;
}

.services-tagline {
  font-size: 1.1rem;
  color: var(--dark-color);
  font-weight: 400;
  margin: 0 0 8px 0;
  line-height: 1.4;
}

/* Service Blocks */
.services-blocks {
  margin-top: 80px;
}

.service-block {
  margin-bottom: 120px;
  position: relative;
}

.service-block:last-child {
  margin-bottom: 0;
}

/* Service Image Wrapper */
.service-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}

.service-image-wrapper:hover {
  /* transform: translateY(-10px); */
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.service-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  /* transition: all 0.5s ease; */
}

.service-image-wrapper:hover .service-image {
  transform: scale(1.05);
}

/* Geometric Separator */
.geometric-separator {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: var(--white-color);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 2;
  opacity: 0;
  animation: fadeInScale 1s ease-out 2s forwards;
}

.geometric-separator::before,
.geometric-separator::after {
  content: '';
  position: absolute;
  background-color: var(--primary-color);
  border-radius: 4px;
}

.geometric-separator::before {
  top: 50%;
  left: 20%;
  right: 20%;
  height: 4px;
  transform: translateY(-50%);
}

.geometric-separator::after {
  left: 50%;
  top: 20%;
  bottom: 20%;
  width: 4px;
  transform: translateX(-50%);
}

/* Service Content */
.service-content {
  padding: 40px 0;
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 1s ease-out 1.5s forwards;
}

.service-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeIn 1s ease-out 1.8s forwards;
}

.service-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  line-height: 1.2;
  margin: 0 0 20px 0;
  opacity: 0;
  animation: slideInLeft 1s ease-out 2s forwards;
}

.service-description {
  font-size: 1.1rem;
  color: var(--p-color);
  line-height: 1.6;
  margin: 0 0 30px 0;
  opacity: 0;
  animation: slideInLeft 1s ease-out 2.2s forwards;
}

/* Service Button */
.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #3b82f6;
  color: var(--white-color);
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: slideInUp 1s ease-out 2.4s forwards;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.service-btn:hover {
  background-color: #2563eb;
  color: var(--white-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.service-btn i {
  transition: transform 0.3s ease;
}

.service-btn:hover i {
  transform: translateX(5px);
}

/* Animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
  .main-title {
    font-size: 4rem;
  }
  
  .services-main-title {
    font-size: 3rem;
  }
  
  .service-title {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 991px) {
  .new-services-section {
    padding: 80px 0;
  }
  
  .main-title {
    font-size: 3.5rem;
  }
  
  .services-main-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
  }
  
  .services-description {
    text-align: center;
  }
  
  .services-blocks {
    margin-top: 60px;
  }
  
  .service-block {
    margin-bottom: 80px;
  }
  
  .service-image {
    height: 300px;
  }
  
  .service-title {
    font-size: 2rem;
  }
  
  .geometric-separator {
    width: 60px;
    height: 60px;
  }
}

@media screen and (max-width: 767px) {
  .new-services-section {
    padding: 60px 0;
  }
  
  .main-title {
    font-size: 2.8rem;
  }
  
  .services-main-title {
    font-size: 2.2rem;
  }
  
  .service-block {
    margin-bottom: 60px;
  }
  
  .service-image {
    height: 250px;
  }
  
  .service-content {
    padding: 30px 0;
    text-align: center;
  }
  
  .service-title {
    font-size: 1.8rem;
  }
  
  .service-description {
    font-size: 1rem;
  }
  
  .geometric-separator {
    width: 50px;
    height: 50px;
  }
}

@media screen and (max-width: 480px) {
  .main-title {
    font-size: 2.2rem;
  }
  
  .services-main-title {
    font-size: 1.8rem;
  }
  
  .service-title {
    font-size: 1.6rem;
  }
  
  .service-btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}

/*---------------------------------------
  CLIENT SHOWCASE SECTION               
-----------------------------------------*/

.clients-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #000000 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.clients-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(218, 117, 1, 0.1) 0%, transparent 70%);
  z-index: 1;
}

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

.clients-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  text-align: center;
  background: linear-gradient(45deg, #ffffff, #e0e0e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.clients-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  margin-bottom: 60px;
  font-weight: 400;
}

.clients-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.3s forwards;
}

.clients-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.client-logo {
  flex: 0 0 auto;
  width: 180px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

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

.client-logo:hover::before {
  left: 100%;
}

.client-logo:hover {
  transform: translateY(-10px) scale(1.05);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(218, 117, 1, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(218, 117, 1, 0.2);
}

.client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
  opacity: 0.8;
}

.client-logo:hover img {
  filter: brightness(0) invert(1);
  opacity: 1;
  transform: scale(1.1);
}

/* Animation for staggered appearance */
.clients-row:nth-child(1) { animation-delay: 0.1s; }
.clients-row:nth-child(2) { animation-delay: 0.2s; }
.clients-row:nth-child(3) { animation-delay: 0.3s; }
.clients-row:nth-child(4) { animation-delay: 0.4s; }

.clients-row {
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design for Clients Section */
@media screen and (max-width: 1200px) {
  .clients-row {
    gap: 40px;
  }
  
  .client-logo {
    width: 160px;
    height: 100px;
  }
}

@media screen and (max-width: 991px) {
  .clients-title {
    font-size: 2.8rem;
  }
  
  .clients-subtitle {
    font-size: 1.2rem;
  }
  
  .clients-row {
    gap: 30px;
  }
  
  .client-logo {
    width: 140px;
    height: 90px;
    padding: 15px;
  }
}

@media screen and (max-width: 767px) {
  .clients-section {
    padding: 60px 0;
  }
  
  .clients-title {
    font-size: 2.2rem;
  }
  
  .clients-subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
  }
  
  .clients-grid {
    gap: 30px;
  }
  
  .clients-row {
    gap: 20px;
    justify-content: space-around;
  }
  
  .client-logo {
    width: 120px;
    height: 80px;
    padding: 12px;
  }
}

@media screen and (max-width: 480px) {
  .clients-title {
    font-size: 1.8rem;
  }
  
  .clients-row {
    gap: 15px;
  }
  
  .client-logo {
    width: 100px;
    height: 70px;
    padding: 10px;
  }
}

/*---------------------------------------
  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: 100px;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .hero-stats {
    gap: 25px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .hero-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .trust-indicators {
    flex-direction: column;
    gap: 15px;
  }
}

@media screen and (max-width: 767px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 8px 16px;
  }

  .scroll-indicator {
    bottom: 20px;
  }

  .scroll-arrow {
    width: 35px;
    height: 35px;
  }
}

@media screen and (max-width: 991px) {
  .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;
  }
}

/*---------------------------------------
  EXPERTISE SECTION STYLES             
-----------------------------------------*/

.expertise-section {
  background-color: var(--white-color);
  padding: 100px 0;
}

.expertise-content {
  padding-right: 40px;
}

.expertise-number {
  font-size: 14px;
  color: var(--p-color);
  font-weight: var(--font-weight-light);
  margin-bottom: 10px;
}

.expertise-line {
  width: 40px;
  height: 1px;
  background-color: var(--dark-color);
  margin-bottom: 30px;
}

.expertise-title {
  font-size: 48px;
  font-weight: var(--font-weight-bold);
  color: var(--dark-color);
  margin-bottom: 50px;
  line-height: 1.2;
}

.expertise-accordion {
  margin-top: 20px;
}

.expertise-item {
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 0;
}

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

.expertise-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.expertise-item-header:hover {
  background-color: #f8f9fa;
  margin: 0 -20px;
  padding-left: 20px;
  padding-right: 20px;
}

.expertise-item-header h3 {
  font-size: 20px;
  font-weight: var(--font-weight-normal);
  color: var(--dark-color);
  margin: 0;
  transition: color 0.3s ease;
}

.expertise-item-header:hover h3 {
  color: var(--primary-color);
}

.expertise-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
}

.expertise-arrow i {
  font-size: 16px;
  color: var(--p-color);
  transition: color 0.3s ease;
}

.expertise-item-header:hover .expertise-arrow i {
  color: var(--primary-color);
}

.expertise-item.active .expertise-arrow {
  transform: rotate(180deg);
}

.expertise-item.active .expertise-arrow i {
  color: var(--primary-color);
}

.expertise-item-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #f8f9fa;
  margin: 0 -20px;
  padding: 0 20px;
}

.expertise-item.active .expertise-item-content {
  max-height: 200px;
  padding: 20px;
}

.expertise-item-content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--p-color);
}

.expertise-image-wrapper {
  position: relative;
  height: 100%;
  min-height: 500px;
  border-radius: var(--border-radius-medium);
  overflow: hidden;
}

.expertise-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.expertise-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
  opacity: 0.3;
}

.expertise-image-wrapper:hover .expertise-image {
  transform: scale(1.05);
}

/* Responsive Design for Expertise Section */
@media screen and (max-width: 991px) {
  .expertise-content {
    padding-right: 0;
    margin-bottom: 50px;
  }
  
  .expertise-title {
    font-size: 36px;
    margin-bottom: 30px;
  }
  
  .expertise-image-wrapper {
    min-height: 400px;
  }
}

@media screen and (max-width: 767px) {
  .expertise-section {
    padding: 60px 0;
  }
  
  .expertise-title {
    font-size: 28px;
  }
  
  .expertise-item-header {
    padding: 20px 0;
  }
  
  .expertise-item-header h3 {
    font-size: 18px;
  }
  
  .expertise-item-header:hover {
    margin: 0 -15px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .expertise-item-content {
    margin: 0 -15px;
    padding: 0 15px;
  }
  
  .expertise-item.active .expertise-item-content {
    padding: 15px;
  }
  
  .expertise-image-wrapper {
    min-height: 300px;
  }
}

@media screen and (max-width: 480px) {
  .expertise-title {
    font-size: 24px;
  }
  
  .expertise-item-header h3 {
    font-size: 16px;
  }
  
  .expertise-item-content p {
    font-size: 14px;
  }
}

