/* General Styles */
:root {
  --primary-color: #04043d;
  --secondary-color: #000900;
  --accent-color: #1a73e8;
  --text-color: #333;
  --light-color: #f8f9fa;
  --dark-color: #04043d;
  --gradient-primary: linear-gradient(145deg, #04043d, #000046);
  --gradient-secondary: linear-gradient(145deg, #000900, #003300);
  --gradient-accent: linear-gradient(145deg, #1a73e8, #0d66d0);
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  --hover-transform: translateY(-10px);
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --border-radius: 12px;
  --card-hover-bg: rgba(255, 255, 255, 0.05);
  --blur-effect: blur(10px);
}

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Montserrat:wght@700;800;900&display=swap");

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.container {
  position: relative;
  z-index: 2;
}

/* Custom Shapes & Backgrounds */
.shape {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.shape-1 {
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: var(--gradient-primary);
  opacity: 0.1;
  border-radius: 50%;
}

.shape-2 {
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: var(--gradient-secondary);
  opacity: 0.1;
  border-radius: 50%;
}

/* Futuristic Glass Effect */
.glass-effect {
  background: rgba(4, 4, 61, 0.2);
  backdrop-filter: var(--blur-effect);
  -webkit-backdrop-filter: var(--blur-effect);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Header Styles */
.header-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
}

.navbar {
  padding: 25px 0;
  transition: var(--transition);
}

.navbar.sticky {
  background: rgba(4, 4, 61, 0.95);
  backdrop-filter: var(--blur-effect);
  -webkit-backdrop-filter: var(--blur-effect);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  padding: 15px 0;
}

.navbar-brand h1 {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  margin: 0;
  position: relative;
  display: inline-block;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.navbar-brand h1::after {
  content: "LLC";
  position: absolute;
  top: 0;
  right: -30px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-color);
}

.nav-link {
  color: #fff;
  font-weight: 500;
  padding: 10px 20px !important;
  position: relative;
  transition: var(--transition);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 2px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: center;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: #fff !important;
}

.nav-link:hover::after,
.nav-link:focus::after {
  transform: scaleX(1);
}

.nav-link:focus {
  color: #fff;
  /* border-bottom: 2px solid var(--accent-color); */
}

/* Particles Animation */
.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.particle {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}

/* Hero Section */
.hero-section {
  height: 100vh;
  min-height: 700px;
  padding: 0;
  background-color: var(--primary-color);
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  opacity: 0.5;
  z-index: 1;
}

.hero-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--accent-color);
  filter: blur(200px);
  opacity: 0.15;
  z-index: 0;
}

.hero-glow-1 {
  top: -150px;
  right: -150px;
}

.hero-glow-2 {
  bottom: -100px;
  left: -150px;
  background: var(--secondary-color);
  width: 400px;
  height: 400px;
}

.hero-slider .swiper-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 100vh;
  min-height: 700px;
}

.hero-slider .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(4, 4, 61, 0.9),
    rgba(0, 9, 0, 0.7)
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  color: #fff;
  text-align: center;
  padding-top: 220px;
  z-index: 5;
}

.hero-content h1 {
  font-size: 60px;
  font-weight: 800;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition);
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  letter-spacing: -1px;
  background: linear-gradient(to right, #fff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 22px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition);
  color: rgba(255, 255, 255, 0.9);
}

.hero-content .primary-btn {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition);
  padding: 18px 40px;
  border-radius: 50px;
  box-shadow: 0 15px 30px rgba(26, 115, 232, 0.25);
  font-size: 18px;
  font-weight: 600;
  background: var(--gradient-accent);
}

.hero-slider .swiper-slide-active .hero-content h1,
.hero-slider .swiper-slide-active .hero-content p,
.hero-slider .swiper-slide-active .hero-content .primary-btn {
  opacity: 1;
  transform: translateY(0);
}

.hero-slider .swiper-slide-active .hero-content h1 {
  transition-delay: 0.3s;
}

.hero-slider .swiper-slide-active .hero-content p {
  transition-delay: 0.5s;
}

.hero-slider .swiper-slide-active .hero-content .primary-btn {
  transition-delay: 0.7s;
}

.hero-scroll-btn {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  color: #fff;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  animation: fadeIn 1s forwards 1.5s;
}

.hero-scroll-btn i {
  font-size: 24px;
  margin-top: 10px;
  animation: bounce 2s infinite;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

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

/* About Section */
.about-section {
  background-color: #fff;
  position: relative;
}

.about-section .shape-1 {
  top: -100px;
  right: -100px;
}

.about-section .shape-2 {
  bottom: -100px;
  left: -100px;
}

.about-content {
  padding-right: 50px;
}

.section-title {
  margin-bottom: 40px;
}

.section-title span {
  color: var(--accent-color);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
  display: block;
  position: relative;
  padding-left: 45px;
}

.section-title span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 35px;
  height: 2px;
  background: var(--accent-color);
  transform: translateY(-50%);
}

