* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-blue: #0987c9;
  --primary-blue-dark: #0767a3;
  --primary-blue-light: #e6f4fc;
  --secondary-blue: #f0f8ff;
  --text-primary: #1a1a1a;
  --text-secondary: #555555;
  --text-muted: #888888;
  --background-light: #fafbfc;
  --white: #ffffff;
  --border-light: #e1e8ed;
  --shadow-light: 0 2px 8px rgba(9, 135, 201, 0.1);
  --shadow-medium: 0 4px 16px rgba(9, 135, 201, 0.15);
  --shadow-heavy: 0 8px 32px rgba(9, 135, 201, 0.2);
  --border-radius: 12px;
  --border-radius-small: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.vibe-accounting-wrapper {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #2d3748;
  background: #ffffff;
}

.vibe-main-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Hero Section */
.vibe-hero-section {
  background: linear-gradient(135deg, #0987c9 0%, #0987C9 100%);
  padding: 100px 0 120px;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: url("https://images.pexels.com/photos/3784337/pexels-photo-3784337.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1");
  background-repeat: no-repeat;
  background-size: cover;
}

.vibe-hero-content {
  position: relative;
  /* z-index: 2; */
  max-width: 800px;
  margin: 0 auto;
}

.vibe-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.vibe-hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 48px;
  opacity: 0.95;
  font-weight: 400;
  line-height: 1.6;
}

.vibe-hero-modules {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0 auto;
  padding: 40px 0;
}

.vibe-module-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  width: 190px;
}

.vibe-module-card:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.vibe-module-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 8px;
}

.vibe-module-title {
  font-size: 0.875rem;
  font-weight: 600;
  opacity: 0.95;
}

/* Comparison Section */
.vibe-comparison-section {
  background: #f8fafc;
  padding: 100px 0;
  position: relative;
}

.vibe-section-title {
  font-size: 56px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;

  letter-spacing: -0.02em;
  color: black;
}

.vibe-section-title span{
  color: #0987c9;
}

.vibe-comparison-content {
  text-align: center;
  font-size: 1.125rem;
  color: #4a5568;
  margin-bottom: 64px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.vibe-highlights-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-top: 64px;
}

.vibe-highlight-card {
  flex: 0 1 320px;
  /* responsive, min width 320px */
  background: white;
  padding: 32px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.vibe-highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: #0987C9;
}

.vibe-highlight-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, #0987C9, #0987C9);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.vibe-highlight-text {
  font-weight: 600;
  color: #2d3748;
  font-size: 1.125rem;
  line-height: 1.5;
}

/* Features Section */
.vibe-features-section {
  /* background: white; */
  padding: 30px 0;
}

.vibe-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 40px;
  margin-top: 80px;
}

.vibe-feature-card {
  background: #f8fafc;
  padding: 48px;
  border-radius: 24px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

.vibe-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0987C9, #0987C9);
}

.vibe-feature-card:hover {
  transform: translateY(-8px);
  /* box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1); */
  background: white;
}

.vibe-feature-header {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.vibe-feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #0987C9, #0987C9);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);
}

.vibe-feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a202c;
  letter-spacing: -0.01em;
}

.vibe-feature-description {
  color: #4a5568;
  line-height: 1.7;
  font-size: 1.125rem;
}

/* Integration Section */
.vibe-integration-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 20px 0;
  margin-top: 80px;
}

.vibe-integration-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  margin: 64px 0;
}

.vibe-scattered-tools {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 300px;
}

.vibe-tool-circle {
  width: 80px;
  height: 80px;
  background: #4299e1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
  text-align: center;
  animation: vibeFloat 3s ease-in-out infinite;
}

.vibe-tool-circle:nth-child(2) {
  animation-delay: 0.5s;
}

.vibe-tool-circle:nth-child(3) {
  animation-delay: 1s;
}

.vibe-tool-circle:nth-child(4) {
  animation-delay: 1.5s;
}

.vibe-tool-circle:nth-child(5) {
  animation-delay: 2s;
}

