/* Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --primary: #2c3e50;
  --secondary: #34495e;
  --accent: #3498db;
  --light: #ecf0f1;
  --dark: #2c3e50;
  --white: #ffffff;
  --black: #333333;
  --gray: #95a5a6;
  --success: #2ecc71;
  --danger: #e74c3c;
  --warning: #f39c12;
  --info: #1abc9c;
}

body {
  font-family: "Roboto", sans-serif;
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--accent);
  border-color: var(--accent);
}

.btn-primary:hover {
  background-color: #2980b9;
  border-color: #2980b9;
  transform: translateY(-2px);
}

.btn-outline-light:hover {
  color: var(--accent);
  background-color: var(--white);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.section-subtitle {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.section-description {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 2rem;
}

/* Navigation */
.navbar {
  padding: 20px 0;
  transition: all 0.3s ease;
  background-color: #999999;
  backdrop-filter: blur(10px);
}

.navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
  transition: all 0.3s ease;
}

.navbar.scrolled .navbar-brand img {
  height: 60px;
}

.nav-link {
  font-weight: 600;
  padding: 8px 15px !important;
  color: var(--white) !important;
  position: relative;
}

.nav-link:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

.nav-link:hover:before {
  width: 100%;
}

.nav-btn {
  padding: 8px 20px !important;
  margin-left: 10px;
}

.dropdown-menu {
  border: none;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 10px 0;
  margin-top: 10px;
}

.dropdown-item {
  padding: 8px 20px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background-color: var(--accent);
  color: var(--white) !important;
}

/* Sidebar Navigation */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

.sidebar-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 90%;
  height: 100%;
  background-color: var(--white);
  z-index: 1000;
  transition: all 0.5s ease;
  overflow-y: auto;
}

.sidebar-nav.active {
  right: 0;
}

.sidebar-header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--primary);
}

.sidebar-logo {
  height: 30px;
}

.sidebar-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
}

.sidebar-menu {
  padding: 20px;
  list-style: none;
}

.sidebar-menu li {
  margin-bottom: 10px;
}

.sidebar-menu a {
  display: block;
  padding: 10px 0;
  color: var(--dark);
  font-weight: 600;
  border-bottom: 1px solid #eee;
}

.sidebar-menu .has-submenu > a:after {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 5px;
  float: right;
  transition: transform 0.3s ease;
}

.sidebar-menu .has-submenu.active > a:after {
  transform: rotate(180deg);
}

.submenu {
  padding-left: 15px;
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.sidebar-menu .has-submenu.active .submenu {
  max-height: 500px;
}

.sidebar-footer {
  padding: 20px;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  min-height: 700px;
  background: url("../img/sectionheader.png") no-repeat center center;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(153, 153, 153, 0.568),
    rgba(0, 0, 0, 0.267) /* negro suave */
  );
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.3rem;
  max-width: 600px;
}

.hero-buttons {
  margin-top: 2rem;
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}

.scroll-down-arrow {
  display: block;
  width: 20px;
  height: 20px;
  border-bottom: 2px solid var(--white);
  border-right: 2px solid var(--white);
  transform: rotate(45deg);
  margin: -10px;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-20px) translateX(-50%);
  }
  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}

/* Trusted By Section */
.trusted-by {
  background-color: var(--white);
  border-bottom: 1px solid #eee;
}

.trusted-logos {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
}

.logo-item {
  margin: 10px;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.logo-item:hover {
  opacity: 1;
}

.logo-item img {
  max-height: 30px;
  width: auto;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.logo-item:hover img {
  filter: grayscale(0);
}

/* Service Cards */
.service-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 30px;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(52, 152, 219, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background-color: var(--accent);
  color: var(--white);
}

.service-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--dark);
}

.service-description {
  color: var(--gray);
  margin-bottom: 20px;
}

