/* General styles */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  background-color: #1a1a1a;
  color: #fff;
}

/* Navbar */
/* nav {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  background-color: #333;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.nav-links {
  list-style-type: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin: 0 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #f0c040;
} */

/* Hero Section */
.hero-section {
  background-image: url('https://t3.ftcdn.net/jpg/09/84/52/22/240_F_984522242_SyzsRzHJh6wbSe1NaCtbR5HgQLS4aTT4.jpg');
  background-size: cover;
  background-position: center;
  height: 100vh;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: white;
  opacity: 0.9;
}

.hero-section h2 {
  font-size: 50px;
  animation: fadeIn 2s ease-in-out;
}

.hero-section p {
  font-size: 20px;
  margin: 20px 0;
  animation: fadeIn 2s ease-in-out;
}

button {
  background-color: #f0c040;
  color: #333;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 18px;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #f0a030;
}

/* About Section */
.about-section {
  display: flex;
  padding: 100px 20px;
  background-color: #222;
}

.about-section .content {
  flex: 1;
  padding-right: 20px;
}

.about-section h2 {
  font-size: 40px;
  color: #f0c040;
}

.about-section img {
  flex: 1;
  border-radius: 8px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

/* Packages Section */
.packages-section {
  padding: 80px 20px;
  background-color: #333;
  text-align: center;
}

.packages-section h2 {
  font-size: 50px;
  margin-bottom: 40px;
}

.package-card {
  display: inline-block;
  background-color: #444;
  padding: 20px;
  margin: 20px;
  width: 30%;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}

.package-card:hover {
  transform: translateY(-10px);
}

.package-card h3 {
  font-size: 30px;
  color: #f0c040;
}

.package-card p {
  font-size: 18px;
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 20px;
  background-color: #222;
  text-align: center;
}

.testimonial-slider {
  display: flex;
  overflow: hidden;
  justify-content: center;
}

.testimonial-card {
  background-color: #444;
  padding: 20px;
  margin: 0 10px;
  width: 400px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Contact Section */
.contact-section {
  padding: 60px 20px;
  background-color: #333;
}

.contact-section form {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: 0 auto;
}

.contact-section input, .contact-section textarea {
  margin-bottom: 15px;
  padding: 15px;
  border-radius: 5px;
  border: none;
  font-size: 16px;
}

.contact-section button {
  background-color: #f0c040;
  color: #333;
  padding: 15px;
  font-size: 18px;
  cursor: pointer;
}

.contact-section button:hover {
  background-color: #f0a030;
}

/* Footer */
footer {
  padding: 20px;
  text-align: center;
  background-color: #222;
}

footer p {
  margin: 10px 0;
}

footer .social-icons {
  display: flex;
  justify-content: center;
}

footer .social-icons a {
  margin: 0 15px;
  color: white;
  text-decoration: none;
}

footer .social-icons a:hover {
  color: #f0c040;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .nav-links {
      flex-direction: column;
      display: none;
  }

  .nav-links.active {
      display: block;
  }

  .hero-section h2 {
      font-size: 30px;
  }

  .hero-section p {
      font-size: 16px;
  }

  .about-section {
      flex-direction: column;
  }

  .package-card {
      width: 100%;
  }

  .testimonial-slider {
      flex-direction: column;
  }
}

/* Luxury Hotels Section */
.luxury-hotels {
  background-color: #1a1a1a; /* Dark background */
  color: #d4af37; /* Gold text color */
  padding: 60px 0;
}

.luxury-hotels h2 {
  text-align: center;
  font-family: 'Tajawal', sans-serif; /* Example of Saudi font */
  color: #d4af37;
  font-size: 36px;
  margin-bottom: 40px;
}

.container {
  width: 90%;
  margin: 0 auto;
}

.hotel-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.hotel-card {
  background-color: #2a2a2a;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  text-align: center;
}

.hotel-card:hover {
  transform: scale(1.05);
}

.hotel-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.hotel-info {
  padding: 20px;
}

.hotel-info h3 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 10px;
}

