:root {
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --primary-light: #a5b4fc;
  --secondary: #10b981;
  --accent: #f59e0b;
  --dark: #1e293b;
  --light: #f8fafc;
  --gray: #64748b;
  --gray-light: #e2e8f0;
  --card-bg: #ffffff;
  --gradient: linear-gradient(135deg, #6366f1, #8b5cf6);
  --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --radius: 16px;
}

body {
  background: var(--light);
  font-family: "Inter", sans-serif;
  color: var(--dark);
  line-height: 1.6;
}

.container-main {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

/* Hero Section */
.hero-card {
  background: var(--gradient);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  gap: 25px;
  align-items: center;
  box-shadow: var(--shadow);
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-dark);
  opacity: 0.5;
}

.avatar {
  width: 130px;
  height: 130px;
  border-radius: 20px;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero-info {
  flex: 1;
  position: relative;
  z-index: 2;
}

.name {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.designation {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 8px;
}

.tagline {
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 15px;
}

.contact-buttons .btn {
  margin-right: 8px;
  margin-bottom: 8px;
  border-radius: 50px;
  font-weight: 500;
  padding: 8px 16px;
}

.social-icons a {
  font-size: 1.2rem;
  margin-right: 12px;
  color: white;
  opacity: 0.85;
  transition: opacity 0.3s;
}

.social-icons a:hover {
  opacity: 1;
}

.qr-panel {
  min-width: 150px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.qr-box {
  width: 130px;
  height: 130px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.qr-actions {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  justify-content: center;
}

.qr-actions .btn {
  border-radius: 50px;
  font-weight: 500;
}

/* Sections */
.section-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 25px;
  margin-top: 25px;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.section-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--gray-light);
  padding-bottom: 12px;
}

.section-title h5 {
  font-weight: 600;
  color: var(--primary-dark);
  margin: 0;
  position: relative;
}

.section-title h5::after {
  content: "";
  position: absolute;
  bottom: -13px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gradient);
  border-radius: 3px;
}

.toggle-label {
  font-size: 0.85rem;
  color: var(--gray);
  background: var(--gray-light);
  padding: 4px 10px;
  border-radius: 50px;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.service-item {
  padding: 20px;
  border-radius: 12px;
  background: var(--light);
  border-left: 4px solid var(--primary);
  transition: all 0.3s;
}

.service-item:hover {
  background: white;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.service-item h6 {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.service-item p {
  color: var(--gray);
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.service-item .btn {
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.85rem;
  padding: 6px 14px;
}

/* Products */
.product-card {
  padding: 15px;
  border-radius: 12px;
  background: var(--light);
  transition: all 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.product-img {
  height: 160px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 15px;
}

.product-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s;
}

.product-card:hover .product-img img {
  transform: scale(1.05);
}

.product-card h6 {
  font-weight: 600;
  margin-bottom: 8px;
}

.product-card p {
  color: var(--gray);
  font-size: 0.9rem;
  flex-grow: 1;
}

.product-card .btn {
  border-radius: 50px;
  font-weight: 500;
  align-self: flex-start;
}

/* Portfolio Swiper */
.portfolio-swiper {
  border-radius: 12px;
  overflow: hidden;
}

.portfolio-swiper .swiper-slide {
  border-radius: 12px;
  overflow: hidden;
  height: 300px;
}

.portfolio-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-pagination-bullet {
  background: var(--gray-light);
  opacity: 0.7;
}

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

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary);
}

/* Testimonials */
.testimonial {
  padding: 20px;
  border-radius: 12px;
  background: var(--light);
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 3rem;
  color: var(--primary-light);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial strong {
  color: var(--primary-dark);
}

/* Forms */
.form-control,
.form-select {
  border-radius: 10px;
  padding: 12px 15px;
  border: 1px solid var(--gray-light);
  transition: all 0.3s;
  overflow: hidden;
}

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

.form-floating label {
  padding: 12px 15px;
}

/* Map */
.map-container {
  border-radius: 12px;
  overflow: hidden;
  height: 300px;
}

/* Team */
.team-member {
  text-align: center;
  padding: 15px;
  transition: all 0.3s;
  border-radius: 12px;
}

.team-member:hover {
  background: var(--light);
  transform: translateY(-5px);
}

.team-member img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 12px;
  border: 3px solid var(--primary-light);
}

/* FAQ */
.accordion-button {
  border-radius: 10px !important;
  padding: 15px 20px;
  font-weight: 500;
}

.accordion-button:not(.collapsed) {
  background-color: rgba(99, 102, 241, 0.1);
  color: var(--primary-dark);
}

.accordion-body {
  padding: 20px;
}

/* Footer */
footer {
  margin-top: 40px;
  text-align: center;
  color: var(--gray);
  padding: 20px 0;
  border-top: 1px solid var(--gray-light);
}

/* Responsive */
@media (max-width: 991px) {
  .hero-card {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }
  .avatar {
    width: 120px;
    height: 120px;
  }
  .qr-panel {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .contact-buttons .btn {
    margin-right: 5px;
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .container-main {
    margin: 20px auto;
  }
  .section-card {
    padding: 20px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .section-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .hero-info .d-flex {
    flex-direction: column;
    gap: 15px;
  }
  .hero-info .d-flex .ms-auto {
    margin-left: 0 !important;
  }
}
@media (max-width: 575px) {
  .hero-card {
    padding: 20px;
  }
  .name {
    font-size: 1.5rem;
  }
  .designation {
    font-size: 1rem;
  }
  .contact-buttons .btn {
    display: block;
    width: 100%;
    margin-right: 0;
  }
  .portfolio-swiper .swiper-slide {
    height: 200px;
  }
}
/* RTL Global */
body.rtl {
  /* Hero Section */
  /* Section titles, services, products */
  /* Social icons */
  /* Services grid */
  /* Forms */
  /* Team Members */
  /* FAQ Accordion */
  /* Responsive tweaks for RTL */
}
body.rtl .container-main {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}
body.rtl .hero-card {
  background: var(--gradient);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  gap: 25px;
  align-items: center;
  box-shadow: var(--shadow);
  color: white;
  position: relative;
  overflow: hidden;
  flex-direction: row-reverse;
  /* RTL-friendly */
}
body.rtl .hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  /* change from left */
  left: 0;
  bottom: 0;
  background: var(--primary-dark);
  opacity: 0.5;
}
body.rtl .avatar {
  width: 130px;
  height: 130px;
  border-radius: 20px;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}
body.rtl .hero-info {
  flex: 1;
  position: relative;
  z-index: 2;
  text-align: right;
  /* RTL-friendly */
}
body.rtl .section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--gray-light);
  padding-bottom: 12px;
  flex-direction: row-reverse;
  /* RTL-friendly */
}
body.rtl .toggle-label {
  font-size: 0.85rem;
  color: var(--gray);
  background: var(--gray-light);
  padding: 4px 10px;
  border-radius: 50px;
}
body.rtl .social-icons a {
  margin-left: 12px;
  /* swap right with left */
  margin-right: 0;
}
body.rtl .service-item {
  border-left: none;
  border-right: 4px solid var(--primary);
  /* RTL-friendly */
}
body.rtl .form-floating label {
  padding: 12px 15px;
  text-align: right;
  /* RTL-friendly */
}
body.rtl .team-member img {
  border: 3px solid var(--primary-light);
}
body.rtl .accordion-button {
  text-align: right;
  /* RTL-friendly */
}
@media (max-width: 991px) {
  body.rtl .hero-card {
    flex-direction: column;
    text-align: center;
  }
  body.rtl .hero-info .d-flex {
    flex-direction: column;
    gap: 15px;
  }
  body.rtl .hero-info .d-flex .ms-auto {
    margin-left: 0 !important;
  }
}/*# sourceMappingURL=visting-card13.css.map */