/* Base styles */
:root {
  --primary-color: #00a651; /* Brighter green for Roshdy Pharmacies */
  --primary-dark: #006838; /* Darker green for contrast */
  --secondary-color: #f7941d; /* Orange accent color */
  --secondary-light: #ffb74d; /* Lighter orange */
  --text-color: #333;
  --text-light: #666;
  --light-color: #fff;
  --dark-color: #000;
  --background-light: #f9f9f9;
  --background-lighter: #f0f7f4;
  --background-dark: #00a651;
  --gray-light: #eee;
  --gray: #ddd;
  --box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

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

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

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

.btn {
  display: inline-block;
  padding: 14px 32px;
  background-color: var(--secondary-color);
  color: var(--light-color);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  border-radius: 50px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(247, 148, 29, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--primary-color);
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  z-index: -1;
}

.btn:hover {
  box-shadow: 0 7px 20px rgba(247, 148, 29, 0.4);
  transform: translateY(-3px);
}

.btn:hover:before {
  width: 100%;
}

.btn-primary {
  background-color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(0, 166, 81, 0.3);
}

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

.btn-primary:hover {
  box-shadow: 0 7px 20px rgba(0, 166, 81, 0.4);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
  box-shadow: none;
}

.btn-outline:hover {
  color: var(--light-color);
  box-shadow: 0 7px 20px rgba(247, 148, 29, 0.2);
}

section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  font-weight: 700;
}

.section-title span {
  color: var(--secondary-color);
}

.section-title::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background: var(--secondary-color);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background: var(--secondary-color);
  border-radius: 50%;
  bottom: -21px;
  left: 50%;
  transform: translateX(-50%);
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  max-width: 700px;
  margin: -20px auto 40px;
  font-size: 1.1rem;
}

/* Header styles */
.header {
  background-color: var(--primary-color);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.language-toggle {
  color: var(--light-color);
  font-size: 14px;
}

.language-toggle a {
  opacity: 0.7;
  transition: var(--transition);
  padding: 3px 8px;
  border-radius: 3px;
}

.language-toggle a:hover {
  opacity: 1;
  color: var(--secondary-color);
  background-color: rgba(255, 255, 255, 0.05);
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  color: var(--light-color);
  font-size: 14px;
  opacity: 0.7;
  transition: var(--transition);
}

.social-icons a:hover {
  opacity: 1;
  color: var(--secondary-color);
}

.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo img {
  height: 60px;
  width: auto;
}

.nav-menu {
  display: flex;
  gap: 20px;
}

.nav-menu a {
  color: var(--light-color);
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 4px;
  transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--secondary-color);
  background-color: rgba(255, 255, 255, 0.05);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--light-color);
  font-size: 24px;
  cursor: pointer;
}

/* Hero section */
.hero {
  height: 100vh;
  position: relative;
  color: var(--light-color);
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  animation: zoomEffect 20s infinite alternate;
}

@keyframes zoomEffect {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 166, 81, 0.9) 0%, rgba(0, 104, 56, 0.95) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  animation: fadeInUp 1s;
}

.hero-tagline {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--secondary-color);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: fadeInDown 0.8s;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 20px;
  animation: fadeInDown 1s;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 1.8rem;
  margin-bottom: 20px;
  animation: fadeInUp 1s;
  font-weight: 300;
  opacity: 0.9;
}

.hero-text {
  max-width: 600px;
  margin: 0 auto 30px;
  animation: fadeInUp 1.1s;
}

.hero-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  animation: fadeInUp 1.2s;
}

.hero-features {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  padding: 20px 0;
  z-index: 2;
  animation: fadeInUp 1.3s;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border-radius: 10px;
  transition: var(--transition);
}

.feature-box:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background-color: var(--secondary-color);
  color: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.feature-content h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.feature-content p {
  font-size: 0.9rem;
  opacity: 0.8;
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-features {
    position: relative;
    margin-top: 40px;
  }

  .hero {
    height: auto;
    min-height: 100vh;
    padding: 120px 0 40px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1.4rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .hero-tagline {
    font-size: 0.9rem;
  }

  .hero-text p {
    font-size: 1rem;
  }
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--light-color);
  font-size: 12px;
  opacity: 0.7;
  transition: var(--transition);
  animation: bounce 2s infinite;
}