.hotel-info .price {
  font-size: 18px;
  margin-bottom: 10px;
}

.hotel-info .rating {
  font-size: 16px;
  margin-bottom: 15px;
}

.hotel-info .description {
  font-size: 14px;
  color: #bbb;
}

/* Hover effect for image */
.hotel-card:hover .hotel-img {
  filter: brightness(70%);
}

/* Make it responsive */
@media (max-width: 768px) {
  .luxury-hotels h2 {
    font-size: 30px;
  }

  .hotel-card {
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .luxury-hotels h2 {
    font-size: 26px;
  }

  .hotel-cards {
    grid-template-columns: 1fr;
  }
}

/* Navbar Styles */
#navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background-color: #1a1a1a; /* Dark Background */
  color: #d4af37; /* Gold Text */
  font-family: 'Tajawal', sans-serif; /* Example Arabic-inspired font */
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

#navbar .logo h1 {
  font-size: 30px;
  color: #d4af37; /* Gold Color */
  margin: 0;
}

#navbar .logo .logo-arabic {
  font-size: 20px;
  font-family: 'Amiri', serif; /* Arabic font style */
  color: #d4af37; /* Gold */
  margin-top: 5px;
}

#navbar .toggle-btn {
  display: none;
  font-size: 30px;
  color: #d4af37; /* Gold */
  cursor: pointer;
}

#navbar .nav-links {
  display: flex;
  list-style: none;
  margin: 0;
}

#navbar .nav-links li {
  margin-right: 30px;
}

#navbar .nav-links li a {
  text-decoration: none;
  color: #d4af37; /* Gold */
  font-size: 18px;
  text-transform: uppercase;
  padding: 10px 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border-radius: 5px;
}

#navbar .nav-links li a:hover {
  background-color: #b89b2c; /* Darker gold */
  transform: scale(1.1);
}

#navbar .nav-links li a:active {
  background-color: #a68b2b; /* Slightly darker gold when clicked */
}

/* Mobile Responsive Styles */
/* @media screen and (max-width: 768px) {
  #navbar .nav-links {
      position: absolute;
      top: 60px;
      right: 0;
      background-color: #1a1a1a;
      width: 100%;
      flex-direction: column;
      display: none;
      padding: 20px 0;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  }

  #navbar .nav-links li {
      margin: 20px 0;
      text-align: center;
  }

  #navbar .nav-links li a {
      font-size: 22px;
  }

  #navbar .toggle-btn {
      display: block;
  }

  #navbar.active .nav-links {
      display: flex;
  }
}

/* Navbar active toggle effect */

/* #navbar.active .toggle-btn {
  color: #b89b2c; 
}

#navbar .nav-links li a {
  color: #fff;
}

#navbar .logo img {
  width: 50px;
  height: auto;
  object-fit: cover;
  margin-right: 15px;
}  */

/* Mobile Responsive Styles */
/* @media screen and (max-width: 768px) {
  #navbar .nav-links {
      position: absolute;
      top: 60px;
      right: 0;
      background-color: #1a1a1a;
      width: 100%;
      flex-direction: column;
      display: none; 
      padding: 20px 0;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  }

  #navbar .nav-links li {
      margin: 20px 0;
      text-align: center;
  }

  #navbar .nav-links li a {
      font-size: 22px;
      color: #fff;
  }

  
  #navbar .toggle-btn {
      display: block;
      cursor: pointer;
  }

  
  #navbar.active .nav-links {
      display: flex; 
  }
}


#navbar.active .toggle-btn {
  color: #b89b2c; 
}


#navbar .logo img {
  width: 50px;
  height: auto;
  object-fit: cover;
  margin-right: 15px;
} */

