:root {
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --secondary: #ec4899;
  --accent: #8b5cf6;
  --background: #0f172a;
  --text: #f8fafc;
  --text-secondary: #94a3b8;
  --surface: #1e293b;
  --surface-light: #334155;
}

/* ✅ Prevent Overflow Issues */
html, body {
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
  background-color: var(--background);
  color: var(--text);
  line-height: 1.6;
}

/* ✅ Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100vw;
  z-index: 1000;
  background: transparent;
  border: none;
  box-shadow: none;
}

.logo img {
  height: 40px;
  width: 100px; /* Adjust size as needed */
  height: auto;
}

.menu-icon {
  opacity: 0.7;
}

.menu-icon:hover,
.logo img:hover {
  opacity: 1;
}

/* ✅ Fix Mobile Layout Issues */
.background-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, rgba(3, 2, 7, 0.8), #936ADF);
  z-index: -1;
}

/* ✅ Navigation Menu */
.nav-main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, var(--surface), var(--surface-light));
  transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  z-index: 1000;
}

.menu {
  list-style-type: none;
  text-align: center;
}

.menu__item {
  margin: 2rem 0;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.menu__link {
  color: var(--text);
  font-size: 3rem;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  padding: 0.5rem 1rem;
}

.menu__link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  transition: width 0.3s ease;
}

.menu__link:hover::after {
  width: 100%;
}

/* ✅ Hamburger Menu */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 2rem;
  height: 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 2rem;
  height: 0.25rem;
  background: var(--text);
  border-radius: 10px;
  transition: all 0.3s linear;
  position: relative;
  transform-origin: 1px;
}

/* ✅ Open Menu Animation */
.nav-main.open {
  transform: translateX(0);
}

.nav-main.open .menu__item {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

/* ✅ Hamburger Animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
}

/* ✅ Footer inside Menu */
.menu-footer {
  margin-top: 1rem;
  text-align: center;
}

.menu-tagline {
  font-size: 1rem;
  font-style: italic;
  color: #facc15;
  margin-bottom: 1rem;
  opacity: 1;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
}

.menu-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.menu-social a {
  color: var(--text);
  font-size: 1.5rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.menu-social a:hover {
  color: var(--primary);
}

/* ✅ Responsive Fixes */
@media (max-width: 768px) {
  /* ✅ Ensure Content Stacks Properly */
  .nav-main {
      width: 100%;
      height: 100vh;
      transform: translateX(100%);
      position: fixed;
      top: 0;
      left: 0;
  }

  .nav-main.open {
      transform: translateX(0);
  }

  .menu {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
  }

  .menu__item {
      margin: 1rem 0;
      text-align: center;
  }

  .hamburger {
      position: absolute;
      top: 20px;
      right: 20px;
  }

  /* ✅ Make Sure Left Content is Above Right Content */
  .content-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 2rem;
  }

  .left-content {
      order: 1;
      width: 100%;
  }

  .right-content {
      order: 2;
      width: 100%;
  }
}

/*page starts here*/


main {
    position: relative;
    z-index: 1;
}

.section {
    padding: 4rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.container-about {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}
.container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}
.container.reverse {
    flex-direction: row-reverse;
}

.content {
    flex: 1;
}

.image-box {
    flex: 0 0 40%;
    background: var(--surface);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.image-box img {
    width: 100%;
    height: auto;
    display: block;
}

h1, h2 {
    color: var(--primary);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5em;
}

h2 {
    font-size: 2.5em;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-weight: 200;
}

.highlight {
    color: var(--secondary);
    font-weight: bold;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary);
    color: var(--text);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.cta-button:hover {
    background-color: var(--primary-dark);
}

.form-group {
    margin-bottom: 1rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text);
}

input, textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--surface-light);
    background-color: var(--surface-light);
    color: var(--text);
    border-radius: 4px;
}

