/* style.css */

/* Base Styles */
:root {
  --primary-color: #f16436;
  --primary-dark: #f16436;
  --secondary-color: #f97316;
  --text-color: #1e293b;
  --text-light: #64748b;
  --bg-color: #ffffff;
  --bg-light: #f8fafc;
  --bg-dark: #0f172a;
  --border-color: #e2e8f0;
  --success-color: #10b981;
  --error-color: #ef4444;
  --box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
}

.section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--box-shadow);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--box-shadow);
}

.btn-text {
  color: var(--primary-color);
  background: rgb(238, 238, 255);
  padding: 5px 20px;
  border-radius: 7%;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

.btn-text i {
  margin-left: 5px;
  transition: var(--transition);
}

.btn-text:hover {
  color: var(--primary-dark);
}

.btn-text:hover i {
  transform: translateX(5px);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  transition: var(--transition);
  padding: 20px 0;
}

header.scrolled {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.logo h1 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-color);
}

.logo span {
  color: var(--primary-color);
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  margin: 3px 0;
  transition: var(--transition);
}

/* Close button */
.close-nav {
  display: none;
  position: fixed;
  /* Changed from absolute to fixed */
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  z-index: 1002;
  /* Higher than both nav-links and hamburger */
  cursor: pointer;
}

.close-nav span {
  position: absolute;
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  top: 50%;
  left: 0;
}

.close-nav span:first-child {
  transform: rotate(45deg);
}

.close-nav span:last-child {
  transform: rotate(-45deg);
}

/* Add this to your media query for mobile */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: white;
    flex-direction: column;
    padding: 80px 30px;
    gap: 20px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    z-index: 1000;
  }

  .logo img {
    width: 40px;
    height: 40px;
  }

  .logo h1 {
    font-size: 1rem;
  }

  .nav-links.active {
    right: 0;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  /* Show close button when menu is active */
  .nav-links.active ~ .close-nav {
    display: block;
  }
}

/* Add this in your media query for mobile */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: white;
    flex-direction: column;
    padding: 80px 30px;
    gap: 20px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
  }

  .nav-links.active {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

  /* Show close button when menu is active */
  .nav-links.active + .hamburger {
    display: none;
  }

  .nav-links.active ~ .close-nav {
    display: block;
  }
}

/* Hero Section */
.hero {
  padding-bottom: 0;
  position: relative;
  background-color: #f0f7ff;
  overflow: hidden;
  min-height: 40rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}

.hero-content {
  flex: 1;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--bg-dark);
}

