/**
* Template Name: BootsLander
* Updated: Mar 10 2023 with Bootstrap v5.2.3
* Template URL: https://bootstrapmade.com/bootslander-free-bootstrap-landing-page-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

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

a {
  color: #3498db;
  text-decoration: none;
}

a:hover {
  color: #2980b9;
  text-decoration: none;
}

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #3498db;
  border-top-color: #d2f9eb;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

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

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

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #3498db;
  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: #2980b9;
  color: #fff;
}

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  background: #155799;
}

/* Bootstrap spacing override for larger logo */
#header.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

#header.header-scrolled.py-2 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: "Poppins", sans-serif;
}

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

#header .logo img {
  max-height: 60px;
}

/*--------------------------------------------------------------
# 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-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

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

.navbar a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 30px;
  background-color: #fff;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.navbar a:hover:before,
.navbar .active:before,
.navbar .active:focus:before,
.navbar li:hover>a:before {
  visibility: visible;
  width: calc(100% - 60px);
}

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

.navbar .getstarted,
.navbar .getstarted:focus {
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  font-weight: 600;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.navbar .getstarted:before {
  display: none;
}

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

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  color: #2c4964;
  font-weight: 400;
}

.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: #3498db;
}

.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 Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

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

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 6px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #2c4964;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #3498db;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  background: #3498db;
  color: #fff;
  padding: 8px 20px;
  border-radius: 25px;
  border: none;
  display: block;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s ease;
}

.navbar-mobile .getstarted:hover {
  background: #2980b9;
  color: #fff;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

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

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

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

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #3498db;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  /*height: 100vh;*/
  background: linear-gradient(45deg, #3498db 0%, #155799 100%);
  position: relative;
}

#hero .container {
  padding-top: 0;
}

/* Improve anchor navigation with fixed header */
section[id] {
  scroll-margin-top: 5.25rem;
}

/* CPC Preview Image Hover Effect */
.cpc-preview:hover {
  opacity: 0.8;
  transform: scale(1.02);
  transition: all 0.2s ease;
}

#hero .hero-content {
  padding-right: 30px;
}

#hero .hero-img img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

#hero h2 {
  color: rgba(255, 255, 255, 0.9);
  margin: 15px 0 25px 0;
  font-size: 20px;
  line-height: 1.5;
}

#hero h4 {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

#hero .hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 5px;
}

#hero .btn-get-started {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 40px;
  border-radius: 8px;
  transition: 0.3s;
 /* margin: 10px; */
  color: #fff;
  background: #FF6B35;
  border: 2px solid #FF6B35;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

#hero .btn-get-started:hover {
  background: #E55A2B;
  border: 2px solid #E55A2B;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Section CTA Buttons */
.section-cta {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 8px;
  transition: 0.3s;
  color: #fff;
  background: #FF6B35;
  border: 2px solid #FF6B35;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 3px 12px rgba(255, 107, 53, 0.25);
}

.section-cta:hover {
  background: #E55A2B;
  border: 2px solid #E55A2B;
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.35);
}

.section-cta-center {
  text-align: center;
  margin-top: 30px;
}

#hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
}

#hero .btn-watch-video i {
  color: rgba(255, 255, 255, 0.5);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

#hero .btn-watch-video:hover {
  color: #fff;
}

#hero .btn-watch-video:hover i {
  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: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

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

  #hero .btn-get-started {
    font-size: 14px;
    padding: 12px 30px;
  }
}

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

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

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  overflow: hidden;

  /* Padding now handled by Bootstrap responsive utilities in templates */
}

.section-bg {
  background-color: #f4f9fc;
}

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

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #2c4964;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #3498db;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.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: #3498db;
  line-height: 1;
}

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

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

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

/* How It Works Steps */
.how-it-works-step {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  text-align: center;
  position: relative;
  margin-bottom: 30px;
  height: 100%;
  transition: all 0.3s ease;
}

.how-it-works-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.how-it-works-step .step-icon {
  margin-bottom: 20px;
}

.how-it-works-step .step-icon i {
  font-size: 48px;
  color: #155799;
  transition: all 0.3s ease;
}

.how-it-works-step:hover .step-icon i {
  color: #0f4670;
  transform: scale(1.1);
}

.how-it-works-step h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #2c3e50;
}

.how-it-works-step p {
  font-size: 14px;
  line-height: 24px;
  color: #6c757d;
  margin-bottom: 0;
}

.how-it-works-step .step-number {
  position: absolute;
  top: -15px;
  right: 20px;
  background: #155799;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
}

/* Supported Labs Styling */
.supported-labs {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  border-left: 4px solid #155799;
}

.supported-labs p strong {
  color: #155799;
  font-size: 14px;
}

.supported-labs ul {
  margin: 10px 0 0 0;
  padding-left: 20px;
  text-align: left;
}

.supported-labs ul li {
  margin-bottom: 8px;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;
}

