

body {
background-color: #141414;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

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

a:hover {
  color: #5faee3;
  text-decoration: none;
}
::selection {
    background-color: #eb5105;
    color: white; 
}

* {
  box-sizing: border-box;
}

body, html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

#animated-background {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 5;
      overflow: hidden;
    }

    .glow-pixel {
      position: absolute;
      width: 3.5px;
      height: 3.5px;
      border-radius: 20%;
      background: rgba(235, 81, 5, 0.6);
      box-shadow: 0 0 10px rgba(235, 81, 5, 0.8), 0 0 20px rgba(235, 81, 5, 0.4);
      opacity: 0;
      animation: pixelBounce 8s ease-in-out infinite;
    }

    @keyframes pixelBounce {
      0% {
        opacity: 0;
        transform: translateY(-20px) scale(0.5);
      }
      5% {
        opacity: 1;
        transform: translateY(-20px) scale(1);
      }
      25% {
        opacity: 1;
        transform: translateY(60px) scale(1);
      }
      35% {
        opacity: 0.5;
        transform: translateY(90px) scale(0.9);
      }
      40% {
        opacity: 0;
        transform: translateY(100px) scale(0.7);
      }
      100% {
        opacity: 0;
        transform: translateY(-20px) scale(0.5);
      }
    }
   
    header, section, footer, .container, .row, .col-lg-6, .card, .member, nav, button, a, .video-container, .video-container video {
  position: relative;
  z-index: 100;
}

    .navbar .nav-link, .navbar .dropdown > a {
      padding: 8px 16px;
      border-radius: 8px;
      border: 2px solid transparent;
      transition: all 0.3s ease;
      font-weight: 600
    }

    .navbar .nav-link {
      padding: 8px 16px;
      border-radius: 8px;
      border: 2px solid transparent;
      transition: all 0.3s ease;
      font-weight: 501
    }

    .navbar .nav-link.active {
      background: rgba(230, 65, 0, 0.247);
      border: 0.5px solid #ff4f099f;
      border-radius: 17px;
      padding: 7px 15px;
      position: relative;
      
    }

    .navbar .nav-link.active::after {
      content: '';
      position: absolute;
      bottom: 4px;
      left: 50%;
      transform: translateX(-50%);
      width: 8.5px;
      height: 4px;
      background: #ff4800;
      border: 1px solid #ff4800;
      border-radius: 1.5px;
      animation: pulsate 3s ease-in-out infinite;
    }

    .navbar .nav-link i,
