* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", system-ui, sans-serif;
}

body {
  background: #000;
  color: #fff;
}

h2 {
  font-size: 45px;
}

header {
  background-color: #000;
  position: sticky;
  top: 0;
  z-index: 2;
  overflow: hidden;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  margin: auto;
  max-width: 1200px;
  background-color: #000;
  z-index: 2;
}

.logo {
  font-size: 20px;
  font-weight: 700;
}

.logo span {
  color: #4764CD;
}

.nav-links a {
  margin-left: 22px;
  text-decoration: none;
  color: #ccc;
  font-size: 14px;
}

.nav-links a:hover {
  color: #efb03e;
}

.nav-links .login {
  color: #000;
  font-weight: 700;
  background-color: #fff;
  border-radius: 5px;
  padding: 8px 20px;
  letter-spacing: 0.8px;
}

.nav-links .login:hover,
.mobile-menu .login:hover {
  color: #3782c1;
}

.mobile-menu .login {
  color: #000;
  font-weight: 700;
  background-color: #fff;
  border-radius: 5px;
  padding: 8px 20px;
  width: fit-content;
  letter-spacing: 0.8px;
  margin-top: 15px;
}

.hero {
  text-align: center;
  padding: 80px 20px;
}

.hero p {
  margin-top: 20px;
  color: #aaa;
  font-size: 16px;
}

.cta-btn {
  margin-top: 30px;
  padding: 14px 28px;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  float: none;
}

.dashboard-preview {
  margin-top: 60px;
}

.dashboard-preview img {
  max-width: 70%;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  transition: transform 0.6s ease;
}

/* Zoom IN */
.dashboard-preview:hover {
  transform: scale(1);
}

.dashboard-preview:hover img {
  transform: scale(1.05);
}


/*Sliding Brands (using existing classes)*/

.brands p {
  text-align: center;
  width: 100%;
  margin-bottom: 30px;
  padding: 10px 0;
  font-size: 20px;
}

.brands {
  overflow: hidden;
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
}

.brand-logos {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: infiniteScroll 25s linear infinite;
}

.brand-logos span {
  background: #111;
  padding: 16px 32px;
  border-radius: 14px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  white-space: nowrap;
  flex-shrink: 0;
}

.brand-logos img {
  background: #111;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* TRUE INFINITE ANIMATION */
@keyframes infiniteScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }

}

/* Pause on hover */
.brands:hover .brand-logos {
  animation-play-state: paused;
}

/* Fade Edges for Brand Slider */
.brands::before,
.brands::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.brands::before {
  left: 0;
  background: linear-gradient(to right,
      #000 0%,
      rgba(0, 0, 0, 0) 100%);
}

.brands::after {
  right: 0;
  background: linear-gradient(to left,
      #000 0%,
      rgba(0, 0, 0, 0) 100%);
}


.value {
  padding: 80px 20px;
  text-align: center;
}

/* .value span {
  color: #4764CD;
}

.value h2 {
  font-size: 44px;
} */

.subtitle {
  margin-top: 12px;
  color: #999;
  font-size: 20px;
}

.cards {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;

  @media (min-width: 769px) {
    .cards {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }


  }

}


.card {
  background: radial-gradient(circle at top,
      #1a1a1a,
      #0b0b0b);
  padding: 40px 30px;
  border-radius: 24px;
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7);
}

/* Icon container */
.card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Individual icons */
.handshake {
  background: rgba(0, 194, 209, 0.15);
}


.stack {
  background: rgba(123, 97, 255, 0.18);
}

.stack::before {
  content: "🧱";
  font-size: 32px;
}

.profit {
  background: rgba(245, 183, 0, 0.18);
}

.profit::before {
  content: "📈";
  font-size: 32px;
}

.card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.card p {
  font-size: 14px;
  color: #aaa;
  line-height: 1.6;
}

.card h3 {
  margin-bottom: 10px;
}

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

