body {
  font-family: "Poppins", sans-serif;
}

.crm-section-title {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

.crm-section-desc {
 color: #545454;
  font-size: 19px;
  margin-bottom: 4%;
  text-align: center;
}

.crm-small-title{
   font-size: 22px;
  font-weight: 700;
   margin-bottom: 8px;
}

.crm-small-desc{
    font-size: 16px;
  color: #545454;
  margin-top: 10px;
  
}
.crm-counter-desc{
  font-size: 16px;
  color: #545454;
}

.crm-counter-desc span{
  font-weight: 700;
  margin-top: 0px;
}


.crm-para-text{
  text-align: justify;
  max-width: 600px;
}
.btn-started {
  background: linear-gradient(to bottom, #000, #333);
  color: white;
  padding: 14px 20px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  transition: 0.3s ease;
  text-decoration: none;
  width: 100%;
  display: block;   
  text-align: center; 
}

.btn-started:hover{
  background: #1A4EA3;
  /* color: #000; */
  transform: translateY(-5px);
}

.site-navbar {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: linear-gradient(to right, #eef5ff, #ffffff);
}

/* DESKTOP NAV */
/* .desktop-nav {
  height: 100px;
  padding: 20px;
} */

/* LOGO */
.navbar-left {
  padding-left: 40px;
  display: flex;
  align-items: center;
}

.navbar-left img {
  height: 78px;
  width: 78px;
}

/* CENTER MENU */
.navbar-center {
  display: flex;
  justify-content: center;
}

.nav-menu {
  display: flex;
  gap: 28px;
  padding: 20px 40px;
  list-style: none;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.nav-menu a {
  font-size: 15px;
  font-weight: 500;
  color: #111;
  text-decoration: none;
}

.nav-menu a:hover {
  color: #1A4EA3;
}

/* RIGHT BUTTONS */
.navbar-right {
  padding-right: 40px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
}

.signin {
  font-size: 14px;
  font-weight: 500;
  color: #111;
  text-decoration: none;
}

.trial-btn {
  background: #000;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.trial-btn:hover {
  background: #1A4EA3;
}

/* ================= MOBILE NAV ================= */

.mobile-nav {
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
}

.mobile-logo img {
  height: 42px;
}

.mobile-icons span {
  font-size: 28px;
  cursor: pointer;
}

.close {
  display: none;
}

/* MOBILE MENU PANEL */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 22px;
  padding: 30px 20px;
  background: #ffffff;
}

.mobile-menu a {
  font-size: 18px;
  font-weight: 500;
  color: #111;
  text-decoration: none;
}

/* MOBILE ACTION BUTTONS */
.mobile-actions {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ACTIVE STATES */
.mobile-menu.active {
  display: flex;
}

.close.active {
  display: inline;
}

.hamburger.hide {
  display: none;
}


/* LEFT LOGO */
.navbar-left {
  padding-left: 40px; 
  display: flex;
  align-items: center;
}
.site-navbar {
  position: sticky;
  top: 0;
  z-index: 9999;
  /* background: #ffffff;   */
  background: linear-gradient(to right, #eff0f3, #ffffff);
  height: 100px;
  padding: 20px;
}



.navbar-left img {
  height: 80px;
  width: 80px;
}

/* CENTER MENU */
.navbar-center {
  display: flex;
  justify-content: center;
}

.nav-menu {
  display: flex;
  gap: 28px;
  padding: 20px 40px;
  margin: 0;
  list-style: none;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.nav-menu a {
  font-size: 15px;
  font-weight: 500;
  color: #111;
  text-decoration: none;
  white-space: nowrap;
}

/* RIGHT BUTTONS */
.navbar-right {
  padding-right: 40px; 
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
}

.signin {
  font-size: 14px;
  font-weight: 500;
  color: #111;
  text-decoration: none;
}

/* CTA BUTTON */
.trial-btn {
  background: #000;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.trial-btn:hover {
  background: #1A4EA3;
}
.trial-btn,
.signup-btn,
.login-link,
.nav-menu a {
  cursor: pointer;
  position: relative;
  z-index: 10;
}
.nav-menu a:hover{
  color: #1A4EA3;
}

.crm-hero {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
  /* background: #ffffff; */
  min-height: 100vh;
}
.crm-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.65);
  z-index: 1;
}


/* === HERO BACKGROUND VIDEO (ADD ONLY) === */
.crm-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.crm-video-bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.crm-bg {
  position: absolute;
  right: -50px;
  /* top: 0; */
  width: 350px;
  height: 100%;
  background: radial-gradient(
    circle at right center,
    #1a1a1a 0%,
    #0b0b0b 70%
  );
  border-top-left-radius: 500px;
  border-bottom-left-radius: 500px;
  z-index: 0;
}

.crm-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.35;
}

.crm-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 60px;
}

.crm-content h1 {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.5;
  color: #111;
  /* margin-bottom: 22px; */
}

.crm-content p {
  font-size: 19px;
  line-height: 1.7;
  color: #444;
  max-width: 520px;
  margin-bottom: 36px;
  /* font-weight: 700; */
}

/* BUTTONS */
.crm-buttons {
  display: flex;
  gap: 18px;
}

.crm-image img {
  width: 130%;
  max-width: 820px;
  height: 100%;
  border-radius: 16px;
  box-shadow: 0 35px 90px rgba(0,0,0,0.35);
  position: relative;
  right: 30px;
}

/* ================= CRM SIMPLE FORM ================= */

.crm-form {
  background: #ffffff;
  padding: 42px;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.12);
  max-width: 420px;
  justify-self: end;
}

.crm-form h3 {
  font-size: 24px;
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
}

.crm-form p {
  font-size: 15px;
  color: #555;
  margin-bottom: 26px;
}

.crm-form form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.crm-form input {
  padding: 14px 16px;
  font-size: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  outline: none;
}

.crm-form input:focus {
  border-color: #1A4EA3;
}

.crm-form button {
  margin-top: 8px;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  background: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
}

.crm-form button:hover {
  background: #1A4EA3;
}
.form-group {
  display: flex;
  flex-direction: column;
}

.error {
  font-size: 13px;
  color: #d93025;
  margin-top: 4px;
  min-height: 14px;
}


.stat-banner {
  background-color: #1A4EA3;
  padding: 8px;
  text-align: center;
  width: 620px;
  margin: 0 auto;
  margin-top: 30px;
}

.stat-banner p {
  margin: 0;
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.stat-banner img{
  width: 25px;
  height: 25px;
  position: relative;
  bottom: 10px;
}
.stat-banner span{
  color: #fcff4e;
}


/* tools */

.integration-section{
  padding: 40px;
  text-align: center;
}
.logo-box {
  background: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 12px;
  padding: 10px;
  text-align: center;
  transition: 0.3s ease;
  width: 80px;
}

.logo-box img {
  width: 40px;
  height: auto;
  opacity: .8;
}

.logo-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  opacity: 1;
}
.integrations-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 10px;
  margin-top: 20px;
}