.navbar .dropdown > a i {
  font-size: 0.70em; 
  margin-left: 4px;  
  vertical-align: middle;
  color: var(--nav-icon-color, #c5c5c5); 
  transition: color 0.3s ease, transform 0.2s ease;
}


.navbar .nav-link:hover i,
.navbar .dropdown:hover > a i {
  color: var(--nav-icon-hover-color, #ff4800ea);
  transform: translateY(-1px);
}
    @keyframes pulsate {
      0%, 100% {
        opacity: 1;
      }
      50% {
        opacity: 0.3;
      }
    }

    .discord-btn {
      background: #4f67f0a8 !important;
      border: 1px solid #5f6cfa !important;
      color: white !important;
      padding: 9px 9px !important;
      border-radius: 8px !important;
      font-weight: 600 !important;
      margin-left: auto;
      transition: all 0.3s ease !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      
      
    }

    .discord-btn i {
      position: relative;
      line-height: 1 !important;
      vertical-align: middle !important;
      margin: 0 !important;
      padding: 0 !important;
      font-size: 15px !important;
      left: 0.3px !important;
    }

    .discord-btn:hover {
      background: #4752C4 !important;
      transform: translateY(-2px) !important;
    }

    .discord-btn i {
      position: relative;
      line-height: 1 !important;
      vertical-align: middle !important;
      margin: 0 !important;
      padding: 0 !important;
      font-size: 15px !important;
      left: 0.3px !important;
    }

    .discord-btn:hover {
      background: #4752C4 !important;
      transform: translateY(-2px) !important;
    }
     
    
    .discord-btn-about {
  background: linear-gradient(135deg, #dd460085, #ec6e2575) !important;
  border: 1px solid #ff4800 !important;
  color: rgb(214, 214, 214) !important;
  padding: 7px 13px !important;
  border-radius: 14px !important;
  font-size: 15px !important;
  font-weight: 550 !important;
  transition: all 0.3s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  margin-top: 20px !important;
}


.discord-btn-about:hover {
  background: linear-gradient(135deg, #b43900b2, #f15800c0) !important;
  transform: translateY(-2px) !important;
  color: white !important;
}
   


.logoheader a img {
    display: block;           
    width: auto;              
    height: 90px;            
    max-height: 100%;        
    object-fit: contain;      
    margin-left: -15px; 
}

  .login-modal {
      display: none !important;
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0, 0, 0, 0.85);
      z-index: 100000;
      justify-content: center;
      align-items: center;
      animation: fadeIn 0.3s ease;
    }

    .login-modal.active {
      display: flex !important;
    }

    .login-modal-content {
      background: linear-gradient(135deg, #1a1a1a 0%, #0E0E0E 100%);
      border-radius: 20px;
      padding: 40px;
      max-width: 420px;
      width: 90%;
      border: 2px solid rgba(255, 102, 0, 0.3);
      box-shadow: 0 20px 60px rgba(255, 102, 0, 0.2);
      animation: slideUp 0.4s ease;
      position: relative;
    }

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

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

    .login-modal-close {
      position: absolute;
      top: 15px;
      right: 15px;
      width: 35px;
      height: 35px;
      background: rgba(255, 102, 0, 0.2);
      border: 1px solid rgba(255, 102, 0, 0.5);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      color: #fff;
    }

    .login-modal-close:hover {
      background: rgba(255, 102, 0, 0.4);
      transform: rotate(90deg);
    }

    .login-modal-header {
      text-align: center;
      margin-bottom: 30px;
    }

    .login-modal-header h2 {
      color: #fff;
      font-size: 28px;
      font-weight: 600;
      margin-bottom: 10px;
      font-family: 'Poppins', sans-serif;
    }

    .login-modal-header p {
      color: rgba(255, 255, 255, 0.7);
      font-size: 14px;
      font-family: 'Poppins', sans-serif;
    }

    .discord-login-btn {
      width: 100%;
      padding: 16px;
      background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
      border: none;
      border-radius: 12px;
      color: #fff;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      font-family: 'Poppins', sans-serif;
      box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
    }

    .discord-login-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(88, 101, 242, 0.6);
    }

    .discord-login-btn i {
      font-size: 22px;
    }

    .login-note {
      margin-top: 20px;
      padding: 15px;
      background: rgba(255, 102, 0, 0.1);
      border: 1px solid rgba(255, 102, 0, 0.3);
      border-radius: 10px;
      font-size: 12px;
      color: rgba(255, 255, 255, 0.8);
      text-align: center;
      font-family: 'Poppins', sans-serif;
      line-height: 1.5;
    }

  
    .user-profile {
      display: none;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      padding: 0;
      background: transparent;
      border: 1px solid #6b6b6b;
      border-radius: 8px;
      transition: all 0.3s ease;
      margin-left: auto;
      overflow: visible;
      position: relative;
      width: 37px;
      height: 37px;
    }
    .user-profile:hover {
      transform: translateY(-2px);
      border-color: rgba(255, 102, 0, 0.5);
    }

    .user-profile.active {
      display: flex;
    }

    .user-avatar {
      width: 100%;
      height: 100%;
      border-radius: 8px;
      object-fit: cover;
      border: none;
    }

    .user-name {
      display: none;
    }
    
    
    .user-dropdown {
      position: absolute;
      top: calc(100% + 10px);
      right: 0;
      margin-top: 10px;
      background: linear-gradient(135deg, #1a1a1a 0%, #0E0E0E 100%);
      border: 2px solid rgba(255, 102, 0, 0.3);
      border-radius: 12px;
      padding: 10px;
      min-width: 200px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
      display: none;
      z-index: 1000;
    }

    .user-dropdown.active {
      display: block;
      animation: slideDown 0.3s ease;
    }

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

    .user-dropdown-item {
      padding: 12px 15px;
      color: #fff;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 10px;
      border-radius: 8px;
      transition: all 0.2s ease;
      font-family: 'Poppins', sans-serif;
      font-size: 14px;
      cursor: pointer;
    }

    .user-dropdown-item:hover {
      background: rgba(255, 102, 0, 0.2);
    }

    .user-dropdown-divider {
      height: 1px;
      background: rgba(255, 102, 0, 0.2);
      margin: 8px 0;
    }

    
    .login-btn-header {
      background: rgba(41, 41, 41, 0.658) !important;
      border: 1px solid #4d4d4dc5 !important;
      color: white !important;
      padding: 9px 11px !important;
      border-radius: 8px !important;
      font-weight: 600 !important;
      margin-left: auto;
      transition: all 0.3s ease !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      cursor: pointer;
      font-family: 'Poppins', sans-serif;
      font-size: 15px !important;
    }

    .login-btn-header.hidden {
      display: none !important;
    }
    .login-btn-header i {
      position: relative;
      line-height: 1 !important;
      vertical-align: middle !important;
      margin: 0 !important;
      padding: 0 !important;
      font-size: 15px !important;
      left: 0.3px !important;
    }

    .login-btn-header:hover {
      background: rgba(60, 60, 60, 0.8) !important;
      transform: translateY(-2px) !important;
    }

   
    @media (max-width: 768px) {
      .login-modal-content {
        padding: 30px 20px;
      }

      .user-name {
        max-width: 100px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
      }
    }

.section-divider {
      width: 100%;
      height: 0.8px;
      background: linear-gradient(90deg, 
        transparent 0%, 
        #ff5100be 20%, 
        #ff5100cb 50%, 
        #ff5100be 80%, 
        transparent 100%);
      margin: 0px 0;
      position: relative;
    }

    
    .section-divider.glow {
      box-shadow: 0 0 20px rgba(255, 102, 0, 0.5);
    }

    
    .section-divider.animated {
      background: linear-gradient(90deg, 
        transparent 0%, 
        #ff6600 20%, 
        #ff8800 50%, 
        #ff6600 80%, 
        transparent 100%);
      background-size: 200% 100%;
      animation: shimmer 3s linear infinite;
    }

    @keyframes shimmer {
      0% {
        background-position: -200% 0;
      }
      100% {
        background-position: 200% 0;
      }
    }

  
    .section-divider.thick {
      height: 3px;
    }

   
    .section-divider.with-dot::after {
      content: '';
      position: absolute;
      width: 8px;
      height: 8px;
      background: #ff6600;
      border-radius: 50%;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      box-shadow: 0 0 15px rgba(255, 102, 0, 0.8);
    }


 .section-divider-3 {
      height: 1px;
      background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 85, 23, 0.596) 50%, 
        transparent 100%);
      margin: 60px auto;
      width: 60%;
    }
#support-section {
  position: relative;
  overflow: hidden;
}

#support-section .container {
  position: relative;
  z-index: 10;
}


