
body {
  background: #ffffff;
  color: #4a5568;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
}

a {
  color: #6366f1;
  transition: all 0.3s ease;
}

a:hover, a:active, a:focus {
  color: #818cf8;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
  line-height: 1.8;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin: 0 0 20px 0;
  padding: 0;
  letter-spacing: -0.5px;
}

/* Prelaoder */
#preloader {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  overflow: visible;
  background: #fff url("../img/preloader.svg") no-repeat center center;
}




/* Back to top button */
.back-to-top {
  position: fixed;
  display: none;
  background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
  color: #fff;
  padding: 12px 15px;
  font-size: 16px;
  border-radius: 50%;
  right: 15px;
  bottom: 15px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}

.back-to-top:focus {
  background: linear-gradient(135deg, #818cf8 0%, #a5b4fc 100%);
  color: #fff;
  outline: none;
}

.back-to-top:hover {
  background: linear-gradient(135deg, #818cf8 0%, #a5b4fc 100%);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4);
}

/*--------------------------------------------------------------
# Welcome
--------------------------------------------------------------*/
#hero {
  display: table;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #1e1b4b 0%, #b2cded 25%, #e4e3f5 50%, #416ed7 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  position: relative;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

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

#hero .hero-logo {
  margin: 20px;
}

#hero .hero-logo img {
  max-width: 100%;
}

#hero .hero-container {
  background: transparent;
  display: table-cell;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
  vertical-align: middle;
}

#hero h1 {
  margin: 30px 0 10px 0;
  font-weight: 800;
  line-height: 48px;
  text-transform: uppercase;
  color: #ffffff;
  font-size: 56px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  letter-spacing: 2px;
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
}

#hero h2 {
  color: #e0e7ff;
  margin-bottom: 50px;
  font-size: 24px;
  font-weight: 300;
  text-shadow: 0 1px 5px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 24px;
    line-height: 26px;
    margin-bottom: 30px;
  }
  #hero h2 .rotating {
    display: block;
  }
}

#hero .rotating > .animated {
  display: inline-block;
}

#hero .actions a {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 20px;
  border-radius: 2px;
  transition: 0.5s;
  margin: 10px;
}

#hero .btn-get-started {
  background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
  border: 2px solid transparent;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

#hero .btn-get-started:hover {
  background: linear-gradient(135deg, #818cf8 0%, #a5b4fc 100%);
  box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4);
  transform: translateY(-2px);
}

#hero .btn-services {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

#hero .btn-services:hover {
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid #fff;
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px 0;
  height: 90px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

#header #logo {
  float: left;
}

#header #logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 6px 0;
  line-height: 1;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header #logo h1 a, #header #logo h1 a:hover {
  color: #3777d8;
}

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

@media (max-width: 768px) {
  #header {
    height: 80px;
  }
  #header #logo h1 {
    font-size: 26px;
  }
  #header #logo img {
    max-height: 40px;
  }
}

.is-sticky #header {
  background: rgba(230, 238, 251, 0.95);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Nav Menu Essentials */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

.nav-menu li {
  position: relative;
  white-space: nowrap;
}

.nav-menu > li {
  float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
  display: block;
}

.nav-menu ul ul {
  top: 0;
  left: 100%;
}

.nav-menu ul li {
  min-width: 180px;
}

/* Nav Menu Arrows */
.sf-arrows .sf-with-ul {
  padding-right: 30px;
}

.sf-arrows .sf-with-ul:after {
  content: "\f107";
  position: absolute;
  right: 15px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
  content: "\f105";
}

/* Nav Meu Container */
#nav-menu-container {
  float: right;
  margin: 5px 0;
}

@media (max-width: 768px) {
  #nav-menu-container {
    display: none;
  }
}

/* Nav Meu Styling */
.nav-menu a {
  padding: 10px 15px;
  text-decoration: none;
  display: inline-block;
  color: #1f2937;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
  border-radius: 6px;
}

.nav-menu a:hover, .nav-menu li:hover > a, .nav-menu .menu-active > a {
  color: #6366f1;
  background: rgba(99, 102, 241, 0.1);
}

.nav-menu ul {
  margin: 4px 0 0 15px;
  box-shadow: 0px 0px 1px 1px rgba(151, 13, 13, 0.08);
}

.nav-menu ul li {
  background: #fff;
  border-top: 1px solid #f4f4f4;
}

.nav-menu ul li:first-child {
  border-top: 0;
}

.nav-menu ul li:hover {
  background: #f6f6f6;
}

.nav-menu ul li a {
  color: #333;
}

.nav-menu ul ul {
  margin: 0;
}