button {
    background-color: var(--primary);
    color: var(--text);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: var(--primary-dark);
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.gradient {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
}

.top-right {
    top: -200px;
    right: -200px;
    background: radial-gradient(circle at center,
        var(--accent) 0%,
        var(--primary) 30%,
        transparent 70%);
    animation: moveTopRight 8s ease-in-out infinite;
}

.bottom-left {
    bottom: -200px;
    left: -200px;
    background: radial-gradient(circle at center,
        var(--primary-dark) 0%,
        var(--secondary) 30%,
        transparent 70%);
    animation: moveBottomLeft 8s ease-in-out infinite;
}

.gradient-line {
    position: absolute;
    width: 150px;
    height: 100%;
    filter: blur(90px);
    opacity: 0.3;
}

.left {
    left: 0;
    background: linear-gradient(to bottom,
        transparent 0%,
        var(--primary-dark) 25%,
        var(--secondary) 50%,
        var(--primary-dark) 75%,
        transparent 100%);
    animation: moveVertical 12s ease-in-out infinite;
}

.right {
    right: 0;
    background: linear-gradient(to bottom,
        transparent 0%,
        var(--accent) 25%,
        var(--primary) 50%,
        var(--accent) 75%,
        transparent 100%);
    animation: moveVertical 12s ease-in-out infinite reverse;
}

/* About section styles */
.section {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.container-about {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-content1 {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.text-content {
    flex: 1;
}

.text-content h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--text);
    position: relative;
    
}

.text-content h1::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.5rem;
    width: 60px;
    height: 4px;
    background: var(--accent);
}

.text-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.video-content {
    flex: 1;
}

.circle-video-container {
    position: relative;
    width: 100%;
    padding-top: 100%; /* Creates a perfect circle */
    border-radius: 50%;
    overflow: hidden;
    background: var(--surface);
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.2);
}

.circle-video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Animations */
@keyframes moveTopRight {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-50px, 50px) rotate(180deg);
    }
}

@keyframes moveBottomLeft {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(50px, -50px) rotate(-180deg);
    }
}

@keyframes moveVertical {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-30%);
    }
}

