@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

a {
  text-decoration: unset;
}

body {
  background: #fff;
  color: #222;
  font-family: "Cairo", sans-serif;
}

/* Header */
.header {
  padding: 10px 0px;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .container img {
  height: 45px;
}
.header .container .buttons {
  display: flex;
  gap: 10px;
}
.header .container .buttons button,
.header .container .buttons a {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  transition: 0.3s;
}
.header .container .buttons button:hover,
.header .container .buttons a:hover {
  transform: scale(1.05);
}
.header .container .buttons .demo-btn {
  border: 1px solid #222;
  background: transparent;
}
.header .container .buttons .trial-btn {
  background: #ff6a3d;
  color: #fff;
}

/* Main Section */
.landing-section {
  background: #0a59c3;
  color: #fff;
}
.landing-section .img-holder {
  position: relative;
  width: 100%;
  height: 450px;
  text-align: center;
}
.landing-section .img-holder img {
  position: absolute;
  bottom: -3rem;
  left: 50%;
  transform: translateX(-50%);
  width: 360px;
  height: auto;
}
.landing-section .main-left h2 {
  font-size: 38px;
  margin-bottom: 20px;
  font-weight: bold;
}
.landing-section .main-left p {
  margin-bottom: 15px;
}
.landing-section .main-left ul li {
  margin-bottom: 8px;
}
.landing-section .main-left .awards-section {
  justify-content: flex-start;
}
.landing-section .main-left .awards-section .award-badge {
  width: 115px !important;
}

.awards-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}
.awards-section .award-badge {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 125px;
  height: 100%;
  clip-path: polygon(50% 0%, 100% 0%, 100% 70%, 50% 100%, 0% 70%, 0% 0%);
  padding: 15px 10px;
  border-radius: 2px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  background-color: white;
}
.awards-section .award-badge .award-icon {
  width: 35px;
  height: 35px;
  background: #FF6B35;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  font-weight: bold;
  color: white;
  font-size: 16px;
}
.awards-section .award-badge .award-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
  line-height: 1.2;
}
.awards-section .award-badge .award-subtitle {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 8px;
}

.trusted-by {
  background: #fff;
  text-align: center;
}
.trusted-by .content-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
.trusted-by .content-wrapper .trusted-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  white-space: nowrap;
  font-size: 18px;
  font-weight: 600;
  color: #111;
}
.trusted-by .content-wrapper .trusted-title .arrow {
  color: #0a59c3;
  font-weight: bold;
  font-size: 20px;
}
.trusted-by .content-wrapper .teams-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  flex-grow: 1;
  gap: 20px;
}
.trusted-by .content-wrapper .teams-bar .team-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 120px;
  padding: 15px 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.trusted-by .content-wrapper .teams-bar .team-item .team-icon {
  font-size: 24px;
  color: #0a59c3;
  transition: all 0.3s ease;
}
.trusted-by .content-wrapper .teams-bar .team-item .team-name {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  text-align: center;
  line-height: 1.3;
  transition: color 0.3s ease;
}
.trusted-by .content-wrapper .teams-bar .team-item:hover {
  transform: translateY(-3px);
  background: rgba(43, 102, 182, 0.0509803922);
}
.trusted-by .content-wrapper .teams-bar .team-item:hover .team-icon {
  transform: scale(1.1);
  color: #0a59c3;
}
.trusted-by .content-wrapper .teams-bar .team-item:hover .team-name {
  color: #0a59c3;
  font-weight: 600;
}
.trusted-by .content-wrapper .teams-bar .team-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 150%;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 30px;
  background: #e0e0e0;
  opacity: 0.5;
}
@media (max-width: 768px) {
  .trusted-by .team-item {
    min-width: auto;
    padding: 10px 5px;
  }
  .trusted-by .team-icon {
    font-size: 20px;
  }
  .trusted-by .team-name {
    font-size: 12px;
  }
}
@media (max-width: 1399px) {
  .trusted-by .content-wrapper {
    gap: 15px;
  }
  .trusted-by .team-item:not(:last-child)::after {
    display: none;
  }
}