/* Mobile Nav Toggle */
#mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  margin: 20px 20px 0 0;
  border: 0;
  background: none;
  font-size: 24px;
  display: none;
  transition: all 0.4s;
  outline: none;
}

#mobile-nav-toggle i {
  color: #fff;
}

@media (max-width: 768px) {
  #mobile-nav-toggle {
    display: inline;
  }
}

/* Mobile Nav Styling */
#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 18px;
  bottom: 0;
  z-index: 998;
  background: rgba(0, 0, 0, 0.9);
  left: -260px;
  width: 260px;
  overflow-y: auto;
  transition: 0.4s;
}

#mobile-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#mobile-nav ul li {
  position: relative;
}

#mobile-nav ul li a {
  color: #fff;
  font-size: 16px;
  overflow: hidden;
  padding: 10px 22px 10px 15px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
}

#mobile-nav ul li a:hover {
  color: #fff;
}

#mobile-nav ul li li {
  padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
  position: absolute;
  right: 0;
  z-index: 99;
  padding: 15px;
  cursor: pointer;
  color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
  color: #03C4EB;
}

#mobile-nav ul .menu-item-active {
  color: #03C4EB;
}

#mobile-body-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.6);
  display: none;
}

/* Mobile Nav body classes */
body.mobile-nav-active {
  overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
  left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
  color: #fff;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
/* Sections Common
--------------------------------*/
.section-title {
  font-size: 42px;
  color: #1f2937;
  text-transform: uppercase;
  text-align: center;
  font-weight: 800;
  background: linear-gradient(135deg, #1f2937 0%, #4f46e5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.section-description {
  text-align: left;
  margin-bottom: 20px;
  color: #6b7280;
  font-weight: 500;
  font-size: 16px;
}

.section-description2 {
  text-align: center;
  margin-bottom: 40px;
  padding: 5%;
  color: #4f46e5;
  font-weight: 600;
  font-size: 28px;
  font-family: 'Poppins', sans-serif;
}

.section-title-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #6366f1 0%, #818cf8 100%);
  margin: 0 auto;
  margin-bottom: 30px;
  border-radius: 2px;
}

/* Get Started Section
--------------------------------*/
#about {
  background: #ffffff;
  padding: 80px 0 0;
}

#about .about-img {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(99, 102, 241, 0.15);
}

#about .about-img img {
  max-width: 100%;
  transition: transform 0.5s ease;
}

#about .about-img:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  #about .about-img {
    height: auto;
  }
  #about .about-img img {
    margin-left: 0;
    padding-bottom: 30px;
  }
}

#about .about-content {
  background: #fff;
}

#about .about-title {
  color: #2e2e2e;
  font-weight: 400;
  font-size: 18px;
}
 
#about .about-text {
  line-height: 18px;
  margin-bottom: 15px;
  color: #6b7280;
}

#about .about-text:last-child {
  margin-bottom: 0;
}

#about .about-text h3 {
  color: #aaaaaa;
  font-size: 14px;
  margin-bottom: 10px;
}

#about .about-text i {
  color: #10b981;
  margin-right: 8px;
  font-size: 20px;
}

/* Services Section
--------------------------------*/
#services {
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f0ff 100%);
  padding: 80px 0 60px 0;
}

#services .service-item {
  margin-bottom: 30px;
  margin-right: 15px;
  margin-left: 15px;
  transition: all 0.4s ease;
  padding: 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

#services .service-item:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 20px 50px rgba(99, 102, 241, 0.15);
  transform: translateY(-5px);
}

#services .service-icon {
  float: left;
  background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
  padding: 18px;
  border-radius: 12px;
  transition: all 0.4s ease;
  border: none;
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

#services .service-icon i {
  color: #ffffff;
  font-size: 28px;
}

#services .service-item:hover .service-icon {
  background: linear-gradient(135deg, #818cf8 0%, #a5b4fc 100%);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

#services .service-item:hover .service-icon i {
  color: #ffffff;
}

#services .service-title {
  margin-left: 80px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-size: 18px;
}

#services .service-title a {
  color: #1f2937;
  transition: all 0.3s ease;
}

#services .service-title a:hover {
  color: #6366f1;
}

#services .service-description {
  margin-left: 80px;
  line-height: 24px;
  color: #6b7280;
}


.cookie-policy-description {
  text-align: left;
  margin-bottom: 40px;
  padding: 1%;
  color: #2c3c73;
  font-weight: 400;
  font-size: 24px;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif, Tahoma, Geneva, Verdana, sans-serif;
}

#contact {
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  padding: 80px 0;
}

#contact .info {
  color: #1f2937;
  padding-left: 3%;
  width: 98%;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