/* Responsive design */
@media (max-width: 1024px) {
    .about-content {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
  

    .text-content h1 {
        font-size: 2.5rem;
    }

  
  

    .gradient {
        width: 400px;
        height: 400px;
    }

    .gradient-line {
        width: 100px;
    }
}
@media (max-width: 768px) {
  .about-content1 {
      flex-direction: column;
      text-align: center;
  }

  .video-content {
      order: 2; /* Ensures the video appears after the text */
      display: flex;
      justify-content: center;
      width: 100%;
      margin-top: 1.5rem; /* Adds spacing */
  }

  .circle-video-container {
      max-width: 300px;
      margin: 0 auto;
  }
}

@media (max-width: 480px) {
    .section {
        padding: 2rem 0;
    }

    .text-content h1 {
        font-size: 2rem;
    }

    .text-content p {
        font-size: 1rem;
    }
}
/*about us*/
:root {
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --secondary: #ec4899;
  --accent: #8b5cf6;
  --background: #0f172a;
  --text: #f8fafc;
  --text-secondary: #94a3b8;
  --surface: #1e293b;
  --surface-light: #334155;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: var(--background);
  color: var(--text);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

section {
  margin: 4rem 0;
}

.section-title {
  font-size: 2.5rem;
  color: var(--text);
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}

.about-content, .mission-content {
  background: var(--surface);
  padding: 2rem;
  border-radius: 10px;
  margin-top: 2rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  background: var(--surface);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-10px);
}

.value-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.value-title {
  color: var(--text);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.value-description {
  color: var(--text-secondary);
}

.why-us {
  background: var(--surface);
  padding: 2rem;
  border-radius: 10px;
  margin-top: 2rem;
}

.reasons-list {
  list-style: none;
  margin-top: 2rem;
}

.reason-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--surface-light);
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.reason-item:hover {
  transform: translateX(10px);
}

.reason-number {
  background: var(--primary);
  color: var(--text);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .container {
      padding: 1rem;
  }

  .section-title {
      font-size: 2rem;
  }

  .values-grid {
      grid-template-columns: 1fr;
  }

  .reason-item {
      flex-direction: column;
  }

  .reason-number {
      margin-bottom: 1rem;
  }
}
/*footer*/
/* Footer Styles */
:root {
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --secondary: #936ADF;
  --accent: #8b5cf6;
  --background: #0f172a;
  --text: #f8fafc;
  --text-secondary: #94a3b8;
  --surface: #1e293b;
  --surface-light: #334155;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: var(--background);
  color: var(--text);
}

.footer {
  background-color: var(--surface);
  padding: 2rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 1rem;
}

.footer-section {
  flex: 1;
  min-width: 200px;
}

.footer-logo {
  flex: 0 0 auto;
  margin-right: 2rem;
}

.footer-logo img {
  max-width: 150px;
  height: auto;
}

.footer-section h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.quick-links ul {
  list-style-type: none;
}

.quick-links ul li {
  margin-bottom: 0.5rem;
}

.quick-links ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.quick-links ul li a:hover {
  color: var(--accent);
}

.newsletter form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.newsletter input[type="email"] {
  width: 200px; /* Adjust the width as needed */
  padding: 0.4rem;
  border: none;
  border-radius: 4px;
  background-color: var(--surface-light);
  color: var(--text);
}

.newsletter button {
  width: 200px; /* Adjust the width as needed */
  padding: 0.4rem 0.8rem;
  border: none;
  border-radius: 4px;
  background-color: var(--primary);
  color: var(--text);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter button:hover {
  background-color: var(--primary-dark);
}

.social-links a {
  color: var(--text-secondary);
  font-size: 1.5rem;
  margin-right: 1rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--accent);
}

@media screen and (max-width: 768px) {
  .footer-content {
      flex-direction: column;
      gap: 2rem;
  }

  .footer-logo {
      margin-right: 0;
      margin-bottom: 1rem;
  }
}




  

  /*other page*/
  
/*teams*/


.responsive-cell-block {
    min-height: 75px;
  }
  
  .text-blk {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    line-height: 25px;
  }
  
  .responsive-container-block {
    min-height: 75px;
    height: fit-content;
    width: 100%;
    display: flex;
    flex-wrap: wrap; /* Allow wrapping to create rows */
    margin: 0 auto; /* Center align */
    justify-content: space-evenly; /* Space cards evenly */
    gap: 20px; /* Add space between cards */
  }
  
  .card-container {
    width: calc(33.33% - 40px); /* Fit 3 cards per row, with spacing */
    margin: 10px; /* Space between cards */
    background: var(--surface-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover transition */
    box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 20px 7px;
  }
  
  .card-container:hover {
    transform: translateY(-10px); /* Slight lift on hover */
    box-shadow: rgba(0, 0, 0, 0.2) 0px 10px 30px; /* Stronger shadow on hover */
  }
  
  .card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 25px; /* Padding for content */
  }
  
  .team-image-wrapper {
    clip-path: circle(50% at 50% 50%); /* Circular image */
    width: 130px;
    height: 130px;
    overflow: hidden;
  }
  
  .team-member-image {
    max-width: 100%;
  }
  
  .name {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 800;
  }
  
  .position {
    margin-top: 0px;
    margin-bottom: 10px;
    font-size: 14px;
    color: gray;
  }
  
  .feature-text {
    color: rgb(122, 122, 122);
    line-height: 30px;
    margin-bottom: 20px;
  }
  
  .social-icons {
    width: 70px;
    display: flex;
    justify-content: space-between;
  }
  .text-blk-team-head-text h1{
    font-weight: bold;                /* Bold text */
    color: #2C3E50;                   /* Text color */
    text-align: center;               /* Align text to the center */
    margin-top: 20px;                 /* Top margin */
    margin-bottom: 20px;              /* Bottom margin */
    text-transform: uppercase;        /* Transform text to uppercase */
    letter-spacing: 2px; 
  }
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .card-container {
      width: calc(50% - 20px); /* 2 cards per row */
    }
  }
  
  @media (max-width: 500px) {
    .card-container {
      width: 100%; /* 1 card per row */
      margin: 0;
    }
  }

  /*connect with our team*/
  .connect-section {
    margin-top: 4rem;
    background-color: var(--surface);
    padding: 3rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
    width: 100%;
    text-align: center;
    margin-top: 50px; /* Push it down */
}
  .connect-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--accent) 0%, transparent 50%);
    opacity: 0.1;
    z-index: 0;
  }
  
  .connect-content {
    flex: 1;
    z-index: 1;
  }
  
  .connect-section h2 {
    color: var(--accent);
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .connect-section p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  .cta-button {
    background-color: var(--whatsapp);
    color: var(--text);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .cta-button:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
  }
  
  .cta-button i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
  }
  
  .connect-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
  }
  
  .connect-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
  }
  
  .connect-image img:hover {
    transform: scale(1.05);
  }
  
  @media (max-width: 768px) {
    .connect-section {
      flex-direction: column;
      text-align: center;
    }
  
    .connect-content,
    .connect-image {
      flex: none;
      width: 100%;
    }
  
    .connect-image {
      margin-top: 2rem;
    }
  }
  
  


  /*servcies*/
  
  main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
  }
  
  h1,