.logo-box {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-box img {
  width: 60px;
  height: auto;
}

.logo-box {
  position: relative;
}

.logo-box::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(255,255,255,0.2), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(16px);
  z-index: -1;
}
.integration-section::before {
  content: "";
  position: absolute;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(45,140,255,0.25), transparent 70%);
  top: -300px;
  left: -200px;
  filter: blur(80px);
  animation: glowMove 18s ease-in-out infinite;
}

@keyframes glowMove {
  0%, 100% { transform: translate(0,0); opacity: 0.6; }
  50% { transform: translate(200px, 200px); opacity: 1; }
}


/* business */

.business-hub{
  text-align: center;
}

.business-hub-section {
    padding: 80px 0 0 40px;
}

.hub-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}


.hub-card {
  background: rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  transition: 0.3s ease;
  background-image: linear-gradient(135deg, #e8f1ff, #fafafa);
}

.hub-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.hub-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.3fr;
  gap: 30px;
  align-items: start;
}

.hub-image {
  position: sticky;
  top: 80px;
  height: fit-content;
}

.hub-image img {
  width: 100%;
  border-radius: 25px;
  object-fit: cover;
}


.icon-wrap {
  width: 58px;
  height: 58px;
  background: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;

}

/* Gradient backgrounds */
.blue-bg {
  background: linear-gradient(15deg, #e6f2ff, #ffffff);
}

.pink-bg {
  background: linear-gradient(15deg, #ffe9f4, #ffffff);
}
.trial-button{
  text-align: center;
  margin-top: 25px;
    margin-left: 50%;
    width: 180px;
    height: 150px;
}


/* TOAST MESSAGE */
.toast-message {
  position: fixed;
  bottom: 30px;
  right: 30px;
  min-width: 260px;
  padding: 14px 20px;
  border-radius: 10px;
  background: #333;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.35s ease;
  z-index: 9999;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* SHOW */
.toast-message.show {
  opacity: 1;
  transform: translateY(0);
}

/* SUCCESS */
.toast-message.success {
  background: #4caf50;
}

/* ERROR */
.toast-message.error {
  background: #e53935;
}


/* feature */

.features-section{
  background: #f8f9fa;
    padding-top: 5%;
    text-align: center;
    margin-bottom: 5%;
}


.feature-cards {
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid #E6E6E6;
  transition: 0.4s;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(26,78,163,0.08);
  position: relative;
  overflow: hidden;
 width: 350px;
    height: 300px;
  margin: 0 auto;
   backdrop-filter: blur(4px);
  border: 1px solid rgba(26,78,163,0.35);
  margin-bottom: 20px;
}
.feature-cards:hover {
  background: linear-gradient(135deg,#ffffff,#f0f6ff);
}

.feature-cards-center {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(26,78,163,0.25);
}


.icon-circle {
  width: 70px;
  height: 70px;
  background: #fffbfb;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 15px;
  box-shadow: 0 0 18px rgba(26,78,163,0.45);
}

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


/* orbit */

 .orbit-section {
    background: #111;
    color: #fff;
    padding: 80px 0;
    border-radius: 30px;
  }

  .orbit-title {
    font-size: 48px;
    font-weight: 700;
    color:#fff;
  }

  .highlight { 
    color: #1A4EA3; 
  }

  .orbit-text {
    font-size: 18px;
    margin: 20px 0;
    color: #ccc;
  }

  .orbit-btn {
    background: #1A4EA3;
    padding: 14px 32px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
  }
  .orbit-btn:hover{
    color:#000;
  }

  .orbit-wrapper {
    width: 450px;
    height: 450px;
    margin: auto;
    position: relative;
  }

  .center-logo img {
    width: 110px;
    border-radius: 50%;
    background: #c8c8c8;
    padding: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
  }

  
  .orbit-rotation {
    width: 100%;
    height: 100%;
    position: absolute;
    animation: rotate 18s linear infinite;
    transform-origin: center;
  }

 
  .orbit-item {
    position: absolute;
    text-align: center;
    width: 140px;
  }

  .orbit-item img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #2b2b2b;
    padding: 10px;
    margin-bottom: -10px;
    transition: transform 0.4s ease;
  }

  .pulse {
    animation: scalePulse 0.6s ease-in-out;
  }

  @keyframes scalePulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.25); }
    100% { transform: scale(1); }
  }

  .crm-orbit-desc{
    font-size: 18px;
    color: #ffffff;
    margin-top: 10px;
  }

  .orbit-item small { 
        font-size: 16px;
    color: #dadada;
    display: block;
    line-height: 1.3;
        bottom: 10px; 
        position: relative;
  }

  .whatsapp-desc{
      width: 200px;
      position: relative;
     left: -20px;
  }
 
  .pos1 { 
    top: -10%; 
    left: 50%; 
    transform: translateX(-50%); 
  }
  .pos2 { 
    bottom: -1%; 
    left: -7%; 
    transform: translateX(0); 
  }
  .pos3 { 
    bottom: -3%;
    left: 90%; 
    transform: translateX(-50%); 
  }

  .orbit-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 450px;
    height: 450px;
    z-index: 1;
  }

  line {
    stroke: #1A4EA3;
    stroke-width: 2;
    stroke-dasharray: 6 6;
    animation: moveDots 1.6s linear infinite;
  }

  @keyframes moveDots {
    from { stroke-dashoffset: 0; }
    to   { stroke-dashoffset: -40; }
  }

  .moving-dot {
    fill: #1A4EA3;
    r: 5;
    animation: dotMove 1.6s linear infinite;
  }

  @keyframes dotMove {
    0% { offset-distance: 0%; }
    100% { offset-distance: 100%; }
  }


