@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
  --themeColor: #F02973;
  --primaryColor: #010D3E;
  --secondaryColor: #F4F4F4;
  --blackColor: #000;
  --whiteColor: #fff;
  --textcolor: #1a1e25;
  --textLightColor: #E8E8E8;
}


/* CUSTOM CSS HERE */
* {
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
  line-height: normal !important;
}

body {
  /* overflow: hidden; */
  margin: 0;
  padding: 0;
  height: 100dvh;
  font-weight: 400;
  box-sizing: border-box;
  line-height: normal;
  background-color: var(--secondaryColor) !important;
}

.page-scroll-area {
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
}

/* Custom Scrollbar */
.page-scroll-area::-webkit-scrollbar {
  width: 4px;
}

.page-scroll-area::-webkit-scrollbar-track {
  background: #b1b1b1c0;
  border-radius: 10px;
}

.page-scroll-area::-webkit-scrollbar-thumb {
  background: var(--themeColor);
  border-radius: 10px;
}

.container {
  max-width: 1260px !important;
}

body::-webkit-scrollbar {
  display: none;
}

a {
  text-decoration: none !important;
}

.clip-path {
  clip-path: border-box;
}


/* FONT SIZE */
.font-60 {
  font-size: clamp(30px, 5vw, 50px);
}

.font-48 {
  font-size: clamp(28px, 4vw, 48px);
}

.font-30 {
  font-size: clamp(1.125rem, 1rem + 0.7813vw, 1.875rem);
}

.font-26 {
  font-size: clamp(1.125rem, 1.0199rem + 0.5096vw, 1.625rem);
}

.font-24 {
  font-size: clamp(1rem, 0.8949rem + 0.5096vw, 1.5rem);
}

.font-22 {
  font-size: clamp(18px, 2vw, 22px);
}

.font-20 {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
}

.font-18 {
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem) !important;
}

.font-16 {
  font-size: clamp(0.75rem, 0.6994rem + 0.2532vw, 1rem);
}

.font-14 {
  font-size: clamp(0.6875rem, 0.65rem + 0.1875vw, 0.875rem) !important;
}

.font-12 {
  font-size: clamp(0.625rem, 0.6rem + 0.125vw, 0.75rem);
}

/* Filter */
.filter-black {
  filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(7500%) hue-rotate(217deg) brightness(108%) contrast(108%);
}

/* Gap */
.scalable-gap-30-20 {
  gap: clamp(1.25rem, 1.1rem + 0.6vw, 1.875rem);
}

.scalable-gap-24-16 {
  gap: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
}

.scalable-gap-16-12 {
  gap: clamp(0.75rem, 0.7rem + 0.25vw, 1rem);
}

.scalable-gap-12 {
  gap: 12px;
}

.scalable-gap-20 {
  gap: clamp(1rem, 0.9322rem + 0.339vw, 1.25rem);
}

.scalable-p-12 {
  padding: 12px;
}

/* FONT WEIGHT */
.light {
  font-weight: 300;
}