/* Mobile Responsive Styles */
/* @media screen and (max-width: 768px) {
  #navbar .nav-links {
      position: absolute;
      top: 60px;
      right: 0;
      background-color: #1a1a1a;
      width: 100%;
      flex-direction: column;
      display: none; 
      padding: 20px 0;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  }

  #navbar .nav-links li {
      margin: 20px 0;
      text-align: center;
  }

  #navbar .nav-links li a {
      font-size: 22px;
      color: #fff; 
  }

  
  #navbar .toggle-btn {
      display: block; 
      font-size: 30px;
      cursor: pointer; 
  }

  
  #navbar.active .nav-links {
      display: flex; 
  }
}


#navbar.active .toggle-btn {
  color: #b89b2c; 
}


#navbar .logo img {
  width: 50px;
  height: auto;
  object-fit: cover;
  margin-right: 15px;
} */


/* Mobile Responsive Styles */
/* @media screen and (max-width: 768px) {
  #navbar .nav-links {
      position: absolute;
      top: 60px;
      right: 0;
      background-color: #1a1a1a;
      width: 100%;
      flex-direction: column;
      display: none; 
      padding: 20px 0;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  }

  #navbar .nav-links li {
      margin: 20px 0;
      text-align: center;
  }

  #navbar .nav-links li a {
      font-size: 22px;
      color: #fff;
  }

  
  #navbar .toggle-btn {
      display: block; 
      font-size: 30px;
      color: #fff;
      cursor: pointer; 
      z-index: 10; 
      position: absolute;
      top: 20px;
      right: 20px;
  }

  
  #navbar.active .nav-links {
      display: flex; 
  }
}


#navbar.active .toggle-btn {
  color: #b89b2c; 
}


#navbar .logo img {
  width: 50px;
  height: auto;
  object-fit: cover;
  margin-right: 15px;
} */

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
  #navbar {
    position: relative; /* Ensures positioning of elements within navbar */
  }

  #navbar .nav-links {
      position: absolute;
      top: 60px;
      right: 0;
      background-color: #1a1a1a;
      width: 100%;
      flex-direction: column;
      display: none; /* Initially hidden */
      padding: 20px 0;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  }

  #navbar .nav-links li {
      margin: 20px 0;
      text-align: center;
  }

  #navbar .nav-links li a {
      font-size: 22px;
      color: #fff; /* Text color */
  }

  /* Ensure the hamburger button is visible on mobile */
  #navbar .toggle-btn {
      display: block; /* Make sure it's visible */
      font-size: 30px;
      color: #fff; /* White color for the hamburger icon */
      cursor: pointer; /* Pointer cursor for click */
      z-index: 10; /* Ensures button is above other content */
      position: absolute;
      top: 20px;
      right: 20px; /* Position the hamburger in the top right */
  }

  /* When navbar has the 'active' class, show the nav-links */
  #navbar.active .nav-links {
      display: flex; /* Show nav-links when active */
  }
}

/* Navbar active toggle effect */
#navbar.active .toggle-btn {
  color: #b89b2c; /* Change color of hamburger when active */
}

/* Add logo adjustments */
#navbar .logo img {
  width: 50px;
  height: auto;
  object-fit: cover;
  margin-right: 15px;
}


/* Hero Section Styles */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url('https://t4.ftcdn.net/jpg/02/60/18/09/240_F_260180924_yOJC8NytSXhmkBzDqHkoTL7CU0qcJDi7.jpg'); /* Replace with the actual image URL */
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #d4af37; /* Gold text color */
  font-family: 'Tajawal', sans-serif; /* Luxury font for Arabic text */
  text-align: center;
  overflow: hidden;
  background-attachment: fixed;
}

/* Hero Content Styling */
.hero-content {
  position: relative;
  color: #d4af37; /* Gold */
  text-align: center;
  max-width: 800px;
  z-index: 2;
  padding: 20px;
  animation: fadeIn 2s ease-in-out;
}

.hero-content h2 {
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  animation: fadeInText 1.5s ease-out;
}

.hero-content .sub-title {
  font-size: 24px;
  font-weight: normal;
  margin-bottom: 20px;
  animation: fadeInText 1.5s ease-out;
}