/* case study */

.case-wrapper {
  position: relative;
  width: 100%;
  padding: 40px 0 0 0;
}

.case-heading {
  text-align: center;
  /* margin-bottom: 80px; */
}

.case-slides {
  height: 450vh; 
  position: relative;
}

.case-slide {
  height: 18%;
  display: flex;
  justify-content: center;
  align-items: center;
  scroll-snap-align: start;
  position: sticky;
  top: 0;
  gap: 40px;
  padding: 20px 20px;
  z-index: 10;
  background: #f8f9fa;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.case-slide .left img {
  width: 680px;
  height: 350px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.case-slide .case-slide-head {
  font-size: 32px;
  margin-bottom: 15px;
  color:#fff;
}

.case-slide .right p {
  font-size: 18px;
  color: #818181;
}

.case-slide:nth-child(even) {
  background: #000000;
  color: white;
}


/* count */
.counters-section{
  margin-bottom: 3%;
}

.rows {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
}

.cols {
  flex: 1;
  text-align: center;
}

.counter-box {
  background: #f7f9fc;
  /* padding: 20px 10px; */
  border-radius: 20px;
  border: 1px solid rgba(26, 78, 163, 0.25);
  transition: 0.4s ease;
   height: 160px;       
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.counter-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(26,78,163,0.25);
}

.counter {
  font-size: 30px;
  font-weight: 700;
  color: #1A4EA3;
}


/* pricing */

.pricing-section{
  padding-top: 40px;
}

.pricing-card {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 35px 30px;
  text-align: left;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 0px 30px rgba(0,0,0,0.06);
  margin-bottom:20px;
}

.pricing-card.pink {
  background: linear-gradient(5deg, #ffe9f4, #ffffff);
}

.pricing-card.blue {
  background: linear-gradient(5deg, #e6f2ff, #ffffff);
}

.plan-label {
  background: white;
  padding: 6px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 18px;
}

.price {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
}
.price-user{
  position: relative;
  bottom: 30px;
}

.features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 28px;
}

.features li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 10px;
  font-size: 15px;
  color: #333;
}

.features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  background-image: url('./check-mark.svg'); 
  background-size: cover;
  background-repeat: no-repeat;
}

