/* Reset */
* {
  margin-top: 0;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #fff;
  line-height: 1.6;
  overflow-y: auto;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
}

/* Scrollbar styling for Webkit browsers */
body::-webkit-scrollbar {
  width: 12px;
}

body::-webkit-scrollbar-track {
  background: rgba(255, 0, 0, 0.1);
  border-radius: 10px;
}

body::-webkit-scrollbar-thumb {
  background-color: rgba(255, 0, 0, 0.6);
  border-radius: 10px;
  border: 3px solid rgba(255, 0, 0, 0.1);
}

body::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255, 0, 0, 0.8);
}

/* Scrollbar styling for Firefox */
body {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 0, 0, 0.6) rgba(255, 0, 0, 0.1);
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url('images/layered-waves-haikei.svg');
  background-size: cover;
  background-position: center;
  animation: fadeIn 1.5s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
     rgba(255, 0, 0, 0.4) 0%,
     rgba(255, 255, 255, 0.2) 0%,
     rgba(255, 255, 255, 0.0) 0%
  );
}

.moving-blur {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.35), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: top 0.15s ease-out, left 0.15s ease-out;
}

/*logo-nav-wrapper*/
.logo-nav-wrapper {
  position: absolute;
  top: 5px;
  left: 30px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.logo {
  position: static;
  margin: 0;
}

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.5));
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Hero Content */
.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  animation: slideUp 1s ease-in-out;
}

@keyframes slideUp {
  from { transform: translate(-50%, 30%); opacity: 0; }
  to { transform: translate(-50%, -50%); opacity: 1; }
}

.content h1 {
  font-size: 4rem;
  color: #ff0000;
  margin-bottom: 1rem;
  animation: fadeIn 1s ease 0.3s both, textBounce 2s ease-in-out infinite;
}

@keyframes textBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.content h2 {
  font-size: 2.5rem;
  color: #000000;
  margin-bottom: 1rem;
  animation: fadeIn 1s ease 0.6s both;
}

.content p {
  font-size: 1.2rem;
  color: #000000;
  max-width: 600px;
  margin: 0 auto;
  animation: fadeIn 1s ease 0.9s both;
}

/* Buttons */
.buttons {
  margin-top: 2rem;
  animation: fadeIn 1s ease 1.2s both;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.learn-more {
  background-color: rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #ffffff;
  margin-right: 1rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 30px;
  transition: all 0.3s ease;
}

.sign-in {
  background: rgba(26, 26, 26, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.469);
  color: #000000;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 30px;
  transition: all 0.3s ease;
}

.learn-more:hover {
  background-color: rgba(255, 255, 255, 0.743);
  color:#ff0000;;
  border-color: rgba(255, 255, 255, 0.6);
}

.sign-in:hover {
  background-color: rgba(0, 0, 0, 0.4);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
}

/* Right Navigation Links */
.navigation-links {
  position: static;
  font-family: 'Poppins', sans-serif;
  transform: none;
  animation: slideInRight 1.5s ease-in-out;
}

/* Tech Icons Animation */
.tech-icons-animation {
  position: relative;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

.tech-icons-animation i {
  font-size: 3rem;
  color: #ff0000;
  opacity: 1;
  position: absolute;
  animation: levitate 3s infinite ease-in-out;
  z-index: 10000;
}

.tech-icons-animation i:nth-child(1) {
  top: 120px;
  left: 20%;
}
.tech-icons-animation i:nth-child(2) {
  top: 80px;
  left: 45%;
  transform: translateX(-50%);
}
.tech-icons-animation i:nth-child(3) {
  top: 120px;
  left: 70%;
}
.tech-icons-animation i:nth-child(4) {
  top: 250px;
  left: 5%;
  transform: translateY(-50%);
}
.tech-icons-animation i:nth-child(5) {
  top: 250px;
  right: 5%;
  transform: translateY(-50%);
}
.tech-icons-animation i:nth-child(6) {
  top: 140px;
  left: 30%;
}


@keyframes levitate {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes slideInRight {
  from { right: -100px; opacity: 0; }
  to { right: 20px; opacity: 1; }
}

.navigation-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
}

.navigation-links li {
  margin: 0;
  position: relative;
}

.navigation-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 15px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.navigation-links a .icon-label {
  display: none;
  font-weight: 400;
  font-size: 1rem;
  color: #000;
  white-space: nowrap;
}

.navigation-links a:hover .icon-label {
  display: inline;
}

.navigation-links a::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #ff0000;
  transition: width 0.4s ease;
}

.navigation-links a:hover {
  color: #ff0000;
  transform: translateX(-5px);
}

.navigation-links a:hover::before {
  width: 100%;
}

/* Search Icon */
.search-icon {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) translateX(120px); 
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}

