/* Global Styles */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #1a1d23;
    color: #fff;
}

body {
  font-family: 'Poppins', 'Segoe UI Symbol', 'Arial', sans-serif;
}


.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* ====== Base Navbar Styles ====== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: #000;
  box-sizing: border-box;
}

.container.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo img {
  height: 120px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
}

.desktop-call {
  display: flex;
  align-items: center;
}

.call-btn {
  font-size: 1rem;
  padding: 10px 20px;
  background-color: #f04f84;
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  box-shadow:
    0 0 10px rgba(240, 79, 132, 0.7),
    0 0 20px rgba(240, 79, 132, 0.5),
    0 0 30px rgba(240, 79, 132, 0.3);
  transition: all 0.3s ease;
  animation: pulseGlow 2s infinite;
}

.call-btn:hover {
  background-color: #fff;
  color: #000;
}

/* Glow Animation */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 12px rgba(240, 79, 132, 0.6),
                0 0 30px rgba(240, 79, 132, 0.4);
  }
  50% {
    box-shadow: 0 0 20px rgba(240, 79, 132, 0.9),
                0 0 40px rgba(240, 79, 132, 0.6);
  }
  100% {
    box-shadow: 0 0 12px rgba(240, 79, 132, 0.6),
                0 0 30px rgba(240, 79, 132, 0.4);
  }
}

/* ====== Hamburger & Mobile Toggle ====== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

.nav-mobile-call {
  display: none;
}

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

/* Tablets & folding devices (Surface Pro, Zenbook, iPad) */


/* Mobile Phones */
@media (max-width: 600px) {
  .logo img {
    height: 80px;
  }

  .call-btn {
    font-size: 0.95rem;
    padding: 10px 18px;
  }

  .nav-links li a {
    font-size: 0.95rem;
  }
}



/* Wrapper to center nav content */
.container.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Logo */
nav .logo {
    display: flex;
    align-items: center;
    padding-left: 0; /* remove the old 50px left padding */
}

nav .logo img {
    height: 130px;
    width: auto;
    display: block;
}

/* Nav links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

/* Quote button */
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.call-btn {
    background-color: #fff;
    color: #000;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

.call-btn:hover {
    background-color: #f04f84;
    color: #fff;
}


/* Hero Section Styling */
.hero {
  position: relative;
  margin-top: 190px;
  background-image: url('img/hero-image.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 220px;
  padding-bottom: 300px;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.4)
  );
  z-index: 1;
}

.hero > * {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 30px;
  color: #fff;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.8);
}

.hero h1 .highlight {
  color: #f04f84;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.8);
}

.hero-sub {
  font-size: 1.2rem;
  color: #eee;
  max-width: 700px;
  margin: 0 auto 30px auto;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.7);
}

.trust-text {
  font-size: 1rem;
  color: #fff;
  font-weight: 500;
  margin-top: 90px;
  line-height: 1.6;
  text-align: center;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.6),
    0 0 8px rgba(255, 255, 255, 0.1);
  animation: trustFadeIn 1s ease-out forwards;
  opacity: 0;
}