.section-title h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.3;
  letter-spacing: -0.5px;
  color: var(--primary-color);
}

.text-highlight {
  color: var(--accent-color);
  position: relative;
}

.text-highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 8px;
  background: rgba(26, 115, 232, 0.15);
  z-index: -1;
}

.lead-text {
  font-size: 20px;
  font-weight: 500;
  color: #444;
  margin-bottom: 25px;
  line-height: 1.6;
}

.about-stats {
  display: flex;
  justify-content: space-between;
  margin: 50px 0;
}

.stat-item {
  text-align: center;
  padding: 30px 25px;
  background-color: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  z-index: -1;
  transition: var(--transition);
}

.stat-item:hover {
  transform: var(--hover-transform);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  color: #fff;
}

.stat-item:hover::before {
  opacity: 1;
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--accent-color);
  display: block;
  margin-bottom: 5px;
  transition: var(--transition);
}

.stat-item:hover .stat-number {
  color: #fff;
}

.stat-text {
  font-size: 15px;
  color: var(--text-color);
  font-weight: 500;
  transition: var(--transition);
}

.stat-item:hover .stat-text {
  color: #fff;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.check-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  font-weight: 500;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background-color: rgba(26, 115, 232, 0.15);
  border-radius: 50%;
}

.check-list li::after {
  content: "\f00c";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-color);
  font-size: 12px;
}

.about-image-wrapper {
  position: relative;
  height: 450px;
  margin-left: 30px;
}

.about-img {
  position: absolute;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.about-img:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.main-img {
  left: 0;
  bottom: 0;
  width: 70%;
  height: 350px;
  z-index: 2;
}

.accent-img {
  right: 0;
  top: 0;
  width: 60%;
  height: 280px;
  z-index: 1;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.experience-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--gradient-primary);
  color: #fff;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 10px 30px rgba(4, 4, 61, 0.3);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translate(-50%, -50%);
  }
  50% {
    transform: translate(-50%, -60%);
  }
}

.exp-number {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 5px;
}

.exp-text {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  line-height: 1.2;
}

/* Services Section */
.services-section {
  background-color: #f8f9ff;
  position: relative;
}

.services-section .shape-1 {
  top: -100px;
  right: -100px;
}

.service-card {
  text-align: center;
  padding: 50px 30px;
  background-color: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-accent);
  transition: var(--transition);
}

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

.service-card:hover::before {
  height: 100%;
  opacity: 0.05;
}

.service-card .icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 30px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(4, 4, 61, 0.2);
}

.service-card:hover .icon {
  border-radius: 50%;
  transform: rotateY(180deg);
}

.service-card .icon i {
  font-size: 38px;
  color: #fff;
  transition: var(--transition);
}

.service-card:hover .icon i {
  transform: rotateY(180deg);
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 20px;
  transition: var(--transition);
  color: var(--primary-color);
}

.service-card:hover h3 {
  color: var(--accent-color);
}

.service-card p {
  margin-bottom: 0;
  transition: var(--transition);
}

/* Properties Section */
.properties-section {
  background-color: #fff;
  position: relative;
}

.properties-section .shape-2 {
  bottom: -100px;
  left: -100px;
}

.property-card {
  background-color: #fff;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  margin: 15px 0;
  position: relative;
}

.property-card:hover {
  transform: var(--hover-transform);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.property-img {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.property-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
  opacity: 0;
  transition: var(--transition);
}

.property-card:hover .property-img::after {
  opacity: 1;
}

.property-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.property-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gradient-accent);
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(26, 115, 232, 0.3);
}

.property-content {
  padding: 30px;
}

.property-title {
  font-size: 22px;
  margin-bottom: 10px;
  transition: var(--transition);
  color: var(--primary-color);
}

.property-card:hover .property-title {
  color: var(--accent-color);
}

.property-location {
  color: #666;
  font-size: 14px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.property-location i {
  margin-right: 8px;
  color: var(--accent-color);
}

.property-features {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid #eee;
  margin-top: 15px;
}

.feature-item {
  display: flex;
  align-items: center;
  font-weight: 500;
}

.feature-item i {
  margin-right: 8px;
  color: var(--accent-color);
  font-size: 18px;
}

.property-price {
  font-size: 26px;
  font-weight: 700;
  color: var(--accent-color);
  margin-top: 15px;
}

/* Primary Button Styles */
.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 35px;
  background: var(--gradient-accent);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
  cursor: pointer;
}

