/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap");

/* Reset & Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  overflow-x: hidden;
}

/* Utility Classes */
a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  transition: all 0.3s ease;
}

/* Loading Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Floating Top Button */
.top-btn {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 12px 14px;
  border-radius: 50%;
  display: none;
  z-index: 1000;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  transition: all 0.3s ease;
  animation: bounce 2s infinite;
}

.top-btn.show {
  display: block;
  animation: fadeInUp 0.5s ease;
}

.top-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 1000;
  animation: pulse 2s infinite;
}

.whatsapp-float img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
}

.whatsapp-float img:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

/* Header 1 */
.header-1 {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: #fff;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  animation: slideInLeft 0.8s ease;
}

.header-1 .connect {
  display: flex;
  gap: 20px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.header-1 .contact {
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.header-1 .contact:hover {
  color: #3498db;
  transform: translateY(-2px);
}

.header-1 .contact span.material-symbols-outlined {
  vertical-align: middle;
  margin-right: 8px;
  transition: all 0.3s ease;
}

.header-1 .whatsApp {
  animation: fadeInUp 0.8s ease 0.4s both;
}

.header-1 .whatsApp a {
  color: #25d366;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 25px;
  background: rgba(37, 211, 102, 0.1);
  transition: all 0.3s ease;
}

.header-1 .whatsApp a:hover {
  background: rgba(37, 211, 102, 0.2);
  transform: translateY(-2px);
}

/* Header 2 */
.header-2 {
  background: #fff;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e0e6ed;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  animation: slideInRight 0.8s ease;
}

.header-2 img.AI-image {
  width: 120px;
  height: auto;
  margin-right: 15px;
  transition: all 0.3s ease;
}

.header-2 img.AI-image:hover {
  transform: scale(1.05);
}

.header-2 .shop-name {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header-2 .h-2-contact a {
  font-size: 1.1rem;
  color: #3498db;
  display: flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 25px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
  transition: all 0.3s ease;
}

.header-2 .h-2-contact a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.header-2 .h-2-contact a span.material-symbols-outlined {
  margin-right: 8px;
}

/* Main Section */
main {
  padding: 40px 20px;
  animation: fadeInUp 1s ease;
}

/* Main Section - Specification & Form */
.main {
  max-width: 1200px;
  margin: 0 auto;
}

.main-section {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.main-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

/* Specification */
.specification {
  flex: 1 1 350px;
  animation: slideInLeft 0.8s ease 0.3s both;
}

.specification .about-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 12px 24px;
  margin-bottom: 20px;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.specification .about-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.specification .spec-para {
  margin: 20px 0;
  font-size: 1.1rem;
  color: #34495e;
  font-weight: 500;
}

.specification .spec-list {
  list-style: none;
  margin-left: 0;
  margin-bottom: 25px;
}

.specification .spec-list li {
  padding: 8px 0;
  position: relative;
  padding-left: 25px;
  color: #2c3e50;
  transition: all 0.3s ease;
}

.specification .spec-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #27ae60;
  font-weight: bold;
  font-size: 1.2rem;
}

.specification .spec-list li:hover {
  color: #3498db;
  transform: translateX(5px);
}

.specification .main-btn {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.contact-btn,
.contact-btn-wp {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: #fff;
  padding: 14px 28px;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2);
}

.contact-btn-wp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.contact-btn:hover,
.contact-btn-wp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.contact-btn-wp:hover {
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

/* Form Styles */
.form {
  flex: 1 1 350px;
  animation: slideInRight 0.8s ease 0.3s both;
}

.form-left {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-left .enquiry {
  font-size: 1.4rem;
  margin-bottom: 25px;
  font-weight: 700;
  color: #2c3e50;
  text-align: center;
}

.form-inputs {
  width: 100%;
  padding: 15px 20px;
  margin-bottom: 20px;
  border: 2px solid #e0e6ed;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fff;
}

.form-inputs:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
  transform: translateY(-2px);
}

.form-submit {
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
  color: #fff;
  padding: 15px 30px;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  width: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(39, 174, 96, 0.2);
}

.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(39, 174, 96, 0.3);
}

/* Cards Section */
.cards {
  margin: 60px auto;
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  animation: fadeInUp 0.8s ease 0.5s both;
}

.card-spec {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  flex: 1 1 300px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card-spec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.card-spec:hover::before {
  transform: scaleX(1);
}

.card-spec:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.card-card {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.card-card img.png-image {
  width: 50px;
  height: 50px;
  transition: all 0.3s ease;
}

.card-spec:hover .card-card img.png-image {
  transform: scale(1.1) rotate(5deg);
}

.card-head {
  font-weight: 700;
  font-size: 1.2rem;
  color: #2c3e50;
}

/* Section Titles */
.sercives,
.solutions {
  text-align: center;
  font-weight: 700;
  font-size: 3.5rem;
  margin: 60px 0 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease;
}

.solutions {
  font-size: 1.4rem;
  color: #3498db;
  margin: 10px 0 40px;
}

/* Image and Text Section */
.img-1 {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 40px;
  gap: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 60px;
  animation: slideInLeft 0.8s ease;
}

.img-1 img.affor-img {
  width: 100%;
  max-width: 450px;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.img-1:hover img.affor-img {
  transform: scale(1.05);
}

.affordable-services {
  flex: 1;
}

.affordable-services h2 {
  margin-bottom: 20px;
  font-size: 2rem;
  color: #2c3e50;
  font-weight: 700;
}

.affordable-services p.reliable-Para {
  margin-bottom: 25px;
  font-size: 1.1rem;
  color: #34495e;
  line-height: 1.8;
}

/* Grid Section */
.keyword {
  color: #f39c12;
  font-weight: 700;
}

.grid-container {
  display: grid;
  gap: 30px;
  margin: 60px auto;
  max-width: 1200px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  padding: 0 20px;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.grid-item {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.grid-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f39c12 0%, #e67e22 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.grid-item:hover::before {
  transform: scaleX(1);
}

.grid-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.grid-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.grid-item:hover img {
  transform: scale(1.05);
}

.grid-item h3 {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #2c3e50;
  line-height: 1.6;
}

.grid-item .contact-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.grid-item .contact-buttons button {
  flex: 1;
  padding: 12px 20px;
  font-size: 0.9rem;
  border-radius: 25px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
}

/* About Us Section */
.about-us {
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 40px;
  background: #fff;
  border-radius: 20px;
  margin: 60px 0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  animation: slideInRight 0.8s ease;
}

.about-us img {
  width: 100%;
  max-width: 450px;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.about-us:hover img {
  transform: scale(1.05);
}

.about-us-div {
  flex: 1;
}

.about-us-div h1 {
  margin-bottom: 20px;
  font-size: 2.2rem;
  color: #2c3e50;
  font-weight: 700;
}

.about-us-div p.assistance {
  margin-bottom: 25px;
  font-size: 1.1rem;
  color: #34495e;
  line-height: 1.8;
}

/* Choose Us Section */
.choose-us {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
  padding: 40px;
  background: #fff;
  border-radius: 20px;
  margin-bottom: 60px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  animation: slideInLeft 0.8s ease;
}

.choose-us-div {
  flex: 1;
}

.choose-us-div h1 {
  margin-bottom: 30px;
  font-size: 2.2rem;
  color: #2c3e50;
  font-weight: 700;
}

.chosen-reason {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.chosen-reason > div {
  padding: 20px;
  border-radius: 15px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  transition: all 0.3s ease;
}

.chosen-reason > div:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.chosen-reason > div h2 {
  color: #3498db;
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.chosen-reason > div p {
  color: #34495e;
  line-height: 1.6;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: #fff;
  padding: 50px 20px 30px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
  animation: fadeInUp 0.8s ease;
}

.footer a:hover,
.footer span:hover {
  color: #f39c12;
  transform: translateY(-2px);
}

.footer .sk-logo img {
  width: 300px;
  height: auto;
  transition: all 0.3s ease;
}

.footer .sk-logo img:hover {
  transform: scale(1.05);
}

.footer h2 {
  margin-bottom: 20px;
  font-size: 1.4rem;
  font-weight: 600;
}

.footer ul {
  list-style: none;
}

.footer li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer li:hover {
  transform: translateX(5px);
}

.footer li span.material-symbols-outlined,
.footer li i.fa-brands {
  margin-right: 8px;
}

.footer a {
  color: #ecf0f1;
  transition: all 0.3s ease;
}

/* Copyright Footer */
.footer + div {
  text-align: center;
  padding: 20px;
  background: #1a252f;
  color: #bdc3c7;
  font-size: 0.9rem;
}

/* Popup Button */
#openPopup {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: #fff;
  font-weight: 700;
  padding: 18px 36px;
  border-radius: 30px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
  animation: pulse 2s infinite;
}

#openPopup:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(231, 76, 60, 0.4);
  animation: none;
}

.book-now {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 40px 0;
}

/* Popup Form */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  z-index: 900;
  backdrop-filter: blur(5px);
}

.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  z-index: 1000;
  width: 90%;
  max-width: 450px;
  display: none;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.popup h3 {
  margin-bottom: 25px;
  text-align: center;
  font-size: 1.5rem;
  color: #2c3e50;
  font-weight: 700;
}

.popup form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.popup .close-btn {
  margin-top: 20px;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: #fff;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.popup .close-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

/* Enhanced Media Queries */

/* Large Desktop */
@media (min-width: 1400px) {
  .main-section {
    padding: 60px;
  }

  .sercives {
    font-size: 4rem;
  }
}

/* Desktop */
@media (max-width: 1200px) {
  .header-2 .shop-name {
    font-size: 1.6rem;
  }

  .main-section {
    padding: 30px;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .header-1,
  .header-2 {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .header-1 .connect {
    flex-direction: row;
    justify-content: center;
  }

  .main-section {
    flex-direction: column;
    padding: 30px;
  }

  .about-us,
  .choose-us {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .img-1 {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .sercives {
    font-size: 2.5rem;
  }

  .grid-container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

/* Small Tablet */
@media (max-width: 768px) {
  .header-1 .connect {
    flex-direction: column;
    gap: 10px;
  }

  .header-2 {
    padding: 15px;
  }

  .header-2 .h-2-contact {
    margin-top: 15px;
  }

  .main-section {
    padding: 20px;
  }

  .specification .main-btn {
    flex-direction: column;
  }

  .contact-btn,
  .contact-btn-wp {
    width: 100%;
    text-align: center;
    padding: 15px;
    margin-bottom: 10px;
    font-size: 1rem;
     align-items: center;
    justify-items: center;
  }

  .cards {
    flex-direction: column;
    gap: 20px;
  }

  .grid-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-us,
  .choose-us {
    padding: 25px;
  }

  .footer {
    padding: 30px 20px 20px;
    gap: 30px;
  }

  .footer .sk-logo img {
    width: 250px;
  }

  .popup {
    width: 95%;
    padding: 30px;
  }

  .sercives {
    font-size: 2rem;
  }
}

/* Mobile */
@media (max-width: 600px) {
  body {
    font-size: 14px;
  }

  .header-1 {
    padding: 10px 15px;
  }

  .header-2 {
    padding: 15px;
  }

  .header-2 img.AI-image {
    width: 80px;
  }

  .header-2 .shop-name {
    font-size: 1.3rem;
  }

  main {
    padding: 20px 10px;
  }

  .main-section {
    padding: 20px;
    border-radius: 15px;
  }

  .form-left {
    padding: 20px;
  }

  .cards {
    margin: 40px auto;
  }

   .contact-btn,
  .contact-btn-wp {
    width: 100%;
    text-align: center;
    padding: 15px;
    margin-bottom: 10px;
    font-size: 1rem;
     align-items: center;
    justify-items: center;
  }

  .card-spec {
    padding: 20px;
  }

  .grid-item {
    padding: 20px;
  }

  .grid-item .contact-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .grid-item .contact-buttons button {
    width: 100%;
  }

  .about-us,
  .choose-us {
    padding: 20px;
    margin: 30px 0;
  }

  .choose-us div img {
    width: 100%;
    max-width: 300px;
  }

  .footer {
    padding: 25px 15px 15px;
    text-align: justify;
  }

  .footer .sk-logo img {
    width: 200px;
  }

  .popup {
    width: 95%;
    padding: 25px;
  }

  .sercives {
    font-size: 1.8rem;
  }

  .solutions {
    font-size: 1.1rem;
  }

  .top-btn {
    bottom: 90px;
    right: 15px;
    padding: 10px 12px;
  }

  .whatsapp-float img {
    width: 50px;
    height: 50px;
  }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
  .header-2 .shop-name {
    font-size: 1.1rem;
  }

  .main-section {
    padding: 15px;
  }

  .form-left {
    padding: 15px;
  }


   .contact-btn,
  .contact-btn-wp {
    width: 100%;
    text-align: center;
    padding: 15px;
    margin-bottom: 10px;
    font-size: 1rem;
    align-items: center;
    justify-items: center;
  }

  .card-spec,
  .grid-item {
    padding: 15px;
  }

  .about-us,
  .choose-us {
    padding: 15px;
  }

  .sercives {
    font-size: 1.5rem;
  }

  .popup {
    padding: 20px;
  }
}

/* Scroll Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}