.hexagon-path {
  will-change: filter, opacity, stroke-width;
}



.about .col-lg-6 .video-wrapper {
  margin-left: 320px;
  margin-top: -20px;
  position: relative;
  width: 650px;
  max-width: none;
}

.about .col-lg-6 .video-wrapper video {
  width: 650px;
  height: auto;
  display: block;
  margin: 0;
}

.about .col-lg-6 .video-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: -50px;
  pointer-events: none;
 
  background: radial-gradient(ellipse 50% 53% at 50% 43%, 
    transparent 30%, 
    rgba(14, 14, 14, 0.575) 45%, 
    rgba(14, 14, 14, 0.836) 60%, 
    rgb(14, 14, 14) 75%);
    z-index: 999; 
  will-change: opacity; 
}

@media (max-width: 991px) {
  .about .row.content {
    flex-direction: column;
  }
  
  .about .col-lg-6.order-1 {
    order: 1;
  }
  
  .about .col-lg-6:not(.order-1) {
    order: 2;
  }
  
  .about .col-lg-6 .video-wrapper {
    width: 90%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
  }
  
  .about .col-lg-6 .video-wrapper video {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .about .col-lg-6 .video-wrapper {
    width: 85%;
    max-width: 400px;
  }
}

@media (max-width: 576px) {
  .about .col-lg-6 .video-wrapper {
    width: 90%;
    max-width: 300px;
  }
}
#about {

  margin-bottom: 180px;



}

 
       
.btn-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 160px; 
  height: 52px; 
  font-size: 16px;
  font-weight: 600;
  color: #f3f3f3;
  background: linear-gradient(135deg, rgba(255,136,0,0.65) 0%, rgba(255,69,0,0.65) 100%);
  border: 2px solid rgba(236,95,0,0.8);
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255,138,0,0.4);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  line-height: 1;
}


.btn-play:link,
.btn-play:visited,
.btn-play:hover,
.btn-play:active,
.btn-play:focus {
  color: #f3f3f3 !important;
  text-decoration: none !important;
}


.btn-play:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,138,0,0.6);
  background: linear-gradient(135deg, rgba(255,165,0,0.8) 0%, rgba(255,69,0,0.8) 100%);
  border-color: rgba(255,138,0,0.9);
}

.btn-play:active {
  transform: translateY(0);
}


.btn-play img {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  display: block;
  vertical-align: middle;
  filter: brightness(0) invert(1);
}

.button-container {
  display: flex;
  gap: 10px; 
  flex-wrap: wrap; 
}


.btn-rules {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 160px; 
  height: 52px; 
  font-size: 16px;
  font-weight: 600;
  color: #f3f3f3;
  background: linear-gradient(135deg, rgba(0,136,255,0.65) 0%, rgba(0,69,255,0.65) 100%);
  border: 2px solid rgba(0,95,236,0.8);
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,138,255,0.4);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  line-height: 1;
}


.btn-rules:link,
.btn-rules:visited,
.btn-rules:hover,
.btn-rules:active,
.btn-rules:focus {
  color: #f3f3f3 !important;
  text-decoration: none !important;
}


.btn-rules:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,138,255,0.6);
  background: linear-gradient(135deg, rgba(0,165,255,0.8) 0%, rgba(0,69,255,0.8) 100%);
  border-color: rgba(0,138,255,0.9);
}

.btn-rules:active {
  transform: translateY(0);
}


.btn-rules svg {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  display: block;
  vertical-align: middle;
  fill: #ffffff;
}



    
/* For WebKit (Chrome, Safari, etc.) */
/* Hide the default scrollbar */
body::-webkit-scrollbar {
  width: 8px;
}

/* Hide the scrollbar when not scrolling */
body::-webkit-scrollbar-thumb {
  background: transparent;
}

/* Show the scrollbar thumb when scrolling */
body:hover::-webkit-scrollbar-thumb {
  background: #494949;
  border-radius: 9px; /* Rounded corners */

}

/* Hide the default scrollbar when not scrolling */
body {
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
  scroll-behavior: smooth;
}

/* Hide the scrollbar gutter for Safari */
html {
  scrollbar-gutter: none;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #000;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #E55002;
  color: #000;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}






/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/



#header {
  z-index: 997;
  transition: all 0.5s ease;
  padding: 2px 0;
  background: rgba(255, 255, 255, 0); /* very light/transparent initially */
  height: 90px;
  
}


