@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
/* ==== VARIABLES ==== */
:root {
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --secondary: #8b5cf6;
  --accent: #ec4899;
  --success: #10b981;
  --info: #0ea5e9;
  --warning: #f59e0b;
  --danger: #ef4444;
  --darkclr: #1f2937;
  --light: #f8fafc;
  --gray: #64748b;
  --gray-light: #e2e8f0;
  --border-radius: 1rem;
  --border-radius-sm: 0.5rem;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
  --gradient-dark: linear-gradient(135deg, var(--primary-dark), var(--secondary));
  --font: "Jost", sans-serif;
}

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

a {
  text-decoration: none;
}

body {
  font-family: var(--font);
}

.padding-section {
  padding: 40px 0;
}

.section-title {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.section-headline {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto 3rem;
}

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient {
  background: var(--gradient);
}

.card {
  border: none;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.btn {
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  transition: var(--transition);
}

.btn-primary {
  background: var(--gradient);
  border: none;
}

.btn-primary:hover {
  background: var(--gradient-dark);
  transform: translateY(-2px);
}

.btn-outline-primary {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: white;
}

/* ==== HERO ==== */
.hero-section {
  background: var(--gradient);
  color: white;
  min-height: 580px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,1000 1000,0 1000,1000"/></svg>');
  background-size: cover;
}

.profile-img {
  width: 180px;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 6px solid rgba(255, 255, 255, 0.3);
}

.btn-icon {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 50px;
  padding: 0.5rem 1rem;
}

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

.social-icon:hover {
  background: white;
  color: var(--primary);
  transform: translateY(-3px);
}

.qr-section {
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  max-width: 300px;
  margin: 2rem auto 0;
  border-radius: var(--border-radius);
  padding: 1.5rem;
}

/* ==== CARDS ==== */
.service-card,
.product-card,
.testimonial-card {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  overflow: hidden;
}

.service-card:hover,
.product-card:hover,
.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
}

.product-card img {
  height: 200px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-card .card-body {
  padding: 1.5rem;
}

.price-tag {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

/* ==== STATS SECTION ==== */
.stats-section {
  background: var(--gradient);
  color: #fff;
}

.stats-section .section-title,
.stats-section .section-subtitle {
  color: var(--light);
}

.stat-card {
  text-align: center;
  padding: 2rem;
}

.stat-value {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.stat-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.stat-description {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* ==== SOCIAL MEDIA SECTION ==== */
.social-media-card {
  text-align: center;
  padding: 2rem;
  transition: var(--transition);
}

.social-media-card:hover {
  transform: translateY(-5px);
}

.social-icon-large {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.social-feed {
  background: var(--gray-light);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin-top: 2rem;
}

/* ==== SWIPER ==== */
.swiper {
  padding: 1rem 0 3rem;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.8);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1.2rem;
}

.swiper-pagination-bullet-active {
  background: var(--primary);
}

/* ==== GALLERY ==== */
.gallery-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 1.5rem;
  display: block;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  padding: 1.5rem;
  transform: translateY(100%);
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

/* ==== TESTIMONIALS ==== */
.testimonial-card {
  padding: 2rem;
  text-align: center;
}

.testimonial-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid var(--primary);
}

.stars {
  color: var(--warning);
  margin-bottom: 1rem;
}

/* ==== TIMELINE ==== */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  width: 4px;
  background: var(--primary);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}

.timeline-item {
  padding: 1rem 2rem;
  position: relative;
  width: 50%;
  margin-bottom: 2rem;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-item::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--primary);
  border-radius: 50%;
  top: 1.5rem;
}

.timeline-item:nth-child(odd)::after {
  right: -10px;
}

.timeline-item:nth-child(even)::after {
  left: -10px;
}

.year {
  background: var(--primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  display: inline-block;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

/* ==== TEAM ==== */
.team-card {
  text-align: center;
  padding: 1.5rem;
}

.team-card .social-icon {
  background: var(--primary);
  color: white;
}

.team-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid var(--primary);
}

/* ==== FAQ ==== */
.faq-item {
  margin-bottom: 1rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  background: white;
  padding: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  background: var(--gray-light);
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active .faq-answer {
  padding: 1.5rem;
  max-height: 500px;
}

.faq-toggle {
  transition: var(--transition);
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

/* ==== RESOURCES ==== */
.resource-card {
  text-align: center;
  padding: 2rem;
}

.resource-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* ==== FORMS ==== */
.form-control,
.form-select {
  border-radius: var(--border-radius-sm);
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-light);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
}

/* ==== FLOATING SOCIAL ==== */
.floating-social {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.floating-social a {
  width: 45px;
  height: 45px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.floating-social a:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
}

/* ==== NAVIGATION ==== */
.section-nav {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray);
  transition: var(--transition);
  cursor: pointer;
}

.nav-dot.active {
  background: var(--primary);
  transform: scale(1.3);
}

/* ==== RESPONSIVE ==== */
@media (max-width: 768px) {
  .section-headline {
    font-size: 1.8rem;
  }
  .timeline::before {
    left: 30px;
  }
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 0;
    text-align: left;
  }
  .timeline-item::after {
    left: 20px !important;
  }
  .floating-social,
  .section-nav {
    display: none;
  }
  .timeline-item:nth-child(even) {
    left: unset;
  }
  body.rtl .timeline-item:nth-child(even) {
    right: auto;
    left: auto;
  }
  body.rtl .timeline-item:nth-child(even)::after {
    right: auto;
  }
}
/* ==== RTL SUPPORT ==== */
body.rtl .timeline-item:nth-child(odd) {
  right: 0;
  text-align: end;
}
body.rtl .timeline-item:nth-child(odd)::after {
  left: -10px;
  right: auto;
}
body.rtl .timeline-item:nth-child(even) {
  right: 50%;
  left: auto;
}
body.rtl .timeline-item:nth-child(even)::after {
  right: -10px;
}
body.rtl .faq-question {
  justify-content: space-between;
}
body.rtl .faq-item.active .faq-toggle {
  transform: rotate(-180deg);
}
body.rtl .section-nav {
  left: auto;
  right: 20px;
}
body.rtl .floating-social {
  right: auto;
  left: 20px;
}
body.rtl .service-icon,
body.rtl .team-img,
body.rtl .testimonial-img,
body.rtl .profile-img {
  margin-left: auto;
  margin-right: auto;
}

.map-conatiner {
  width: 100%;
  height: 450px;
}
.map-conatiner iframe {
  width: 100%;
  height: 100%;
}

/* ==== MODERN LOADING ANIMATION ==== */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-overlay.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-container {
  display: contents;
  text-align: center;
  color: white;
}

/* Animated Logo/Icon */
.loading-logo {
  width: 80px;
  height: 80px;
  margin-bottom: 2rem;
  position: relative;
}

.logo-circle {
  width: 100%;
  height: 100%;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.logo-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-inner i {
  color: #667eea;
  font-size: 1.2rem;
}

/* Loading Text */
.loading-text {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 1s ease 0.5s forwards;
}

.loading-subtext {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 1s ease 0.8s forwards;
}

/* Progress Bar */
.loading-progress {
  width: 300px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #fff, #f0f0f0);
  border-radius: 10px;
  transition: width 0.3s ease;
  position: relative;
  overflow: hidden;
}

.progress-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shimmer 2s infinite;
}

/* Loading Dots */
.loading-dots {
  display: flex;
  gap: 8px;
  margin-top: 2rem;
}

.dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: bounce 1.4s infinite ease-in-out;
}

.dot:nth-child(1) {
  animation-delay: -0.32s;
}

.dot:nth-child(2) {
  animation-delay: -0.16s;
}

.dot:nth-child(3) {
  animation-delay: 0s;
}

/* Animations */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bounce {
  0%, 80%, 100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
/* Content fade in */
.content-wrapper {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.content-wrapper.loaded {
  opacity: 1;
  transform: translateY(0);
}/*# sourceMappingURL=visting-card15.css.map */