.scroll-down:hover {
  opacity: 1;
}

.scroll-down i {
  margin-top: 8px;
  font-size: 16px;
}

/* About section */
.about {
  background-color: var(--light-color);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background-color: rgba(0, 166, 81, 0.05);
  border-radius: 50%;
  top: -150px;
  left: -150px;
  z-index: 0;
}

.about::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background-color: rgba(247, 148, 29, 0.05);
  border-radius: 50%;
  bottom: -100px;
  right: -100px;
  z-index: 0;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.about-image::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 166, 81, 0.2), rgba(0, 104, 56, 0.3));
  opacity: 0;
  transition: var(--transition);
  z-index: 1;
}

.about-image:hover::before {
  opacity: 1;
}

.about-image img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-text {
  padding-right: 20px;
}

.about-text h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 2.2rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.about-text h2::after {
  content: '';
  position: absolute;
  width: 50%;
  height: 3px;
  background-color: var(--secondary-color);
  bottom: -10px;
  left: 0;
}

.about-text p {
  margin-bottom: 25px;
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 40px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  background-color: var(--background-lighter);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  color: var(--light-color);
  font-size: 20px;
  margin-right: 15px;
  background-color: var(--primary-color);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 166, 81, 0.2);
  flex-shrink: 0;
}

.feature-text h4 {
  margin-bottom: 8px;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.1rem;
}

.feature-text p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .about-image {
    max-width: 600px;
    margin: 0 auto 40px;
  }

  .about-text {
    padding-right: 0;
    text-align: center;
  }

  .about-text h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .about-features {
    grid-template-columns: 1fr;
  }
}

/* Services section */
.services {
  background-color: var(--background-lighter);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background-color: rgba(247, 148, 29, 0.05);
  border-radius: 50%;
  top: -200px;
  right: -200px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.service-card {
  background-color: var(--light-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  position: relative;
  top: 0;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.service-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  z-index: 1;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-content {
  padding: 30px;
  position: relative;
}

.service-icon {
  position: absolute;
  top: -30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 5px 15px rgba(0, 166, 81, 0.3);
  z-index: 2;
}

.service-content h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.4rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.service-content h3::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: var(--secondary-color);
  bottom: 0;
  left: 0;
}

.service-content p {
  margin-bottom: 25px;
  color: var(--text-light);
  line-height: 1.7;
}

.service-card .btn {
  padding: 10px 25px;
  font-size: 0.9rem;
}

/* Vision & Mission section */
.vision-mission {
  background-color: var(--light-color);
  position: relative;
  overflow: hidden;
}

.vision-mission::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background-color: rgba(0, 166, 81, 0.05);
  border-radius: 50%;
  bottom: -150px;
  left: -150px;
}

.vision-mission-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 1;
}

.vision-card, .mission-card {
  background-color: var(--light-color);
  padding: 40px;
  border-radius: 15px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  position: relative;
  border: 1px solid var(--gray-light);
}

.vision-card:hover, .mission-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.vision-card::before, .mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  border-radius: 15px 15px 0 0;
}

.vision-card h3, .mission-card h3 {
  color: var(--primary-color);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.vision-card h3 i, .mission-card h3 i {
  margin-right: 15px;
  color: var(--secondary-color);
  font-size: 1.8rem;
}

.vision-card h3::after, .mission-card h3::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 3px;
  background: var(--secondary-color);
  bottom: 0;
  left: 0;
}

.vision-card p, .mission-card p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1.05rem;
}

/* Contact section */
.contact {
  background-color: var(--background-lighter);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  background-color: rgba(247, 148, 29, 0.05);
  border-radius: 50%;
  bottom: -175px;
  right: -175px;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  position: relative;
  z-index: 1;
}

.contact-info {
  padding-right: 20px;
}