#header.scrolled {
  background: rgba(20, 20, 20, 0.233); /* dark, frosted glass */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  box-shadow: 0 px 20px rgba(236, 87, 0, 0.2);
}





/*
#header.header-scrolled {
  border-bottom: 2px solid #f84f00ce;
  padding: 2px 0;
}

#header.header-scrolled {
  border-bottom: 2px solid #f84f00ce;
  padding: 2px 0;
}*/

#header .logo h1 {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #E55002;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #ff4800ea;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #E55002;
  padding: 8px 25px;
  margin-left: 30px;
  border-radius: 50px;
  color: #000;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #000;
  background: #C22504;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #00000079;
  box-shadow: 0px 0px 30px rgba(161, 141, 127, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #E55002;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  transition: 0.5s;
  line-height: 0;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  
  .navbar ul {
    display: none;
  }
}

.navbar.navbar-mobile {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: transform 0.3s ease;
  z-index: 9999;
  -webkit-overflow-scrolling: touch;
  border-left: 1px solid rgba(255, 72, 0, 0.2);
}

.navbar.navbar-mobile .mobile-nav-toggle,
.mobile-nav-toggle.bi-x {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #ff6d0b;
  font-size: 24px;
  background: transparent;
  border: 1px solid rgba(217, 87, 0, 0.5);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.navbar.navbar-mobile .mobile-nav-toggle:hover,
.mobile-nav-toggle.bi-x:hover {
  background: rgba(217, 80, 0, 0.151);
  border-color: #ff7300;
}

.navbar.navbar-mobile > ul {
  display: block !important;
  position: relative;
  margin: 0 !important;
  padding: 90px 25px 20px 25px !important;
  background: transparent;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
  width: 100% !important;
}

.navbar.navbar-mobile > ul > li {
  width: 100% !important;
  max-width: 100% !important;
  display: block !important;
  margin-bottom: 10px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  position: relative !important;
}

.navbar.navbar-mobile > ul > li > .nav-link,
.navbar.navbar-mobile > ul > li > a:not(.discord-btn),
.navbar.navbar-mobile > ul > li.dropdown > a {
  position: relative !important;
  left: 0 !important;
  right: 0 !important;
  display: block !important;
  width: calc(100% - 30px) !important;
  max-width: none !important;
  min-width: auto !important;
  min-height: 50px;
  padding: 12px 30px !important;
  margin: 0 auto !important;
  font-size: 20px !important;
  font-weight: 600 !important;
  color: rgba(255, 255, 255, 0.7) !important;
  touch-action: manipulation;
  border-radius: 18px !important;
  transition: all 0.3s ease;
  text-align: left;
  background: transparent !important;
  border: 1px solid transparent !important;
  box-sizing: border-box !important;
}

.navbar.navbar-mobile > ul > li > .nav-link.active {
  background: rgba(189, 53, 0, 0.25) !important;
  border: 1px solid #ff4800 !important;
  border-radius: 18px !important;
  color: #ff6b2c !important;
  padding: 10px 30px 14px 30px !important;
  min-height: 42px !important;
}

.navbar.navbar-mobile > ul > li > .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 8.5px;
  height: 4px;
  background: #ff4800;
  border: 1px solid #ff4800;
  border-radius: 1.5px;
  animation: pulsate 3s ease-in-out infinite;
}

@keyframes pulsate {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.navbar.navbar-mobile .dropdown ul {
  display: none;
  position: static;
  width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  transition: max-height 0.3s ease, opacity 0.25s ease;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}

.navbar.navbar-mobile .dropdown ul.dropdown-active {
  display: block !important;
  max-height: 600px;
  opacity: 1;
  overflow: visible;
}

.navbar.navbar-mobile .dropdown ul li {
  width: 100% !important;
  display: block !important;
  margin-bottom: 8px;
  opacity: 1 !important;
  visibility: visible !important;
}

.navbar.navbar-mobile .dropdown ul li a {
  font-size: 18px !important;
  color: rgba(255, 255, 255, 0.7) !important;
  width: calc(100% - 30px) !important;
  min-height: 54px;
  padding: 16px 30px !important;
  display: block !important;
  background: transparent !important;
  border: 1px solid transparent !important;
  border-radius: 18px !important;
  transition: all 0.3s ease;
}

.navbar.navbar-mobile .dropdown ul li a:hover {
  background: rgba(60, 15, 0, 0.6) !important;
  border: 1px solid rgba(255, 72, 0, 0.2) !important;
  color: #ff6b2c !important;
}

.navbar.navbar-mobile .dropdown > a::after {
  display: none !important;
  content: none !important;
}

.navbar.navbar-mobile .dropdown > a {
  padding-left: 30px !important;
  padding-right: 30px !important;
  text-align: left !important;
  padding-left: 40px !important;
}

.navbar.navbar-mobile .dropdown > a > span {
  display: inline-block;
  margin-right: 6px;
}

.navbar.navbar-mobile .dropdown > a > i.bi-chevron-down {
  position: relative !important;
  display: inline-block !important;
  margin-left: 6px !important;
  font-size: 13px;
  vertical-align: middle;
  transition: transform 0.3s ease;
  color: inherit !important;
}

.navbar.navbar-mobile .dropdown.dropdown-active > a > i.bi-chevron-down {
  transform: rotate(180deg);
}

.navbar.navbar-mobile > ul > li > .nav-link:hover,
.navbar.navbar-mobile > ul > li > a:not(.discord-btn):hover {
  background: rgba(60, 15, 0, 0.6) !important;
  border: 1px solid rgba(255, 72, 0, 0.2) !important;
  border-radius: 18px !important;
  color: #ff6b2c !important;
  padding: 10px 30px 14px 30px !important;
  min-height: 42px !important;
}

.navbar.navbar-mobile > ul > li.dropdown > a:hover {
  background: rgba(60, 15, 0, 0.6) !important;
  border: 1px solid rgba(255, 72, 0, 0.2) !important;
  border-radius: 18px !important;
  color: #ff6b2c !important;
  padding: 10px 30px 14px 30px !important;
  min-height: 42px !important;
}

.navbar.navbar-mobile > ul > li.dropdown.dropdown-active > a {
  background: transparent !important;
  border: 1px solid transparent !important;
  color: rgba(255, 255, 255, 0.7) !important;
}

.navbar.navbar-mobile .discord-btn {
  display: flex !important;
  background: #4f67f0a8 !important;
  border: 1px solid #5f6cfa !important;
  color: white !important;
  padding: 8px 8px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  margin: 0 auto !important;
  width: auto !important;
  min-height: auto !important;
}

.navbar.navbar-mobile .discord-btn:hover {
  background: #4752C4 !important;
  transform: translateY(-2px) !important;
  border: 1px solid #5f6cfa !important;
  color: white !important;
}

.navbar-mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 9998;
  display: none;
  transition: opacity 0.3s ease;
  overflow: hidden;
  pointer-events: auto;
}