@media (max-width: 768px) {

  .navbar {
    padding: 20px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    font-size: 32px;
  }

  .hero {
    padding: 20px;
  }

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

  .brand-logos {
    gap: 20px;
  }

  .value h2 {
    font-size: 32px;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: white;
  margin: 4px 0;
  border-radius: 4px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #0b0b0b;
  padding: 20px;
}

.mobile-menu a {
  color: #fff;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid #222;
}

.mobile-menu.open {
  display: flex;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* ===== Offerings Section ===== */

.offerings {
  padding: 60px 20px;
  text-align: center;
}

/* .section-label {
  color: #7b8cff;
  font-size: 24px;
  margin-bottom: 10px;
} */

.offerings h2 {
  font-size: 44px;
  margin-bottom: 40px;
}

.offer-panel {
  max-width: 1100px;
  margin: auto;
  display: none;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 30px;
  border-radius: 24px;
  background: radial-gradient(circle at top, #151515, #0b0b0b);
  animation: fadeUp 0.4s ease;
}

.offer-panel.active {
  display: grid;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab {
  padding: 10px 22px;
  border-radius: 30px;
  background: #111;
  color: #ffffff;
  border: 1px solid #222;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.8px;
}

.tab.active {
  background: #fff;
  color: #000;
  font-weight: 600;
}

.offer-card {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 30px;
  border-radius: 24px;
  background: radial-gradient(circle at top, #151515, #0b0b0b);
}

.offer-image img {
  width: 100%;
  border-radius: 18px;
}

.offer-image video {
  width: 100%;
  border-radius: 30px;
}

.offer-content {
  text-align: left;
}

.badge {
  width: 40px;
  height: 40px;
  background: #ff3d81;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.offer-content h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.offer-content p {
  font-size: 15px;
  margin-bottom: 20px;
}

.offer-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.offer-content li {
  margin-bottom: 10px;
  color: #aaa;
  font-size: 14px;
}

.view-link {
  color: #7b8cff;
  font-size: 14px;
  text-decoration: none;
}

@media (max-width: 768px) {
  .offer-card {
    grid-template-columns: 1fr;
  }

  .offerings h2 {
    font-size: 30px;
  }

  .offer-panel {
    max-width: 1100px;
    margin: auto;
    display: none;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px;
    border-radius: 24px;
    background: radial-gradient(circle at top, #151515, #0b0b0b);
    animation: fadeUp 0.4s ease;
  }

  .tabs {
    margin-bottom: 30px;
  }

}

.growth {
  padding: 60px 20px;
}

.growth-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.label {
  font-size: 44px;
}

.growth-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.growth-card {
  background: #0b0b0b;
  border-radius: 14px;
  padding: 22px 24px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.growth-card h4 {
  font-size: 15px;
  margin-bottom: 8px;
  letter-spacing: 1px;
  font-weight: 500;
  color: #efb03e;
}

.growth-card p {
  font-size: 13px;
  color: #fff;
  line-height: 1.5;
}

.growth-card.active h4,
.growth-card.active p {
  color: #fff;
}

.growth-card:hover {
  background: linear-gradient(135deg, #3782c1, #3782c1);
  transform: translateY(-4px);
}

@media (max-width: 768px) {
  .growth-container {
    grid-template-columns: 1fr;
  }

  .growth-left h2 {
    font-size: 28px;
  }

  .growth-left h3,
  .growth-left span {
    font-size: 32px;
  }

  .growth-left {
    text-align: center;
  }

  .growth-left p {
    text-align: center;
  }
}

.testimonials {
  padding: 60px 20px;
  text-align: center;
}

.testimonials h2 {
  font-size: 44px;
  margin-bottom: 40px;
}

.testimonial-wrapper {
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  padding: 20px 0;
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scrollTestimonials 35s linear infinite;
}

.testimonial-wrapper:hover .testimonial-track {
  animation-play-state: paused;
}

.testimonial-card {
  width: 320px;
  background: radial-gradient(circle at top, #121a2f, #070b16);
  padding: 30px;
  border-radius: 22px;
  text-align: left;
  color: #fff;
  transition: all 0.4s ease;
}

.testimonial-card p {
  font-size: 14px;
  line-height: 1.6;
  text-align: justify;
}

.testimonial-card span {
  display: block;
  margin-top: 20px;
  font-size: 13px;
  color: #fff;
}

.testimonial-card:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7);
  opacity: 1;
}

.testimonial-card:not(:hover) {
  opacity: 0.7;
}

/* Infinite keyframes */
@keyframes scrollTestimonials {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .testimonial-track {
    animation-duration: 25s;
  }

  .testimonial-card {
    min-width: 280px;
  }

  .testimonials h2 {
    font-size: 32px;
  }
}

/* Pricing Section */

/* .pricing {
  padding: 120px 20px;
}

.pricing h2 {
  font-size: 44px;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 80px;
}

.pricing-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.pricing-left h3 {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3;
}

.pricing-left h3 span {
  font-size: 56px;
}


.pricing-left span {
  color: #4764CD;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.price-card {
  background: radial-gradient(circle at top, #1a1a1a, #0b0b0b);
  padding: 36px;
  border-radius: 22px;
  transition: all 0.35s ease;
}

.price-card h4 {
  font-size: 44px;
  color: #4764CD;
}

.price-card p {
  margin-top: 12px;
  font-size: 14px;
  color: #aaa;
}

.price-card.highlight {
  background: linear-gradient(135deg, #4764CD, #5b78ff);
}

.price-card.highlight h4,
.price-card.highlight p {
  color: #fff;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7);
}

@media (max-width: 768px) {
  .pricing-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pricing-left h3 {
    font-size: 28px;
    text-align: center;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }
} */
/* ====================== */
/* Journey Timeline */
/* ====================== */

.journey {
  padding: 60px 20px;
  text-align: center;
}

.journey h2 {
  font-size: 44px;
  margin-bottom: 80px;
}

.journey h2 span {
  color: #4764CD;
}

/* Timeline container */
.timeline {
  position: relative;
  max-width: 1100px;
  margin: auto;
}

/* Vertical line */
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom,
      transparent,
      #4764CD,
      transparent);
}

/* Timeline item */
.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
}

/* Left & Right positioning */
.timeline-item.left {
  left: 0;
  text-align: right;
}

.timeline-item.right {
  left: 50%;
  text-align: left;
}

/* Dots */
.timeline-item .dot {
  position: absolute;
  top: 40px;
  width: 12px;
  height: 12px;
  background: #4764CD;
  border-radius: 50%;
  z-index: 2;
}

.timeline-item.left .dot {
  right: -6px;
}

.timeline-item.right .dot {
  left: -6px;
}

/* Card */
.timeline-card {
  background: radial-gradient(circle at top, #1a1a1a, #0b0b0b);
  padding: 24px 28px;
  border-radius: 18px;
  transition: all 0.35s ease;
  max-width: 420px;
  display: inline-block;
}

.timeline-card small {
  color: #fff;
  font-size: 12px;
}

.timeline-card h4 {
  margin: 8px 0;
  font-size: 18px;
}

.timeline-card p {
  font-size: 14px;
  color: #fff;
  line-height: 1.6;
}

/* Active */
/* .timeline-item.active .timeline-card {
  background: linear-gradient(135deg, #4764CD, #5b78ff);
} */

.timeline-item.active h4,
.timeline-item.active p,
.timeline-item.active small {
  color: #fff;
}

/* Hover */
.timeline-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
  background: linear-gradient(135deg, #3075ae, #5aa5e3f8, #3075ae);
}

/* Mobile */

@media (max-width: 768px) {

  .timeline::before {
    left: 8px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 40px;
    padding-right: 0;
    text-align: left;
  }

  .timeline-item.left,
  .timeline-item.right {
    left: 0;
  }

  .timeline-item .dot {
    left: 2px;
  }

  .timeline-card {
    max-width: 100%;
  }

  .journey h2 {
    font-size: 32px;
    margin-bottom: 40px;
  }
}

/* ====================== */
/* Founders Section */
/* ====================== */

.founders {
  padding: 100px 20px;
  display: flex;
  align-items: center;
  padding: 50px;
}

/* Cards container */
.founder-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  width: 40%;
}

/* Individual card */
.founder-card {
  background: radial-gradient(circle at top, #1a1a1a, #0b0b0b);
  padding: 40px 30px;
  border-radius: 22px;
  width: 300px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Hover */
.founder-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7);
}

/* Image */
.founder-card img {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 18px;
}

/* Text */
.founder-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.founder-card p {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 14px;
}

/* LinkedIn */
.linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #0a66c2;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.linkedin:hover {
  transform: scale(1.1);
}

/* ====================== */
/* Mobile */
/* ====================== */

@media (max-width: 768px) {
  .founder-cards {
    gap: 24px;
  }
}

@media (max-width: 580px) {

  .founders {
    padding: 20px;
    display: flex;
    align-items: center;
    /* padding: 50px; */
    flex-direction: column;

  }

  .about-content {
    width: 90%;
    padding: 0 0 0 0;
    display: contents;
  }



}

/* ====================== */
/* Mission Section */
/* ====================== */

.mission {
  padding: 60px 20px 100px;
  text-align: center;
}

/* Eyebrow */
.mission-label {
  display: inline-block;
  font-size: 44px;
  letter-spacing: 0.6px;
  color: #fff;
  margin-bottom: 10px;
}

.mission-label span {
  color: #4764CD;
}

/* Heading */
.mission h2 {
  font-size: 72px;
  line-height: 1.2;
  margin-bottom: 60px;
}

/* Illustration */
.mission-illustration {
  display: flex;
  justify-content: center;
}

.mission-illustration img {
  max-width: 720px;
  width: 100%;
  opacity: 0.95;
}

/* ====================== */
/* Mobile */
/* ====================== */

@media (max-width: 768px) {

  .mission {
    padding: 80px 20px;
  }

  .mission h2 {
    font-size: 30px;
  }

  .mission-illustration img {
    max-width: 100%;
  }
}

/* ====================== */
/* Philosophy + Impact */
/* ====================== */

.philosophy-impact {
  padding: 60px 20px;
  text-align: center;
}

/* Section Label */
.section-label {
  display: inline-block;
  font-size: 44px;
  color: #fff;
  margin-bottom: 14px;
}

.section-label span {
  color: #4764CD;
}

/* Philosophy */
.philosophy h2 {
  font-size: 44px;
  line-height: 1.3;
  max-width: 900px;
  margin: 0 auto 100px;
  font-weight: 600;
}

/* Impact */
.impact {
  margin-top: 40px;
}

/* Grid */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 40px auto 0;
}

/* Cards */
.impact-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 26px 22px;
  text-align: left;
  transition: all 0.3s ease;
}

.impact-card h3 {
  font-size: 32px;
  margin-bottom: 6px;
}

.impact-card p {
  font-size: 14px;
  color: #bbb;
  line-height: 1.4;
}

/* Hover */
.impact-card:hover {
  border-color: #4764CD;
  transform: translateY(-4px);
}

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

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

@media (max-width: 600px) {
  .philosophy h2 {
    font-size: 26px;
    margin: 0 auto 50px;

  }

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

  .section-label {
    font-size: 34px;

  }

  .philosophy-impact {
    padding: 20px;
    text-align: center;
  }

}

/* ============================= */
/* Backed + Contact Section */
/* ============================= */

.backed-contact {
  padding: 60px 20px;
}

/* ---------- Backed by the Best ---------- */

.backed {
  text-align: center;
  margin-bottom: 120px;
}

.backed h2 {
  font-size: 56px;
  margin-bottom: 30px;
}

.backed h2 span {
  color: #4764CD;
}

.logo-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.logo-box {
  background: #fff;
  color: #000;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  min-width: 160px;
  text-align: center;
}

/* ---------- Contact Section ---------- */

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

/* Left text */

.contact-text h3 {
  font-size: 44px;
  margin-bottom: 12px;
}

.contact-text p {
  color: #aaa;
  font-size: 20px;
}

.contact-text a {
  color: #4764CD;
  text-decoration: none;
  font-size: 20px;
}

/* Form */
.contact-form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 30px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group label {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 6px;
}

input,
textarea {
  background: rgba(255, 255, 255, 0.06);
  border: none;
  border-radius: 8px;
  padding: 10px 12px;
  color: #fff;
  font-size: 14px;
}

input:focus,
textarea:focus {
  outline: 1px solid #4764CD;
}

/* Button */
button {
  margin-top: 10px;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 20px;
  padding: 10px 22px;
  font-size: 14px;
  cursor: pointer;
  float: right;
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-text {
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-text h3 {
    font-size: 32px;
    margin-bottom: 12px;
  }


}

/* ============================= */
/* Footer */
/* ============================= */

.footer {
  background: radial-gradient(circle at top,rgba(255, 255, 255, 0.05),#000);
  padding: 80px 20px 30px;
  color: #aaa;
  font-size: 13px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 4fr 1fr 1fr 2fr;
  gap: 50px;
}

/* Brand */
.footer-brand .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-brand h3 {
  color: #fff;
  font-size: 18px;
}

.logo-box {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: linear-gradient(135deg, #4764CD, #6C8CFF);
}

.footer-brand p {
  line-height: 1.6;
  margin-bottom: 12px;
  text-align: justify;
}

.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  margin-bottom: 14px;
  margin-right: 8px;
}

.social a .fa-brands {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-size: 20px;
  border-radius: 3px;

}

.social a .fa-linkedin {
  background: #1877F2;

}

.social a .fa-instagram {
  background: radial-gradient(circle, #fbd377 0%, #fa7e1e 25%, #d62976 50%, #962fbf 75%, #833ab4 90%, #4f5bd5 100%);
}

.social a .fa-facebook {
  background: #1877F2;

}
.social a .fa-youtube {
  background: #FF0000;

}
.mail a {
  text-decoration: none;
  color: #e4a320;
}

.mail a:hover {
  text-decoration: none;
  color: #fff;
}

address {
  font-style: normal;
  line-height: 1.6;
}

/* Columns */
.footer-col h4 {
  color: #fff;
  font-size: 14px;
  margin-bottom: 16px;
}

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

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #fff;
}

.footer-col .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-col .contact-item .icon {
  font-size: 16px;
  line-height: 1.4;
}

.footer-col .contact-item p {
  margin: 0;
  line-height: 1.6;
  font-size: 13px;
}

/* Bottom */
.footer-bottom {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 12px;
  color: #777;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 500px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer .footer-col h4 {
    font-size: 20px !important;
  }
}

.message {
  color: red;
  font-size: 12px;
  margin-bottom: 10px;
}

.quick-link-section {
  padding: 50px 130px;
}

.quick-link-header h2,
.quick-link-header p {
  color: #e1e1e1ff;
  text-align: center;
}

.quick-link-content ul li {
  line-height: 1.9;
  font-size: 14.5px;
  letter-spacing: 1px;
  margin-left: 15px;
}

.quick-link-content h5 {
  font-size: 30px !important;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #e1e1e1ff;
}

.quick-link-content h3 {
  font-size: 20px !important;
  color: #e1e1e1ff;
}


/* Paragraphs */
.quick-link-content p {
  font-size: 14.5px;
  letter-spacing: 1px;
  line-height: 1.9;
  color: #EAEAEA;
  margin-bottom: 10px;
}

.quick-link a {
  text-decoration: none;
}

.quick-link a:hover {
  text-decoration: underline;
}

/* Mobile optimization */
@media (max-width: 767px) {
  .quick-link-content h5 {
    font-size: 22px !important;
    margin-top: 32px;
  }

  .quick-link-content p {
    font-size: 13px;
    line-height: 1.9;
    letter-spacing: 0.5px;
  }

  .quick-link-section {
    padding: 20px;
  }
}

.whatsapp-section {
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
  position: fixed;
  bottom: 85px;
  right: 20px;
  z-index: 1000;
  opacity: 1 !important;
}


/* Outer white curve */
.brand-pofitably .services-wrapper {
  background: #fff;
  padding: 40px 0;
  display: flex;
  justify-content: center;
}

/* Orange bar */
.brand-pofitably .services-bar {
  background: linear-gradient(to right, #ff7a4d, #ff9f00);
  border-radius: 100px;
  padding: 30px 50px;
  display: flex;
  gap: 40px;
  align-items: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Each service */
.brand-pofitably .service-item {
  text-align: center;
  color: #fff;
  min-width: 120px;
}

/* Icon circle */
.brand-pofitably .icon {
  width: 70px;
  height: 70px;
  background: #fff;
  color: #ff7a4d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 10px;
}

/* Text */
.brand-pofitably .service-item p {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .brand-pofitably .services-bar {
    flex-wrap: wrap;
    border-radius: 40px;
    justify-content: center;
  }
}


.contact-section {
  padding: 80px 15%;
  background: linear-gradient(120deg, #c3dff6, #ffffff, #c3dff6);
}

.contact-container {
  /* display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px; */
}

/* LEFT */
.contact-left {
  /* width: 70%; */
}

.contact-section .heading h2 {
  color: #3075ae;
}

.small-title {
  color: #3782c1;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 13px;
}

/* .contact-left h2 {
  font-size: 42px;
  margin: 10px 0 30px;
  color: #111;
} */

/* FORM */
.contact-form {
  background: transparent;
}

.contact-form lfounel {
  color: #0a66c2;
}

.contact-form .row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form input::placeholder,
textarea::placeholder {
  color: #adadad;
  opacity: 1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 0.2px solid #d8d8d8;
  border-radius: 6px;
  background: #fff;
  font-size: 14px;
  outline: none;
  color: #000;
}

.contact-form textarea {
  height: 130px;
  resize: none;
  margin-bottom: 25px;
}

.contact-form button {
  background: #3782c1;
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
  border: 1.5px solid #3782c1;
  font-weight: 500;

}

.contact-form button:hover {
  transform: translateY(-6px);
  border: 1.5px solid #3782c1;
  color: #3782c1;
  background-color: #fff;
  box-shadow: rgba(28, 157, 255, 0.35) 0px 5px 15px;
  font-weight: 500;

}

/* RIGHT IMAGE */
.contact-right {
  width: 60%;
  text-align: left;
}

.contact-right img {
  max-width: 100%;
  height: auto;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-left,
  .contact-right {
    width: 100%;
    text-align: center;
  }

  .contact-left h2 {
    font-size: 32px;
  }

  .contact-form .row {
    flex-direction: column;

  }

}

.heading h2 {
  font-size: 44px;
  margin-bottom: 20px;
  text-align: center;
}

.heading h2 span {
  color: #3782c1;
}

.heading h1 {
  font-size: 52px;
  margin-bottom: 40px;
  text-align: center;
}

.heading h1 span {
  color: #3782c1;
}

.heading-left h2 {
  font-size: 44px;
  margin-bottom: 20px;
}

.heading-left h2 span {
  color: #3782c1;
}

.heading-left h1 span {
  color: #3782c1;
}

button {
  background: #efb03e;
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
  border: 1.5px solid #efb03e;
  font-weight: 500;

}

button:hover {
  transform: translateY(-6px);
  border: 1.5px solid #efb03e;
  color: #000;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  font-weight: 500;

}

.about-content {
  width: 60%;
  padding: 0 50px 0 0;

}

.about-content p {
  text-align: justify;
  font-weight: 300;
}

.about-content p span {
  font-weight: bold;
}

/* ------------- ABOUT US ------------- */
.about-us {
  text-align: center;
  padding: 80px 20px;
}

.about-hero-section {
  padding: 50px 120px 0 120px;
}

.heading1 h1 {
  font-size: 52px;
}

.heading1 h1 span,
.heading1 h4 span {
  color: #3782c1;
}

.heading1 h4 {
  font-size: x-large;
  font-weight: 400;
}

.about-hero-section .left-content {}

.about-hero-section a {
  padding: 10px 20px;
  border: 1.5px solid #3782c1;
  background: transparent;
  text-decoration: none;
  color: #fff;
  border-radius: 8px;
  transition-duration: 0.5s;
}

.about-hero-section a:hover {
  padding: 10px 20px;
  border: 1.5px solid #3782c1;
  background: #3782c1;
  transform: translateY(-6px);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.cu-section {
  background: #000;
  padding: 0 0 90px 0;
  /* min-height: 80vh; */
}

.cu-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 70px;
}

.cu-title span {
  color: #3782c1;
}

.cu-layout {
  justify-content: center;
  gap: 30px;
}

.cu-info-panel {
  background: #ffffff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.7);
}

.cu-info-title {
  margin-bottom: 25px;
  font-weight: 600;
  color: #000;
}

.cu-info-row {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 15px;
  color: #333;
}

.cu-info-row p a {
  text-decoration: none;
  color: #333;
}

.cu-icon {
  font-size: 18px;
}

.cu-form-holder {
  background: rgba(0, 0, 0, 0.75);
  padding: 38px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 35px 75px rgba(0, 0, 0, 0.85);
}

@media (max-width: 991px) {
  .cu-layout {
    gap: 40px;
  }

  .cu-info-panel,
  .cu-form-holder {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .cu-title {
    font-size: 2rem;
    margin-bottom: 45px;
  }
}

.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
}

.map-wrapper iframe {
  width: 100%;
  height: 500px;
  border: 0;
}

.pricing-section {
  background: #000;
  padding: 30px;
  color: #fff;
}

.pricing-container {
  max-width: 1400px;
  margin: auto;
}


.pricing-title span {
  color: #3782c1;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-content: center;
}

.price-card {
  background: #0b0b0b;
  border-radius: 10px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.price-card:hover {
  transform: translateY(-8px);
  border-color: #3782c1;
}

.price-card h4 {
  border-bottom: 1px dashed#777;
  padding-bottom: 5px;
  margin-bottom: 15px;
  width: max-content;
}

.price-card h3 {
  font-size: 32px;
  color: #fff;
  font-weight: 700;
}

.per {
  font-size: 10px;
  color: #777;
  margin-bottom: 20px;
}

.price-card button {
  background: #efb03e;
  color: #000;
  border: none;
  padding: 10px 22px;
  border-radius: 25px;
  font-size: 14px;
  cursor: pointer;
  margin: 0 30px;
}

.price-card ul {
  list-style: none;
  padding: 0;
  font-size: 13px;
  color: #ccc;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.price-card ul li {
  list-style: outside;
  margin-left: 16px;
}

.price-card ul li:has(span.disabled) {
  color: #555;
}

.price-card ul li:has(span.text-warning-theme) {
  color: #efb03e;
}

@media (min-width: 768px) {
  .price-card {
    position: relative;
  }
  .price-card h4 {
    width: unset;
    text-align: center;
  }
  .plan_features {
    min-height: 240px;
  }
  .pricing_plan_modal {
    position: absolute;
    width: 80%;
    right: 10%;
    left: 10%;
    bottom: 25px;
  }
  .price-card button {
    margin: unset;
  }
}

@media (max-width: 768px) {
  .pop-up-card h3 {
    font-size: 32px;
  }
}

/* Featured */
.featured {
  background: linear-gradient(#0cc0fb17,#0cc0fb4d),#0f1113;
  border: 1px solid #3782c1;
}

.featured h3 {
  color: #fff;
}

/* Responsive */
@media (max-width: 1200px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

@media (max-width: 480px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-title {
    font-size: 2rem;
  }
}

.pop-up-card {
  padding: 35px;
  background: #fff;
  color: #000;
  border-radius: 5px;
}

.pop-up-card h4 {
  color: #3782c1;
  font-weight: 700;
}

.pop-up-card h4 span {
  font-size: medium;
  color: #3782c1;
}
.pop-up-card h3 {
  font-size: 44px;
  margin-bottom: 2px;
}
.pop-up-card h3 span {
  font-size: small;
  color: #3782c1;
}
.pop-up-card p span{
  color: #3782c1;

}

.pop-up-card ul {
  padding-left: 0rem;
}

.pop-up-card ul li {
  list-style: outside;
  font-size: 13px;
  margin-left: 16px;
}

.pop-up-card ul li span {
  color: #efb03e;
  margin-right: 10px;
}