.vibe-tool-circle:nth-child(6) {
  animation-delay: 2.5s;
}

.vibe-arrow {
  font-size: 3rem;
  color: #0987C9;
  animation: vibePulse 2s ease-in-out infinite;
}

.vibe-unified-circle {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #0987C9, #0987C9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
  position: relative;
}

.vibe-unified-circle::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 2px solid #0987C9;
  border-radius: 50%;
  opacity: 0.3;
  animation: vibeRipple 2s ease-in-out infinite;
}

.vibe-integration-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 64px;
}

.vibe-integration-item {
  background: white;
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.vibe-integration-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.vibe-integration-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

/* Decision Makers Section */
.vibe-decision-section {
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
  color: white;
  padding: 100px 0;
}

.vibe-decision-content {
  text-align: center;
  margin-bottom: 64px;
}

.vibe-benefits-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.vibe-benefit-item {
  flex: 0 1 360px;
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


.vibe-benefit-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.vibe-benefit-check {
  font-size: 2.5rem;
  color: #48bb78;
  margin-bottom: 16px;
}

.vibe-benefit-text {
  font-size: 1.125rem;
  font-weight: 600;
}

/* Demo Section */
.vibe-demo-section {
  background: white;
  padding: 100px 0;
}

.vibe-demo-content {
  text-align: center;
  margin-bottom: 64px;
}

.vibe-demo-visual {
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  border-radius: 24px;
  padding: 80px 40px;
  margin-bottom: 64px;
  border: 1px solid #e2e8f0;
}

.vibe-demo-placeholder {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, #0987C9, #0987C9);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.vibe-demo-placeholder::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  animation: vibeShimmer 2s infinite;
}

/* .vibe-form-container {
  background: #f8fafc;
  padding: 48px;
  border-radius: 24px;
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.vibe-form-title {
  color: #1a202c;
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 32px;
  text-align: center;
}

.vibe-form-group {
  margin-bottom: 24px;
}

.vibe-form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #2d3748;
}

.vibe-form-input {
  width: 100%;
  padding: 16px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: white;
}

.vibe-form-input:focus {
  outline: none;
  border-color: #0987C9;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.vibe-form-textarea {
  height: 120px;
  resize: vertical;
}

.vibe-form-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #0987C9, #0987C9);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.vibe-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
} */

/* CTA Section */
.vibe-cta-section {
  background: linear-gradient(135deg, #0987C9 0%, #0987C9 100%);
  color: white;
  padding: 100px 0;
  text-align: center;
}

.vibe-cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.vibe-cta-subtitle {
  font-size: 1.25rem;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Animations */
@keyframes vibeFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes vibePulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

@keyframes vibeRipple {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }

  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

@keyframes vibeShimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .vibe-hero-title {
    font-size: 2.5rem;
  }

  .vibe-hero-modules {
    grid-template-columns: repeat(2, 1fr);
  }

  .vibe-module-card {
    padding: 10px;
    width: 100%
  }

  .vibe-section-title {
    font-size: 2rem;
  }

  .vibe-features-grid {
    grid-template-columns: 1fr;
  }

  .vibe-integration-visual {
    /* flex-direction: column; */
    gap: 20px;
  }

  .vibe-unified-circle {
    width: 90px;
    height: 90px;
    font-size: 10px !important;
  }

  .vibe-tool-circle {
    width: 38px;
    height: 38px;
    font-size: 7px;
  }

  .vibe-form-container {
    padding: 32px 24px;
  }

  .vibe-arrow {
    font-size: 28px;
  }

  .vibe-cta-title {
    font-size: 2rem;
  }

  .vibe-comparison-section {
    padding-top: 50px;
    padding-bottom: 0;
  }

  .vibe-integration-section {
    margin-top: 0;
  }

}

/* CTA Section CSS Start*/
.cta-section {
  background: linear-gradient(135deg,
      var(--primary-blue),
      var(--primary-blue-dark));
  color: var(--white);
  text-align: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100' fill='rgba(255,255,255,0.1)'><path d='M0,0v46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1047.58,0,1000,0Z'/></svg>") repeat-x;
  background-size: 100% 100px;
  animation: wave 15s linear infinite;
}

@keyframes wave {
  0% {
    background-position-x: 0;
  }

  100% {
    background-position-x: 1000px;
  }
}

.cta-content {
  position: relative;
  z-index: 10;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-section .cta-button {
  background: var(--white);
  color: var(--primary-blue);
  font-size: 1.125rem;
  padding: 1rem 2rem;
}

.cta-section .cta-button:hover {
  background: var(--primary-blue-light);
  transform: translateY(-3px);
}

.cta-button {
  background: var(--primary-blue);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-small);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

/* Footer */
.footer {
  background: var(--text-primary);
  color: var(--white);
  padding: 2rem 0;
  text-align: left;
}

.footer p {
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-container {
    padding: 0 1rem;
  }

  .nav-menu {
    display: none;
  }

  .hero {
    padding: 4rem 0;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-content {
    padding: 0 1rem;
  }

  .container {
    padding: 0 1rem;
  }

  .section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .integration-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .form-container {
    margin: 0 1rem;
    padding: 2rem;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

  .vibe-feature-card {
    padding: 20px;
  }

}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles */
.cta-button:focus,
.form-input:focus,
.form-button:focus {
  outline: 2px solid var(--primary-blue);
  outline-offset: 2px;
}

/* CTA Section CSS End*/


/* Contact Section CSS Start */

/* Contact Section Start */

.hrms-form-wrapper {
  margin-top: 0px;
}

.card-body-form {
  padding: 40px 30px;
}

.base-img-holder {
  width: 100%;
}

.base-img-holder img {
  width: 100%;
  height: 420px;
}

.cust-form-pos {
  /* background-color: pink; */
  margin-top: -286px !important;
}

.cust-fm-label {
  color: #5a7184;
  font-weight: 600;
}

.col-md-6 input::placeholder,
.mb-4 textarea::placeholder {
  color: #959ead;
  font-size: 16px;
  font-weight: 500;
}

.cust-font-p {
  color: #5a7184;

  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  /* 175% */
}

button[type="submit"] {
  background-color: var(--prime-blue2);
}

.contact-info-section {
  /* background-color: #f8f9fa; */
  padding: 30px 0;
}

.contact-info-card {
  /* background: white; */
  border-radius: 12px;
  padding: 10px 30px;
  text-align: center;
  /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
  border: none;
  height: 100%;
  transition: transform 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
}

.contact-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.contact-info-card img {
  width: 100%;
  height: 100%;
}

.email-icon-bg {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.call-icon-bg {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
}

.support-icon-bg {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: white;
}

.contact-title {
  color: #0987c9;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.contact-description {
  color: #6c757d;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.contact-link {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
}

.contact-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

.support-btn {
  border: none;
  color: #0987c9;
  font-weight: 700;
  padding: 10px 90px;
  border: 2px solid #0987c9;
  display: flex;
  align-items: center;
  gap: 20px;
}

.support-btn img {
  width: 20px;
  height: 20px;
}

.support-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(79, 172, 254, 0.3);
  color: var(--prime-blue2);
}

/* Contact Section End */

.testimonials-text-wrapper {
  width: fit-content;
  margin: 0 auto;
  border-radius: 40px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 40px;
  margin-top: 30px;
  padding: 8px 16px;
  border-radius: 20px;
  /* background-color: #f9fafb; */
}

.testimonials-text-wrapper p {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.cust-mail-wrapper {
  display: flex;
  flex-direction: column;
}

/* Phone Field Complete CSS */

/* Container for phone input */
.phone-container {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: -2px;
}

/* Country code dropdown */
.country-code {
  padding: 0px 10px;
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
  font-size: 14px;
  width: 200px;
  /* reduced width */
  background-color: #fff;
  appearance: none;
  margin-top: 4px;
  color: #959ead;
  font-size: 16px;
  font-weight: 500;
}

/* Phone number input */
.phone-number {
  flex: 1;
  /* min-width: 160px; */
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  font-size: 14px;
  margin-top: 4px;
  border-radius: 0.375rem;
}

.erp-phone-container {
  width: 47%;

}

/* Label styling */
.form-group label {
  font-size: 16px;
  display: block;
  margin-bottom: 6px;
  color: #5a7184;
  font-weight: 600;
}

/* Focus styles */
.country-code:focus,
.phone-number:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 0 1px #007bff30;
}

.cust-erp-flexer {
  display: flex;
}

.phone-container select {
  width: 50%;
  height: 38px !important;
}

/* Responsive behavior */
@media (max-width: 576px) {
  .phone-container {
    flex-direction: column;
  }

  .phone-container select {
    width: 100%;
  }

  .erp-phone-container {
    width: 100%;
  }

  .country-code {
    width: 100%;
    padding: 8px 12px;
  }

  .phone-number {
    width: 100%;
  }

  .contact-email-wrapper {
    margin-top: 20px;
  }

  .company-name-wrapper {
    margin-top: 0px;
  }

  .phone-wrapper {
    margin-top: 20px;
  }

  .message-wrapper {
    margin-top: 0px;
  }

  .base-img-holder img {
    display: none;
  }
}

@media (max-width: 768px) {
  .modules-grid {
    padding: 15px;
  }

  .module-card {
    height: fit-content;
    padding: 16px;
    gap: 12px;
  }

  .module-title {
    font-size: 16px;
    line-height: 1.2;
  }

  .icon-img {
    width: 36px;
    height: 36px;
  }

  .module-icon {
    width: 36px;
    height: 36px;
  }

  .featured-section {
    padding: 15px;
  }

  .badge-number {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .contact-info-card {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .image-container {
    padding-left: 0;
    padding-right: 0;
    flex-wrap: nowrap;
  }

  .hrms-form-wrapper {
    margin-top: 60px;
  }

  .cust-form-pos {
    margin-top: 0 !important;
    padding-left: 0;
    padding-right: 0;
  }

  /* .brand-text{
    margin-top: 80px;
  } */

  .industry-card-wrapper {
    height: 250px !important;

    /* height: calc(428px); */
  }

  .industry-card-wrapper:hover .industry-card-title {
    font-size: 1.7rem;
    font-weight: 600;
  }

  .spiral-heading {
    margin-top: -40px;
  }

  .industries-heading {
    margin: 30px 20px 0 20px;
  }

  .industry-showcase-section {
    padding: 30px 0;
  }

  .contact-title {
    font-size: 18px;
    font-weight: 700;
  }

  .mid-arrow {
    text-align: center;
  }

  .cust-email-send-wrapper {
    width: 100%;
  }

  .cust-email-send-wrapper img {
    height: 100%;
    width: 100%;
  }

  .cta-section .cta-button {
    background: var(--white);
    color: var(--primary-blue);
    font-size: 15px;
    padding: 1rem 2rem;
  }

  /* .indro-vid-wrapper {
        border-radius: 30px;
        height: 250px;
        margin-top: -200px;
    } */

    .mtn-41{
      margin-top: -70px !important;
    }

    

}

/* New CSS of CRM Contact Section Only */

.modal-content {
  padding: 12px;
}

.vibe-hero-flex .img-container {
  width: 85%;
  margin: 0 auto;
}

.vibe-section-title.cust-h2 {
  color: white;
}

.responsive-img{
  margin: 0 auto;
}

/* Contact Section CSS End */

/* Video Section CSS Start*/
.video-section {
  text-align: center;
  font-size: 56px;
  font-weight: 700;
}

.video-container {
  display: flex;
  justify-content: center;
  align-items: center;
  /* padding: 2rem; */
  background-color: #d9d9d9;
  border-radius: 40px;
  /* margin: 10px auto; */
  width: 90%;
  height: 40vw;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border-radius: 40px;
}

/* Video Section CSS End */

.mt-72{
  margin-top: 62px;
}