.navbar-mobile-overlay.active {
  display: block !important;
  opacity: 1 !important;
}

body.mobile-menu-open {
  overflow: hidden;
}
@media (min-width: 992px) {
  .navbar.navbar-mobile,
  .navbar.navbar-mobile ul,
  .navbar.navbar-mobile .mobile-nav-toggle {
    position: static !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }
}

.navbar.navbar-mobile #loginBtn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: rgba(80, 80, 80, 0.65) !important;
  border: 1px solid #6b6b6b !important;
  color: white !important;
  padding: 14px 18px !important;
  border-radius: 12px !important;
  font-weight: 600 !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 15px !important;
  width: 100% !important;
  max-width: 270px;
  margin: 15px auto 0 auto !important;
  cursor: pointer;
  transition: all 0.3s ease;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.navbar.navbar-mobile #loginBtn:hover {
  background: rgba(60, 60, 60, 0.8) !important;
  transform: translateY(-2px);
  border-color: #888 !important;
}

.navbar.navbar-mobile #loginBtn.hidden {
  display: none !important;
}


.navbar.navbar-mobile #userProfile {
  display: none !important;
}


.navbar.navbar-mobile #userProfile.active {
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  padding: 0 !important;
  width: 64px !important;
  height: 64px !important;
  border-radius: 50% !important;
  margin: 20px auto 0 auto !important;
  position: relative !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.navbar.navbar-mobile #userProfile.active .user-avatar {
  width: 100% !important;
  height: 100% !important;
  border-radius: 50% !important;
  border: 2px solid rgba(255, 102, 0, 0.5) !important;
  box-shadow: none !important;
  outline: none !important;
  object-fit: cover !important;
}

.navbar.navbar-mobile.user-logged-in #userProfile .user-avatar {
  border: 2px solid rgba(255, 102, 0, 0.5) !important;
}



.navbar.navbar-mobile .user-dropdown {
  position: absolute !important;
  top: calc(100% + 12px) !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: linear-gradient(135deg, #1a1a1a 0%, #0E0E0E 100%);
  border: 2px solid rgba(255, 102, 0, 0.3);
  border-radius: 12px;
  padding: 10px;
  min-width: 200px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  display: none;
  z-index: 99999 !important;
}

.navbar.navbar-mobile .user-dropdown.active {
  display: block !important;
  animation: dropdownFadeIn 0.25s ease;
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
  width: 100%;
  height: 70vh;
  margin-top: 70px;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #dbdbdb;
}

#hero h2 {
  color: #979797;
  margin-bottom: 50px;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: #E55002;
  border: 2px solid #E55002;
}

#hero .btn-get-started:hover {
  background: #E55002;
  color: #fff;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  #hero {
    height: 100vh;
  }

  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero {
    margin-top: 20px;
    padding-bottom: 20px;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 5px; 
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px; 
  }

  #hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero {
    padding-bottom: 20px; 
  }

  #hero .hero-img img {
    width: 80%;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  #hero h1 {
    margin-top: 280px;  
  }
}

.video-container {
  max-width: 450px;
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  border: 2px solid transparent;
  box-shadow: none;
  opacity: 0; 
  transition: opacity 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  z-index: 0 !important;
}

.video-container.video-loaded {
  opacity: 1;
  border: 2px solid #ff650c79;
  box-shadow: 0 5px 15px rgba(235, 82, 5, 0.479);
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  z-index: 100 !important;
}



@media (min-width: 992px) {
  .video-container {
    margin-top: -115px;
    margin-right: -65px;
  }
}


