:root {
  --primary-color: #2f35da;
  --secondary-color: #f6f5ec;
  --text-color: #333;
  --light-bg: #ffffff;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Lato", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-bg);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

/* Header & Navigation */
header {
  background-color: rgba(255, 255, 255, 0.95);
  position: fixed;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

header.floating {
  top: 20px;
  width: 90%;
  max-width: 1400px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 32px;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 10px 30px rgba(47, 53, 218, 0.1);
}

header.scrolled {
  box-shadow: 0 5px 20px rgba(47, 53, 218, 0.15);
  padding: 12px 0;
}

header.floating.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(47, 53, 218, 0.2);
}

/* Add this new class for hiding header on scroll down (mobile) */
header.header-hidden {
  transform: translateY(-200%);
}

header.floating.header-hidden {
  transform: translate(-50%, -200%);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: translateY(-2px);
}

.logo img {
  height: 32px;
  margin-right: 12px;
  margin-left: 12px;
  margin-top: 5px;
  margin-bottom: 3px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-text {
  font-weight: 800;
  font-size: 1.6rem;
  background: linear-gradient(135deg, var(--primary-color), #5a61ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-left: 2px;
}

.no-text-wrap {
  white-space: nowrap !important;
}

.nav-links {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-links a {
  font-weight: 600;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.nav-links a:not(.btn-small):after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-links a:not(.btn-small):hover:after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-color);
}

.nav-links .btn-small {
  padding: 10px 24px;
  border-radius: 30px;
  background-color: var(--primary-color);
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(47, 53, 218, 0.2);
}

.nav-links .btn-small:hover {
  background-color: #2429b6;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(47, 53, 218, 0.3);
}

.hamburger {
  display: none;
  cursor: pointer;
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--primary-color);
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(47, 53, 218, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1010;
}

.hamburger:hover {
  background-color: rgba(47, 53, 218, 0.05);
  transform: translateY(-2px);
}

.hamburger i {
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.hamburger.active {
  background-color: rgba(47, 53, 218, 0.1);
}

.hamburger.active i.fa-times {
  transform: rotate(180deg);
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.hero-video video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding-top: 80px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 700;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: #2429b6;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline {
  border: 2px solid white;
  margin-left: 15px;
}

.btn-outline:hover {
  background-color: white;
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Section Styling */
section {
  padding: 100px 0;
}

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

.section-title h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
}

.section-title p {
  font-size: 1.2rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

/* Benefits Section */
.benefits {
  background-color: var(--secondary-color);
}

.benefits-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.benefit-card {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  border-left: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(47, 53, 218, 0.03), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(47, 53, 218, 0.12);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.benefit-icon {
  font-size: 1.5rem;
  color: white;
  margin-right: 15px;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), #5a61ff);
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(47, 53, 218, 0.2);
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: rotate(5deg) scale(1.05);
}

.benefit-title {
  font-size: 1.25rem;
  margin: 0;
  line-height: 1.3;
  font-weight: 700;
  background: linear-gradient(135deg, #333, #555);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-title {
  background: linear-gradient(135deg, var(--primary-color), #5a61ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.benefit-card p {
  margin: 0;
  line-height: 1.5;
  font-size: 0.95rem;
  color: #666;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.benefit-card:hover p {
  color: #444;
}

/* Solution Section */
.solution-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.solution-image {
  height: 500px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
}

.solution-image img {
  width: 100%;
}

.solution-steps {
  counter-reset: step-counter;
}

.solution-step {
  margin-bottom: 30px;
  padding-left: 60px;
  position: relative;
}

.solution-step::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.solution-step h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

/* Company Section */
.company {
  background-color: var(--secondary-color);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text {
  font-size: 1.1rem;
}

.about-image {
  height: 400px;
  background: url("https://via.placeholder.com/600x400");
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.services-title {
  margin-top: 40px;
  margin-bottom: 0px !important;
}

.services-section {
  background-color: var(--secondary-color);
  position: relative;
}

.about-content-full {
  background-color: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 0px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-content-full:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(47, 53, 218, 0.1);
}

.about-content-full h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 12px;
}

.about-content-full h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

.about-content-full p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.services-section-embedded {
  margin-top: 10px;
}

.services-title {
  font-size: 1.8rem;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
  display: inline-block;
}

.services-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

.services-cta {
  text-align: center;
  margin-top: 40px;
  padding: 40px 28px;
  background: linear-gradient(135deg, #f6f7ff 0%, #ffffff 100%);
  border: 1px solid rgba(47, 53, 218, 0.12);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(47, 53, 218, 0.08);
}

.services-cta p {
  font-size: 1.25rem;
  margin-bottom: 18px;
  font-weight: 700;
  color: #2a2d41;
}

.services-cta p i {
  color: var(--primary-color);
  margin-right: 8px;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.services-cta .btn {
  padding: 12px 26px;
}

.btn-ghost {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
}

.btn-ghost:hover {
  background: rgba(47, 53, 218, 0.08);
}

/* Responsive adjustments for combined section */
@media screen and (max-width: 768px) {
  .about-content-full {
    padding: 25px;
  }

  .services-cta {
    padding: 20px;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  opacity: 0; /* Set initial state for animation */
}

.service-card {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  border-left: 3px solid rgba(47, 53, 218, 0.08);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(47, 53, 218, 0.03), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(47, 53, 218, 0.12);

}

.service-card:hover::before {
  opacity: 1;
}

.service-header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.service-icon {
  width: 46px;
  height: 46px;
  color: white;
  margin-right: 15px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), #5a61ff);
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(47, 53, 218, 0.2);
  transition: all 0.3s ease;
  font-size: 1.5rem;
}

.service-card:hover .service-icon {
  transform: rotate(5deg) scale(1.05);
}

.service-card h3 {
  font-size: 1.25rem;
  margin: 0;
  line-height: 1.3;
  font-weight: 700;
  background: linear-gradient(135deg, #333, #555);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
}

.service-card:hover h3 {
  background: linear-gradient(135deg, var(--primary-color), #5a61ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-card p {
  margin: 0;
  line-height: 1.5;
  font-size: 0.95rem;
  color: #666;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.service-card:hover p {
  color: #444;
}

/* Service tags and CTA */
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.service-tags .tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  font-size: 0.8rem;
  border-radius: 999px;
  background: #f3f4ff;
  color: #3940d6;
  border: 1px solid rgba(47, 53, 218, 0.15);
}

.card-cta {
  margin-top: 14px;
  font-weight: 700;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.card-cta i {
  transition: transform 0.3s ease;
}

.card-cta:hover i {
  transform: translateX(3px);
}

/* Portfolio list tweaks for cards */
.portfolio-list {
  margin-top: 10px;
}
.portfolio-list li {
  margin-bottom: 6px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: #666;
}
.portfolio-list i {
  color: var(--primary-color);
  margin-top: 3px;
}

/* Contact Section */
.contact-wrapper {
  display: flex;
  justify-content: center;
}

.contact-form {
  width: 100%;
  max-width: 600px;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 15px;
}

.contact-info i {
  color: var(--primary-color);
  margin-right: 10px;
}

.contact-info .contact-map {
  height: 150px;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 15px;
}

.contact-info .contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-form {
  margin-top: 40px;
}

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

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(47, 53, 218, 0.2);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

/* Partners */
.partners {
  background-color: #f9f9f9;
  padding: 50px 0;
}

.partners-title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.5rem;
  color: #666;
}

.partners-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.partners-logo img {
  height: 40px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: var(--transition);
}

.partners-logo img:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* Portfolio grid (shares look with services grid without initial fade) */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

/* Footer */
footer {
  background-color: #111;
  color: white;
  padding: 60px 0 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 30px;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  display: inline-block;
}

.footer-logo img {
  height: 36px;
  max-width: 100%;
}

.footer-about p {
  margin-bottom: 20px;
  color: #aaa;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  background-color: var(--primary-color);
}

.footer-links h3,
.footer-contact h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h3::after,
.footer-contact h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #aaa;
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: white;
  padding-left: 5px;
}

.footer-contact h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-contact h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
}

.footer-contact p {
  color: #aaa;
  margin-bottom: 10px;
}

.footer-contact i {
  color: var(--primary-color);
  margin-right: 10px;
}

.footer-contact .contact-map {
  height: 150px;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 15px;
}

.footer-contact .contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #333;
  color: #777;
}

/* Animation Styles */
.reveal-text {
  position: relative;
  overflow: hidden;
  display: block;
}

.reveal-text::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  transform: translateX(-100%);
  animation: reveal-text 1.5s ease forwards;
}

@keyframes reveal-text {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Cursor Animation */
.typed-cursor {
  opacity: 1;
  animation: typedjsBlink 0.7s infinite;
}

@keyframes typedjsBlink {
  50% {
    opacity: 0;
  }
}

/* Responsive Design */
@media screen and (max-width: 992px) {
  .hero-title {
    font-size: 3rem;
  }
  .solution-wrapper,
  .about-content,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
  .nav-links {
    gap: 20px;
  }
  .logo-text {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 768px) {
  .navbar {
    position: relative;
  }

  header.floating {
    width: 95%;
    top: 15px;
    border-radius: 18px;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    right: 20px;
    width: 85%;
    max-width: 320px;
    min-width: 250px;
    max-height: 75vh;
    overflow-y: auto;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(47, 53, 218, 0.12);
    padding: 28px 30px;
    gap: 20px;
    border-radius: 16px;
    transform: translateY(-20px) scale(0.95);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
    border: 1px solid rgba(47, 53, 218, 0.08);
  }

  .nav-links li {
    width: 100%;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    transition-delay: calc(0.05s * var(--item-index, 0));
  }

  .nav-links.active li {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links a:not(.btn-small) {
    display: block;
    padding: 10px 0;
    width: 100%;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(47, 53, 218, 0.05);
  }

  .nav-links a:not(.btn-small):last-child {
    border-bottom: none;
  }

  .nav-links.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: all;
  }

  .hamburger {
    display: flex;
  }

  .nav-links .btn-small {
    width: 100%;
    text-align: center;
    margin-top: 10px;
    padding: 12px 24px;
  }
  .hero-title {
    font-size: 3rem;
  }
  .hero-subtitle {
    font-size: 1.2rem;
  }
  .btn {
    padding: 10px 20px;
  }
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
  .footer-contact {
    grid-column: span 2;
    margin-top: 20px;
  }
  .logo-text {
    font-size: 1.4rem;
  }
  .footer-about {
    margin-bottom: 25px;
  }
}

@media screen and (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  .footer-container {
    grid-template-columns: 1fr;
  }
  .footer-contact {
    grid-column: 1;
  }
  .footer-links,
  .footer-about {
    margin-bottom: 30px;
  }
  .footer-logo {
    margin-bottom: 12px;
  }
  .footer-logo img {
    height: 30px;
  }
  .footer-social {
    gap: 10px;
    flex-wrap: wrap;
  }
  .footer-social a {
    width: 36px;
    height: 36px;
  }
  .section-title h2 {
    font-size: 2rem;
  }
  .hero-content {
    padding-top: 60px;
  }
  .btn {
    display: inline-block;
    padding: 10px 20px;
    margin-bottom: 10px;
  }
  .hero-btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .btn-outline {
    margin-left: 0;
  }
}

@media screen and (max-width: 450px) {
  .logo img {
    height: 24px;
    margin-right: 8px;
    margin-left: 8px;
    margin-top: 2px;
    margin-bottom: 2px;
  }

  .logo-text {
    font-size: 1.2rem;
  }

  .navbar {
    padding: 0 10px;
  }

  header.floating {
    width: 98%;
    top: 10px;
    border-radius: 12px;
  }
}