#contact .info i {
  font-size: 32px;
  color: #6366f1;
  float: left;
}

#contact .info p {
  padding: 0 0 10px 50px;
  line-height: 24px;
}

#contact .form #sendmessage {
  color: #10b981;
  border: 1px solid #10b981;
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
  border-radius: 8px;
  background: rgba(16, 185, 129, 0.1);
}

#contact .form #errormessage {
  color: #ef4444;
  display: none;
  border: 1px solid #ef4444;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
  border-radius: 8px;
  background: rgba(239, 68, 68, 0.1);
}

#contact .form #sendmessage.show, #contact .form #errormessage.show, #contact .form .show {
  display: block;
}

#contact .form .validation {
  color: red;
  display: none;
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 13px;
}

#contact .form input, #contact .form textarea {
  border-radius: 8px;
  box-shadow: none;
  border: 1px solid #e5e7eb;
  padding: 12px 16px;
  font-family: 'Segoe UI', sans-serif;
  transition: all 0.3s ease;
}

#contact .form input:focus, #contact .form textarea:focus {
  border: 1px solid #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

#contact .form button[type="submit"] {
  background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
  border: 0;
  padding: 12px 32px;
  color: #fff;
  transition: all 0.4s ease;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

#contact .form button[type="submit"]:hover {
  background: linear-gradient(135deg, #818cf8 0%, #a5b4fc 100%);
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  padding: 40px 0 20px;
  color: #fff;
}

#footer .copyx {
  text-align: center;
}


#footer .foot {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #ccc;
}
.topFooter{
  text-align:left;
  padding:15px;
  font-weight:700;
  font-family:'Gill Sans','Gill Sans MT',Calibri,'Trebuchet MS',sans-serif;
  color:#ceced7;font-size:20px
}

.topFooterLink{
  color:#95a7d6!important;font-size:16px
}

.topFooterLinkCli{
  color:#7fb4e2!important;font-size:16px
}
#footer .foot{
  padding-top:10px;
  text-align:center;
  font-size:13px;
  color:#ccc
}


  .cookie-consent {
    position: fixed;
    display: block;
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.95) 0%, rgba(17, 24, 39, 0.95) 100%);
    color: #e5e7eb;
    padding: 20px;
    font-size: 14px;
    border-radius: 12px;
    bottom: 15px;
    right: 15px;
    transition: all 0.5s ease;
    text-align: center;
    min-width: 350px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.2);
    z-index: 9998;
  }
  
  @media (max-width: 768px) {
    .cookie-consent {
      min-width: 100%;
      left: 0;
      right: 0;
      border-radius: 12px 12px 0 0;
    }
  }

  .cookie-consent:hover {
    background: rgba(31, 41, 55, 0.98);
  }

  .cookie-consent b {
    color: #ffffff;
    font-weight: 700;
  }

  .cookie-consent-allow {
    background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
    border: 0;
    color: #fff;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
  }

  .cookie-consent-allow:hover {
    background: linear-gradient(135deg, #818cf8 0%, #a5b4fc 100%);
    transform: translateY(-2px);
  }

  .form-box {
    background: linear-gradient(135deg, rgba(238, 244, 255, 0.9) 0%, rgba(247, 247, 247, 0.9) 100%) !important;
    padding: 40px;
    text-align: left;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
  }
/* ============================================
   MODERN BLOCKCHAIN WEBSITE STYLES
   ============================================ */

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Enhanced Preloader */
#preloader {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  overflow: visible;
  background: linear-gradient(135deg, #1e1b4b 0%, #4f46e5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeOutPreloader 0.8s ease-in-out forwards;
}

@keyframes fadeOutPreloader {
  0% {
    opacity: 1;
    visibility: visible;
  }
  99% {
    opacity: 0;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
    z-index: -1;
  }
}

#preloader::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Form Styling */
.form-box {
  background: linear-gradient(135deg, rgba(238, 244, 255, 0.9) 0%, rgba(247, 247, 247, 0.9) 100%) !important;
  padding: 40px;
  text-align: left;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
}

.form-box .form-group label {
  color: #1f2937;
  font-weight: 600;
  margin-bottom: 8px;
  font-family: 'Poppins', sans-serif;
}

.form-box .form-control {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 12px 16px;
  font-family: 'Segoe UI', sans-serif;
  transition: all 0.3s ease;
  color: #1f2937;
}

.form-box .form-control:focus {
  background: #ffffff;
  border: 2px solid #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
  color: #1f2937;
}

/* Adjusting select field alignment */
.form-box select.form-control {
  padding: 12px 16px; /* Ensure consistent padding */
  line-height: 1.5; /* Adjust text alignment */
  height: auto; /* Allow height to adjust dynamically */
}

.form-box select.form-control option {
  color: #1f2937;
  background: #ffffff;
}

/* Button Styling */
.btn-primary {
  background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%) !important;
  border: 0 !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  padding: 12px 32px !important;
  transition: all 0.4s ease !important;
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3) !important;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #818cf8 0%, #a5b4fc 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4) !important;
}