/* Footer */
.designed-by {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  padding: 8px 16px;
  border-radius: 10px;
  color: #fff;
  font-size: 0.9rem;
}

.clean-services {
  background: #fff;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.clean-services .container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* Services Section */
.services-wrapper {
  background-color: #fff;
  padding: 80px 20px 140px 20px; /* increased bottom padding to increase height */
  font-family: 'Poppins', sans-serif;
  text-align: center;
  background-image: url('./images/layered-waves-haikei.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-title .highlight {
  color: #ff2f2f;
}

.section-subtitle {
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .section-subtitle {
    font-size: 0.9rem;
  }
}

.services-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  box-shadow: 0 4px 30px rgba(255, 255, 255, 0.1);
  padding: 40px 30px;
  width: 320px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.icon-circle {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  background: linear-gradient(145deg, #ff7a7a, #ff2f2f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(255, 47, 47, 0.3);
}

.icon-circle img {
  width: 40px;
  height: 40px;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #111;
}

.service-card p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.contact-btn {
  background: #ff2f2f;
  font-family: 'poppins', sans-serif;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px 20px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-btn:hover {
  background: #ffffff;
  border: 0.5px solid #000000;
}

/* Services Header */
.services-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.header-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.services-header h2 {
  font-size: 2.8rem;
  color: #ff2e2e;
  margin-bottom: 10px;
  font-weight: 700;
  animation: fadeIn 1.5s ease forwards;
}

.services-header p {
  animation: fadeIn 1.5s ease forwards;
}

.service-card {
  animation: fadeIn 1.5s ease forwards;
}

.services-slideshow {
  font-size: 2rem;
  color: #000000;
  font-weight: 600;
}
/* Services Header Paragraph */
.services-header p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Grid Layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

/* Card Styling */
.service-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  border: 0.5px solid #ababab;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: all 0.3s ease;
  animation: floatUp 3s ease-in-out infinite;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7), inset 0 0 15px rgba(255, 0, 0, 0.3);
  background-color: #f9f9f9;
  animation-play-state: paused;
  animation: pulseShadow 1.5s infinite alternate;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

@keyframes pulseShadow {
  0% {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  }
  100% {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  }
}

@keyframes floatUp {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Icon Styling */
.icon-wrap {
  background: linear-gradient(145deg, #fff, #ff3939);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.icon-wrap img {
  width: 40px;
  height: 40px;
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.service-card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

/*end-toend services*/
.end-to-end-services {
  padding: 60px 20px;
  background-color: #000; 
  font-family: 'Poppins', sans-serif;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 1;
}

.services-title h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.services-title .highlight {
  color: #ff0000;
}

.services-title .fade {
  color: #ccc;
  font-weight: 400;
  margin: 0 5px;
}

.services-title p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 45px;
  line-height: 1.6;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

.card {
  background-color: #0a0a0a;
  border-radius: 16px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  animation: floatUp 3s ease-in-out infinite;
}

.card:hover {
  transform: translateY(-5px);
  animation-play-state: paused;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.card-content {
  padding: 40px 30px;
  background-color: #0a0a0a;
}

.card-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.card-content p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.5;
  margin-bottom: 15px;
}

.contact-btn {
  background-color: #ff2c00;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-btn:hover {
  background-color: #ffffff;
  color: #ff2c00;
}

@keyframes floatUp {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Form Section */
.review-h2 {
  font-size: 2.5rem;
  color: #ff3d3d;
  text-align: center;
  margin-bottom: 20px;
  font-family: 'poppins';
  font-weight: 500;
}

/* Footer Styles */
.site-footer {
  background-color: #000;
  padding: 20px 0;
  text-align: center;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  border-top: 1px solid #ff3d3d;
  margin-top: 0;
}

.end-to-end-services > *:last-child,
.robot-review-section > *:last-child,
.review-display > *:last-child {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.review-h2,
.review-display-h2 {
  margin-bottom: 0 !important;
}

.custom-size {
  font-size: 2rem;
  font-weight: 700;
  color: #ff0000;
  font-family: 'Poppins', sans-serif;
  text-shadow: 2px 2px 4px rgb(255, 255, 255);}

.custom-font {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: #ff0000;
}

.site-footer .social-icons {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.site-footer .social-icons a {
  color: #fff;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.site-footer .social-icons a:hover {
  color: #ff0000;
}

.site-footer .footer-content p {
  margin: 0;
  font-size: 1rem;
}
.robo-hand{
  color: #ff3d3d;
  
}
.robot-review-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 60px auto;
  padding: 40px;
  background: url('./images/robott-review.gif') no-repeat left center;
  background-size: contain;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.692);
  border-radius: 16px;
  font-family: 'Poppins', sans-serif;
}

.review-form-section {
  max-width: 400px;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  animation: floatUpDown 3s ease-in-out infinite;
  margin-right: 100px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Form Section */
.review-h2 {
  font-size: 2rem;
  color: #ff3d3d;
  text-align: center;
  margin-bottom: 20px;
}

.robot-review-section {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  max-width: 1000px;
  margin: 60px auto;
  padding: 40px;
  background: 
    url('./images/robo.gif') center center no-repeat, 
    url('./images/polygon-scatter-haikei.svg') center center no-repeat; 
  background-size: contain, /* for SVG */
                   auto 80%; /* for the GIF */
  background-size: cover,cover;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.664);
  border-radius: 16px;
  font-family: 'Poppins', sans-serif;
  position: relative;
}

@keyframes floatHand {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(15deg);
  }
}

.review-form-section {
  max-width: 400px;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}


.review-display-h2{
  color: #000000;
  font-family: 'poppins', sans-serif;
  font-weight: 500;
}
.review-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

.review-form input,
.review-form textarea,
.review-form button {
  width: 100%;
  max-width: 400px;
}

.review-form input,
.review-form textarea {
  font-family:'Poppins', sans-serif;
  padding: 14px;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.review-form button {
  background-color: #ff4141;
  font-family: 'poppins';
  color: white;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 20px; /* Added margin bottom to give space below submit button */
}

.review-display-h2 {
  margin-bottom: 40px !important; /* Increased margin bottom for spacing */
}

/* Star rating logic */
.star-rating {
  display: flex;
  gap: 8px;
  font-size: 1.8rem;
  justify-content: center;
}

.star {
  cursor: pointer;
  color: #ccc;
  transition: color 0.3s ease;
}

.star.hovered,
.star.selected {
  color: gold;
}

/* Review Display Section */
.review-display {
  max-width: 1200px;
  margin: 80px auto;
  padding: 40px 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

/* Responsive Styles for Mobile */
@media (max-width: 768px) {
  .hero-section {
    height: auto;
    padding: 40px 20px;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .services-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 40px 20px;
  }

  .content {
    position: static;
    transform: none;
    padding: 0 10px;
  }

  .content h1 {
    font-size: 2.5rem;
  }

  .content h2 {
    font-size: 1.8rem;
  }

  .content p {
    font-size: 1rem;
    max-width: 100%;
  }

  .buttons {
    margin-top: 1.5rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .navigation-links {
    position: static;
    margin: 20px 0;
    text-align: center;
  }

  .navigation-links ul {
    flex-direction: row;
    justify-content: center;
    gap: 15px;
  }

  .navigation-links a {
    font-size: 1rem;
  }

  .navigation-links a .icon-label {
    display: none;
  }

  .tech-icons-animation {
    display: none;
  }

  .services-cards {
    flex-direction: column;
    align-items: center;
  }

  .service-card {
    width: 90% !important;
    margin-bottom: 20px;
  }

  .end-to-end-services .services-cards {
    grid-template-columns: 1fr !important;
  }

  .card {
    width: 90% !important;
    margin: 0 auto 20px auto;
  }

  .robot-review-section {
    flex-direction: column;
    padding: 20px;
    margin: 40px 10px;
  }

  .review-form-section {
    max-width: 100% !important;
    margin: 0 0 20px 0 !important;
    padding: 20px !important;
  }

  .review-display {
    padding: 20px 10px !important;
    margin: 40px 10px !important;
  }

  .review-grid {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }

  .review-card {
    padding: 20px !important;
  }

  .site-footer {
    padding: 15px 10px !important;
  }
}

@media (max-width: 480px) {
  .content h1 {
    font-size: 1.8rem;
  }

  .content h2 {
    font-size: 1.2rem;
  }

  .content p {
    font-size: 0.9rem;
  }

  .btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .navigation-links ul {
    gap: 10px;
  }

  .service-card, .card {
    width: 100% !important;
  }

  .review-form-section {
    padding: 15px !important;
  }

  .review-display {
    padding: 15px 5px !important;
  }
}

.review-display h2 {
  font-size: 2rem;
  margin-bottom: 32px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.review-card {
  background: #e91c00;
  color: white;
  padding: 28px 24px;
  border-radius: 16px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.review-card .stars {
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.review-card p {
  font-style: italic;
  margin-bottom: 16px;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.reviewer img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: white;
  padding: 2px;
}

.disclaimer {
  font-size: 0.85rem;
  color: #999;
  margin-top: 24px;
}

/* --- Responsive Fixes: Mobile View Tweaks --- */
@media (max-width: 768px) {
  .hero-section {
    height: auto;
    padding-top: 80px;
    padding-bottom: 40px;
    background-size: cover;
    background-position: center;
  }

  .logo-nav-wrapper {
    position: static;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
  }

  .logo img {
    height: 40px;
  }

  .navigation-links ul {
    flex-direction: row;
    gap: 12px;
    justify-content: center;
  }

  .navigation-links a {
    font-size: 0.95rem;
    padding: 8px;
  }

  .content {
    position: static;
    transform: none;
    padding: 10px;
  }

  .content h1 {
    font-size: 2rem;
  }

  .content h2 {
    font-size: 1.3rem;
  }

  .content p {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .buttons {
    margin-top: 1rem;
  }

  .btn {
    padding: 10px 18px;
    font-size: 0.9rem;
  }

  .tech-icons-animation {
    display: none;
  }

  .designed-by {
    position: static;
    margin: 10px auto;
    font-size: 0.8rem;
    padding: 6px 12px;
    border-radius: 8px;
    max-width: 80%;
    text-align: center;
  }

  .services-header {
    padding: 0 15px;
  }

  .services-cards {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 20px !important;
  }

  .service-card {
    width: 90% !important;
    padding: 24px 16px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 1rem;
    color: #444;
  }

  .end-to-end-services .services-cards {
    grid-template-columns: 1fr !important;
  }

  .card {
    width: 90% !important;
    margin: 0 auto 20px;
  }

  .robot-review-section {
    flex-direction: column;
    padding: 20px 10px;
    margin: 40px 10px;
  }

  .review-form-section {
    width: 100%;
    padding: 20px !important;
    margin-bottom: 20px;
  }

  .review-display {
    padding: 20px 10px;
  }

  .site-footer {
    padding: 15px 10px;
  }
}