.primary-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}

.primary-btn:hover {
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(26, 115, 232, 0.3);
}

.primary-btn:hover::before {
  opacity: 1;
}

/* Footer Section */
.footer-section {
  background-color: var(--primary-color);
  color: #fff;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80")
    center/cover no-repeat;
  opacity: 0.05;
  z-index: 0;
}

.footer-about h3 {
  font-size: 28px;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.footer-about h3::after {
  content: "LLC";
  position: absolute;
  top: 0;
  right: -30px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-color);
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
  font-size: 16px;
}

.social-links {
  display: flex;
  margin-top: 30px;
}

.social-links a {
  width: 45px;
  height: 45px;
  background-color: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 15px;
  color: #fff;
  font-size: 18px;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--gradient-primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(26, 115, 232, 0.3);
}

.footer-links h4 {
  font-size: 22px;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.footer-links h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--accent-color);
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 15px;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 16px;
  display: inline-block;
  transition: var(--transition);
  position: relative;
  padding-left: 15px;
}

.footer-links ul li a::before {
  content: "\f285";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 10px;
  color: var(--accent-color);
}

.footer-links ul li a:hover {
  color: var(--accent-color);
  padding-left: 20px;
}

.footer-newsletter h4 {
  font-size: 22px;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.footer-newsletter h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--accent-color);
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
}

.footer-newsletter form {
  position: relative;
}

.footer-newsletter input {
  width: 100%;
  height: 55px;
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 8px;
  padding: 10px 140px 10px 20px;
  color: #fff;
  font-size: 16px;
}

.footer-newsletter input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.footer-newsletter button {
  position: absolute;
  right: 5px;
  top: 5px;
  height: 45px;
  padding: 0 30px;
  background: var(--gradient-primary);
  border: none;
  border-radius: 6px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.footer-newsletter button:hover {
  background: linear-gradient(145deg, #000046, #04043d);
  box-shadow: 0 5px 15px rgba(26, 115, 232, 0.3);
}

.footer-bottom {
  padding: 30px 0;
  margin-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

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

.contact-info-box .icon i {
  font-size: 20px;
}
.swiper-pagination {
  bottom: -4px !important;
}
/* Responsive Styles */
@media (max-width: 1199px) {
  .section-title h2 {
    font-size: 36px;
  }

  .hero-content h1 {
    font-size: 48px;
  }

  .property-card {
    margin: 10px;
  }
}

@media (max-width: 991px) {
  section {
    padding: 100px 0;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .about-content {
    padding-right: 0;
    margin-bottom: 60px;
  }

  .experience-badge {
    width: 100px;
    height: 100px;
  }

  .exp-number {
    font-size: 36px;
  }

  .exp-text {
    font-size: 10px;
  }

  .contact-info-wrapper {
    padding-left: 0;
    margin-top: 60px;
  }
}

@media (max-width: 767px) {
  section {
    padding: 80px 0;
  }

  .hero-content {
    padding-top: 180px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .about-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .stat-item {
    width: calc(50% - 20px);
    margin-bottom: 0;
  }

  .service-card {
    margin-bottom: 30px;
  }

  .property-img {
    height: 220px;
  }

  .about-image-wrapper {
    height: 400px;
    margin-left: 0;
  }

  .contact-form-wrapper {
    padding: 30px;
  }
}

@media (max-width: 575px) {
  .hero-content h1 {
    font-size: 28px;
  }

  .section-title span {
    font-size: 14px;
  }

  .section-title h2 {
    font-size: 26px;
  }

  .stat-item {
    width: 100%;
    margin-bottom: 20px;
  }

  .about-image-wrapper {
    height: 350px;
  }

  .experience-badge {
    width: 80px;
    height: 80px;
  }

  .exp-number {
    font-size: 28px;
  }

  /* .contact-info-box .icon {
    width: 50px;
    height: 50px;
  } */

  .contact-info-box .icon i {
    font-size: 20px;
  }
}

/* Animations */
.reveal-left,
.reveal-right,
.reveal-up {
  opacity: 0;
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-left {
  transform: translateX(-50px);
}

.reveal-right {
  transform: translateX(50px);
}

.reveal-up {
  transform: translateY(50px);
}

.animate .reveal-left,
.animate .reveal-right,
.animate .reveal-up {
  opacity: 1;
  transform: translate(0);
}

/* Swiper Customization */
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 0.5;
  transition: var(--transition);
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: var(--accent-color);
  transform: scale(1.3);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--accent-color);
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: scale(0.8);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px;
  font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--gradient-primary);
  color: #fff;
  transform: scale(1);
  box-shadow: 0 10px 20px rgba(26, 115, 232, 0.3);
}