.video-container video.loaded {
  opacity: 1;
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 35px;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  background: linear-gradient(135deg, #ff4400 0%, #ff6702 50%, #ff7c02 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.section-title h2::before,
.section-title h2::after {
  content: "";
  width: 60px;
  height: 2px;
  background: #E55002;
  display: inline-block;
  -webkit-text-fill-color: initial;
}

.section-title h2::before {
  margin: 0 15px 10px 0;
}

.section-title h2::after {
  margin: 0 0 10px 15px;
}

.section-title p {
  margin: 15px 0 0 0;
}






/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  background: #fff;
  padding: 10px 0;
  text-align: center;
}

.clients .col-lg-2 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.clients img {
  width: 50%;
  filter: grayscale(100);
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 10px 0;
}

.clients img:hover {
  filter: none;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .clients img {
    width: 40%;
  }
}

@media (max-width: 575px) {
  .clients img {
    width: 30%;
  }
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/

.about .content .col-lg-6 {
  max-width: 40% !important;
  flex: 0 0 40% !important;
  width: 40% !important;
}

@media (max-width: 991px) {
  .about .content .col-lg-6 {
    max-width: 100% !important;
    flex: 0 0 100% !important;
    width: 100% !important;
    padding-left: 25px;
    padding-right: 25px;
  }
}

/* Push about section down on mobile to prevent overlap with note box */
@media (max-width: 768px) {
  .about {
    margin-top: 100px;
  }
}

@media (max-width: 576px) {
  .about .content .col-lg-6 {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .about {
    margin-top: 120px;
  }
}

.about .content h3 {
  font-weight: 600;
  font-size: 46px;
}

.about .content p {
  font-size: 19px;       
  color: #bebebe;         
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li+li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #E55002;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: #E55002;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #E55002;
}

.about .content .btn-learn-more:hover {
  background: #E55002;
  color: #fff;
  text-decoration: none;
}

#about .section-title {
  text-align: center;
  margin-bottom: -20px;
}

/* Left-align only on larger screens (desktops/monitors) */
@media (min-width: 1024px) {
  #about .section-title {
    text-align: left;
    margin-bottom: -40px;
  }
}

#subscriptions {
    padding: 80px 0 102px;
    background-color: #0E0E0E;
    position: relative;
    z-index: 100;
    margin-bottom: 50px !important;
}

#subscriptions .carousel-wrapper {
    overflow: visible;
    position: relative;
    padding: 0 60px;
    margin-top: 10px;
}

#subscriptions .carousel-container {
    overflow-x: clip;
    overflow-y: visible;
    position: relative;
    padding: 10px 0 100px;
    margin: 0 10px;
}

#subscriptions .subscriptions-container {
    overflow: visible;
    display: flex;
    gap: 30px;
    transition: transform 0.4s ease;
}

#subscriptions .subscription-card {
    padding: 25px 25px 70px !important;
    position: relative;
    overflow: visible;
}
#subscriptions .section-title {
    margin-bottom: -5px; 
}
#subscriptions .card-icon {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    pointer-events: none;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

#subscriptions .card-icon svg {
    width: 100%;
    height: 100%;
}

#subscriptions .bronze .card-icon svg path {
    fill: url(#bronze-gradient);
}

#subscriptions .silver .card-icon svg path {
    fill: url(#silver-gradient);
}

#subscriptions .gold .card-icon svg path {
    fill: url(#gold-gradient);
}

#subscriptions .platinum .card-icon svg path {
    fill: url(#platinum-gradient);
}

#subscriptions .diamond .card-icon svg path {
    fill: url(#diamond-gradient);
}

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

.section-title {
    text-align: center;
    margin-bottom: 60px;
}


.section-title p {
    font-size: 18px;
    color: #c7c7c7 !important;
    font-weight: 400;
}

.carousel-wrapper {
    position: relative;
    padding: 0 60px;
    margin-top: 10px;
}

.carousel-container {
    position: relative;
    padding: 10px 0 100px;
    margin: 0 10px;
}

.subscriptions-container {
    display: flex;
    gap: 30px;
    transition: transform 0.4s ease;
}

.subscription-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    border-radius: 8px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.subscription-card:hover {
    transform: translateY(-10px);
}