.popup{
  width: 640px; 
  background: #fff;
  border-radius: 16px;
  padding: 35px;
  animation: scalePop .35s ease;
  position: relative;
  z-index: 10000;
}


.overlay{
  position: fixed; 
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: none; 
  justify-content: center; 
  align-items: center;
  backdrop-filter: blur(5px);
  z-index: 9999;
}


@keyframes scalePop{
  0%{transform: scale(.6); opacity:0;}
  100%{transform: scale(1); opacity:1;}
}

.close-btn{
  width: 20px; 
  position: absolute; 
  top: 18px; 
  right: 18px;
  cursor: pointer; 
  opacity:.6; 
  transition:.3s;
}
.close-btn:hover{
  opacity:1;
}

.input-box{
  position: relative;
  flex: 1;
  margin-bottom: 18px;
}

.input-box input,
.input-box select{
  width: 100%;
  padding: 18px 16px;
  font-size: 16px;
  border: 1.5px solid #ccc;
  border-radius: 10px;
  background: transparent;
  outline: none;
  transition: .3s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* background-image: url('./assets/down.svg');  */
  /* background-repeat: no-repeat; */
  /* background-position: right 16px center; */
  /* background-size: 16px 16px;  */
  padding-right: 40px; 
}

.input-box input:focus,
.input-box select:focus{
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0,123,255,.2);
  background: #f6fffe;
}

.input-box label{
  position: absolute;
  top: 14px; 
  left: 25px;
  font-size: 15px;
  color: #777;
  transition: .3s;
  pointer-events: none;
}

.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 16px;
  color: #555;
  background-color: #fff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}


.input-box input:focus + label,
.input-box input:valid + label,
.input-box select:focus + label,
.input-box select:valid + label{
  top: -8px;
  background: #fff;
  padding: 0 6px;
  font-size: 13px;
  color: #007bff;
}

.checkbox{
  display: flex; 
  align-items: center;
  gap: 8px; 
  margin: 12px 0 20px;
}

.submit-btn{
  width:100%; 
  padding: 14px;
  background:#007bff;
  color:#fff;
  border:none; 
  border-radius:10px;
  font-size:16px; 
  cursor:pointer;
  transition:.3s;
}
.submit-btn:hover{
  transform: translateY(-2px);
  /* box-shadow: 0 6px 15px rgba(0,0,0,.15); */
  background:#000;
}

.crm-footer {
  background: radial-gradient(
    circle at top left,
    #0d1028,
    #050716 70%
  );
  /* border-radius: 24px; */
  /* margin: 80px 40px 40px; */
  padding: 70px 60px 30px;
  color: #fff;
}

/* MAIN GRID */
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* CTA */
.footer-tag {
  font-size: 12px;
  letter-spacing: 1px;
  color: #9aa4ff;
}

.footer-cta h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin: 16px 0 28px;
}

.footer-bottom-extra {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 30px;
  gap: 40px;
}


.footer-label {
  color: #cfcfcf;
    font-size: 14px;
}
/* FORM */
.footer-form {
  display: flex;
  gap: 10px;
}

.footer-form input {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 12px 14px;
  border-radius: 8px;
  color: #fff;
  width: 240px;
  outline: none;
  margin-top: 30px;
}