.regular {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.semibold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

.extrabold {
  font-weight: 800;
}

/* COLOR */
.gradient-text-dark {
  background: linear-gradient(90deg, #000000 0%, #001354 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.primaryColor {
  color: var(--primaryColor);
}

.themeColor {
  color: var(--themeColor);
}

.secondaryColor {
  color: var(--secondaryColor);
}

.textLight {
  color: var(--textLightColor);
}

.textDark {
  color: var(--textcolor);
}

.darkColor {
  color: #041A1F;
}

.black {
  color: var(--blackColor) !important;
}

.grayColor {
  color: #3A404B;
}

:focus-visible {
  outline: var(--Primary-color) auto 0px;
}

.lh-0 {
  line-height: 0;
}

.line-height-26 {
  line-height: 26px !important;
}

.line-height-22 {
  line-height: 22px !important;
}

.cursor-pointer {
  cursor: pointer;
}

.filter-black {
  filter: brightness(0) saturate(100%) invert(0%) sepia(3%) saturate(7487%) hue-rotate(293deg) brightness(89%) contrast(101%);
  ;
}

/* ---------------- NAVBAR GLOBAL ---------------- */
.navbar-container {
  width: 100%;
  background: var(--whiteColor);
  padding: 12px 22px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background: rgb(90 90 90 / 20%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-logo img {
  width: 100%;
  transition: 0.3s ease;
}

.nav-logo img:hover {
  transform: scale(1.05);
}

.nav-toggle {
  width: 22px;
  height: 16px;
  display: flex;
}

.nav-toggle span {
  width: 100%;
  height: 3px;
  background: var(--whiteColor);
  border-radius: 4px;
  transition: 0.4s;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 75px;
  right: 22px;
  background: #0b0b0b;
  width: 220px;
  padding: 25px 20px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  gap: 18px;
}

.nav-menu a {
  color: var(--whiteColor);
  text-decoration: none;
  transition: 0.3s ease;
}

.nav-menu a.active {
  color: var(--themeColor);
}

.nav-menu a:not(.nav-btn)::after {
  content: "";
  width: 0;
  height: 2px;
  background: var(--themeColor);
  position: absolute;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-btn {
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  color: var(--whiteColor) !important;
  background: linear-gradient(135deg,
      #F02973 0%,
      #8A1842 50%,
      #F02973 100%);
  background-size: 200% 200%;
  border: none;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  animation: navGradientShift 3s ease infinite,
    navPulse 2s ease-in-out infinite;
  box-shadow:
    0 4px 15px rgba(240, 41, 115, 0.35),
    0 0 0 0 rgba(240, 41, 115, 0.45);
  transition: all 0.3s ease;
}

@keyframes navGradientShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes navPulse {

  0%,
  100% {
    box-shadow:
      0 4px 15px rgba(240, 41, 115, 0.35),
      0 0 0 0 rgba(240, 41, 115, 0.45);
  }

  50% {
    box-shadow:
      0 8px 25px rgba(240, 41, 115, 0.55),
      0 0 0 10px rgba(240, 41, 115, 0);
  }
}

.nav-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.35),
      transparent);
  animation: navShine 2.2s ease-in-out infinite;
}

@keyframes navShine {
  0% {
    left: -120%;
  }

  50%,
  100% {
    left: 120%;
  }
}

.nav-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 10px 30px rgba(240, 41, 115, 0.6),
    0 0 0 0 rgba(240, 41, 115, 0);
  animation: none;
  background-position: 100% 50%;
}

.nav-btn:active {
  transform: translateY(-1px) scale(0.97);
}

/* HERO SECTION */
.home-page {
  position: relative;
  z-index: 99;
  width: 100%;
}

.hero {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0px 0px;
  overflow: hidden;
  height: 100%;
}

.gradient-text {
  background: linear-gradient(90deg,
      #529748 5%,
      #F02973 25%,
      #F7B03C 50%,
      #4AB1E5 75%,
      #8D4091 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* BACKGROUND IMAGE */
.hero-bg img {
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.92;
  animation: zoomHero 12s ease-in-out infinite;
}


.hero-container {
  padding: clamp(1.5rem, 1.0443rem + 2.2785vw, 3.75rem);
}

.hero-title {
  font-size: clamp(1.875rem, 1.4953rem + 1.8987vw, 3.75rem);
  font-weight: 700;
  line-height: 1.2;
}

/* BACKGROUND ANIMATION */
@keyframes zoomHero {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

/* Button */
.hero-btn {
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.4s ease;
}

.primary-btn {
  background: linear-gradient(45deg, #F02973, #8A1842, #F02973);
  box-shadow: 0px 8px 20px -8px rgba(255, 100, 0, 0.6);
  background-size: 250% 250%;
  color: var(--whiteColor);
}

.primary-btn:hover {
  background-position: 100% 0;
  transform: translateY(-3px);
}

.secondary-btn {
  background: transparent;
  border: 1px solid var(--whiteColor);
  color: var(--whiteColor);
}

.secondary-btn:hover {
  background: var(--themeColor);
  color: var(--whiteColor);
  transform: translateY(-3px);
  border: 1px solid transparent;
}


/* Section */
/* section {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
} */

section.visible {
  opacity: 1;
  transform: translateY(0px);
}

.section-container {
  padding-top: 100px;
}

.section-gap {
  gap: 50px;
}

/* Our services */
.service-card {
  background: var(--whiteColor);
  border-radius: 14px;
  height: 100%;
  transition: all 0.35s ease;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.service-img {
  background: linear-gradient(135deg, #f0297312, #010d3e12);
  padding: 18px;
}

.service-img img {
  width: 100%;
  max-width: 140px;
  height: 140px;
  transition: transform 0.4s ease;
  object-fit: contain;
}

.service-content {
  padding: 18px 16px 22px;
}

.service-content p {
  margin-bottom: 0;
  line-height: 1.5;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(240, 41, 115, 0.18);
}

.service-card:hover .service-img img {
  transform: scale(1.08);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--themeColor), #8A1842);
  opacity: 0;
  transition: 0.3s ease;
}

.service-card:hover::after {
  opacity: 1;
}

/* Choose Us */
.choose-img {
  padding: clamp(1rem, 0.5696rem + 2.1519vw, 3.125rem) 0px clamp(0rem, -0.8861rem + 4.4304vw, 4.375rem);
}

.choose-card-title {
  color: #0B4251;
}

.choose-cards-row {
  padding-bottom: 50px;
}

.choose-cards-row a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.choose-cards-row a img {
  transition: transform 0.3s ease;
}

.choose-cards-row a:hover {
  color: var(--themeColor);
  font-weight: 500;
}

.choose-cards-row a:hover img {
  transform: translateX(5px);
  filter: brightness(0) saturate(100%) invert(26%) sepia(24%) saturate(6384%) hue-rotate(317deg) brightness(103%) contrast(100%);

}

.choose-cards-row a:hover::after {
  width: 100%;
}

/* What Our Users Say */
.premium-testimonial {
  background: linear-gradient(135deg, var(--primaryColor), #020b2d);
}

.testimonial-box {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: clamp(1.25rem, 1.1487rem + 0.5063vw, 1.75rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.35s ease;
}

.testimonial-box:hover {
  transform: translateY(-8px);
  border-color: var(--themeColor);
  box-shadow: 0 20px 50px rgba(240, 41, 115, 0.3);
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--themeColor);
}

.textLightColor {
  color: var(--textLightColor);
}

/* CTA Section */
.section-pt-pb {
  padding: clamp(4.375rem, 3.9953rem + 1.8987vw, 6.25rem) 0px;
}

/* Our Best Work */
.product-showcase {
  background: var(--secondaryColor);
}

/* MAIN CARD */
.showcase-card {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* LEFT IMAGE SECTION */
.buzzflow-image {
  width: 50%;
  background: linear-gradient(135deg,
      rgba(110, 155, 252, 0.15),
      rgba(185, 112, 255, 0.15));
  padding: 32px;
}

.buzzflow-image img {
  border-radius: 16px;
}

/* RIGHT CONTENT */
.showcase-content {
  width: 50%;
  padding: clamp(1.5rem, 1.2975rem + 1.0127vw, 2.5rem) clamp(1.5rem, 1.3481rem + 0.7595vw, 2.25rem);
}

/* RESPONSIVE */
@media (max-width: 767px) {

  .buzzflow-image,
  .showcase-content {
    width: 100%;
  }

  .buzzflow-image {
    padding: 24px;
  }
}

/* Gradient small cards */
.gradient-card {
  background: linear-gradient(135deg,
      rgba(110, 155, 252, 0.3) 0%,
      /* #6E9BFC */
      rgba(148, 139, 254, 0.3) 27%,
      /* #948BFE */
      rgba(185, 112, 255, 0.3) 60%,
      /* #B970FF */
      rgba(226, 61, 255, 0.3) 100%
      /* #E23DFF */
    );

}

.primary-liner-text {
  background: linear-gradient(180deg,
      #F02973 0%,
      #8A1842 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.learn-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 10px;
  color: var(--themeColor);
  background: var(--whiteColor);
  text-decoration: none;
  z-index: 1;
}

.learn-link::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  /* border thickness */
  border-radius: inherit;
  background: linear-gradient(135deg, #F02973, #8A1842);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.learn-link:hover {
  color: #8A1842;
}

.showcase-image {
  background-color: #E8E4F2;
}

/* Product Detail Card - AI Automation Suite Style */
.product-detail-card {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 3vw, 4rem);
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: clamp(2rem, 3vw, 3rem);
  border-radius: 20px;
}

.product-content-left {
  flex: 1;
  max-width: 600px;
}

.product-main-title {
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.product-description {
  line-height: 1.7;
  color: #5a5a5a;
}

.product-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-features-list li {
  padding-left: 28px;
  margin-bottom: 12px;
  position: relative;
  line-height: 1.6;
}

.product-features-list li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--themeColor);
  font-size: 24px;
  line-height: 1;
}

.product-buttons {
  margin-top: 2rem;
}

.product-btn-primary {
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--themeColor), #8A1842);
  color: var(--whiteColor);
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(240, 41, 115, 0.3);
}

.product-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240, 41, 115, 0.4);
  color: var(--whiteColor);
}

.product-btn-secondary {
  padding: 14px 32px;
  background: transparent;
  color: var(--primaryColor);
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.product-btn-secondary:hover {
  color: var(--themeColor);
  transform: translateX(5px);
}

.product-card-right {
  flex-shrink: 0;
  width: clamp(320px, 35vw, 450px);
}

.product-card-inner {
  background: var(--whiteColor);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
}

.product-card-inner:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(240, 41, 115, 0.2);
}

.product-card-image {
  background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
  padding: clamp(2rem, 3vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.product-card-image img {
  width: 100%;
  height: auto;
  max-width: 280px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.product-card-inner:hover .product-card-image img {
  transform: scale(1.05);
}

.product-card-footer {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  text-align: center;
  background: var(--whiteColor);
}

.product-card-footer h4 {
  margin-bottom: 0.5rem;
}

.product-card-footer p {
  color: #666;
}

@media (max-width: 992px) {
  .product-detail-card {
    flex-direction: column;
    text-align: center;
  }

  .product-content-left {
    max-width: 100%;
  }

  .product-card-right {
    width: 100%;
    max-width: 450px;
  }

  .product-buttons {
    justify-content: center;
  }

  .product-features-list {
    text-align: left;
    display: inline-block;
  }
}

























































































/* Footer */
.footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  color: var(--whiteColor);
  padding: clamp(3.75rem, 3rem + 3vw, 5rem) 0 0;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--themeColor) 50%, transparent 100%);
  opacity: 0.6;
}

.footer-logo {
  width: clamp(8.75rem, 8rem + 3vw, 10rem);
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-desc {
  color: rgba(244, 244, 244, 0.75);
  line-height: 1.7;
}

.footer-title {
  margin-bottom: clamp(1.25rem, 1rem + 1vw, 1.75rem);
  color: var(--whiteColor);
  letter-spacing: 0.5px;
  position: relative;
}

.footer-title::after {
  content: "";
  width: clamp(2.5rem, 2rem + 2vw, 3.125rem);
  height: 3px;
  background: linear-gradient(90deg, var(--themeColor) 0%, transparent 100%);
  position: absolute;
  left: 0;
  bottom: -8px;
  border-radius: 5px;
}

.footer-links {
  gap: 12px;
}

.footer-links a {
  color: rgba(244, 244, 244, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--themeColor);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: var(--whiteColor);
  padding-left: 4px;
}

.footer-links a:hover::before {
  width: 100%;
}

.footer-contact p {
  color: rgba(244, 244, 244, 0.7);
  line-height: 1.6;
}

.footer-contact .semibold {
  color: var(--whiteColor);
}

.footer-icon {
  width: clamp(2.5rem, 2.25rem + 1vw, 2.875rem);
  height: clamp(2.5rem, 2.25rem + 1vw, 2.875rem);
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  aspect-ratio: 1;
}

.footer-icon img {
  filter: brightness(0) invert(1);
  width: clamp(1rem, 0.9rem + 0.4vw, 1.125rem);
  height: clamp(1rem, 0.9rem + 0.4vw, 1.125rem);
  object-fit: contain;
  transition: all 0.3s ease;
}

.footer-icon:hover {
  background: linear-gradient(135deg, var(--themeColor) 0%, #8A1842 100%);
  border-color: var(--themeColor);
  transform: scale(1.15) translateY(-5px);
  box-shadow: 0 8px 20px rgba(240, 41, 115, 0.4);
}

.footer-icon:hover img {
  transform: scale(1.1);
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 20%, rgba(255, 255, 255, 0.1) 80%, transparent 100%);
}

.footer-copyright svg {
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {

  0%,
  100% {
    transform: scale(1);
  }

  10%,
  30% {
    transform: scale(1.1);
  }

  20%,
  40% {
    transform: scale(1);
  }
}

.footer-legal-link {
  color: rgba(244, 244, 244, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
}

.footer-legal-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--themeColor);
  transition: width 0.3s ease;
}

.footer-legal-link:hover {
  color: var(--whiteColor);
}

.footer-legal-link:hover::after {
  width: 100%;
}

.footer-separator {
  color: rgba(244, 244, 244, 0.3);
}

.fill-theme {
  fill: var(--themeColor);
  outline: 0;
  color: var(--themeColor);
}

.product-section-row {
  justify-content: center;
}

@media (min-width: 992px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    background: none;
    box-shadow: none;
    padding: 0;
    width: auto;
    gap: 35px;
  }

  .nav-menu a {
    color: var(--whiteColor);
  }
}

@media (max-width: 992px) {
  .hero-banner img {
    max-width: 350px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    align-items: flex-start;
  }
}

/*  PRODUCTS PAGE */
.product-section {
  gap: 70px;
}

.product-section-row {
  padding-bottom: clamp(2.5rem, 1.9937rem + 2.5316vw, 5rem);
}

.ai-product-section {
  gap: clamp(3rem, 5vw, 6rem);
  padding: 0;
}

.ai-btn-primary {
  padding: 12px 26px;
  background: linear-gradient(190deg, #F02973 0%, #8A1842 100%);
  border-radius: 10px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(233, 30, 99, 0.3);
}

.ai-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(233, 30, 99, 0.4);
  color: #fff;
}

.ai-btn-link {
  padding: 12px 18px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.ai-btn-link:hover {
  color: #E91E63;
  transform: translateX(3px);
}

.ai-card-inner {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0px 7px 24px 0px #24262B;
  border: 1px solid #1B1B1B14;
}

.ai-card-inner:hover {
  transform: translateY(-8px);
}

.ai-card-image {
  padding: clamp(1.5rem, 2.5vw, 2rem);
}

.ai-card-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.4s ease;
  position: relative;
  z-index: 1;
}

.ai-card-inner:hover .ai-card-image img {
  transform: scale(1.05);
}



/* Responsive */
@media (max-width: 992px) {
  .ai-product-section {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }

  .ai-features-list {
    text-align: left;
    display: inline-block;
  }
}

@media (max-width: 576px) {
  .ai-card-image {
    min-height: 220px;
    padding: 1.5rem;
  }

  .ai-card-image img {
    max-width: 180px;
  }
}

/* Why Businesses Choose Our Products */
.feature-card {
  background: var(--whiteColor);
  border-radius: 16px;
  padding: 28px 22px;
  box-shadow: 5.27px 5.27px 31.63px 0px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.icon-box {
  width: 70px;
  height: 70px;
  background: #F4F4F4;
  box-shadow: 15px 15px 10px -10px rgba(0, 0, 0, 0.15);
  border-radius: 16px;
  margin: 0 auto;
}

.icon-box img {
  width: 36px;
  height: 36px;
}

/*  INTEGRATIONS & ECOSYSTEM SECTION */

.integrations-section {
  background: var(--secondaryColor);
  padding: clamp(4.375rem, 3.9953rem + 1.8987vw, 6.25rem) 0px;
}


.integration-img {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

.integration-img:hover {
  transform: scale(1.02);
}

.integration-content {
  padding: 20px;
  gap: clamp(1.5rem, 1.1709rem + 1.6456vw, 3.125rem);
}

/* Integration Icon */
.integration-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}


@media (max-width: 767px) {
  .integration-card {
    text-align: center;
  }

  .integration-icon {
    margin: 0 auto;
  }
}

/*    TECHNOLOGY STACK SECTION */

.tech-stack-wrapper {
  width: 100%;
}

/* Category Header */
.tech-category-section {
  width: 100%;
  background-color: var(--whiteColor);
  border: 1px solid #E5E7EB;
  border-radius: 16px;
}

.tech-category-header {
  background: linear-gradient(135deg, #06B6D4 0%, #3B82F6 100%);
  padding: clamp(1.25rem, 1.1108rem + 0.6962vw, 1.9375rem) clamp(1.25rem, 0.9968rem + 1.2658vw, 2.5rem);
  border-radius: 16px 16px 0 0;
}

.tech-category-header.tech-backend {
  background: linear-gradient(135deg, #F02973 0%, #A855F7 100%);
}

.tech-category-header.tech-database {
  background: linear-gradient(135deg, #769A42 0%, #22A75D 100%);
}

.tech-category-header.tech-cloud {
  background: linear-gradient(135deg, #EF4444 0%, #F97316 100%);
}

.tech-category-header.tech-ai-ml {
  background: linear-gradient(135deg, #6366F1 0%, #6D41A2 100%);
}

.tech-category-header.tech-tools {
  background: linear-gradient(135deg, #EAB308 0%, #F7B03C 100%);
}

.tech-icon-wrapper {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tech-icon-wrapper svg {
  color: white;
}

/* Tech Cards */
.tech-card {
  background: var(--whiteColor);
  padding: 24px;
  border-radius: 12px;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #E5E7EB;
}

.tech-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: rgba(0, 188, 212, 0.3);
}

.tech-title {
  color: #1F2937;
}

.tech-subtitle {
  color: #4B5563;
}

.tech-version {
  padding: 6px 10px;
  background: #2A6DF41A;
  color: #2A6DF4;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

.tech-row-padding {
  padding: 0px clamp(1rem, 0.3165rem + 3.4177vw, 4.375rem) clamp(1.5rem, 1.3608rem + 0.6962vw, 2.1875rem);
}

/* Responsive */
@media (max-width: 767px) {

  .tech-icon-wrapper {
    margin: 0 auto;
  }
}


.product-section {
  gap: 50px;
}

.product-section-row {
  margin-top: 50px;
}


/* Tech Card Title and Subtitle */
.tech-title {
  color: var(--primaryColor);
}

.tech-subtitle {
  color: #6c757d;
}


/* Cloud & DevOps Header - Orange to Red Gradient */
.tech-category-header.tech-cloud {
  background: linear-gradient(135deg, #FF9800 0%, #FF5252 100%);
}

/* Our vision */
.our-vision {
  background-color: #3A404B1A;
  padding: clamp(4.375rem, 3.8054rem + 2.8481vw, 7.1875rem) 0px;
}

.vision-card {
  background: var(--whiteColor);
  border-radius: 16px;
  padding: 50px;
  z-index: 1;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.vision-card::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 22px;
  background: conic-gradient(from 0deg,
      transparent 0deg,
      var(--themeColor) 60deg,
      transparent 120deg,
      transparent 180deg,
      var(--themeColor) 240deg,
      transparent 300deg,
      transparent 360deg);
  animation: rotateBorder 4s linear infinite;
  z-index: -1;
}

.vision-card::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: white;
  border-radius: 15px;
  z-index: -1;
}

@keyframes rotateBorder {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.vision-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.vision-card:hover::before {
  animation-duration: 1.5s;
  filter: blur(0.4px);
}

.creative-vector-icon1 {
  position: absolute;
  left: -30px;
  top: -10px;
}

.creative-vector-icon2 {
  position: absolute;
  top: -15px;
  right: -5%;
}

/* Image gallery */
.team-section {
  padding: clamp(4.375rem, 2.856rem + 7.5949vw, 11.875rem) 0px clamp(0rem, -1.2658rem + 6.3291vw, 6.25rem);
}

.team-section-row {
  align-items: center;
  justify-content: space-evenly;
}

.image-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.img-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 300px;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.image-gallery {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.img-card:hover .image-gallery {
  transform: scale(1.08);
}

.img-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 40%,
      rgba(0, 0, 0, 0.35));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.img-card:hover::after {
  opacity: 1;
}

.img-card:hover {
  transform: translateY(-6px);
}

.vector-4 {
  position: absolute;
}




/* Careers Page - Job Listings */
.job-search-input {
  width: 100%;
  padding: clamp(0.875rem, 0.8038rem + 0.3544vw, 1.25rem) clamp(1rem, 0.8734rem + 0.6329vw, 1.625rem) clamp(0.875rem, 0.8038rem + 0.3544vw, 1.25rem) clamp(3rem, 2.8734rem + 0.6329vw, 3.625rem);
  border: 1px solid #19191A4D;
  border-radius: 8px;
  background: #F4F4F4;
  transition: all 0.3s ease;
}

.job-search-input:focus {
  outline: none;
  border-color: var(--themeColor);
  background: var(--whiteColor);
  box-shadow: 0 0 0 3px rgba(240, 41, 115, 0.1);
}

.search-icon {
  position: absolute;
  left: clamp(1rem, 0.8734rem + 0.6329vw, 1.625rem);
  top: 50%;
  transform: translateY(-50%);
  color: #6B7280;
  pointer-events: none;
}

.job-filter-select {
  width: 100%;
  padding: clamp(0.875rem, 0.8038rem + 0.3544vw, 1.25rem) clamp(1rem, 0.8734rem + 0.6329vw, 1.625rem);
  border: 1px solid #19191A4D;
  border-radius: 10px;
  background: #F4F4F4;
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right clamp(1rem, 0.8734rem + 0.6329vw, 1.625rem) center;
  padding-right: clamp(2.5rem, 2.3734rem + 0.6329vw, 3.125rem);
}

.job-filter-select:focus {
  outline: none;
  border-color: var(--themeColor);
  background-color: var(--whiteColor);
  box-shadow: 0 0 0 3px rgba(240, 41, 115, 0.1);
}

.job-listings-container {
  gap: clamp(1.25rem, 1.0759rem + 0.8861vw, 2.125rem);
}

.job-container {
  gap: 35px;
}

.job-card {
  background: var(--whiteColor);
  padding: clamp(1.5rem, 1.2468rem + 1.2658vw, 2.75rem);
  border-radius: 16px;
  border: 1px solid #E5E7EB;
  transition: all 0.3s ease;
}

.job-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border-color: rgba(240, 41, 115, 0.3);
}

.job-meta {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 0.6234rem + 0.6329vw, 1.375rem);
}

.job-btn-secondary {
  padding: 12px 26px;
  background: #D9D9D9;
  color: #19191A;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.job-btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgb(125 124 124 / 30%);
}


/* How to Get Started with Ranax Section */
.get-started-icon {
  width: clamp(3.5rem, 3.2468rem + 1.2658vw, 4.75rem);
  height: clamp(3.5rem, 3.2468rem + 1.2658vw, 4.75rem);
}

.get-started-image-wrapper {
  width: 100%;
  border-radius: 0px 20px 0px 100px;
  overflow: hidden;
  position: relative;
}

.get-started-image {
  width: 100%;
  object-fit: cover;
  height: 500px;
  display: block;
}

.team-count-badge {
  position: absolute;
  top: clamp(2rem, 1.7468rem + 1.2658vw, 3.25rem);
  left: clamp(2rem, 1.7468rem + 1.2658vw, 3.25rem);
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  padding: clamp(1.5rem, 1.2468rem + 1.2658vw, 2.75rem);
  border-radius: 16px;
}

.get-started-text {

  h4,
  p {
    color: #16205F;
  }
}

@media (max-width: 768px) {
  .team-count-badge {
    padding: 1.5rem;
  }
}


/* Team Page - Meet the People Behind the Vision */
.team-member-card {
  background: #EAEAEA;
  margin-top: clamp(1rem, 0.5696rem + 2.1519vw, 3.125rem);
}

.team-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #F3F4F6;
  transition: all 0.3s ease;
}

.team-member-info {
  padding: 20px;
}

.team-social-icon img {
  filter: brightness(0) saturate(100%) invert(20%) sepia(10%) saturate(500%) hue-rotate(180deg);
  transition: filter 0.3s ease;
}

.team-social-icon:hover {
  background: linear-gradient(135deg, var(--themeColor) 0%, #8A1842 100%);
  transform: translateY(-3px);
}

.team-social-icon:hover img {
  filter: brightness(0) invert(1);
}

@media (max-width: 575px) {
  .team-member-card {
    flex-direction: column;
  }

  .team-member-image {
    width: 100%;
  }

  .integrations-section {
    padding: 0px;
  }

  .why-business-mobile {
    padding-top: 20px;
  }

  .home-page-pyramid-vector,
  .home-page-torus-vector,
  .pyramid-vector,
  .torus-vector,
  .ecosystem-vector,
  .our-vector {
    display: none;
  }

  .img-card {
    height: auto;
    margin: 0px !important;
  }
}

@media (max-width: 1200px) {
  .container {
    padding-right: 20px !important;
    padding-left: 20px !important;
  }
}

.member-container {
  gap: 35px;
  padding-bottom: 50px;
}

.member-card {
  transition: all 0.3s ease;
}

.member-card img {
  filter: grayscale(100%);
  transition: all 0.4s ease;
}

.member-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.member-card h2 {
  color: #1A1A1A;
  transition: color 0.3s ease;
}

.member-card:hover h2 {
  color: var(--themeColor);
}

.member-card h3 {
  color: #4A4A4A;
}

/* vector css */
.home-page-pyramid-vector {
  position: absolute;
  right: 0;
  top: 10%;
  width: 10%;
}

.home-page-torus-vector {
  position: absolute;
  bottom: 35%;
  left: 0;
  width: 10%;
}

.pyramid-vector {
  position: absolute;
  right: 0;
  top: -3%;
  width: 10%;
}

.torus-vector {
  position: absolute;
  bottom: -10%;
  left: 0;
  width: 10%;
}

.ecosystem-vector {
  position: absolute;
  top: -5%;
  left: 0;
  width: 15%;
}

.our-vector {
  position: absolute;
  right: 0;
  top: 0;
}


/* Navbar Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.nav-dropdown-toggle svg {
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #0b0b0b;
  min-width: 180px;
  border-radius: 8px;
  padding: 10px 0;
  margin-top: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-item {
  display: block;
  padding: 10px 20px;
  color: var(--whiteColor);
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-dropdown-item:hover {
  background: rgba(240, 41, 115, 0.1);
  color: var(--themeColor);
  padding-left: 25px;
}

@media (min-width: 992px) {
  .nav-dropdown-menu {
    display: block;
  }
}

@media (max-width: 991px) {
  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }

  /* .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 5px;
    margin-left: 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: none;
  } */

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown.active .nav-dropdown-menu {
    max-height: 200px;
  }
}


/* ========================================
   Policy Pages Styles
======================================== */

.policy-content {
  padding: clamp(1.5rem, 3vw, 2rem);
}

.policy-section {
  padding: clamp(1.5rem, 3vw, 2rem) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.policy-section:last-child {
  border-bottom: none;
}

.policy-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.policy-list li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
}

.policy-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--theme-color);
  font-size: 1.5rem;
  line-height: 1.5rem;
}

/* ========================================
   Sitemap Page Styles
======================================== */

.sitemap-card {
  background: #fff;
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.sitemap-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.sitemap-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.sitemap-list li {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.sitemap-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--theme-color);
  font-weight: bold;
}

.sitemap-list li a {
  text-decoration: none;
  transition: all 0.3s ease;
}

.sitemap-list li a:hover {
  color: var(--theme-color) !important;
  padding-left: 0.5rem;
}

.sitemap-list li span {
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .policy-content {
    padding: 1rem;
  }

  .policy-section {
    padding: 1rem 0;
  }

  .sitemap-card {
    padding: 1.5rem;
  }
}


/* ========================================
   Premium Policy Pages Styles
======================================== */

/* Policy Badge */
.policy-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: var(--whiteColor);
  font-size: 14px;
  font-weight: 500;
}

.policy-badge svg {
  stroke: var(--themeColor);
}

/* Policy Content Section */
.policy-content-section {
  padding: clamp(3rem, 5vw, 5rem) 0;
  background: var(--secondaryColor);
}

.policy-section {
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
}

.policy-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.policy-section:first-child {
  padding-top: 0;
}

.section-icon-wrapper {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(240, 41, 115, 0.1), rgba(138, 24, 66, 0.1));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.section-icon-wrapper svg {
  stroke: var(--themeColor);
}

.policy-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.policy-list li {
  padding-left: 2rem;
  position: relative;
  margin-bottom: 0.75rem;
}

.policy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, var(--themeColor), #8A1842);
  border-radius: 50%;
}

/* Contact Info Box */
.contact-info-box {
  background: linear-gradient(135deg, rgba(240, 41, 115, 0.05), rgba(138, 24, 66, 0.05));
  border-radius: 16px;
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item svg {
  flex-shrink: 0;
  stroke: var(--themeColor);
  margin-top: 2px;
}

.contact-item div {
  flex: 1;
}

/* Sitemap Premium Styles */
.sitemap-card {
  background: var(--whiteColor);
  border-radius: 20px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.sitemap-card:hover {
  box-shadow: 0 12px 40px rgba(240, 41, 115, 0.15);
  transform: translateY(-8px);
  border-color: rgba(240, 41, 115, 0.2);
}

.sitemap-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.sitemap-list li {
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.sitemap-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, var(--themeColor), #8A1842);
  border-radius: 50%;
}

.sitemap-list li a {
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.sitemap-list li a:hover {
  color: var(--themeColor) !important;
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {

  .policy-section {
    padding: 1.5rem 0;
  }

  .section-icon-wrapper {
    width: 48px;
    height: 48px;
  }

  .contact-info-box {
    padding: 1.5rem;
  }

  .sitemap-card {
    padding: 1.5rem;
  }
}