.features {
  background: #f5faff;
  padding: 60px 20px;
  text-align: center;
}
.features .features-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111;
}
.features .features-subtitle {
  font-size: 16px;
  color: #444;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.features .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  justify-items: center;
}
.features .features-grid .feature-card {
  background: #fff;
  border: 1px solid #e6f0fa;
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
}
.features .features-grid .feature-card .icon-box {
  background: #e6f9f2;
  border: 1px solid #AEDCC8;
  border-radius: 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  margin-bottom: 18px;
}
.features .features-grid .feature-card .icon-box img {
  width: 50px;
  height: 50px;
}
.features .features-grid .feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #111;
}
.features .features-grid .feature-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}
.features .features-grid .feature-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.review-card {
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #E6E6E6;
  background-color: #fff;
}
.review-card .name {
  position: relative;
  padding-inline-start: 30px;
  font-size: 18px;
}
.review-card .name::before {
  content: url(https://www.socialpilot.co/wp-content/uploads/2023/06/g2-icon.svg);
  position: absolute;
  z-index: 10;
  inset-inline-start: 0px;
  top: 2px;
}
.review-card .stars {
  font-size: 23px;
  margin-bottom: 2px;
  color: #fbbf24;
}
.review-card .des {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 28px;
  font-weight: normal;
  color: #1b1c1e;
}

.features-tabs {
  padding: 3rem 0rem;
}
.features-tabs .features-tab {
  margin-bottom: 40px;
  border-radius: 8px;
  border: 1px solid #CFE1FB;
  overflow: hidden;
}
.features-tabs .features-tab .nav-item {
  flex-grow: 1;
}
.features-tabs .features-tab .nav-item .nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 25px;
  font-size: 19px;
  font-weight: 700;
  color: #333;
  transition: all 0.3s ease;
  background-color: #fff;
}
.features-tabs .features-tab .nav-item .nav-link:hover {
  background-color: #f9f9f9;
}
.features-tabs .features-tab .nav-item .nav-link.active {
  background-color: #0066ff;
  color: #fff;
}
.features-tabs .features-tab .nav-link.active svg {
  fill: #FFF !important;
}
.features-tabs .features-tab #collaboration-tab.active svg path,
.features-tabs .features-tab #whitelabel-tab.active svg path,
.features-tabs .features-tab #engagement-tab.active svg path {
  stroke: #FFF !important;
  fill: none !important;
}
.features-tabs .tab-pane {
  animation: fadeIn 0.4s ease-in-out;
}
.features-tabs .content-box {
  padding: 25px;
  border-radius: 16px;
  border: 1px solid #CFE1FB;
  background-color: #E8F0FD;
}
.features-tabs .content-box .title {
  margin-bottom: 16px;
  font-size: 32px;
  font-weight: 700;
  line-height: 42px;
  color: #1b1c1e;
}
.features-tabs .content-box .des-title {
  margin-bottom: 18px;
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  color: #1b1c1e;
}
.features-tabs .content-box .list-mark {
  margin-bottom: 35px;
}
.features-tabs .content-box .list-mark li {
  position: relative;
  font-size: 18px;
  line-height: 28px;
  padding-inline-start: 40px;
  color: #1b1c1e;
}
.features-tabs .content-box .list-mark li:not(:last-child) {
  margin-bottom: 25px;
}
.features-tabs .content-box .list-mark li::before {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  background-image: url(https://www.socialpilot.co/wp-content/uploads/2021/07/Send-icon.png);
  background-size: cover;
  background-position: center;
  inset-inline-start: 0;
  top: 15px;
  transform: translateY(-50%);
}
.features-tabs .content-box .img {
  width: 100%;
  height: auto;
}
.features-tabs .content-box .review-card {
  margin-top: 20px;
}
.features-tabs .content-box .review-card .des {
  font-size: 17px;
  font-weight: normal;
}
@media (min-width: 1400px) {
  .features-tabs .content-box {
    padding: 48px;
  }
}
@media (min-width: 1400px) {
  .features-tabs {
    padding: 3rem 14rem;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.review-section {
  background-color: #f5f9ff;
}
.review-section .content-holder .title {
  margin-bottom: 16px;
  font-size: 20px;
  color: #1b1c1e;
  line-height: 30px;
  font-weight: bold;
}
.review-section .content-holder .des {
  margin-bottom: 24px;
  font-size: 18px;
  line-height: 28px;
  font-weight: normal;
  color: #1b1c1e;
}
.review-section .support-img {
  max-width: 95%;
  height: auto;
}

.pricing-section .main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a202c;
  text-align: center;
  margin-bottom: 40px;
}
.pricing-section .features-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 30px;
}
.pricing-section .features-row .feature-item {
  display: flex;
  align-items: center;
  color: #6b7280;
  font-size: 0.9rem;
}
.pricing-section .features-row .feature-item i,
.pricing-section .features-row .feature-item svg {
  color: #10b981;
  margin-inline-end: 8px;
  font-size: 14px;
}
.pricing-section .billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}
.pricing-section .billing-toggle .billing-label {
  font-weight: 600;
  color: #374151;
}
.pricing-section .billing-toggle .toggle-switch {
  position: relative;
  width: 60px;
  height: 32px;
  background: #2563eb;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.pricing-section .billing-toggle .toggle-switch::after {
  content: "";
  position: absolute;
  top: 3px;
  inset-inline-start: 3px;
  width: 26px;
  height: 26px;
  background: white;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.pricing-section .billing-toggle .discount-badge {
  background: #10b981;
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-inline-end: 10px;
}
.pricing-section .pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.pricing-section .pricing-cards .pricing-card {
  position: relative;
  padding: 28px 24px;
  border-radius: 16px;
  border: 2px solid #e5e7eb;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  background-color: white;
}
.pricing-section .pricing-cards .pricing-card .popular-badge {
  position: absolute;
  top: -12px;
  inset-inline-end: 50%;
  transform: translateX(-50%);
  background-color: #10b981;
  color: white;
  padding: 6px 16px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}
.pricing-section .pricing-cards .pricing-card .card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}
.pricing-section .pricing-cards .pricing-card .price {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 0px;
}
.pricing-section .pricing-cards .pricing-card .price .price-period {
  font-size: 1rem;
  color: #6b7280;
  font-weight: 400;
}
.pricing-section .pricing-cards .pricing-card .original-price {
  color: #9ca3af;
  text-decoration: line-through;
  font-size: 1.1rem;
  margin-bottom: 5px;
}
.pricing-section .pricing-cards .pricing-card .billing-info {
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 20px;
}
.pricing-section .pricing-cards .pricing-card .features-list li {
  display: flex;
  align-items: center;
  color: #374151;
  font-size: 0.9rem;
}
.pricing-section .pricing-cards .pricing-card .features-list li i,
.pricing-section .pricing-cards .pricing-card .features-list li svg {
  color: #10b981;
  margin-inline-end: 12px;
  font-size: 17px;
}
.pricing-section .pricing-cards .pricing-card .features-list li:not(:last-child) {
  margin-bottom: 6px;
}
.pricing-section .pricing-cards .pricing-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.pricing-section .try-features {
  text-align: center;
  margin-bottom: 30px;
  color: #6b7280;
}
.pricing-section .try-features strong {
  color: #1f2937;
}
.pricing-section .plan-button {
  background: #2563eb;
  color: white;
  border: none;
  padding: 16px 40px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}