.hero-content p {
  font-size: 1.2rem;
  color: rgb(49, 48, 48);
  margin-bottom: 30px;
  font: 100;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.hero-content,
.hero-buttons {
  position: relative;
  z-index: 2;
}

.hero-image {
  flex: 1;
  position: relative;
  /* bottom: 10px; */
  z-index: 2;
  filter: brightness(0.95);
}

.hero-wave {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  z-index: 0;
  /* filter: blur(8px); */
  opacity: 0.1;
  /* background: rgb(254, 138, 254); */
}

/* Features Section */
.features {
  padding-top: 5rem;
  background-color: var(--bg-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(37, 99, 235, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.feature-icon i {
  font-size: 30px;
  color: var(--primary-color);
}

.feature-card h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.feature-card p {
  color: var(--text-light);
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  padding: 16px;
  border-radius: 10px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
}

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  padding: 10px;
}

.service-content h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.service-content p {
  color: var(--text-light);
  margin-bottom: 15px;
}

/* Portfolio Section */
.portfolio-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 8px 20px;
  background-color: transparent;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.portfolio-item {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.portfolio-image {
  height: 250px;
  position: relative;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px 0 rgba(37, 99, 235, 0.1);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
  pointer-events: auto;
}

.portfolio-item:hover .portfolio-image img {
  transform: scale(1.08);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-overlay-content {
  text-align: center;
  color: #fff;
  animation: fadeInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.portfolio-info {
  text-align: center;
  color: white;
  transform: translateY(20px);
  transition: var(--transition);
}

.portfolio-item:hover .portfolio-info {
  transform: translateY(0);
}

.portfolio-info h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.portfolio-link {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 50%;
  color: var(--primary-color);
  line-height: 40px;
  margin-top: 15px;
  transition: var(--transition);
}

.portfolio-link:hover {
  background-color: var(--bg-dark);
  color: white;
}

/* Process Section - Simple Professional Style */
.process {
  padding: 60px 0;
}

.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 30px auto 0;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50px;
  width: 3px;
  height: 100%;
  background-color: rgb(198, 255, 123);
  animation: grow-line 1.5s ease-out forwards;
  transform-origin: top;
}

@keyframes grow-line {
  from {
    transform: scaleY(0);
  }

  to {
    transform: scaleY(1);
  }
}

.process-step {
  display: flex;
  margin-bottom: 40px;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  animation: fade-in 0.5s ease forwards;
}

.process-step:nth-child(1) {
  animation-delay: 0.2s;
}

.process-step:nth-child(2) {
  animation-delay: 0.4s;
}

.process-step:nth-child(3) {
  animation-delay: 0.6s;
}

.process-step:nth-child(4) {
  animation-delay: 0.8s;
}

.process-step:nth-child(5) {
  animation-delay: 1s;
}

@keyframes fade-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.process-icon {
  width: 70px;
  height: 70px;
  margin-left: 17px;
  background-color: rgb(255, 255, 255);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  border: 1px solid rgb(13, 173, 26);
}

.process-icon i {
  font-size: 20px;
  color: rgb(13, 173, 26);
}

.step-number {
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  background-color: rgb(120, 120, 255);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
}

.process-content {
  background-color: white;
  padding: 25px 30px;
  border-radius: 8px;
  margin-left: 25px;
  flex: 1;
  border: 1px solid rgba(0, 0, 0, 0.1);
  /* border-left: 2px solid rgb(255, 171, 255); */
}

.process-content:hover {
  box-shadow: 0 20px 20px rgba(68, 0, 255, 0.05);
}

.process-content h3 {
  position: relative;
  margin-bottom: 12px;
  font-size: 1.25rem;
  color: black;
  display: inline-block;
  /* Important for the underline to fit content */
}

.process-content h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #efe524);
  /* Blue gradient */
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.process-content h3:hover::after {
  transform: scaleX(1);
}

.process-content p {
  color: var(--text-light, #555);
  line-height: 1.5;
  margin: 0;
}

/* Testimonials Section */
.testimonials {
  background-color: var(--bg-light);
}

.testimonial-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 100%;
  padding: 20px;
}

.testimonial-content {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  position: relative;
}

.testimonial-content::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 30px;
  width: 20px;
  height: 20px;
  background-color: white;
  transform: rotate(45deg);
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.02);
}

.testimonial-content p {
  font-style: italic;
  color: var(--text-light);
}

.testimonial-author {
  display: flex;
  align-items: center;
  padding-left: 30px;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.author-info h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.author-info p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.prev-btn,
.next-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.prev-btn:hover,
.next-btn:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.testimonial-dots {
  display: flex;
  gap: 10px;
  margin: 0 20px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--border-color);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: var(--primary-color);
}

/* CTA Section */
.cta {
  background-color: rgba(16, 25, 109, 0.491);
  color: white;
  text-align: center;
  padding: 80px 0;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta .btn-primary {
  background-color: white;
  color: var(--primary-color);
}

.btn-contact {
  background-color: white;
  color: rgb(115, 96, 147);
}

.btn-contact:hover {
  background-color: rgba(54, 53, 62, 0.466);
  color: white;
}

.cta .btn-primary:hover {
  background-color: var(--bg-dark);
  color: white;
}

/* Contact Section */
.contact-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
}

.contact-item i {
  font-size: 24px;
  color: var(--primary-color);
  margin-right: 15px;
  margin-top: 5px;
}

.contact-item h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.contact-item p {
  color: var(--text-light);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: rgba(37, 99, 235, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

.contact-form {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group textarea {
  height: 150px;
  resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-success {
  text-align: center;
  padding: 30px;
  display: none;
}

.form-success i {
  font-size: 60px;
  color: var(--success-color);
  margin-bottom: 20px;
}

.form-success p {
  font-size: 1.2rem;
  color: var(--text-color);
}

/* Footer */
footer {
  background-color: rgba(5, 13, 86, 0.753);
  color: white;
  padding-top: 80px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}
.footer-logo img {
  width: 80px;
  height: 80px;
}

.footer-logo h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.footer-logo span {
  color: #f16436;
}

.footer-logo p {
  color: #b2b9c3;
  margin-bottom: 20px;
}

.footer-links h3,
.footer-services h3,
.footer-newsletter h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h3::after,
.footer-services h3::after,
.footer-newsletter h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-links ul,
.footer-services ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a,
.footer-services a {
  color: #ced4dd;
  transition: var(--transition);
}

.footer-links a:hover,
.footer-services a:hover {
  color: white;
  padding-left: 5px;
}

.footer-newsletter p {
  color: #b2b9c3;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  height: 45px;
}

.newsletter-form input {
  flex: 1;
  padding: 0 15px;
  border: none;
  border-radius: 5px 0 0 5px;
  font-family: inherit;
}

.newsletter-form button {
  width: 45px;
  background-color: rgba(93, 93, 255, 0.438);
  color: white;
  border: none;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background-color: var(--primary-dark);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  color: #b2b9c3;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: #94a3b8;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: white;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 50px;
  height: 50px;
  font-size: 28px;
  background-color: rgb(19, 180, 19);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  transition: var(--transition);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-dark);
  transform: translateY(-5px);
}

/* Animation Classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }

  .process-timeline::before {
    left: 40px;
  }

  .process-icon {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 768px) {
  header {
    padding: 15px 0;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background-color: white;
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 20px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    z-index: 999;
  }

  .nav-links.active {
    right: 0;
  }

  .hamburger {
    display: flex;
    z-index: 1000;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }

  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    margin-top: 40px;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .process-icon {
    width: 70px;
    height: 70px;
  }

  .process-content {
    padding: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .btn {
    width: 100%;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .feature-card,
  .service-card,
  .portfolio-item {
    margin-left: 10px;
    margin-right: 10px;
  }

  .process-icon {
    width: 60px;
    height: 60px;
  }

  .process-icon i {
    font-size: 25px;
  }

  .process-content {
    padding: 15px;
    margin-left: 15px;
  }

  .back-to-top {
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-float {
    width: 40px;
    height: 40px;
    bottom: 80px;
    right: 20px;
  }
}
