/*

TemplateMo 583 Festava Live

https://templatemo.com/tm-583-festava-live

*/


/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  /* ORIGINAL
  --white-color:                       #ffffff;
  --primary-color:                     #1a237e;   
  --header-color:                      #1a237e;   
  --secondary-color:                   #4fc3f7;  
  --site-footer-top-color:             #4fc3f7;  
  --section-bg-color:                  #e3f2fd;  
  --custom-btn-bg-color:               #29b6f6;  
  --custom-btn-bg-hover-color:         #0277bd;  
    --dark-color:                        #0d47a1;
  --site-footer-color:                 #0d47a1; 
  --nav-bar-color:                     #303f9f; 
  --almost-blk-color:                  #000d1e;
  --p-color:                           #5c6bc0; 
  --border-color:                      #b3e5fc;  
  --link-hover-color:                  #1976d2; 
  --about-section-background-color:    #03070F;
  --platform-section-background-color: #e3f2fd;
  --contact-section-background-color:  #e3f2fd;
  --pricing-section-background-color:  #e3f2fd; */

  /* Professional, Modern, Clean
  --white-color:                  #f8fafc;     
  --primary-color:                #102542;     
  --header-color:                 #102542;
  --secondary-color:              #18b6b6;     
  --site-footer-top-color:        #22344d;      
  --section-bg-color:             #e9f5fb;      
  --custom-btn-bg-color:          #08979c;     
  --custom-btn-bg-hover-color:    #2876b8;     
  --dark-color:                   #0b1822;     
  --site-footer-color:            #17212b;    
  --nav-bar-color:                #102542;     
  --almost-blk-color:             #0d1117;   
  --p-color:                      #30415d;    
  --border-color:                 #b5e4ef;     
  --link-hover-color:             #18b6b6;    
  --about-section-background-color: #102542;
  --platform-section-background-color: #e9f5fb;
  --contact-section-background-color: #e9f5fb;
  --pricing-section-background-color: #e9f5fb; */


  --white-color:                  #f6fcff;      /* Off-white, blue-tinted */
  --primary-color:                #212982;      /* Rich blue/navy (2nd background) */
  --header-color:                 #212982;
  --secondary-color:              #18c3d3;      /* Main teal from your "s" */
  --accent-color:                 #26d9e7;      /* Brighter teal for micro-accent */
  --site-footer-top-color:        #06082a;
  --site-footer-header-color:     #18c3d3;
  --section-bg-color:             #eaf6fa;      /* Soft blue for backgrounds */
  --custom-btn-bg-color:          #18a8c7;      /* Gradient mid-teal/blue */
  --custom-btn-bg-hover-color:    #1b77b2;      /* Deep saturated blue from logo */
  --dark-color:                   #18194d;      /* Very deep navy from your logo's "t" */
  --site-footer-color:            #0d1133;     /* Deep navy, no purple tint */
  --nav-bar-color:                #050828;
  --almost-blk-color:             #171d2b;      /* For overlays */
  --p-color:                      #355574;      /* Slight blue-grey for text */
  --border-color:                 #b7e2f1;      /* Pale blue for dividers */
  --link-hover-color:             #26d9e7;      /* Match accent color for action */
  --about-section-background-color: #232844;
  --platform-section-background-color: #eaf6fa;
  --contact-section-background-color: #eaf6fa;
  --pricing-section-background-color: #eaf6fa;

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

.pricing-section {
  background-color: var(--pricing-section-background-color);
}

.section-overlay {
  background-color: var(--almost-blk-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;
}

.sticky-wrapper.is-sticky .navbar {
  background-color: var(--nav-bar-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);
}

.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        
-----------------------------------------*/
.hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 60px;
  height: 70vh;
  min-height: 480px;
}

.hero-section small {
  color: var(--white-color);
  text-transform: uppercase;
}

#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-section .section-overlay {
  z-index: 2;
  background: linear-gradient(
    to right,
    rgba(14, 18, 64, 0.82) 0%,
    rgba(14, 18, 64, 0.72) 28%,
    rgba(14, 18, 64, 0.48) 50%,
    rgba(14, 18, 64, 0.18) 72%,
    rgba(0, 0, 0, 0.02) 100%
  );
  opacity: 1;
}

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

.hero-content {
  padding: 0;
}