.footer-form input::placeholder {
  color: #bfc6ff;
}

.footer-form button {
  background: #000;
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 8px;
  /* cursor: pointer; */
  transition: 0.3s ease;
      width: 100px;
    height: 50px;
    margin-top: 30px;
}

.footer-form button:hover {
  background: #1A4EA3;
}

/* ADDRESS */
.footer-address h4{
  color: #cfd4ff;
  font-size: 14px;
  line-height: 1.6;
  margin-left: 50px;
      margin-bottom: 18px;
}

.footer-address{

      position: relative;
    right: 90px;
}

.footer-btn {
  display: inline-block;
  background: #ffffff;
  color: #000;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 30px;
}

.footer-email span {
  font-size: 12px;
  color: #aaa;
}

.email-box {
  margin-top: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

/* .footer-address h4 {
  color: #ffffff;
  margin-bottom: 16px;
} */

.footer-info {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: rgb(207, 207, 207); 
  font-size: 14px;
}

.footer-info a {
  color: rgb(207, 207, 207);
  font-size: 14px;
  text-decoration: none;
}

.footer-info a:hover {
  color: #ffffff;
}

.footer-icon img,
.footer-icon svg {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  fill: #7f8cff;
}
.link-col{
  position: relative;
  right: 90px;
}

/* LINKS */
.footer-links {
  display: flex;
  gap: 80px;
}

.link-col h4 {
  font-size: 14px;
  margin-bottom: 18px;
  color: #cfd4ff;
}

.link-col a {
  display: block;
  color: #cfcfcf;
  font-size: 14px;
  margin-bottom: 12px;
  text-decoration: none;
  width: 130px;
}

.link-col a:hover {
  color: #ffffff;
}

/* BOTTOM */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 14px;
  color: #aaa;
}

.socials a {
  margin-left: 16px;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
}

.socials img{
  width: 20px;
  height: 20px;
}


/* ============================
   RESPONSIVE MEDIA QUERIES
============================ */

/* Mobile screens max-width 768px */
@media (max-width: 768px)  {
  .integration-section {
    padding: 20px 10px;
  }
  .integration-section:before{
    display: none;
  }

   .crm-section-title {
    font-size: 24px;
    line-height: 1.4;
    padding: 0 10px;
    margin-bottom: 10px;
    text-align: center;
  }

  .crm-section-desc {
    font-size: 14px;
    line-height: 1.4;
    padding: 0 12px;
    text-align: center;
  }

  .crm-hero{
    min-width: 0;
  }

  .integrations-wrap {
    gap: 14px;
    overflow-x: auto;
    /* flex-wrap: nowrap;
    justify-content: flex-start; */
    flex-wrap: wrap;
    justify-content: center;
  }

  .logo-box {
    width: 70px;
    height: 70px;
    padding: 8px;
  }

  .logo-box img {
    width: 40px;
  }


  .hub-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .hub-image img {
 display: none;
  }

  .hub-cards {
    grid-template-columns: 1fr !important;
    gap: 15px;
  }

  .hub-card {
    padding: 22px;
    text-align: center;
  }

  .icon-wrap {
    margin: 0 auto 12px;
  }

  .business-hub-section {
    padding: 10px 20px;
  }
  .trial-button{
    margin-left: 20%;
    height: 70px;
  }



    .popup {
    width: 92%;
    padding: 22px;
  }

  .input-box {
    width: 100%;
  }

  .title {
    font-size: 22px;
    text-align: center;
  }

  .desc {
    font-size: 14px;
    text-align: center;
  }

  .close-btn {
    width: 18px;
    top: 12px;
    right: 12px;
  }

  .submit-btn {
    padding: 12px;
    font-size: 15px;
  }


   .features-section {
    padding-top: 15%;
    margin-bottom: 15%;
  }

 
  .feature-cards {
    max-width: 100%;
    /* padding: 22px; */
    margin-bottom: 18px;
  }

  .icon-circle {
    width: 60px;
    height: 60px;
  }

  .crm-small-title {
    font-size: 18px;
  }

  .crm-small-desc {
    font-size: 14px;
  }

  
  .orbit-section {
    padding: 50px 0;
    text-align: center;
  }

  .orbit-title {
    font-size: 28px;
    line-height: 38px;
  }

  .orbit-text {
    font-size: 15px;
    padding: 0 10px;
    line-height: 22px;
    margin-bottom: 15px;
  }

  .orbit-btn {
    padding: 12px 26px;
    font-size: 15px;
    margin-bottom: 25px;
  }

  .orbit-wrapper {
    width: 320px;
    height: 320px;
    margin-top: 40px;
  }

  .center-logo img {
    width: 85px;
  }

  .orbit-item {
    width: 100px;
  }

  .orbit-item img {
    width: 55px;
    height: 55px;
  }

  .pos1 { 
    top: -8%; 
    left: 47%; 
    transform: translateX(-50%); 
  }
  .pos2 { 
    bottom: 7%; 
    left: -5%;
  }
  .pos3 { 
    bottom: 7%; 
    left: 85%; 
  }

  .orbit-lines {
    width: 320px;
    height: 300px;
    left: -24%;
    top: -15%;
    transform: scaleY(0.7);
  }

.orbit-item small{
  display: none;
}

.case-slide {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 30px 15px;
    margin-bottom: 15px;
    position: static;
    height: auto;
    border-radius: 20px;
  }

  .case-wrapper{
    padding: 30px;
  }

  .case-heading {
    margin-bottom: 20px;
  }

  .case-slide .left img {
    width: 100%;
    height: auto;
    /* max-width: 100%; */
  }

  .case-slide .right p {
    font-size: 14px;
  }

  .case-slides {
    height: auto;
  }
  .case-slide .case-slide-head{
    font-size: 18px;
  }

  .pricing-section {
    padding: 30px 0;
  }

  .pricing-card {
    padding: 30px 22px;
    /* text-align: center; */
    margin-top: 10px;
  }

  .price {
    font-size: 28px;
  }

  .features li {
    padding-left: 28px;
    font-size: 14px;
  }

  .features li::before {
    width: 14px;
    height: 14px;
  }

  .btn-started {
    display: inline-block;
    width: 100%;
    text-align: center;
  }
  .trial-btn{
    color: #fff;
  }
  .hamburger img{
    width: 40px;
    height: 40px;
  }
  .close img{
    width: 40px;
    height: 40px;
  }
}



