/*--------------------------------------------------------------
# Mission Mischief - Main Styles
--------------------------------------------------------------*/

/* Font display optimization for faster text rendering */
@font-face {
  font-family: 'Open Sans';
  font-display: swap;
}
@font-face {
  font-family: 'Raleway';
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  font-display: swap;
}

html, body {
  width: auto!important; 
  overflow-x: hidden!important;
} 

body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  position: relative;
}

.customBody {
  background-color: #000 !important;
  width: auto!important; 
  overflow-x: hidden!important;
  margin: 0px;
  height: 100vh;
  padding-top: env(safe-area-inset-top, 24px) !important;
}
  
html {
  overflow: scroll;
}

::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

a {
  color: #04AA6D; 
  text-decoration: none;
}

a:hover {
  color: #04AA6D; 
  text-decoration: none;
}

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

main {
  padding-bottom: 20px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  background: rgba(0, 0, 0, 0.9);
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgba(0, 0, 0, 0.9);
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo a span {
  color: #04AA6D; 
}

/*--------------------------------------------------------------
# Get Started Button
--------------------------------------------------------------*/
.get-started-btn {
  color: #fff !important;
  background: transparent;
  border-radius: 4px;
  padding: 12px 30px;
  white-space: nowrap;
  transition: all 0.3s ease;
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  border: 2px solid #04AA6D;
  text-decoration: none !important;
  position: relative;
  z-index: 10;
  box-sizing: border-box;
}

.get-started-btn:hover,
.get-started-btn:focus,
.get-started-btn:active {
  background: #04AA6D !important;
  color: #000 !important;
  text-decoration: none !important;
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: #000000;
  position: relative;
  display: flex;
  align-items: center;
}

#hero .container {
  position: relative;
  text-align: center;
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

#hero h1 span {
  color: #04AA6D; 
}

#hero h2 {
  color: rgba(255, 255, 255, 0.9);
  margin: 10px 0 30px 0;
  font-size: 20px;
}

#hero .icon-box {
  padding: 30px 20px;
  transition: ease-in-out 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.3);
  height: 100%;
  text-align: center;
  margin-bottom: 20px;
}

#hero .icon-box i {
  font-size: 32px;
  line-height: 1;
  color: #fff;
  transition: ease-in-out 0.3s; 
}

#hero .icon-box h3 {
  font-weight: 700;
  margin: 15px 0 10px 0;
  padding: 0;
  line-height: 1;
  font-size: 18px;
  color: #fff;
  transition: ease-in-out 0.3s;
}

#hero .icon-box p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.4;
}

#hero .icon-box:hover h3, 
#hero .icon-box:hover i {
  color: #04AA6D;
}

#hero .icon-box:hover {
  border-color: #04AA6D;
  transform: translateY(-5px);
}

/*--------------------------------------------------------------
# CTA Section
--------------------------------------------------------------*/
.cta {
  background: #151515;
  padding: 60px 0;
}

.cta h3 {
  color: #04AA6D;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta h4 {
  color: #04AA6D;
  font-size: 20px;
  font-weight: 600;
  margin: 30px 0 15px 0;
}

.cta p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 15px;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 4px;
  transition: 0.3s;
  margin-top: 20px;
  border: 2px solid #04AA6D;
  color: #04AA6D;
  background: transparent;
}

.cta .cta-btn:hover {
  background: #04AA6D; 
  color: #000;
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #000;
  padding: 30px 0;
  color: #fff;
  font-size: 14px;
  text-align: center;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #04AA6D; 
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.back-to-top:hover {
  background: #fff;
  color: #04AA6D;
}

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader:before {
  content: "";
  width: 60px;
  height: 60px;
  border: 6px solid #04AA6D; 
  border-top-color: transparent;
  border-radius: 50%;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*--------------------------------------------------------------
# Form Controls
--------------------------------------------------------------*/
.form-control {
  background: rgba(21, 21, 21, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  padding: 12px 15px;
  color: #fff;
  font-size: 14px;
}

.form-control:focus {
  background: rgba(21, 21, 21, 0.9);
  border-color: #04AA6D;
  color: #fff;
  box-shadow: 0 0 0 0.2rem rgba(4, 170, 109, 0.25);
}

.form-control::placeholder {
  color: #999;
}

.form-label {
  color: #ccc;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

/*--------------------------------------------------------------
# Utility Classes
--------------------------------------------------------------*/
.text-center { text-align: center; }
.text-left { text-align: left; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.w-100 { width: 100%; }

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

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

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col-lg-4, .col-lg-6, .col-lg-12, .col-md-6, .col-md-12, .col-12 {
  padding: 0 15px;
  box-sizing: border-box;
}

.col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-lg-6 { flex: 0 0 50%; max-width: 50%; }
.col-lg-12 { flex: 0 0 100%; max-width: 100%; }
.col-md-6 { flex: 0 0 50%; max-width: 50%; }
.col-md-12 { flex: 0 0 100%; max-width: 100%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/
.mb-4 { margin-bottom: 1.5rem; }
  
  #hero h1 {
    font-size: 36px;
    line-height: 42px;
  }
  
  #hero h2 {
    font-size: 18px;
  }
  
  .get-started-btn {
    padding: 10px 25px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  #hero {
    height: auto;
    padding: 100px 0 50px 0;
  }
  
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  
  .container {
    padding: 0 20px;
  }
}

/*--------------------------------------------------------------
# Section Background
--------------------------------------------------------------*/
.section-bg {
  background: #0a0a0a;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #04AA6D;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #fff;
}

/*--------------------------------------------------------------
# Fixed positioning
--------------------------------------------------------------*/
.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}