h2 {
  color: var(--primary);
  text-align: center;
  margin-bottom: 2rem;
}

.services-section h1 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: var(--surface);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.service-card h3 {
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}





/*contactus*/
.new_home_web .text-blk.subHeading {
  text-align: center;
  color: #939393;
  max-width: 630px;
}

.new_home_web .text-blk.heading {
  font-size: 36px;
  line-height: 55px;
  font-weight: 600;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}

.new_home_web .responsive-container-block.textContainer {
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
  margin-right: 0px;
  margin-bottom: 40px;
  margin-left: 0px;
  max-width: 1320px;
  z-index: 50;
}

.new_home_web .responsive-cell-block.wk-tab-12.wk-mobile-12.wk-desk-12.wk-ipadp-12 {
  width: 50%;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 25px;
  padding-left: 10px;
}

.new_home_web .send:hover {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat-x: initial;
  background-repeat-y: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
}

.new_home_web .send {
  font-size: 18px;
  color: white;
  font-weight: 600;
  background-color: #1e293b;
  ;
  width: 80%;
  text-align: center;
  padding-top: 15px;
  padding-right: 0px;
  padding-bottom: 15px;
  padding-left: 0px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}

.new_home_web .container-block.form-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-evenly;
  flex-wrap: wrap;
  z-index: 50;
}

.new_home_web .responsive-cell-block.wk-tab-12.wk-mobile-12.wk-desk-7.wk-ipadp-10.line {
  width: 100%;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  max-width: 1100px;
}