.pricing-section .plan-button:hover {
  background: #1d4ed8;
  color: white;
  transform: translateY(-1px);
}
@media (max-width: 768px) {
  .pricing-section .features-row {
    flex-direction: column;
    gap: 15px;
  }
  .pricing-section .main-title {
    font-size: 2rem;
  }
  .pricing-section .pricing-cards {
    grid-template-columns: 1fr;
  }
}

.testimonials-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8faff 0%, #e8f2ff 100%);
  z-index: 1;
}
.testimonials-section::before {
  content: "";
  position: absolute;
  top: -50%;
  inset-inline-end: -20%;
  width: 40%;
  height: 200%;
  background: rgba(37, 99, 235, 0.03);
  border-radius: 50%;
  z-index: -1;
}
.testimonials-section::after {
  content: "";
  position: absolute;
  top: -30%;
  inset-inline-start: -15%;
  width: 30%;
  height: 160%;
  background: rgba(16, 185, 129, 0.03);
  border-radius: 50%;
  z-index: -1;
}
.testimonials-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .testimonials-section .section-title {
    font-size: 2rem;
  }
}
.testimonials-section .section-subtitle {
  max-width: 700px;
  margin-bottom: 25px;
  margin-inline-end: auto;
  margin-inline-start: auto;
  font-size: 1.1rem;
  text-align: center;
  color: #6b7280;
}