.subscription-card.bronze {
    background: linear-gradient(135deg, #cd7f32 0%, #7a4a28 100%);
    border: 2px solid #d4933d;
}

.subscription-card.bronze:hover {
    box-shadow: 0 20px 40px rgba(205, 127, 50, 0.3);
}

.subscription-card.silver {
    background: linear-gradient(135deg, #6b6b6b 0%, #3d3d3d 100%);
    border: 2px solid #8a8a8a;
}

.subscription-card.silver:hover {
    box-shadow: 0 20px 40px rgba(138, 138, 138, 0.3);
}

.subscription-card.gold {
    background: linear-gradient(135deg, #d4af37 0%, #9a7b20 100%);
    border: 2px solid #e6c04f;
}

.subscription-card.gold:hover {
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.4);
}

.subscription-card.platinum {
    background: linear-gradient(135deg, #e5e4e2 0%, #7a7a7a 100%);
    border: 2px solid #f0f0f0;
}

.subscription-card.platinum:hover {
    box-shadow: 0 20px 40px rgba(229, 228, 226, 0.4);
}

.subscription-card.diamond {
    background: linear-gradient(135deg, #0ddac9 0%, rgb(41, 141, 167) 100%);
    border: 2px solid #d4f1f9;
}

.subscription-card.diamond:hover {
    box-shadow: 0 20px 40px rgba(185, 242, 255, 0.4);
}

.card-header h3 {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 2px;
    color: #ffffff !important;
}

.card-features {
    flex-grow: 1;
    margin-bottom: 15px;
}

.feature-item {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
    font-weight: 500;
    opacity: 0.95;
    color: #ffffff !important;
}

.card-pricing {
    margin-top: auto;
    margin-bottom: 30px;
}

.pricing-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
    opacity: 0.9;
    color: #ffffff !important;
}

.pricing-amount {
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    color: #ffffff !important;
    margin-bottom: 8px;
}

.subscribe-btn {
    background: rgba(0, 0, 0, 0.3);
    border: none;
    color: white !important;
    padding: 12px 35px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.subscribe-btn:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: scale(1.05);
    color: white !important;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 102, 0, 0.452);
    border: 2px solid rgb(255, 72, 0);
    color: #ebe8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: rgba(255, 107, 53, 0.3);
    border-color: #ff6b35;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.carousel-btn i {
    font-size: 20px;
}

.carousel-btn-prev {
    left: 0;
}

.carousel-btn-next {
    right: 0;
}

@media (max-width: 1024px) {
    .carousel-wrapper {
        padding: 0 60px;
    }
    
    .subscription-card {
        flex: 0 0 calc(50% - 15px);
        min-width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .carousel-wrapper {
        padding: 0 50px;
    }
    
    .subscription-card {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    
    .subscription-card {
        padding: 25px 25px 65px;
    }
    
    .card-header h3 {
        font-size: 28px;
    }
    
    .pricing-amount {
        font-size: 38px;
        margin-bottom: 12px;
    }
    
    .card-pricing {
        margin-bottom: 70px;
    }
    
    .feature-item {
        font-size: 14px;
    }
}
/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-top: 0;
}

.counts .content {
  padding: 0;
}

.counts .content h3 {
  font-weight: 700;
  font-size: 34px;
  color: #222222;
}

.counts .content p {
  margin-bottom: 0;
}

.counts .content .count-box {
  padding: 20px 0;
  width: 100%;
}

.counts .content .count-box i {
  display: block;
  font-size: 36px;
  color: #E55002;
  float: left;
  line-height: 0;
}

.counts .content .count-box span {
  font-size: 29px;
  line-height: 30px;
  display: block;
  font-weight: 650;
  color: #fff;
  margin-left: 50px;
}

.counts .content .count-box p {
  padding: 15px 0 0 0;
  margin: 0 0 0 50px;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: #484848;
}

.counts .content .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #484848;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .content .count-box a:hover {
  color: #6f6f6f;
}

@media (max-width: 1024px) {
  .counts .image {
    text-align: center;
  }

  .counts .image img {
    max-width: 70%;
  }
}

@media (max-width: 667px) {
  .counts .image img {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

.services .icon-box::before {
  content: "";
  position: absolute;
  background: #e1f0fa;
  right: -60px;
  top: -40px;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  transition: all 0.3s;
  z-index: -1;
}

.services .icon-box:hover::before {
  background: #E55002;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 0px;
}

.services .icon {
  margin: 0 auto 20px auto;
  padding-top: 10px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  background: #3498db;
  transition: all 0.3s ease-in-out;
}

.services .icon i {
  font-size: 36px;
  line-height: 1;
  color: #fff;
}

.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: #111;
}

.services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.services .icon-box:hover .title a,
.services .icon-box:hover .description {
  color: #fff;
}

.services .icon-box:hover .icon {
  background: #fff;
}

.services .icon-box:hover .icon i {
  color: #3498db;
}

/*--------------------------------------------------------------
# More Services
--------------------------------------------------------------*/
.more-services {
  padding-top: 20px;
}

.more-services .card {
  border: 0;
  padding: 160px 20px 20px 20px;
  position: relative;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.more-services .card-body {
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  transition: ease-in-out 0.4s;
  border-radius: 5px;
}

.more-services .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}

.more-services .card-title a {
  color: #222222;
}

.more-services .card-text {
  color: #5e5e5e;
}

.more-services .read-more a {
  color: #777777;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  transition: 0.4s;
}

.more-services .read-more a:hover {
  text-decoration: underline;
}


/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .icon-box {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #f6f6f6;
  transition: ease-in-out 0.3s;
}

.features .icon-box i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 1;
}

.features .icon-box h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features .icon-box h3 a {
  color: #222222;
  transition: ease-in-out 0.3s;
}

.features .icon-box h3 a:hover {
  color: #3498db;
}

.features .icon-box:hover {
  background: #eef7fc;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  position: absolute;
  left: -45px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #e1f0fa;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #E55002;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #3498db;
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #222222;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #3498db;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(34, 34, 34, 0.6);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(34, 34, 34, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #3498db;
}

.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.2);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #3498db;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #3498db;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(34, 34, 34, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: #222222;
  margin: 0 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.team .member .social a i {
  line-height: 0;
}

.team .member .social a:hover {
  color: #E55002;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #222222;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.team .member:hover .social {
  opacity: 1;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #f9f9f9;
  text-align: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  border: 2px solid #f9f9f9;
}

.pricing .box h3 {
  font-weight: 400;
  padding: 15px;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #222222;
}

.pricing .box h4 {
  font-size: 42px;
  color: #3498db;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 20px;
}

.pricing .box h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .box h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing .box ul {
  padding: 0;
  list-style: none;
  color: #222222;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .box ul li {
  padding-bottom: 16px;
}

.pricing .box ul i {
  color: #3498db;
  font-size: 18px;
  padding-right: 4px;
}

.pricing .box ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .box .btn-wrap {
  padding: 15px;
  text-align: center;
}

.pricing .box .btn-buy {
  display: inline-block;
  padding: 10px 40px 12px 40px;
  border-radius: 50px;
  border: 2px solid #3498db;
  color: #3498db;
  font-size: 14px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .box .btn-buy:hover {
  background: #3498db;
  color: #fff;
}

.pricing .recommended {
  border-color: #3498db;
}

.pricing .recommended .btn-buy {
  background: #3498db;
  color: #fff;
}

.pricing .recommended .btn-buy:hover {
  background: #2383c4;
  border-color: #2383c4;
}

/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq .faq-item {
  margin: 20px 0;
  padding: 20px 0;
  border-bottom: 1px solid #eeeeee;
}

.faq .faq-item i {
  color: #E55002;
  font-size: 24px;
  float: left;
  line-height: 0;
  padding: 13px 0 0 0;
  margin: 0;
}

.faq .faq-item h4 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  margin: 0 0 10px 32px;
  font-family: "Poppins", sans-serif;
}

.faq .faq-item p {
  font-size: 15px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .contact-about h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  color: #222222;
}

.contact .contact-about p {
  font-size: 14px;
  line-height: 24px;
  font-family: "Raleway", sans-serif;
  color: #888;
}

.contact .social-links {
  padding-bottom: 20px;
}

.contact .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #fff;
  color: #3498db;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  border: 1px solid #3498db;
}