.service-link {
  color: var(--accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.service-link i {
  margin-left: 5px;
  transition: all 0.3s ease;
}

.service-link:hover i {
  transform: translateX(5px);
}

.service-hover-effect {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(
    135deg,
    rgba(52, 152, 219, 0.1) 0%,
    rgba(52, 152, 219, 0) 100%
  );
  z-index: -1;
  opacity: 0;
  transition: all 0.3s ease;
}

.service-card:hover .service-hover-effect {
  opacity: 1;
}

/* About Section */
.about-image-container {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-main-image {
  width: 100%;
  height: auto;
  display: block;
}

.about-experience {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--accent);
  color: var(--white);
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
}

.about-experience h3 {
  font-size: 2.5rem;
  margin-bottom: 0;
  line-height: 1;
}

.about-experience p {
  margin-bottom: 0;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.feature-item {
  display: flex;
  margin-bottom: 20px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(52, 152, 219, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
  margin-right: 15px;
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--dark);
}

/* Stats Section */
.stat-card {
  text-align: center;
  padding: 30px 20px;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.stat-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background-color: rgba(52, 152, 219, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.8rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 5px;
}

.stat-label {
  color: var(--gray);
  margin-bottom: 0;
}

/* Client Testimonials */
.client-testimonials {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}

.client-slide {
  flex: 0 0 calc(33.333% - 30px);
  margin: 15px;
  background-color: var(--white);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.client-slide:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.client-logo {
  margin-bottom: 20px;
}

.client-logo img {
  max-height: 50px;
  width: auto;
}

.client-content p {
  font-style: italic;
  color: var(--gray);
  margin-bottom: 20px;
  position: relative;
}

.client-content p:before {
  content: "\201C";
  font-size: 4rem;
  position: absolute;
  top: -20px;
  left: -15px;
  color: rgba(52, 152, 219, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.client-info h5 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--dark);
}

.client-info span {
  color: var(--gray);
  font-size: 0.9rem;
}

/* Process Steps */
.process-steps {
  position: relative;
  padding-top: 50px;
}

.process-steps:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background-color: rgba(52, 152, 219, 0.3);
}

.process-step {
  position: relative;
  text-align: center;
  padding: 0 20px;
  margin-bottom: 30px;
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 15px;
  position: relative;
  z-index: 1;
}

.step-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.step-content p {
  color: var(--gray);
}

/* Testimonial Slider */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}

.testimonial-slide {
  flex: 0 0 calc(33.333% - 30px);
  margin: 15px;
}

.testimonial-content {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 30px;
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-content:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-10px);
}

.quote-icon {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 20px;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  color: var(--light);
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.author-info h5 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--white);
}

.author-info span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* CTA Section */
.cta-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.2rem;
  margin-bottom: 0;
}

/* Team Section */
.team-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.team-image {
  position: relative;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.5s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.1);
}

.team-social {
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  background-color: rgba(52, 152, 219, 0.9);
  padding: 15px;
  display: flex;
  justify-content: center;
  transition: all 0.3s ease;
}

.team-card:hover .team-social {
  bottom: 0;
}

.team-social a {
  width: 35px;
  height: 35px;
  background-color: var(--white);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.team-social a:hover {
  background-color: var(--dark);
  color: var(--white);
}

.team-info {
  padding: 20px;
  text-align: center;
}

.team-name {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: var(--dark);
}

.team-position {
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px;
}

.team-bio {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* FAQ Section */
.accordion-button {
  font-weight: 600;
  padding: 15px 20px;
  color: var(--dark);
  background-color: var(--white);
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: var(--accent);
  background-color: var(--white);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(52, 152, 219, 0.25);
}

.accordion-button:after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232c3e50'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed):after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233498db'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(180deg);
}

.accordion-body {
  padding: 20px;
  color: var(--gray);
}

/* Contact Section */
.contact-info {
  margin-bottom: 30px;
}

.contact-info-item {
  display: flex;
  margin-bottom: 20px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(52, 152, 219, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
  margin-right: 15px;
  flex-shrink: 0;
}

.contact-content h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--dark);
}

.contact-content p {
  color: var(--gray);
  margin-bottom: 0;
}