.testimonials-swiper {
  width: 100%;
  padding: 15px 0 45px 0;
  /* Custom Swiper Pagination */
}
.testimonials-swiper .swiper-pagination {
  bottom: 0 !important;
}
.testimonials-swiper .swiper-pagination-bullet {
  background: #d1d5db;
  opacity: 1;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  transition: all 0.3s ease;
}
.testimonials-swiper .swiper-pagination-bullet-active {
  background: #2563eb;
  transform: scale(1.2);
}

.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  min-height: 198px;
  padding: 20px;
  border: 1px solid rgba(229, 231, 235, 0.5);
  border-radius: 20px;
  background: white;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.testimonial-card .testimonial-quote {
  position: absolute;
  top: -15px;
  inset-inline-end: 30px;
  font-size: 3rem;
  color: #2563eb;
  font-weight: bold;
  line-height: 1;
}
.testimonial-card .testimonial-content {
  font-size: 1rem;
  line-height: 1.6;
  color: #374151;
  margin-bottom: 20px;
  flex-grow: 1;
}
.testimonial-card .testimonial-content .highlight {
  background: #fef3c7;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 500;
}
.testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
}
.testimonial-card .testimonial-author .author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-inline-end: 16px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 3px solid #f3f4f6;
}
.testimonial-card .testimonial-author .author-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 4px;
}
.testimonial-card .testimonial-author .author-info p {
  font-size: 0.9rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.4;
}
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: white;
  background: linear-gradient(135deg, #4A90E2 0%, #357ABD 50%, #2E5B8C 100%);
  padding: 80px 0;
}
.hero-section::before, .hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  width: 300px;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.08) 0%, transparent 100%);
  pointer-events: none;
}
.hero-section::before {
  left: -150px;
  transform: skewX(-15deg);
}
.hero-section::after {
  right: -150px;
  transform: skewX(15deg);
  background: linear-gradient(-45deg, rgba(255, 255, 255, 0.08) 0%, transparent 100%);
}
.hero-section .main-heading {
  margin-bottom: 20px;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.hero-section .subtitle {
  max-width: 600px;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6;
  opacity: 0.9;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  align-items: center;
  justify-items: center;
  margin-top: 40px;
}
.partners-grid .partner-logo {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  transition: all 0.4s ease;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 200px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.partners-grid .partner-logo img {
  max-width: 100%;
  max-height: 70px;
  filter: grayscale(100%) brightness(0) invert(1);
  opacity: 0.7;
  transition: all 0.4s ease;
  z-index: 1;
  position: relative;
}
.partners-grid .partner-logo .partner-name {
  font-size: 16px;
  font-weight: 600;
  color: white;
  text-align: center;
  margin-top: 10px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.partners-grid .partner-logo:hover {
  transform: translateY(-8px) scale(1.05);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}
.partners-grid .partner-logo:hover img {
  filter: none;
  opacity: 1;
}
.partners-grid .partner-logo:hover::before {
  transform: translateX(100%);
}
.partners-grid .partner-logo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

@media (max-width: 768px) {
  .main-heading {
    font-size: 2rem;
  }
  .subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
  }
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .partner-logo {
    width: 150px;
    height: 100px;
    padding: 20px;
  }
  .partner-logo img {
    max-height: 50px;
  }
}
.footer-section {
  background: #f5f5f5;
  padding: 30px 20px;
  text-align: center;
  border-top: 1px solid #e0e0e0;
}
.footer-section .footer-info {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #666;
}
.footer-section .footer-links a {
  color: #4A90E2;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s ease;
}
.footer-section .footer-links a:hover {
  color: #357ABD;
}
.footer-section .footer-links span {
  color: #999;
  margin: 0 5px;
}

/* الاستجابة للأجهزة المحمولة */
@media (max-width: 768px) {
  .main-heading {
    font-size: 2.2rem;
  }
  .awards-section {
    gap: 20px;
  }
  .rating-circle {
    width: 120px;
    height: 120px;
    margin: 20px 0;
  }
  .hero-section::before,
  .hero-section::after {
    width: 200px;
  }
  .hero-section::before {
    left: -100px;
  }
  .hero-section::after {
    right: -100px;
  }
}
@media (max-width: 480px) {
  .awards-section {
    flex-direction: column;
  }
  .rating-circle {
    order: -1;
  }
}/*# sourceMappingURL=main.css.map */