.hero-eyebrow {
  color: var(--secondary-color);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-content h2 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-sub {
  color: rgba(246, 252, 255, 0.78);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  max-width: 520px;
  margin: 0 0 36px;
}

.hero-cta-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-link-secondary {
  color: rgba(246, 252, 255, 0.65);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(246, 252, 255, 0.30);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.hero-link-secondary:hover {
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}

@media screen and (max-width: 767px) {
  .hero-content h2 {
    font-size: 28px;
  }

  .hero-eyebrow {
    font-size: 12px;
  }

  .hero-sub {
    font-size: 15px;
  }
}


/*---------------------------------------
  ABOUT              
-----------------------------------------*/
.about-section {
  position: relative;
  background-color: #060a15;
  background-image:
    linear-gradient(rgba(24, 195, 211, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 195, 211, 0.025) 1px, transparent 1px),
    linear-gradient(150deg, #0c1220 0%, #060a15 55%);
  background-size: 44px 44px, 44px 44px, 100% 100%;
}

.about-body {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 0;
}

.about-subtitle {
  color: var(--secondary-color);
  font-size: 11px;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0;
}

.about-highlights {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--border-radius-medium);
  border: 1px solid rgba(24, 195, 211, 0.12);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.about-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 18px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.about-highlight-item:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.about-highlight-item:nth-last-child(-n+2) {
  border-bottom: none;
}

.about-highlight-item i {
  color: var(--secondary-color);
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-highlight-item span {
  color: rgba(255, 255, 255, 0.80);
  font-size: 14px;
  line-height: 1.4;
}


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

.platform-section {
  background: var(--platform-section-background-color);
}

.platform-thumb {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.platform-image {
  border-radius: var(--border-radius-medium);
  display: block;
  /* width: 100%; */
  width: 500px;
  height: 300px;
  object-fit: contain; /* Or 'cover' depending on your desired effect */
}

.platform-thumb:hover .platform-hover {
  transform: translateY(0);
  opacity: 1;
}

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

.platform-hover p strong {
  color: var(--white-color);
  display: inline-block;
  min-width: 180px;
  margin-right: 20px;
}

.platform-hover p a {
  color: var(--secondary-color);
}

.platform-hover p a:hover {
  color: var(--white-color);
}

.platform-hover hr {
  margin: 1.5rem 0;
}


/*---------------------------------------
  SCHEDULE              
-----------------------------------------*/
.solutions-section {
  position: relative;
  overflow: hidden;
  background-color: #070c18;
  background-image:
    linear-gradient(rgba(24, 195, 211, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 195, 211, 0.028) 1px, transparent 1px),
    radial-gradient(ellipse 80% 70% at 50% 50%, #0d1628 0%, #070c18 100%);
  background-size: 44px 44px, 44px 44px, 100% 100%;
}

.solutions-section::before,
.solutions-section::after {
  content: '';
  position: absolute;
  top: 0;
  width: 200px;
  height: 100%;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: 200px 100%;
  opacity: 0.22;
}

.solutions-section::before {
  left: 0;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 800' preserveAspectRatio='xMinYMid slice'><g stroke='%2318c3d3' stroke-width='1.5' fill='none'><path d='M0 55 H85 V95 H140'/><circle cx='85' cy='55' r='2.5' fill='%2318c3d3'/><circle cx='85' cy='95' r='2.5' fill='%2318c3d3'/><path d='M0 195 H55 V235 H105 V270'/><circle cx='55' cy='195' r='2.5' fill='%2318c3d3'/><circle cx='55' cy='235' r='2.5' fill='%2318c3d3'/><circle cx='105' cy='235' r='2.5' fill='%2318c3d3'/><path d='M0 390 H95 V430 H165'/><circle cx='95' cy='390' r='2.5' fill='%2318c3d3'/><circle cx='95' cy='430' r='2.5' fill='%2318c3d3'/><path d='M0 545 H45 V585'/><circle cx='45' cy='545' r='2.5' fill='%2318c3d3'/><path d='M0 690 H75 V725 H130'/><circle cx='75' cy='690' r='2.5' fill='%2318c3d3'/><circle cx='75' cy='725' r='2.5' fill='%2318c3d3'/></g></svg>");
}

.solutions-section::after {
  right: 0;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 800' preserveAspectRatio='xMaxYMid slice'><g stroke='%2318c3d3' stroke-width='1.5' fill='none'><path d='M200 55 H115 V95 H60'/><circle cx='115' cy='55' r='2.5' fill='%2318c3d3'/><circle cx='115' cy='95' r='2.5' fill='%2318c3d3'/><path d='M200 195 H145 V235 H95 V270'/><circle cx='145' cy='195' r='2.5' fill='%2318c3d3'/><circle cx='145' cy='235' r='2.5' fill='%2318c3d3'/><circle cx='95' cy='235' r='2.5' fill='%2318c3d3'/><path d='M200 390 H105 V430 H35'/><circle cx='105' cy='390' r='2.5' fill='%2318c3d3'/><circle cx='105' cy='430' r='2.5' fill='%2318c3d3'/><path d='M200 545 H155 V585'/><circle cx='155' cy='545' r='2.5' fill='%2318c3d3'/><path d='M200 690 H125 V725 H70'/><circle cx='125' cy='690' r='2.5' fill='%2318c3d3'/><circle cx='125' cy='725' r='2.5' fill='%2318c3d3'/></g></svg>");
}

@media (max-width: 991px) {
  .solutions-section::before,
  .solutions-section::after {
    display: none;
  }
}
.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: transparent;/*#f0a5a5 !important;*/
}

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


/*---------------------------------------
  SERVICES GRID
-----------------------------------------*/
.services-subtitle {
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  max-width: 660px;
  margin: 12px auto 0;
}

.service-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-medium);
  border-top: 3px solid var(--secondary-color);
  padding: 28px 28px 24px;
  height: 100%;
  overflow: hidden;
  transition: background 0.2s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    300px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(24, 195, 211, 0.18) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 0;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.07);
}

.service-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.service-card-header i {
  font-size: 22px;
  color: var(--secondary-color);
  flex-shrink: 0;
  line-height: 1;
}

.service-card h5 {
  color: var(--white-color);
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  margin-bottom: 0;
  line-height: 1.35;
}

.service-card ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.service-card ul li {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14.5px;
  font-weight: var(--font-weight-normal);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  line-height: 1.5;
}

.service-card ul li:last-child {
  border-bottom: none;
}


/*---------------------------------------
  CONTACT
-----------------------------------------*/
.contact-section {
  background-color: var(--contact-section-background-color);
}

.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: var(--site-footer-color);
  position: relative;
  overflow: hidden;
  padding-bottom: 30px;
}

.site-footer-top {
  background-color: var(--site-footer-top-color);
  background-repeat: no-repeat;
  margin-bottom: 35px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.site-footer-bottom {
  border-top: 1px solid #1f1c1c;
  margin-top: 25px;
}

.site-footer-title {
  color: var(--site-footer-header-color); 
}

.site-footer-link,
.copyright-text {
  color: var(--white-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);
}


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

/*---------------------------------------
  EXPERTISE CARDS
-----------------------------------------*/
.expertise-subtitle {
  color: var(--p-color);
  font-size: 17px;
  font-weight: var(--font-weight-normal);
  margin-top: 10px;
  margin-bottom: 0;
}

.expertise-card {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  border-left: 4px solid var(--secondary-color);
  padding: 28px 30px 24px;
  margin-bottom: 30px;
  height: calc(100% - 30px);
  box-shadow: 0 4px 20px rgba(33, 41, 130, 0.07);
}

.expertise-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.expertise-card-header i {
  font-size: 22px;
  color: var(--secondary-color);
  flex-shrink: 0;
  line-height: 1;
}

.expertise-card h5 {
  color: var(--primary-color);
  font-size: 17px;
  font-weight: var(--font-weight-bold);
  margin-bottom: 0;
}

.expertise-card ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.expertise-card ul li {
  color: var(--p-color);
  font-size: 15px;
  font-weight: var(--font-weight-normal);
  padding: 6px 0;
  border-bottom: 1px solid var(--border-color);
}

.expertise-card ul li:last-child {
  border-bottom: none;
}


/***** snowbyte ****/
.logo-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.navbar-logo {
  height: 72px;
  width: auto;
  max-width: none;
  filter: drop-shadow(0 0 2px rgba(8, 199, 214, 0.70));
}

.footer-logo {
  filter: drop-shadow(0 0 2px rgba(8, 199, 214, 0.70));
}

.col-lg-5 {
  overflow: hidden; /* Optional: hides any excess if SVG spills out */
}

/*---------------------------------------
  LEGAL PAGES (terms.html, privacy.html)
-----------------------------------------*/
.legal-section {
  background-color: #070c18;
  min-height: 80vh;
  padding-top: 160px;
}

.legal-meta {
  color: var(--secondary-color);
  font-size: 14px;
  margin-bottom: 40px;
}

.legal-body h5 {
  color: var(--white-color);
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  margin-top: 36px;
  margin-bottom: 10px;
}

.legal-body p,
.legal-body li {
  color: #b0bec5;
  font-size: 15px;
  line-height: 1.75;
}

.legal-body ul {
  padding-left: 20px;
  margin-bottom: 10px;
}

.legal-body a {
  color: var(--secondary-color);
  text-decoration: none;
}

.legal-body a:hover {
  text-decoration: underline;
}