.contact-map {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form {
  background-color: var(--white);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-control,
.form-select {
  height: 50px;
  border-radius: 4px;
  padding: 10px 15px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
}

textarea.form-control {
  height: auto;
  min-height: 150px;
}

.form-check-input:checked {
  background-color: var(--accent);
  border-color: var(--accent);
}

/* Footer */
.footer {
  background-color: var(--dark);
  position: relative;
  z-index: 1;
}

.footer:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/footer-bg.jpg") no-repeat center center;
  background-size: cover;
  opacity: 0.1;
  z-index: -1;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-about {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--accent);
  color: var(--white);
  transform: translateY(-5px);
}

.footer-title {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--accent);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.footer-contact li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.footer-contact i {
  margin-right: 10px;
  color: var(--accent);
  line-height: 1.6;
}

.footer-contact span {
  color: rgba(255, 255, 255, 0.7);
}

.footer-newsletter h4 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 15px;
}

.newsletter-form .form-control {
  height: 45px;
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--white);
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .btn {
  padding: 0 15px;
  height: 45px;
}

.footer-policies {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
}

.footer-policies li {
  margin-left: 15px;
}

.footer-policies a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-policies a:hover {
  color: var(--accent);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--dark);
  color: var(--white);
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.preloader.fade-out {
  opacity: 0;
}

.loader {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100px;
  height: 100px;
}

.loader-square {
  width: 30px;
  height: 30px;
  background-color: var(--accent);
  margin: 2px;
  animation: loader-anim 1.5s infinite ease-in-out;
}

.loader-square:nth-child(1) {
  animation-delay: 0.1s;
}
.loader-square:nth-child(2) {
  animation-delay: 0.2s;
}
.loader-square:nth-child(3) {
  animation-delay: 0.3s;
}
.loader-square:nth-child(4) {
  animation-delay: 0.4s;
}
.loader-square:nth-child(5) {
  animation-delay: 0.5s;
}
.loader-square:nth-child(6) {
  animation-delay: 0.6s;
}
.loader-square:nth-child(7) {
  animation-delay: 0.7s;
}

@keyframes loader-anim {
  0%,
  40%,
  100% {
    transform: scaleY(0.4);
  }
  20% {
    transform: scaleY(1);
  }
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
  .hero-title {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .client-slide {
    flex: 0 0 calc(50% - 30px);
  }

  .testimonial-slide {
    flex: 0 0 calc(50% - 30px);
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: var(--primary);
    padding: 20px;
    margin-top: 15px;
    border-radius: 8px;
  }

  .nav-btn {
    margin-left: 0;
    margin-top: 10px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .process-steps:before {
    display: none;
  }

  .process-step {
    margin-bottom: 30px;
  }
  .back-to-top {
    right: 10px;
    bottom: 10px;
  }
}

@media (max-width: 767.98px) {
  .sidebar-nav {
    top: 100px;
  }
  .navbar-brand img {
    height: 72px;
  }
  .hero-section {
    min-height: 600px;
    text-align: center;
  }

  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 15px;
  }

  .hero-buttons .btn:last-child {
    margin-bottom: 0;
  }

  .trusted-logos {
    justify-content: center;
  }

  .logo-item {
    flex: 0 0 33.333%;
    text-align: center;
  }

  .client-slide {
    flex: 0 0 100%;
  }

  .testimonial-slide {
    flex: 0 0 100%;
  }

  .cta-section .btn {
    width: 100%;
  }
  .back-to-top {
    right: 10px;
    bottom: 10px;
  }
}
@media (max-width: 575.98px) {
  body,
  html {
    width: 100%;
    overflow-x: hidden;
  }

  .container,
  .content-wrapper,
  section,
  main {
    width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
  }

  .hero-title {
    font-size: 2rem;
    text-align: center;
  }

  .section-title {
    font-size: 1.8rem;
    text-align: center;
  }

  .hero-section {
    padding: 30px 15px;
    text-align: center;
  }

  .about-experience {
    right: 0;
    bottom: -10px;
  }

  .footer-policies {
    justify-content: center;
    margin-top: 15px;
  }

  .footer-policies li {
    margin: 0 10px;
  }

  .back-to-top {
    right: 10px;
    bottom: 10px;
  }

  img,
  video,
  iframe {
    max-width: 100%;
    height: auto;
  }

  .row,
  .columns {
    margin-left: 0;
    margin-right: 0;
  }
}