.supported-labs ul li a {
  color: #155799;
  text-decoration: none;
  font-weight: 600;
}

.supported-labs ul li a:hover {
  text-decoration: underline;
}

/* CPC Example Styling */
.cpc-example {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  border-left: 4px solid #155799;
  text-align: center;
}

.cpc-example p strong {
  color: #155799;
  font-size: 14px;
}

.cpc-example .cpc-preview {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-top: 10px;
}

/* Step Arrow Styling */
.step-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #155799;
  font-size: 144px;
  font-weight: 900;
  opacity: 0.8;
  margin-top: 40px;
}

.how-it-works-step {
  position: relative;
}

/* Beta Badge Styling */
.beta-badge {
  display: inline-block;
  margin: 10px 0 20px 0;
}

.beta-text {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 3px 10px rgba(40, 167, 69, 0.3);
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 3px 10px rgba(40, 167, 69, 0.3);
  }
  50% {
    box-shadow: 0 5px 20px rgba(40, 167, 69, 0.6);
  }
  100% {
    box-shadow: 0 3px 10px rgba(40, 167, 69, 0.3);
  }
}

/* Trust & Credibility Section */
.trust {
  padding: 80px 0;
}

.cpc-seal-container {
  margin-bottom: 0;
}

.cpc-seal {
  max-width: 200px;
  height: auto;
}

.trust-text {
  text-align: left;
}

.trust-text h4 {
  color: #155799;
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 28px;
}

.trust-text p {
  color: #666;
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}

/* Benefits List */
.benefits-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list ul li {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  padding: 25px 30px;
  margin-bottom: 20px;
  border-left: 4px solid #155799;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 20px;
}

.benefits-list ul li:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.benefits-list .benefit-number {
  background: #155799;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
  flex-shrink: 0;
}

.benefits-list .benefit-content {
  flex: 1;
}

.benefits-list ul li strong {
  color: #155799;
  font-size: 18px;
  font-weight: 600;
}

/* Who It's For Cards */
.who-its-for-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  text-align: center;
  position: relative;
  margin-bottom: 30px;
  height: 100%;
  transition: all 0.3s ease;
  border-top: 3px solid #155799;
}

.who-its-for-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.who-its-for-card .card-icon {
  margin-bottom: 20px;
}

.who-its-for-card .card-icon i {
  font-size: 48px;
  color: #155799;
  transition: all 0.3s ease;
}

.who-its-for-card:hover .card-icon i {
  color: #0f4670;
  transform: scale(1.1);
}

.who-its-for-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #2c3e50;
}

.who-its-for-card p {
  font-size: 14px;
  line-height: 24px;
  color: #6c757d;
  margin-bottom: 0;
}

/* Trust Section */
.trust {
  padding: 60px 0;
  background: #f8f9fa;
}

.trust .section-title p {
  font-size: 18px;
  color: #6c757d;
  max-width: 800px;
  margin: 0 auto;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .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;
  height: 100%;
}

.features .icon-box::before {
  content: "";
  position: absolute;
  background: #cef4ea;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}

.features .icon-box:hover::before {
  background: #3498db;
  top: 0;
  border-radius: 0px;
}

.features .icon {
  margin-bottom: 15px;
}

.features .icon i {
  font-size: 48px;
  line-height: 1;
  color: #3498db;
  transition: all 0.3s ease-in-out;
}

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

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

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

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

.features .icon-box:hover .icon i {
  color: #fff;
}

/*--------------------------------------------------------------
# Signup Page
--------------------------------------------------------------*/
#main.signup-page {
  background: linear-gradient(45deg, #3498db 0%, #155799 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

#main.signup-page .breadcrumb-container {
  position: fixed;
  top: 80px;
  left: 20px;
  z-index: 1000;
  padding: 15px 0;
}

#main.signup-page .simple-breadcrumb {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
}

#main.signup-page .simple-breadcrumb a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

#main.signup-page .simple-breadcrumb a:hover {
  text-decoration: underline;
}

#main.signup-page .card {
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1);
  max-width: 600px;
  width: 100%;
}

#main.signup-page .card-body {
  padding: 50px;
}

#main.signup-page .signup-header {
  text-align: center;
  margin-bottom: 30px;
}

#main.signup-page .signup-header h2 {
  color: #012970;
  font-weight: 700;
  margin-bottom: 10px;
}

#main.signup-page .signup-header p {
  color: #899bbd;
  margin-bottom: 0;
}

#main.signup-page .form-control {
  border-radius: 8px;
  border: 1px solid #e1e5e9;
  padding: 12px 15px;
  font-size: 14px;
}

#main.signup-page .form-control:focus {
  border-color: #4154f1;
  box-shadow: 0 0 0 0.2rem rgba(65, 84, 241, 0.25);
}

#main.signup-page .btn-primary {
  background: #4154f1;
  border: none;
  border-radius: 8px;
  padding: 12px;
  width: 100%;
  font-weight: 600;
}