@media(min-width:769px) and (max-width:901px) {
  .integrations-wrap {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .logo-box {
    width: 85px;
    height: 85px;
  }

  .logo-box img {
    width: 55px;
  }
  .hub-grid {
    grid-template-columns: 1fr !important;
  }

  .hub-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .hub-card {
    padding: 26px;
  }
  .hub-image img {
 display: none;
  }
  .trial-button{
    margin-left: 30%;
    height: 70px;
  }
   .popup {
    width: 80%;
    padding: 28px;
  }

  .input-box input,
  .input-box select {
    padding: 16px 14px;
    font-size: 15px;
  }

  .title {
    font-size: 24px;
  }

  .desc {
    font-size: 15px;
  }
   .popup {
    width: 70%;
    padding: 35px;
  }

  .title {
    font-size: 26px;
  }

  .desc {
    font-size: 16px;
  }
   .feature-cards {
    height: 350px;
    width: 220px;
    padding: 20px;
  }

  .crm-section-title {
    font-size: 30px;
  }

  .crm-section-desc {
    font-size: 15px;
  }

  .icon-circle {
    width: 65px;
    height: 65px;
  }

  .crm-small-title {
    font-size: 20px;
  }

  .crm-small-desc {
    font-size: 15px;
  }
    .orbit-title {
    font-size: 36px;
    line-height: 46px;
  }

  .orbit-wrapper {
    width: 380px;
    height: 380px;
  }

  .center-logo img {
    width: 90px;
  }

  .orbit-item img {
    width: 55px;
    height: 55px;
  }

  .orbit-item {
    width: 120px;
  }

  .orbit-lines {
    width: 380px;
    height: 380px;
    left: -9%;
    top: -15%;
  }
  .pos2 {
    bottom: -2%;
    left: -10%;
    top: 70%;
  }
   .case-slide {
    gap: 20px;
    padding: 40px 25px;
    height: 20%;
  }

  .case-slide .left img {
    width: 420px;
    height: auto;
  }

  .case-slide .right p {
    font-size: 17px;
  }
  .pricing-card {
    padding: 32px 25px;
  }

  .price {
    font-size: 30px;
  }

  .features li {
    font-size: 15px;
  }

   .hamburger img{
    width: 40px;
    height: 40px;
  }
  .close img{
    width: 40px;
    height: 40px;
  }

}



@media(min-width:902px) and (max-width:1200px) {
  .integrations-wrap {
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .logo-box {
    width: 90px;
    height: 90px;
  }

  .logo-box img {
    width: 60px;
  }
  .hub-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  .hub-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .hub-card {
    padding: 26px;
  }
 /* .hub-image img {*/
 /*display: none;*/
 /* }*/
   .popup {
    width: 70%;
    padding: 35px;
  }

  .title {
    font-size: 26px;
  }

  .desc {
    font-size: 16px;
  }
    .feature-cards {
    max-width: 330px;
    padding: 30px;
  }

  .crm-section-title {
    font-size: 32px;
  }

  .crm-section-desc {
    font-size: 16px;
  }

  .crm-small-title {
    font-size: 20px;
  }

  .crm-small-desc {
    font-size: 15px;
  }

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

  .orbit-wrapper {
    width: 420px;
    height: 420px;
  }

  .center-logo img {
    width: 100px;
  }

  .orbit-item img {
    width: 60px;
    height: 60px;
  }

  .orbit-lines {
    width: 420px;
    height: 420px;
  }

  .case-slide {
    gap: 25px;
  }

  .case-slide .left img {
    width: 520px;
    height: auto;
  }

  .case-slide .right p {
    font-size: 18px;
  }

  .pricing-card {
    padding: 34px 28px;
  }

  .price {
    font-size: 31px;
  }
  
}



@media (max-width: 768px) {

  /* .crm-hero {
    padding: 100px 20px;
  } */

  .crm-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .crm-content h1 {
    font-size: 32px;
    line-height: 1.3;
  }

  .crm-content p {
    font-size: 16px;
    margin: 20px auto 30px;
  }

  .crm-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .crm-image img {
    width: 100%;
    max-width: 100%;
  }

  .stat-banner {
    width: 90%;
    padding: 12px 14px;
  }

  .stat-banner p {
    font-size: 14px;
    line-height: 1.4;
  }
  /* .crm-footer {
    padding: 50px 20px 25px;
    border-radius: 16px;
  } */

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-cta h2 {
    font-size: 28px;
    line-height: 1.3;
  }

  .crm-buttons {
    justify-content: center;
  }

  /* .footer-links {
    justify-content: center;
    gap: 40px;
  } */

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .socials a {
    margin-left: 10px;
    margin-right: 10px;
  }

   /* NAVBAR */
  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: flex;
  }

  .site-navbar {
    height: auto;
    padding: 0;
  }

  /* HERO */
  /* .crm-hero {
    padding: 100px 20px;
  } */

  .crm-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .crm-content h1 {
    font-size: 32px;
    line-height: 1.3;
  }

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

  .crm-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .crm-image img {
    width: 100%;
    max-width: 100%;
  }

  /* FOOTER */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
  }

    .counters-section {
    margin-top: 60px;
  }

  .rows {
    flex-direction: column;
    gap: 24px;
  }

  .counter-box {
    padding: 24px 16px;
  }

  .counter {
    font-size: 26px;
  }

  .crm-small-desc {
    font-size: 14px;
  }

}