.hero-content .arabic-caption {
  font-size: 28px;
  font-family: 'Amiri', serif; /* Arabic font */
  margin-bottom: 15px;
  animation: fadeInText 2s ease-out;
}

.hero-content .arabic-translation {
  font-size: 20px;
  font-family: 'Tajawal', sans-serif;
  font-weight: light;
  margin-bottom: 20px;
  animation: fadeInText 2.5s ease-out;
}

/* Button Styles */
.hero-content button {
  padding: 12px 30px;
  font-size: 20px;
  background-color: #b89b2c; /* Dark Gold */
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  animation: fadeInButton 2.5s ease-out;
}

.hero-content button:hover {
  background-color: #d4af37; /* Gold color on hover */
}

/* Text Animation Keyframes */
@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

@keyframes fadeInText {
  from {
      transform: translateY(30px);
      opacity: 0;
  }
  to {
      transform: translateY(0);
      opacity: 1;
  }
}

@keyframes fadeInButton {
  from {
      transform: translateY(20px);
      opacity: 0;
  }
  to {
      transform: translateY(0);
      opacity: 1;
  }
}

/* Make the section responsive */
@media screen and (max-width: 768px) {
  .hero-section {
      background-attachment: scroll;
  }

  .hero-content h2 {
      font-size: 35px;
  }

  .hero-content .sub-title {
      font-size: 18px;
  }

  .hero-content .arabic-caption {
      font-size: 24px;
  }

  .hero-content .arabic-translation {
      font-size: 18px;
  }

  .hero-content button {
      font-size: 18px;
      padding: 10px 20px;
  }
}

/* About Section Styling */
.about-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px 50px;
  background-color: #1a1a1a; /* Dark background */
  color: #d4af37; /* Gold text color */
  font-family: 'Tajawal', sans-serif; /* Arabic-style font */
  text-align: left;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  animation: fadeIn 2s ease-out;
}

/* Section Title Styling */
.about-section .section-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #d4af37; /* Gold */
  animation: fadeInText 1s ease-out;
}

/* Section Description Styling */
.about-section .section-description {
  font-size: 20px;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #f0e0a5; /* Lighter gold text */
  animation: fadeInText 1.5s ease-out;
}

/* Details Section Styling */
.details, .pricing-policy, .guidance-system {
  margin-bottom: 40px;
}

.details-title, .pricing-title, .guidance-title {
  font-size: 28px;
  font-weight: bold;
  color: #d4af37; /* Gold */
  margin-bottom: 15px;
  animation: fadeInText 2s ease-out;
}

.details-description, .pricing-description, .guidance-description {
  font-size: 18px;
  color: #f0e0a5; /* Lighter gold text */
  line-height: 1.6;
  animation: fadeInText 2.5s ease-out;
}

/* Arabic Text Styling */
.about-section .arabic-text {
  font-size: 24px;
  font-family: 'Amiri', serif; /* Arabic font style */
  color: #d4af37; /* Gold */
  margin-bottom: 20px;
  animation: fadeInText 3s ease-out;
}

/* Arabic Translation Styling */
.about-section .arabic-translation {
  font-size: 20px;
  font-family: 'Tajawal', sans-serif; /* Arabic font style */
  color: #f0e0a5; /* Lighter gold text */
  margin-bottom: 30px;
  animation: fadeInText 3.5s ease-out;
}

/* Learn More Button Styling */
.learn-more-btn {
  padding: 12px 30px;
  font-size: 18px;
  background-color: #b89b2c; /* Dark Gold */
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  animation: fadeInButton 3s ease-out;
}

.learn-more-btn:hover {
  background-color: #d4af37; /* Gold color on hover */
}

/* Image Styling */
.image-container {
  width: 50%;
  padding: 20px;
}

.about-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

/* Text Animation Keyframes */
@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

@keyframes fadeInText {
  from {
      transform: translateY(30px);
      opacity: 0;
  }
  to {
      transform: translateY(0);
      opacity: 1;
  }
}