/* Cookie Consent Updated */
.cookie-consent {
  position: fixed;
  display: block;
  background: linear-gradient(135deg, rgba(31, 41, 55, 0.95) 0%, rgba(17, 24, 39, 0.95) 100%);
  color: #e5e7eb;
  padding: 20px;
  font-size: 14px;
  border-radius: 12px;
  bottom: 15px;
  right: 15px;
  transition: all 0.5s ease;
  text-align: center;
  min-width: 350px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(99, 102, 241, 0.2);
}

@media (max-width: 768px) {
  .cookie-consent {
    min-width: 100%;
    left: 0;
    right: 0;
    border-radius: 12px 12px 0 0;
  }
}

.cookie-consent:hover {
  background: rgba(31, 41, 55, 0.98);
}

.cookie-consent b {
  color: #ffffff;
  font-weight: 700;
}

.cookie-consent-allow {
  background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
  border: 0;
  color: #fff;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 10px;
  box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
}

.cookie-consent-allow:hover {
  background: linear-gradient(135deg, #818cf8 0%, #a5b4fc 100%);
  transform: translateY(-2px);
}

/* Navigation Mobile */
@media (max-width: 768px) {
  #mobile-nav {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  }
  
  #mobile-nav ul li a {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
  }
}

/* Animations */
.wow {
  animation-duration: 0.8s;
  animation-fill-mode: both;
}

/* Header Sticky */
.is-sticky #header {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Service Item Animation */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#services .service-item {
  animation: slideInUp 0.8s ease;
}

/* About Section Enhancement */
#about .section-title {
  position: relative;
  margin-bottom: 40px;
}

#about .section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #6366f1 0%, #818cf8 100%);
  border-radius: 2px;
}

/* Hover Effects */
.section-description3 {
  margin: 20px 0;
  padding: 20px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(129, 140, 248, 0.1) 100%);
  border-left: 4px solid #6366f1;
  border-radius: 8px;
  color: #4f46e5;
  font-weight: 900;
}

/* Footer Enhancement */
#footer .copyx {
  text-align: center;
  margin: 20px 0;
}

#footer .foot {
  padding-top: 15px;
  text-align: center;
  font-size: 13px;
  color: #9ca3af;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.topFooter {
  text-align: left;
  padding: 15px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  color: #e5e7eb;
  font-size: 20px;
}

.topFooterLink {
  color: #93c5fd !important;
  font-size: 16px;
  transition: all 0.3s ease;
}

.topFooterLink:hover {
  color: #bfdbfe !important;
  text-decoration: underline;
}

.topFooterLinkCli {
  color: #a5f3fc !important;
  font-size: 16px;
  transition: all 0.3s ease;
}

.topFooterLinkCli:hover {
  color: #cffafe !important;
  text-decoration: underline;
}

/* Responsive improvements */
@media (max-width: 1024px) {
  .section-title {
    font-size: 36px;
  }
  
  #hero h1 {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .form-box {
    padding: 20px;
  }
  
  .cookie-consent {
    min-width: 100%;
    left: 0;
  }
  
  #services .service-icon {
    float: none;
    margin-bottom: 15px;
  }
  
  #services .service-title,
  #services .service-description {
    margin-left: 0;
  }
}

/* Loading animation for better UX */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

body {
  animation: fadeIn 0.5s ease;
}

/* Scroll animations */
.animate-on-scroll {
  opacity: 0;
  animation: slideInUp 0.8s ease forwards;
}

/* Icon animations */
.service-icon {
  position: relative;
}

.service-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  opacity: 0;
  transition: all 0.4s ease;
}

#services .service-item:hover .service-icon::after {
  animation: pulse 1s ease;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(99, 102, 241, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(99, 102, 241, 0);
  }
}
.about-section {
  padding: 80px 0;
}

.about-feature {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.about-feature i {
  font-size: 28px;
  color: #4383cb;
  margin-top: 5px;
}

.about-feature h5 {
  font-weight: 600;
  margin-bottom: 5px;
}

.about-feature p {
  font-size: 14px;
  color: #666;
}

.about-section img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

@media (max-width: 991px) {
  .about-section img {
    margin-bottom: 30px;
  }
}