#main.signup-page .btn-primary:hover {
  background: #5969f3;
}

#main.signup-page .password-requirements {
  font-size: 12px;
  color: #899bbd;
  margin-top: 5px;
}

#main.signup-page .divider {
  text-align: center;
  margin: 20px 0;
  position: relative;
}

#main.signup-page .divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #e1e5e9;
}

#main.signup-page .divider span {
  background: white;
  padding: 0 15px;
  color: #899bbd;
  font-size: 14px;
}

#main.signup-page .login-link {
  text-align: center;
  margin-top: 20px;
}

#main.signup-page .login-link a {
  color: #4154f1;
  text-decoration: none;
  font-weight: 600;
}

#main.signup-page .login-link a:hover {
  text-decoration: underline;
}

/*--------------------------------------------------------------
# Contact Page Styles
--------------------------------------------------------------*/
#contact-hero {
  width: 100%;
  height: 80vh;
  background: linear-gradient(45deg, #3498db 0%, #155799 100%);
  position: relative;
  margin-top: 82px;
}

.contact-form-container {
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-form-container h3 {
  color: #155799;
  margin-bottom: 1rem;
}

.tally-form-wrapper {
  background: white;
  border-radius: 8px;
  overflow: hidden;
}

.contact-info .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: white;
}

.contact-info .contact-item i {
  color: #00d4aa;
  font-size: 1.2rem;
}

.contact-method {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  height: 100%;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-5px);
}

.method-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.method-icon i {
  font-size: 2rem;
  color: white;
}

.contact-method h4 {
  color: #155799;
  margin-bottom: 1rem;
}

.support-topics {
  text-align: left;
  list-style: none;
  padding: 0;
}

.support-topics li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-left: 1.5rem;
}

.support-topics li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00d4aa;
  font-weight: bold;
}

.support-topics li:last-child {
  border-bottom: none;
}

@media (max-width: 768px) {
  #contact-hero {
    height: auto;
    padding: 4rem 0;
  }
  
  .contact-form-container {
    margin-top: 2rem;
    padding: 1.5rem;
  }
}

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

#footer .footer-top {
  background: #2c4964;
  border-bottom: 1px solid #37415b;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
  color: #ecf5ff;
}

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

#footer .footer-top .social-links a:hover {
  background: #2980b9;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #3498db;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #ecf5ff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #3498db;
  text-decoration: none;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  background: #3498db;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #2980b9;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #ecf5ff;
}

#footer .credits a {
  color: #3498db;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  background: #fff;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.3);
  padding: 20px 0 30px 0;
  border-radius: 4px;
}

.contact .info-box i {
  font-size: 32px;
  color: #3498db;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #b3ecdb;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #2c4964;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  background: #fff;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.4);
  padding: 30px;
  border-radius: 4px;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.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;
  animation: animate-loading 1s linear infinite;
}

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

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

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

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

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

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

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

/*--------------------------------------------------------------
# Print Styles
--------------------------------------------------------------*/
@media print {
  /* Hide elements that don't make sense in print */
  #header,
  .back-to-top,
  #preloader,
  .btn-get-started,
  .btn-watch-video,
  .navbar,
  .mobile-nav-toggle {
    display: none !important;
  }

  /* Fix hero section height for print */
  #hero {
    height: auto !important;
    min-height: 400px;
    page-break-inside: avoid;
    background: #155799 !important;
    color: #fff !important;
    padding: 40px 0;
  }

  /* Ensure text is readable */
  #hero h1,
  #hero h2 {
    color: #fff !important;
  }

  /* Hero content adjustments for print */
  #hero .hero-content {
    color: #fff !important;
  }

  /* Hide hero image for print to save space */
  #hero .hero-img {
    display: none !important;
  }

  /* Fix positioning issues */
  * {
    position: static !important;
  }

  /* Optimize typography for print */
  body {
    font-size: 12pt;
    line-height: 1.4;
    color: #000 !important;
    background: #fff !important;
  }

  h1 { font-size: 18pt; }
  h2 { font-size: 16pt; }
  h3 { font-size: 14pt; }
  h4 { font-size: 12pt; }
  h5 { font-size: 11pt; }
  h6 { font-size: 10pt; }

  /* Ensure sections break properly */
  section {
    page-break-inside: avoid;
    margin-bottom: 20px;
  }

  /* Fix container margins */
  .container {
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  /* Make sure content sections are visible */
  #about,
  #features,
  #services,
  #contact {
    background: #fff !important;
    color: #000 !important;
    padding: 20px 0;
  }

  /* Hide animations and transitions */
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }

  /* Optimize images */
  img {
    max-width: 100% !important;
    height: auto !important;
  }

  /* Fix links */
  a {
    color: #000 !important;
    text-decoration: underline !important;
  }

  /* Remove box shadows and borders that don't print well */
  * {
    box-shadow: none !important;
    border-radius: 0 !important;
  }
}