/* Subtle fade-in animation */
@keyframes trustFadeIn {
  from {
    transform: translateY(-10px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* CTA Button */
.get-started,
.pulse-btn {
  display: inline-block;
  background: #f04f84;
  color: #fff;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  margin-top: 20px;
  box-shadow:
    0 0 10px rgba(240, 79, 132, 0.7),
    0 0 20px rgba(240, 79, 132, 0.5),
    0 0 30px rgba(240, 79, 132, 0.3);
  transition: all 0.3s ease;
  animation: pulseGlow 2.2s infinite;
}

.get-started:hover,
.pulse-btn:hover {
  background-color: #fff;
  color: #000;
  box-shadow:
    0 0 10px rgba(255, 255, 255, 0.8),
    0 0 20px rgba(255, 255, 255, 0.6);
}

/* Pulse animation */
@keyframes pulseGlow {
  0% {
    box-shadow:
      0 0 10px rgba(240, 79, 132, 0.7),
      0 0 20px rgba(240, 79, 132, 0.5),
      0 0 30px rgba(240, 79, 132, 0.3);
  }
  50% {
    box-shadow:
      0 0 15px rgba(240, 79, 132, 1),
      0 0 30px rgba(240, 79, 132, 0.7),
      0 0 40px rgba(240, 79, 132, 0.5);
  }
  100% {
    box-shadow:
      0 0 10px rgba(240, 79, 132, 0.7),
      0 0 20px rgba(240, 79, 132, 0.5),
      0 0 30px rgba(240, 79, 132, 0.3);
  }
}


/* Services Section */
.services {
    background-color: #fff;
    color: #1a1d23;
    padding: 80px 20px 80px;

}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 700;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.card {
    background: #f9f9f9;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.card p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: #555;
}

.card .arrow {
    font-size: 1.5rem;
    color: #e91e63;
    cursor: pointer;
}

/* About Highlight Section */
.about-highlight {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin: 80px auto; /* <-- add top and bottom margin */
}


.about-left {
    flex: 1 1 48%;
    display: flex;
    justify-content: center;
    position: relative;
}

.about-left img {
    width: 100%;
    max-width: 420px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: #e91e63;
    color: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.experience-badge span {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.experience-badge small {
    font-size: 1rem;
    line-height: 1.2;
}

.about-right {
    flex: 1 1 48%;
}

.about-right .about-link {
    color: #e91e63;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 10px;
}

.about-right h2 {
    font-size: 2.5rem;
    margin: 15px 0;
    font-weight: 700;
    line-height: 1.2;
}

.about-right p {
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.6;
}


/* === Progress Bar === */
.progress-bar {
  margin-bottom: 25px;
}

.progress-bar span {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 5px;
  color: #fff;
}

.bar {
  background: #444;
  height: 8px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.6);
}

.bar .fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #f04f84, #e91e63);
  border-radius: 5px;
  box-shadow:
    0 0 8px rgba(240, 79, 132, 0.7),
    0 0 16px rgba(240, 79, 132, 0.5),
    0 0 24px rgba(240, 79, 132, 0.3);
  transition: width 2s ease-in-out;
  animation: glowPulse 2.5s ease-in-out infinite;
}

@keyframes glowPulse {
  0% {
    box-shadow:
      0 0 8px rgba(240, 79, 132, 0.7),
      0 0 16px rgba(240, 79, 132, 0.5),
      0 0 24px rgba(240, 79, 132, 0.3);
  }
  50% {
    box-shadow:
      0 0 14px rgba(240, 79, 132, 0.9),
      0 0 28px rgba(240, 79, 132, 0.7),
      0 0 40px rgba(240, 79, 132, 0.5);
  }
  100% {
    box-shadow:
      0 0 8px rgba(240, 79, 132, 0.7),
      0 0 16px rgba(240, 79, 132, 0.5),
      0 0 24px rgba(240, 79, 132, 0.3);
  }
}


.percent {
  font-size: 0.85rem;
  color: #fff;
  font-weight: 600;
}




@media (max-width: 768px) {
  .about-highlight {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
    margin: 60px auto;
  }

  .about-left {
    flex: 1 1 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 90%;
  }

  .about-left img {
    max-width: 100%;
    border-radius: 8px;
  }

  .experience-badge {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 18px;
    font-size: 0.9rem;
    border-radius: 6px;
  }

  .experience-badge span {
    font-size: 2rem;
  }

  .about-right {
    flex: 1 1 100%;
    padding: 0 5%;
  }

  .about-right h2 {
    font-size: 1.8rem;
  }

  .about-right p {
    font-size: 1rem;
  }
}



/* Pricing Section */
.pricing {
    background-color: #f9f9f9;
    color: #1a1d23;
    padding: 80px 20px;
    text-align: center;
}

.pricing h2 {
    font-size: 2.8rem;
    margin-bottom: 50px;
    font-weight: 700;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.pricing-card .price {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #e91e63;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    text-align: left;
}

.pricing-card ul li {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.purchase-btn {
    background-color: #e91e63;
    color: #fff;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 600;
    display: inline-block;
    transition: background 0.3s ease;
}

.purchase-btn:hover {
    background-color: #d81b60;
}

.pricing-cta {
    margin-top: 40px;
}

.full-pricing-btn {
    font-size: 1rem;
    text-decoration: none;
    color: #e91e63;
    font-weight: 600;
}

.full-pricing-btn:hover {
    text-decoration: underline;
}






/* About Us Section */
.about-us {
    background-color: #1a1d23; /* dark background */
    color: #fff;               /* white text */
    padding: 80px 20px 100px;  /* top, sides, bottom */
    margin-top: 60px;          /* space above from previous section */
}

.about-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.about-card {
    background-color: #111;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: left;
    transition: background 0.3s ease, transform 0.3s ease;
}

.about-card:nth-child(2) {
    background-color: #222;
}

.about-card:nth-child(3) {
    background-color: #333;
}

.about-card:hover {
    background-color: #e91e63;
    transform: translateY(-5px);
    color: #fff;
}

.about-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-card p {
    font-size: 0.95rem;
    color: #bbb;
    margin-bottom: 0;
}

/* Optional: section title if you want a centered heading above cards */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 700;
}



.contact {
  background-color: #111119;
  color: #fff;
  padding: 80px 20px;
}

.contact h2 {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 50px;
  font-weight: 700;
}

/* Wrapper that holds both form and info box */

.contact-wrapper {
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

/* Main box */
.contact-box {
  display: flex;
  flex-direction: column;
  background-color: #1a1d23;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  padding: 50px;
  max-width: 960px;
  width: 100%;
  gap: 40px;
  margin: 0 auto;
}

/* Left: contact form */
.contact-left {
  width: 100%;
}

.contact-form {
  width: 100%;
}

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

.form-row input {
  flex: 1;
  padding: 15px;
  border: 1px solid #333;
  border-radius: 6px;
  font-size: 1rem;
  background: #111;
  color: #fff;
}

.contact-form textarea {
  flex: 1;
  padding: 15px;
  border: 1px solid #333;
  border-radius: 6px;
  font-size: 1rem;
  background: #111;
  color: #fff;
  min-height: 160px;
  resize: vertical;
  width: 100%;
  box-sizing: border-box;
  display: block;
}


.send-btn {
  background-color: #e91e63;
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
  margin-top: 10px;
  box-shadow: 0 0 15px rgba(233, 30, 99, 0.6);
  transition: background 0.3s ease;
}

.send-btn:hover {
  background-color: #d81b60;
}

.send-btn-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

@media (max-width: 991px) {
  .send-btn-wrapper {
    justify-content: flex-start;
  }
}


/* Right: contact info */
.contact-right {
  width: 100%;
  background-color: #111;
  padding: 30px 35px;
  border-radius: 10px;
  box-shadow: inset 0 0 0 2px #e91e63;
  color: #fff;
  font-size: 1.05rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-right h3 {
  margin-bottom: 25px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
}

.contact-right p {
  margin: 18px 0;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-right img.contact-icon {
  height: 22px;
  width: 22px;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  filter: none; /* ensures no grayscale */
}

.contact-right a,
.contact-right span {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
}

.contact-right a:hover {
  text-decoration: underline;
}


.form-wrapper {
  position: relative;
  min-height: 300px;
}

.form-success-message {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #111;
  border: 2px solid #28a745;
  border-radius: 8px;
  padding: 30px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  animation: fadeInUp 0.4s ease-in-out;
  z-index: 10;
}

.form-success-message h3 {
  color: #28a745;
  font-size: 1.6rem;
  margin-bottom: 10px;
  line-height: 1.3;
}

.form-success-message p {
  font-size: 1rem;
  max-width: 320px;
  line-height: 1.5;
}

.contact-box {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.contact-left,
.contact-right {
  flex: 1;
  min-width: 280px;
}


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* === RESPONSIVE LAYOUT FIXES === */
@media (min-width: 992px) {
  .contact-box {
    flex-direction: row;
    align-items: stretch;
  }

  .contact-left,
  .contact-right {
    width: 50%;
  }

  .contact-form textarea {
    width: 100%;
    height: 160px;
    box-sizing: border-box;
  }

  .contact-form input {
    width: 100%;
    box-sizing: border-box;
  }

  .contact-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

@media (max-width: 991px) {
  .contact-box {
    flex-direction: column;
    padding: 30px 20px;
    gap: 40px;
  }

  .contact-form .form-row {
    flex-direction: column;
    gap: 15px;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
    box-sizing: border-box;
  }

  .send-btn {
    margin-top: 20px;
    width: 100%;
  }

  .contact-right {
    padding: 25px 20px;
    box-sizing: border-box;
    border-radius: 12px;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
  }
}






/*  Pricing Page Hero Section */

.hero-pricing {
  margin-top: 190px;
  background: url('img/pricing-hero.webp') center/cover no-repeat;
  position: relative;
  overflow: hidden;
  padding-top: 140px;
  padding-bottom: 160px;
  text-align: center;
  color: #fff;
}

.hero-pricing::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(26,29,35,0.7), rgba(58,63,75,0.7), rgba(26,29,35,0.7));
  background-size: 400% 400%;
  animation: gradientBG 12s ease infinite;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1.2s forwards ease-out;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  text-shadow: 0 4px 10px rgba(0,0,0,0.6);
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 20px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

.get-started {
  display: inline-block;
  background: #f04f84;
  color: #fff;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  box-shadow:
    0 0 10px rgba(240, 79, 132, 0.7),
    0 0 20px rgba(240, 79, 132, 0.5),
    0 0 30px rgba(240, 79, 132, 0.3);
  transition: all 0.3s ease;
  animation: pulseGlow 2s infinite;
}

.get-started:hover {
  background-color: #fff;
  color: #000;
  box-shadow:
    0 0 10px rgba(255, 255, 255, 0.8),
    0 0 20px rgba(255, 255, 255, 0.6);
}

.highlight-text {
  color: #f04f84;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.trust-text {
  font-size: 0.95rem;
  color: #ccc;
  margin-top: 18px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.trust-badge {
  color: #00e676;
  margin-right: 6px;
  font-weight: bold;
  font-size: 1.05rem;
}

/* Animated background gradient */
@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Smooth text fade-in on load */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Subtle glowing pulse for button */
@keyframes pulseGlow {
  0% {
    box-shadow:
      0 0 10px rgba(240, 79, 132, 0.7),
      0 0 20px rgba(240, 79, 132, 0.5),
      0 0 30px rgba(240, 79, 132, 0.3);
  }
  50% {
    box-shadow:
      0 0 15px rgba(240, 79, 132, 1),
      0 0 30px rgba(240, 79, 132, 0.7),
      0 0 40px rgba(240, 79, 132, 0.5);
  }
  100% {
    box-shadow:
      0 0 10px rgba(240, 79, 132, 0.7),
      0 0 20px rgba(240, 79, 132, 0.5),
      0 0 30px rgba(240, 79, 132, 0.3);
  }
}


.wave-divider {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: translateY(1px);
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 80px;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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


.pricing-section {
    padding: 80px 20px;
    background: #f9f9f9;
}

.pricing-section .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    color: #333;
    position: relative;
    overflow: hidden;
}

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

.pricing-card h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-card h3 {
    font-size: 1rem;
    text-transform: uppercase;
    margin: 20px 0 10px;
    font-weight: 600;
    color: #e91e63;
    letter-spacing: 0.5px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.pricing-card ul li {
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    position: relative;
}

.pricing-card p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 0;
    line-height: 1.5;
    border-top: 1px solid #eee;
    padding-top: 10px;
    margin-top: 20px;
}

.pricing-card.highlight {
    background: linear-gradient(135deg, #1a1d23, #2c2f36);
    color: #fff;
    text-align: center;
}

.pricing-card.highlight h2,
.pricing-card.highlight h3,
.pricing-card.highlight ul li,
.pricing-card.highlight p {
    color: #fff;
}

.cta-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 700;
  background: linear-gradient(135deg, #e91e63, #c2185b);
  color: #fff;
  border: none;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(233, 30, 99, 0.4);
  transition: all 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-3px) scale(1.03);
  background: linear-gradient(135deg, #d81b60, #ad1457);
  box-shadow: 0 12px 30px rgba(233, 30, 99, 0.6);
}

/* floating-cta on pricing page */

.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #e91e63;
  color: #fff;
  padding: 12px 24px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(233, 30, 99, 0.5);
  z-index: 999;
  transition: transform 0.2s ease;
}

.floating-cta:hover {
  transform: scale(1.05);
}

.pricing-card:hover {
  transform: translateY(-8px) scale(1.01);
}

/* WhatsApp Floating Button with Green Glow */
.whatsapp-float {
  position: fixed;
  bottom: 90px; /* sits above .floating-cta */
  right: 36px;
  z-index: 1000;
  background-color: #25D366;
  border-radius: 50%;
  padding: 14px;
  box-shadow:
    0 0 10px rgba(37, 211, 102, 0.6),
    0 0 20px rgba(37, 211, 102, 0.4),
    0 0 30px rgba(37, 211, 102, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  animation: pulseGreen 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #1ebf5e;
  box-shadow:
    0 0 12px rgba(30, 191, 94, 0.8),
    0 0 24px rgba(30, 191, 94, 0.5),
    0 0 36px rgba(30, 191, 94, 0.3);
}

.whatsapp-float img {
  width: 26px;
  height: 26px;
  filter: invert(100%);
}

/* Subtle green glow pulse */
@keyframes pulseGreen {
  0% {
    box-shadow:
      0 0 10px rgba(37, 211, 102, 0.6),
      0 0 20px rgba(37, 211, 102, 0.4),
      0 0 30px rgba(37, 211, 102, 0.2);
  }
  50% {
    box-shadow:
      0 0 14px rgba(37, 211, 102, 1),
      0 0 26px rgba(37, 211, 102, 0.7),
      0 0 38px rgba(37, 211, 102, 0.4);
  }
  100% {
    box-shadow:
      0 0 10px rgba(37, 211, 102, 0.6),
      0 0 20px rgba(37, 211, 102, 0.4),
      0 0 30px rgba(37, 211, 102, 0.2);
  }
}




/*pricing info */

.details-section {
    background: linear-gradient(135deg, #1a1d23 0%, #2c2f36 100%);
    color: #fff;
    padding: 80px 20px;
    border-top: 4px solid #e91e63;
}

.details-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 700;
}

.details-block {
    margin-bottom: 50px;
}

.details-block h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: #e91e63;
}

.details-block p {
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.details-block ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.details-block ul li {
    margin-bottom: 10px;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.details-block .emphasis {
    font-style: italic;
    font-size: 0.95rem;
    color: #ddd;
}


/* Software Sectio */

/* Software Section */
.software-section {
    background-color: #1a1d23;
    color: #fff;
    padding: 80px 20px;
    margin-top: 60px;
}

.software-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.software-card {
    background-color: #111;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: left;
    transition: background 0.3s ease, transform 0.3s ease;
}

.software-card:nth-child(2) {
    background-color: #222;
}

.software-card:nth-child(3) {
    background-color: #333;
}

.software-card.highlight {
    background-color: #e91e63;
    color: #fff;
    text-align: center;
}

.software-card:hover {
    background-color: #e91e63;
    transform: translateY(-5px);
    color: #fff;
}

.software-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.software-card p {
    font-size: 0.95rem;
    color: #bbb;
    margin-bottom: 0;
}



/* JobGhost Section */
.jobghost-section {
    background: linear-gradient(135deg, #1a1d23, #2d313c);
    color: #fff;
    padding: 180px 20px 100px;  /* increased top padding to push below navbar */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.jobghost-section::before {
    content: "";
    display: block;
    height: 80px;  /* height equal to navbar */
    margin-top: -80px;
}


.ghost-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    animation: ghostFloat 3s ease-in-out infinite;
}

.jobghost-section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    color: #ddd;
}

.ghost-btn {
    background: #e91e63;
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.ghost-btn:hover {
    background: #d81b60;
    transform: scale(1.05);
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 80px;
}

@keyframes ghostFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}


/* Software Section */
.software-section {
    background-color: #1a1d23;
    color: #fff;
    padding: 80px 20px;
    margin-top: 60px;
    position: relative;
}

.software-section::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #e91e63, #1a1d23);
}

.software-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 40px auto 0;
}

.software-card {
    background: linear-gradient(135deg, #111, #222);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.software-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

.software-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.software-card p {
    font-size: 1rem;
    color: #bbb;
    line-height: 1.6;
}

.software-card.highlight {
    background: #e91e63;
    color: #fff;
    text-align: center;
}

.software-card.highlight p {
    color: #fff;
}

.cta-btn {
    display: inline-block;
    margin-top: 20px;
    background: #fff;
    color: #1a1d23;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease, color 0.3s ease;
}

.cta-btn:hover {
    background: #1a1d23;
    color: #fff;
}


/* === JobGhost Hero Section === */
.jobghost-section {
  padding: 220px 20px 80px; /* increased for desktop to avoid any gap */
  background-color: #1a1d23;
  text-align: center;
  position: relative;
  z-index: 1;
}

.jobghost-section .ghost-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.jobghost-section p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.jobghost-section .ghost-btn {
  display: inline-block;
  background-color: #f04f84;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(240, 79, 132, 0.6);
  transition: all 0.3s ease;
}

.jobghost-section .ghost-btn:hover {
  background-color: #fff;
  color: #000;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

/* Responsive adjustment for smaller screens */
@media (max-width: 1024px) {
  .jobghost-section {
    padding-top: 260px; /* more room for stacked nav + call btn */
  }
}

@media (max-width: 600px) {
  .jobghost-section {
    padding-top: 240px;
  }
}



/* software solutions css hero */

.hero-software {
    margin-top: 190px;
    background-image: url('img/software-hero.webp'); /* your custom image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 140px;
    padding-bottom: 160px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #fff;
    background-attachment: fixed;
    animation: gradientBG 12s ease infinite;
}

.hero-software::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.hero-software .hero-content {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1.2s forwards ease-out;
}

.hero-software h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.hero-software p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 20px;
}

.get-started {
    display: inline-block;
    background: #e91e63;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.get-started:hover {
    background: #d81b60;
}


.footer {
    background: linear-gradient(to right, #111217, #1a1d23);
    color: #fff;
    padding: 60px 20px 30px;
    font-size: 0.95rem;
    position: relative;
    z-index: 10;
    border-top: 2px solid #e6007e; /* Electric pink */
    box-shadow: 0 -2px 20px rgba(230, 0, 126, 0.3);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-about h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #ff3399;
    text-shadow: 0 0 5px #ff3399;
}

.footer-about p {
    line-height: 1.6;
    color: #ccc;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #ff3399;
    text-shadow: 0 0 5px #ff3399;
}

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

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

.footer-links ul li a {
    color: #fff;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s ease, color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #ff3399;
    transform: translateX(5px);
    text-shadow: 0 0 5px #ff3399;
}

.footer-contact p {
    margin: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ccc;
}

.footer-contact a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #ff3399;
    text-shadow: 0 0 4px #ff3399;
}

.footer-icon {
    color: #ff3399;
    font-size: 1.1rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    border-top: 1px solid #333;
    padding-top: 15px;
    font-size: 0.85rem;
    color: #aaa;
    letter-spacing: 0.3px;
}



/* Large tablets, small laptops */


/* Tablets and small screens */
@media (max-width: 768px) {
  .container.nav-inner {
    flex-direction: column;
    align-items: center;
    padding: 15px 4%;
  }

  .logo {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
    padding-left: 0;
  }

  .logo a {
    display: flex;
    justify-content: center;
    width: auto;
  }

  .logo img {
    height: 80px;
    width: auto;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    margin-bottom: 10px;
  }

  .hamburger span {
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: #000;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 10px 0;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    margin: 10px 0;
  }

  .nav-right {
    display: none; /* hide desktop call button */
  }



  .hero,
  .hero-pricing,
  .hero-software,
  .hero-contact {
    margin-top: 180px;
    padding-top: 100px;
    padding-bottom: 120px;
  }

  .pricing-section .container,
  .about-us-grid,
  .software-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

.hero-contact {
  position: relative;
  background: url('/img/hero-image2.webp') no-repeat right center;
  background-size: cover;
  background-color: #0d0d23;
  height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  overflow: hidden;
}


.hero-contact .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 13, 35, 0.6);
  z-index: 1;
}

.hero-contact .hero-text,
.hero-contact .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-contact h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}

.hero-contact .highlight-text {
  color: #e91e63;
}

.hero-contact p {
  font-size: 1.1rem;
  color: #ccc;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-contact {
    background-position: center bottom;
    background-size: cover;
    height: 420px;
    padding: 0 15px;
  }

  .hero-contact h1 {
    font-size: 2rem;
  }

  .hero-contact p {
    font-size: 1rem;
  }
}




/* Mobile phones */
@media (max-width: 480px) {
  .hero h1,
  .hero-pricing h1,
  .hero-software h1,
  .hero-contact h1 {
    font-size: 2rem;
  }

  .hero p,
  .hero-pricing p,
  .hero-software p,
  .hero-contact p {
    font-size: 1rem;
  }

  .get-started,
  .cta-btn,
  .ghost-btn,
  .quote-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .pricing-card,
  .about-card,
  .software-card {
    padding: 25px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .container.nav-inner {
    padding: 10px 4%;
  }
}

/*  Prevent horizontal scroll on all pages */
html, body {
  overflow-x: hidden;
}

/* Desktop snap optimization (no hamburger) */
@media (max-width: 1024px) and (min-width: 769px) {
  .container.nav-inner {
    padding: 10px 2%;
  }

  .logo img {
    height: 70px;
    width: auto;
  }

  .nav-links {
    gap: 12px;
  }

  .nav-links li a {
    font-size: 0.9rem;
  }

  .quote-btn {
    padding: 6px 14px;
    font-size: 0.85rem;
  }

  .hero,
  .hero-pricing,
  .hero-software,
  .hero-contact {
    margin-top: 140px;
  }
}


/* MOBILE CALL BUTTON FIX & SPACING REFINEMENT */



  @keyframes pulseGlow {
    0% {
      box-shadow:
        0 0 12px rgba(240, 79, 132, 0.6),
        0 0 30px rgba(240, 79, 132, 0.4);
    }
    50% {
      box-shadow:
        0 0 20px rgba(240, 79, 132, 0.9),
        0 0 40px rgba(240, 79, 132, 0.6);
    }
    100% {
      box-shadow:
        0 0 12px rgba(240, 79, 132, 0.6),
        0 0 30px rgba(240, 79, 132, 0.4);
    }
  }

/* ===== Fixed @media (max-width: 1024px) ===== */
@media (max-width: 1024px) {

  .container.nav-inner {
    flex-direction: column;
    align-items: center;
    padding: 20px 4%;
  }

  .logo {
    margin-bottom: 10px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    text-align: center;
    background: #000;
    padding: 10px 0;
    margin-top: 10px;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    margin: 10px 0;
  }

  .desktop-call {
    display: none;
  }

  .nav-mobile-call {
    display: flex;
    justify-content: center;
    margin: 10px 0;
  }

  .hamburger {
    display: flex;
    margin: 10px 0;
  }

  .hero h1 { font-size: 3rem; }
  .hero p { font-size: 1.1rem; }

  .container.nav-inner {
    padding: 20px 4%;
  }

  .nav-links {
    gap: 20px;
  }

  .call-btn {
    display: none; /* hide main nav phone button on tablets+ below */
  }

  .nav-right {
    display: none; /* hide desktop call */
  }

  .nav-mobile-call {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: -10px; /* reduce space before hamburger */
  }

  .nav-mobile-call .call-btn {
    font-size: 1rem;
    padding: 10px 20px;
    background-color: #f04f84;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    box-shadow:
      0 0 10px rgba(240, 79, 132, 0.7),
      0 0 20px rgba(240, 79, 132, 0.5),
      0 0 30px rgba(240, 79, 132, 0.3);
    transition: all 0.3s ease;
  }

  .nav-mobile-call .call-btn:hover {
    background-color: #fff;
    color: #000;
    box-shadow:
      0 0 10px rgba(255, 255, 255, 0.8),
      0 0 20px rgba(255, 255, 255, 0.6);
  }

  .hamburger {
    margin-top: 30px; /* creates space after button */
  }
}