.new_home_web .responsive-cell-block.wk-tab-12.wk-mobile-12.wk-desk-5.wk-ipadp-10 {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 30%;
  max-width: 310px;
  padding-top: 0px;
  padding-right: 40px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.new_home_web .responsive-cell-block.wk-ipadp-6.wk-tab-12.wk-mobile-12.wk-desk-6 {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 30px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 10px;
  padding-bottom: 0px;
  padding-left: 10px;
  width: 100%;
}

.new_home_web .textinput {
  height: 100%;
  width: 100%;
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: #a2a2a2;
  border-right-color: #a2a2a2;
  border-bottom-color: #a2a2a2;
  border-left-color: #a2a2a2;
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  font-size: 16px;
  padding-top: 20px;
  padding-right: 30px;
  padding-bottom: 20px;
  padding-left: 20px;
  background-color: #f1f1f1;
}

.new_home_web .input {
  height: 50px;
  width: 100%;
  border-top-width: 2.5px;
  border-right-width: 2.5px;
  border-bottom-width: 2.5px;
  border-left-width: 2.5px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: #a2a2a2;
  border-right-color: #a2a2a2;
  border-bottom-color: #a2a2a2;
  border-left-color: #a2a2a2;
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  font-size: 16px;
  padding-top: 5px;
  padding-right: 15px;
  padding-bottom: 5px;
  padding-left: 15px;
  background-color: #f1f1f1;
}

.new_home_web .responsive-container-block.big-container {
  padding-top: 0px;
  padding-right: 50px;
  padding-bottom: 0px;
  padding-left: 50px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.new_home_web .responsive-container-block.container {
  max-width: 1320px;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 60px;
  margin-left: auto;
  z-index: 50;
}

.new_home_web .responsive-cell-block {
  min-height: 75px;
}

.new_home_web textarea:focus {
  outline-color: initial;
  outline-style: none;
  outline-width: initial;
}

.new_home_web input:focus {
  outline-color: initial;
  outline-style: none;
  outline-width: initial;
}

.new_home_web a {
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}

.new_home_web .responsive-container-block {
  min-height: 75px;
  height: fit-content;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 40px;
  margin-left: auto;
}

.new_home_web * {
  font-family: Nunito, sans-serif;
}

.new_home_web .text-blk {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  line-height: 25px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.new_home_web .left4 {
  width: 50%;
  padding-top: 0px;
  padding-right: 10px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.new_home_web .responsive-cell-block.wk-desk-6.wk-ipadp-6.wk-tab-12.wk-mobile-12.lastPhone {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
}

.new_home_web .orangeText {
  color: #ffffff;
}

.new_home_web .orangeLine {
  height: 10px;
  width: 160px;
  
}

.new_home_web .topHead {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 40px;
  margin-left: 0px;
  margin: 0 0 25px 0;
}

.new_home_web .imgBG {
  position: absolute;
  width: 80%;
  height: 100%;
  left: auto;
  right: 0px;
  top: auto;
  bottom: 0px;
}

@media (max-width: 1024px) {
  .new_home_web .responsive-cell-block.wk-tab-12.wk-mobile-12.wk-desk-5.wk-ipadp-10 {
    margin-top: 60px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .new_home_web .responsive-cell-block.wk-tab-12.wk-mobile-12.wk-desk-7.wk-ipadp-10.line {
    padding-top: 0px;
    padding-right: 20px;
    padding-bottom: 60px;
    padding-left: 0px;
  }

  .new_home_web .responsive-container-block.container {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .new_home_web .responsive-cell-block.wk-tab-12.wk-mobile-12.wk-desk-12.wk-ipadp-12 {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
  }

  .new_home_web .responsive-cell-block.wk-ipadp-6.wk-tab-12.wk-mobile-12.wk-desk-6 {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    margin: 0 0 10px 0;
  }

  .new_home_web .container-block.form-wrapper {
    align-items: center;
  }

  .new_home_web .responsive-cell-block.wk-tab-12.wk-mobile-12.wk-desk-5.wk-ipadp-10 {
    width: 100%;
    margin-top: 30px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .new_home_web .responsive-cell-block.wk-tab-12.wk-mobile-12.wk-desk-7.wk-ipadp-10.line {
    width: 100%;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 20px;
    padding-left: 0px;
  }

  .new_home_web .responsive-container-block.container {
    flex-direction: column;
  }

  .new_home_web .textinput {
    width: 100%;
  }

  .new_home_web .input {
    width: 100%;
  }

  .new_home_web .left4 {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    width: 100%;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 25px;
    margin-left: 0px;
  }

  .new_home_web .responsive-container-block {
    flex-direction: column;
    align-items: center;
  }

  .new_home_web .textinput {
    height: 200px;
  }

  .new_home_web .responsive-cell-block.wk-tab-12.wk-mobile-12.wk-desk-12.wk-ipadp-12 {
    width: 100%;
  }

  .new_home_web .imgBG {
    width: 100%;
    height: 90%;
    top: auto;
    left: auto;
  }

  .new_home_web .text-blk.heading {
    font-size: 30px;
  }
}

@media (max-width: 500px) {
  .new_home_web .responsive-cell-block.wk-tab-12.wk-mobile-12.wk-desk-5.wk-ipadp-10 {
    flex-wrap: wrap;
  }

  .new_home_web .send {
    padding-top: 15px;
    padding-right: 0px;
    padding-bottom: 15px;
    padding-left: 0px;
    text-align: center;
    width: 70%;
  }

  .new_home_web .responsive-container-block.big-container {
    padding-top: 0px;
    padding-right: 20px;
    padding-bottom: 0px;
    padding-left: 20px;
  }

  .new_home_web .text-blk.heading {
    font-size: 30px;
    text-align: center;
    line-height: 35px;
  }

  .new_home_web .send {
    width: 100%;
    max-width: 250px;
  }

  .new_home_web .imgBG {
    height: 60%;
  }

  .new_home_web .text-blk.subHeading {
    font-size: 16px;
    line-height: 24px;
  }

  .new_home_web .responsive-container-block.textContainer {
    margin: 50px 0 30px 0;
  }

  .new_home_web .input {
    height: 45px;
  }

  .new_home_web .responsive-cell-block.wk-ipadp-6.wk-tab-12.wk-mobile-12.wk-desk-6 {
    margin: 0 0 10px 0;
  }
}