@media (min-width: 769px) and (max-width: 902px) {

  .crm-hero {
    padding: 120px 40px;
  }

  .crm-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .crm-content h1 {
    font-size: 34px;
  }

  .crm-content p {
    font-size: 17px;
  }

  .crm-image img {
    width: 100%;
    right: 0;
  }

  .crm-form {
    justify-self: center;
    max-width: 500px;
  }

  .crm-bg {
    opacity: 0.4;
  }


  /*.crm-container {*/
  /*  grid-template-columns: 1fr;*/
  /*  gap: 50px;*/
  /*  text-align: center;*/
  /*}*/

  /*.crm-content h1 {*/
  /*  font-size: 38px;*/
  /*  line-height: 1.35;*/
  /*}*/

  .crm-content p {
    font-size: 17px;
    margin: 20px auto 32px;
  }

  .crm-buttons {
    justify-content: center;
  }

  /*.crm-image img {*/
  /*  width: 110%;*/
  /*  max-width: 700px;*/
  /*  margin: auto;*/
  /*}*/

  .stat-banner {
    width: 80%;
    padding: 12px 16px;
  }

  .stat-banner p {
    font-size: 16px;
  }

  
  /* NAVBAR */
  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: flex;
  }

  /* HERO */
  .crm-hero {
    padding: 120px 40px;
  }

  .crm-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }

  .crm-content h1 {
    font-size: 38px;
  }

  .crm-content p {
    font-size: 17px;
  }

  .crm-buttons {
    justify-content: center;
  }

  /*.crm-image img {*/
  /*  max-width: 700px;*/
  /*  margin: auto;*/
  /*}*/

  /* FOOTER */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .integration-section::before{
    display: none;
  }

  .footer-links {
    text-align: justify;
  }