.contact-info h3 {
  color: var(--primary-color);
  margin-bottom: 25px;
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.contact-info h3::after {
  content: '';
  position: absolute;
  width: 50%;
  height: 3px;
  background-color: var(--secondary-color);
  bottom: -10px;
  left: 0;
}

.contact-info p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 1.05rem;
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  background-color: var(--light-color);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.contact-icon {
  color: var(--light-color);
  font-size: 20px;
  margin-right: 20px;
  background-color: var(--primary-color);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 166, 81, 0.2);
  flex-shrink: 0;
}

.contact-text {
  flex: 1;
}

.contact-text h4 {
  margin-bottom: 8px;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.1rem;
}

.contact-text p {
  margin-bottom: 0;
  color: var(--text-light);
  line-height: 1.5;
}

.contact-form {
  background-color: var(--light-color);
  padding: 40px;
  border-radius: 15px;
  box-shadow: var(--box-shadow);
  border: 1px solid var(--gray-light);
}

.contact-form h3 {
  color: var(--primary-color);
  margin-bottom: 25px;
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.contact-form h3::after {
  content: '';
  position: absolute;
  width: 50%;
  height: 3px;
  background-color: var(--secondary-color);
  bottom: -10px;
  left: 0;
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-control {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid var(--gray);
  border-radius: 8px;
  font-size: 16px;
  transition: var(--transition);
  background-color: var(--background-lighter);
}

.form-control:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 166, 81, 0.1);
  background-color: var(--light-color);
}

.form-label {
  position: absolute;
  top: 15px;
  left: 20px;
  color: var(--text-light);
  transition: var(--transition);
  pointer-events: none;
  font-size: 16px;
}

.form-control:focus + .form-label,
.form-control:not(:placeholder-shown) + .form-label {
  top: -12px;
  left: 15px;
  font-size: 12px;
  background-color: var(--light-color);
  padding: 0 5px;
  color: var(--primary-color);
}

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

.contact-form .btn {
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
  margin-top: 10px;
}

@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-info {
    padding-right: 0;
    text-align: center;
    margin-bottom: 30px;
  }

  .contact-info h3::after,
  .contact-form h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .contact-form h3 {
    text-align: center;
    display: block;
  }
}

/* Footer */
.footer {
  background-color: var(--primary-dark);
  color: var(--light-color);
  padding: 80px 0 20px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background-color: rgba(255, 255, 255, 0.02);
  border-radius: 50%;
  top: -200px;
  right: -200px;
}

.footer::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background-color: rgba(255, 255, 255, 0.02);
  border-radius: 50%;
  bottom: -150px;
  left: -150px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.footer-col h3 {
  color: var(--secondary-color);
  font-size: 1.5rem;
  margin-bottom: 25px;
  position: relative;
  font-weight: 600;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background: var(--secondary-color);
  bottom: -10px;
  left: 0;
}

.footer-menu a {
  display: block;
  color: var(--light-color);
  margin-bottom: 10px;
  transition: var(--transition);
}

.footer-menu a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

.contact-info {
  margin-top: 20px;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.contact-info i {
  margin-right: 10px;
  color: var(--secondary-color);
  font-size: 20px;
}

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

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

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

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-10px) translateX(-50%);
  }
  60% {
    transform: translateY(-5px) translateX(-50%);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(247, 148, 29, 0.4);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(247, 148, 29, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(247, 148, 29, 0);
  }
}

/* Media Queries */
@media (max-width: 992px) {
  .about-container,
  .contact-container {
    grid-template-columns: 1fr;
  }

  .about-image {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .header-main {
    padding: 10px 0;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    right: -100%;
    flex-direction: column;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--primary-color);
    padding: 20px;
    transition: var(--transition);
    z-index: 1000;
    gap: 10px;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu a {
    padding: 12px 15px;
    width: 100%;
    text-align: center;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-menu.active {
    right: 0;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  section {
    padding: 60px 0;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-social {
    justify-content: center;
  }

  .contact-info li {
    justify-content: center;
  }

  .contact-info i {
    margin-right: 10px;
  }
}