@keyframes fadeInButton {
  from {
      transform: translateY(20px);
      opacity: 0;
  }
  to {
      transform: translateY(0);
      opacity: 1;
  }
}

/* Make the section responsive */
@media screen and (max-width: 768px) {
  .about-section {
      flex-direction: column;
      text-align: center;
      padding: 60px 20px;
  }

  .image-container {
      width: 100%;
      margin-bottom: 20px;
  }

  .about-img {
      max-width: 100%;
      height: auto;
  }

  .learn-more-btn {
      font-size: 16px;
      padding: 10px 25px;
  }
}


/* Packages Section Styling */
.packages-section {
  background-color: #1a1a1a; /* Dark background */
  color: #d4af37; /* Gold color for text */
  padding: 100px 50px;
  text-align: center;
  font-family: 'Tajawal', sans-serif; /* Arabic-style font */
}

/* Section Title Styling */
.packages-section .section-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 50px;
  color: #d4af37; /* Gold */
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: fadeIn 2s ease-out;
}

/* Package Container Styling */
.package-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 30px;
  animation: fadeInUp 2s ease-out;
}

/* Package Card Styling */
.package-card {
  background-color: #2c2c2c; /* Dark background for cards */
  color: #f0e0a5; /* Light gold color */
  width: 300px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  text-align: center;
}

/* Hover Effect for Package Card */
.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Package Image Styling */
.package-card .package-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

/* Arabic Caption Styling */
.arabic-caption {
  font-family: 'Amiri', serif;
  font-size: 16px;
  margin-top: 15px;
  color: #d4af37;
  font-weight: bold;
}

/* Pricing Text Styling */
.package-card .price {
  font-size: 22px;
  font-weight: bold;
  color: #d4af37; /* Gold for price */
  margin-top: 10px;
}

/* Button Styling */
.details-btn {
  padding: 12px 30px;
  background-color: #b89b2c; /* Dark Gold */
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.details-btn:hover {
  background-color: #d4af37; /* Gold on hover */
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .package-container {
      flex-direction: column;
      align-items: center;
  }

  .package-card {
      width: 80%;
      margin-bottom: 30px;
  }
}

/* Animations */
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}


/* Testimonials Section Styling */
.testimonials-section {
  background-color: #1a1a1a; /* Dark background for luxury feel */
  color: #d4af37; /* Gold text color */
  padding: 80px 50px;
  text-align: center;
  font-family: 'Tajawal', sans-serif; /* Arabic fonts for authenticity */
  position: relative;
}

/* Section Title Styling */
.testimonials-section .section-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 50px;
  color: #d4af37; /* Gold for text */
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: fadeIn 2s ease-out;
}

/* Testimonial Slider Styling */
.testimonial-slider {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  overflow: hidden;
  position: relative;
  animation: fadeInUp 2s ease-out;
}

/* Testimonial Card Styling */
.testimonial-card {
  background-color: #2c2c2c; /* Dark background */
  width: 300px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  text-align: center;
  flex-shrink: 0;
  margin-bottom: 30px;
}

/* Testimonial Card Hover Effect */
.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Testimonial Image Styling */
.testimonial-card .testimonial-image img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

/* Hover Effect on Image */
.testimonial-card:hover .testimonial-image img {
  transform: scale(1.1);
}

/* Testimonial Text Styling */
.testimonial-card .testimonial-text p {
  font-size: 18px;
  font-style: italic;
  color: #f0e0a5; /* Light gold color */
  line-height: 1.5;
}

/* Arabic Text Styling for Testimonials */
.testimonial-card .testimonial-text p {
  font-family: 'Amiri', serif;
  font-size: 20px;
  font-weight: bold;
  color: #d4af37; /* Gold color */
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .testimonial-slider {
      flex-direction: column;
      align-items: center;
  }

  .testimonial-card {
      width: 80%;
  }
}

/* Animations */
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
