/* style.css */

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

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

body {
  font-family: "Lato", sans-serif;
  background: #ffffff;
  overflow-x: hidden;
}

/* =========================
   Navbar
========================= */

.custom-navbar {
  background: #ffff;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

.logo-img {
  height: 48px;
  object-fit: contain;
}

.nav-links {
  gap: 40px;
}

.nav-link {
  color: #111 !important;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
}

.nav-link:hover {
  color: #ff2e63 !important;
}

/* =========================
   Hero Section
========================= */

.hero-section {
  padding: 0 0 60px;
}

.hero-box {
  background: #000;
  border-radius: 30px;
  margin-top: 0;
  padding: 90px 20px 0;
  overflow: hidden;
  position: relative;
}

/* Hero Content */

.hero-content {
  max-width: 950px;
  margin: 0 auto;
}

.hero-content h1 {
  color: #fff;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 28px;
}

.hero-content p {
  color: #bcbcbc;
  font-size: 18px;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 40px;
}

.hero-btn {
  background: linear-gradient(90deg, #fe3941, #d31889, #6e1bdd);
  color: #fff;
  border: none;
  border-radius: 40px;
  padding: 12px 34px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

/* Text Animation */

.btn-text {
  transition: 0.3s ease;
}

/* Arrow */

.btn-arrow {
  opacity: 0;
  transform: translateX(-10px);
  transition: 0.3s ease;
  font-size: 18px;
}

/* Hover Effect */

.hero-btn:hover .btn-text {
  transform: translateX(5px);
}

.hero-btn:hover .btn-arrow {
  opacity: 1;
  transform: translateX(0);
}

.hero-btn:hover {
  color: #fff;
}

/* =========================
   Dashboard Image
========================= */

.dashboard-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}

.dashboard-img {
  width: 100%;
  max-width: 980px;
  border-radius: 20px 20px 0 0;
}

/* =========================
   Responsive
========================= */

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

@media (max-width: 992px) {
  .nav-links {
    gap: 10px;
    margin: 20px 0;
  }

  .nav-btn {
    width: 100%;
  }

  .hero-box {
    padding-top: 70px;
  }

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

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

@media (max-width: 768px) {
  .hero-box {
    border-radius: 20px;
    padding-top: 60px;
  }

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

  .hero-content p {
    font-size: 15px;
    line-height: 1.7;
  }

  .dashboard-wrapper {
    margin-top: 50px;
  }
}

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

  .hero-btn {
    width: 100%;
  }
}

/* ----------STATS SECTION---------- */

.stats-section {
  background-color: #ffff;
  padding: 60px 0;
}

.stat-number {
  font-size: 42px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.stat-text {
  font-size: 16px;
  color: #777;
  line-height: 1.5;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .stat-number {
    font-size: 32px;
  }

  .stat-text {
    font-size: 14px;
  }
}

/* ---------- FOR INDUSTRY SECTION ---------------- */

/* Section */
.industry-section {
  padding: 80px 0;
}

/* Tag */
.tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;

  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, #fe3941, #d31889, #6e1bdd) border-box;

  border: 1.5px solid transparent;

  color: #d31889;
}

/* Title */
.section-title {
  font-size: 40px;
  font-weight: 700;
  margin-top: 20px;
}

/* Card */
.industry-card {
  background: #fbf7f4;
  border: #e6dfda 1px solid;
  border-radius: 20px;
  padding: 25px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

/* Text */
.industry-card h5 {
  font-weight: 600;
  margin-bottom: 8px;
}

.industry-card p {
  color: #777;
  font-size: 14px;
}

/* Images */
.card-img {
  width: 100%;
  margin-top: 15px;
  border-radius: 10px;
}

.card-img-right {
  position: absolute;
  right: 10px;
  bottom: 0;
  width: 160px;
}

/* Bottom image (mobile style) */
.card-img-bottom {
  width: 70%;
  margin: auto;
  margin-top: 20px;
  display: block;
}

/* Better spacing */
.card-img {
  margin-top: auto;
}

/* Improve alignment */
.row.g-4 > div {
  display: flex;
}

/* GRID LAYOUT */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Placement like your design */
.card1 {
  grid-column: 1;
  grid-row: 1;
}
.card2 {
  grid-column: 2;
  grid-row: 1;
  padding: 25px 0 0 25px !important;
}
.card3 {
  grid-column: 3;
  grid-row: 1;
}

.card4 {
  grid-column: 1 / span 2;
  grid-row: 2;
  padding-right: 0;
} /* wide */

/* Card 4 Layout */
.card4-content {
  display: flex;

  justify-content: space-between;
  height: 100%;
  gap: 20px;
}

/* Left text */
.card4-text {
  flex: 1;
}

/* Right image container */
.card4-img {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Increase image size */
.card4-img img {
  width: 220px; /* increase size */
  max-width: 100%;
}

/* Remove old absolute positioning (IMPORTANT) */
.card-img-right {
  position: static;
  width: auto;
}

.card5 {
  grid-column: 3;
  grid-row: 2 / span 2;
  padding: 25px 25px 0 25px;
  display: flex;
  flex-direction: column;
}

/* Make image stick to bottom */
.card5 .card-img-bottom {
  margin-top: 38%; /* push to bottom */
  width: 80%;
  display: block;
}

/* Remove default padding effect at bottom */

.card6 {
  grid-column: 1;
  grid-row: 3;
  padding-bottom: 0;
}
.card7 {
  grid-column: 2;
  grid-row: 3;
  padding-bottom: 0;
}

/* Heights */
.card4 {
  min-height: 260px;
}
.card5 {
  min-height: 500px;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }

  .card-img-right {
    width: 120px;
  }
}

/* ---------- TESTIMONIAL SECTION ------------ */

.testimonial-section {
  background: #000;
  margin: 0 50px 0 50px;
  border-radius: 20px;
}

.testimonial-card {
  position: relative;
  max-width: 900px;
  margin: 0 auto; /* ✅ THIS centers the card */
  color: #fff;
  text-align: center;
  padding: 60px 40px;
  border-radius: 30px;
  overflow: hidden;
  background: #000;
}

/* Slides */
.testimonial-slide {
  display: none;
  animation: fade 0.5s ease;
}

.testimonial-slide.active {
  display: block;
}

/* Quote */
.quote {
  font-size: 60px;
  color: #ccc;
  margin-bottom: 20px;
}

/* Text */
.testimonial-slide p {
  max-width: 600px;
  margin: 0 auto 25px;
  line-height: 1.6;
}

/* Name */
.testimonial-slide h5 {
  margin-bottom: 5px;
}

.testimonial-slide span {
  font-size: 13px;
  color: #aaa;
}

/* Dots */
.dots {
  margin-top: 25px;
}

.dot {
  height: 8px;
  width: 8px;
  margin: 0 4px;
  background: #555;
  border-radius: 50%;
  display: inline-block;

  pointer-events: none; /* ❌ disables clicking */
  cursor: default;
}

.dot.active {
  background: #fff;
}

/* Arrows */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}

.prev {
  left: 10px;
}
.next {
  right: 10px;
}

/* Animation */
@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ---------------- VENDOR SECTION ----------------- */

/* Section */
.vendor-section {
  padding: 80px 0;
}

/* Tag */
.tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;

  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, #fe3941, #d31889, #6e1bdd) border-box;

  border: 1.5px solid transparent;

  color: #d31889;
}

/* Title */
.section-title {
  font-size: 40px;
  font-weight: 700;
  margin-top: 20px;
}

/* Card */
.vendor-card {
  background: #fbf7f4;
  border: #e6dfda 1px solid;
  border-radius: 20px;
  padding: 25px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

/* Text */
.vendor-card h5 {
  font-weight: 600;
  margin-bottom: 8px;
}

.vendor-card p {
  color: #777;
  font-size: 14px;
}

/* Images */
.card-img {
  width: 100%;
  margin-top: 15px;
  border-radius: 10px;
}

.card-img-right {
  position: absolute;
  right: 10px;
  bottom: 0;
  width: 160px;
}

/* Bottom image (mobile style) */
.card-img-bottom {
  width: 70%;
  margin: auto;
  margin-top: 20px;
  display: block;
}

/* Better spacing */
.card-img {
  margin-top: auto;
}

/* Improve alignment */
.row.g-4 > div {
  display: flex;
}

/* GRID LAYOUT */
.vendor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Placement like your design */
.card-1 {
  grid-column: 1;
  grid-row: 3;
}
.card-2 {
  grid-column: 2;
  grid-row: 3;
  padding: 25px 0 0 25px !important;
}
.card-3 {
  grid-column: 3;
  grid-row: 3;
}

.card-4 {
  grid-column: 1 / span 2;
  grid-row: 1;
  padding-right: 0;
} /* wide */

/* Card 4 Layout */
.card-4-content {
  display: flex;

  justify-content: space-between;
  height: 100%;
  gap: 20px;
}

/* Left text */
.card-4-text {
  flex: 1;
}

/* Right image container */
.card-4-img {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Increase image size */
.card-4-img img {
  width: 220px; /* increase size */
  max-width: 100%;
}

/* Remove old absolute positioning (IMPORTANT) */
.card-img-right {
  position: static;
  width: auto;
}

.card-5 {
  grid-column: 3;
  grid-row: 1 / span 2;
  padding: 25px 25px 0 25px;
  display: flex;
  flex-direction: column;
}

/* Make image stick to bottom */
.card-5 .card-img-bottom {
  margin-top: 38%; /* push to bottom */
  width: 80%;
  display: block;
}

/* Remove default padding effect at bottom */

.card-6 {
  grid-column: 1;
  grid-row: 2;
  padding-bottom: 0;
}
.card-7 {
  grid-column: 2;
  grid-row: 2;
  padding-bottom: 0;
}

/* Heights */
.card-4 {
  min-height: 260px;
}
.card-5 {
  min-height: 500px;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }

  .card-img-right {
    width: 120px;
  }
}

/* =========================
   --------------------WHY CHOOSE US SECTION ---------------------------
========================= */

.benefits-section {
  padding: 80px 0;
}

/* Black Wrapper */

.benefits-wrapper {
  background: #000;
  border-radius: 28px;
  padding: 34px 40px 42px;
}

/* =========================
   TAG
========================= */

.benefit-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;

  background:
    linear-gradient(#000, #000) padding-box,
    linear-gradient(90deg, #fe3941, #d31889, #6e1bdd) border-box;

  border: 1.5px solid transparent;

  color: #d31889;
}

/* =========================
   TITLE
========================= */

.benefit-title {
  color: #fff;
  font-size: 56px;
  font-weight: 700;
  margin-top: 18px;
  margin-bottom: 55px;
}

/* =========================
   GRID
========================= */

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

/* =========================
   CARD
========================= */

.benefit-card {
  background: #fff;
  border-radius: 6px;
  padding: 22px 16px 20px;
  position: relative;
  min-height: 170px;
  transition: 0.3s;
}

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

/* Top Border */

.green-border {
  border-top: 4px solid #00d95f;
}

.red-border {
  border-top: 4px solid #ff2f2f;
}

.yellow-border {
  border-top: 4px solid #f0c94c;
}

.blue-border {
  border-top: 4px solid #2d7cff;
}

/* =========================
   ICON BOX
========================= */

.icon-box {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.icon-box img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

/* Backgrounds */

.green-bg {
  background: #d9ffe6;
}

.red-bg {
  background: #ffe2e2;
}

.yellow-bg {
  background: #fff2cc;
}

.blue-bg {
  background: #dceaff;
}

/* =========================
   TEXT
========================= */

.benefit-card h5 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  color: #111;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 13px;
  line-height: 1.45;
  color: #7b7b7b;
  margin-bottom: 0;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit-title {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .benefits-wrapper {
    padding: 30px 20px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefit-title {
    font-size: 34px;
    margin-bottom: 35px;
  }
}

/* =========================
   -------------------- PRICING SECTION ---------------------------
========================= */

.pricing-section {
  padding: 80px 0;
  background-color: #fbfbfb;
}

.pricing-card {
  background: #fff;
  border: 1px solid #e6dfda;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.pricing-card.popular {
  border: 2px solid #d31889;
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(211, 24, 137, 0.1);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-5px);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #fe3941, #d31889, #6e1bdd);
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.plan-name {
  font-size: 20px;
  font-weight: 600;
  color: #111;
  margin-bottom: 20px;
}

.plan-price {
  font-size: 48px;
  font-weight: 700;
  color: #111;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plan-price .currency {
  font-size: 24px;
  margin-right: 5px;
  margin-top: -15px;
}

.plan-price .duration {
  font-size: 14px;
  color: #7b7b7b;
  font-weight: 500;
  margin-left: 5px;
  margin-top: 15px;
}

.plan-desc {
  color: #777;
  font-size: 14px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.pricing-btn {
  background: transparent;
  color: #111;
  border: 1px solid #111;
  border-radius: 40px;
  padding: 10px 25px;
  font-weight: 600;
  transition: 0.3s;
  width: 100%;
  text-decoration: none;
}

.pricing-btn:hover {
  background: #111;
  color: #fff;
}

.pricing-card.popular .pricing-btn {
  background: linear-gradient(90deg, #fe3941, #d31889, #6e1bdd);
  color: #fff;
  border: none;
}

.pricing-card.popular .pricing-btn:hover {
  opacity: 0.9;
}

@media (max-width: 992px) {
  .pricing-card.popular {
    transform: scale(1);
  }
  .pricing-card.popular:hover {
    transform: translateY(-5px);
  }
}

/* --------------- EMPOWER BUSINESS SECTION ----------------- */

.empower-business {
  padding: 80px 0;
}

.business-content {
  max-width: 950px;
  margin: 0 auto;
}

.business-content h1 {
  font-size: 40px;
  font-weight: 600;

  margin-bottom: 28px;
}

/* =========================
   ------------------- FOOTER SECTION---------------------------------
========================= */

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

/* Black Footer Box */

.footer-wrapper {
  background: #000;
  border-radius: 28px;
  padding: 90px 75px;
  overflow: hidden;
}

/* =========================
   LOGO
========================= */

.footer-logo img {
  width: 100%;
  max-width: 290px;
  object-fit: contain;
}

/* =========================
   LINKS WRAPPER
========================= */

.footer-links-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

/* =========================
   COLUMNS
========================= */

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Links */

.footer-column a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: 0.3s;
}

.footer-column a:hover {
  color: #d21aff;
}

/* Contact Text */

.footer-contact p {
  color: #fff;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .footer-wrapper {
    padding: 60px 40px;
  }

  .footer-links-wrapper {
    flex-wrap: wrap;
    gap: 40px;
  }

  .footer-logo {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .footer-wrapper {
    padding: 45px 25px;
    border-radius: 22px;
  }

  .footer-links-wrapper {
    flex-direction: column;
    gap: 35px;
  }

  .footer-column {
    gap: 18px;
  }

  .footer-column a,
  .footer-contact p {
    font-size: 15px;
  }

  .footer-logo img {
    max-width: 230px;
  }
}