/* 
   body,html{
    overflow-x: hidden;
  } */
  .rows {
    flex-wrap: wrap;
    gap: 24px;
  }

  .cols {
    flex: 0 0 calc(50% - 12px);
  }

  .counter-box {
    padding: 26px 18px;
  }

  .counter {
    font-size: 28px;
  }

  .crm-footer {
    padding: 60px 40px 30px;
    border-radius: 20px;
   
  }

  /* STACK CTA + LINKS */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  /* CTA TEXT */
  .footer-cta h2 {
    font-size: 34px;
    line-height: 1.3;
  }

  /* BUTTON CENTER */
  .crm-buttons {
    justify-content: center;
  }

  /* LINKS ALIGN CENTER */
  /* .footer-links {
    justify-content: center;
    gap: 60px;
  } */

  .link-col h4 {
    text-align: center;
  }

  .link-col a {
    text-align: center;
  }

  /* BOTTOM BAR */
  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .socials a {
    margin: 0 10px;
  }

}


@media (min-width: 901px) and (max-width: 1200px) {

  /*.crm-hero {*/
  /*  padding: 140px 60px;*/
  /*}*/
  
 .crm-container {
    gap: 40px;
    padding: 0 30px;
  }

  .crm-content h1 {
    font-size: 40px;
  }

  .crm-image img {
    width: 115%;
    right: 10px;
  }

  .crm-form {
    max-width: 380px;
  }

  /*.crm-container {*/
  /*  gap: 40px;*/
  /*}*/

  /*.crm-content h1 {*/
  /*  font-size: 42px;*/
  /*}*/

  .crm-content p {
    font-size: 17px;
  }

  /*.crm-image img {*/
  /*  width: 115%;*/
  /*  max-width: 760px;*/
  /*}*/

  .stat-banner {
    width: 70%;
  }

  .stat-banner p {
    font-size: 18px;
  }


    .crm-footer {
    padding: 60px 40px 30px;
  }

  .footer-inner {
    gap: 50px;
  }

  .footer-cta h2 {
    font-size: 38px;
  }

  .footer-links {
    gap: 60px;
  }

   /* NAVBAR */
  .nav-menu {
    gap: 20px;
    padding: 16px 30px;
  }

  .navbar-left img {
    height: 52px;
    width: 52px;
  }

  /* HERO */
  .crm-hero {
    /*padding: 140px 60px;*/
    min-height:0;
  }

  .crm-content h1 {
    font-size: 42px;
  }

  .crm-content p {
    font-size: 17px;
  }

  .crm-image img {
    max-width: 760px;
  }

  /* FOOTER */
  .footer-inner {
    gap: 60px;
  }

    .rows {
    gap: 18px;
  }

  .counter-box {
    padding: 22px 14px;
  }

  .counter {
    font-size: 29px;
  }

}


@media (max-width: 768px) {
/* 
  .crm-footer {
    padding: 50px 20px 30px;
  } */

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

  .footer-cta h2 {
    font-size: 30px;
  }

  .footer-form {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-form input {
    width: 100%;
    margin-top: 20px;
  }

  .footer-form button {
    width: 100%;
    height: 46px;
    margin-top: 12px;
  }

  .footer-links {
   flex-direction: column;
        gap: 20px;
        text-align: justify;
        /* position: relative;
        left: 30px; */
  }
  .link-col h4{
    font-size: 20px;
    font-weight: 700;
  }

  .link-col,
  .footer-address {
    right: 0;
  }

  .footer-address h4 {
    margin-left: 0;
    font-size: 20px;
    font-weight: 700;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .socials a {
    margin-left: 12px;
    margin-right: 12px;
  }
  
}

@media (min-width: 769px) and (max-width: 902px) {

  .crm-footer {
    padding: 60px 40px 30px;
  }

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

  .footer-cta h2 {
    font-size: 34px;
  }
/* 
  .footer-links {
    gap: 60px;
  } */

  .link-col,
  .footer-address {
    right: 0;
  }

  .footer-address h4 {
    margin-left: 0;
  }

  .footer-bottom {
    gap: 20px;
  }
}

@media (min-width: 902px) and (max-width: 1200px) {

  .crm-footer {
    padding: 70px 40px 30px;
  }

  .footer-inner {
    gap: 60px;
  }

  .footer-cta h2 {
    font-size: 36px;
  }

  .footer-links {
    gap: 60px;
  }

  .link-col,
  .footer-address {
    right: 40px;
  }

  .footer-address h4 {
    margin-left: 0;
  }
}