.contact .social-links a:hover {
  background: #3498db;
  color: #fff;
}

.contact .info {
  color: #444444;
}

.contact .info i {
  font-size: 32px;
  color: #3498db;
  float: left;
  line-height: 1;
}

.contact .info p {
  padding: 0 0 10px 42px;
  line-height: 28px;
  font-size: 14px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 20px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  padding: 10px 15px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #3498db;
}

.contact .php-email-form button[type=submit] {
  background: #3498db;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #2383c4;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f8f8f8;
  min-height: 40px;
  margin-top: 86px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 72px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
  margin: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

@media (max-width: 992px) {
  .breadcrumbs ol {
    margin-top: 10px;
  }
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #3c3c3c;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background-color: #000;
  padding: 60px 0 30px;
  color: #c7c7c7;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 30px;
}

.footer-left {
  flex: 1;
  max-width: 500px;
}

.footer-logo {
  margin-bottom: 5px;
  margin-left: -11px;
}

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

.footer-description {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  color: #b6b6b6;
  margin-bottom: 30px;
}

.footer-copyright {
  font-size: 14px;
  color: #797979;
}

.footer-copyright strong {
  color: #ff6b35;
}

.footer-right {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-legal h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.footer-legal a {
  font-size: 14px;
  color: #a0a0a0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #ff6b35;
}

.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
}



.social-btn {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a0a0a0;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 18px;
}

.social-btn:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.3);
  color: #ff6b35;
  transform: translateY(-2px);
}

.footer-divider {
   height: 1px;
      background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 91, 31, 0.596) 50%, 
        transparent 100%);
  margin-top: 30px;
}

@media (max-width: 992px) {
  .footer-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .footer-right {
    flex-direction: column;
    gap: 30px;
    width: 100%;
  }
  
  .footer-social {
    justify-content: flex-start;
  }
}

@media (max-width: 576px) {
  #footer {
    padding: 40px 0 20px;
  }
  
  .footer-social {
    flex-wrap: wrap;
  }
}




:root { --header-height: 75px; }


@media (max-width: 1024px) {

  
  #hero {
    height: auto !important;
    min-height: calc(100vh - var(--header-height)) !important;
    padding-top: calc(var(--header-height) + env(safe-area-inset-top)) !important;
    box-sizing: border-box !important;
    overflow: visible !important;
    background-attachment: scroll !important; 
  }

  
  #hero > .container {
    padding-top: 0 !important; 
    margin-top: 0 !important;
    box-sizing: border-box !important;
  }

  
  .video-container {
    position: relative !important;
    margin-top: 15px !important;      
    max-width: 460px !important;
    width: 100% !important;
    transform: none !important;
  }


  .video-container video {
    height: auto !important;
    max-height: 50vh !important;       
  }

 
}


@media (max-width: 430px) {
  #hero {
    padding-top: calc(var(--header-height)) !important;
    min-height: calc(var(--header-height)) !important;
  }

  .video-container {
    margin-top: 15px !important;
    max-width: 380px !important;
  }
}

@media (max-width: 1024px) {
  #hero {
    min-height: auto !important; 
    
  }
}