@import "tailwindcss";


:root {
  --dark-blue-50: #e9eff7;
  --dark-blue-100: #bacee6;
  --dark-blue-200: #99b6d9;
  --dark-blue-300: #6a94c8;
  --dark-blue-400: #4d80bd;
  --dark-blue-500: #77ad26;
  --dark-blue-600: #1e579d;
  --dark-blue-700: #17447b;
  --dark-blue-800: #12355f;
  --dark-blue-900: #0e2849;
  --light-blue-50: #e9f4fa;
  --light-blue-100: #baddf0;
  --light-blue-200: #98cce9;
  --light-blue-300: #6ab5e0;
  --light-blue-400: #4da7d9;
  --light-blue-500: #77ad26;
  --light-blue-600: #1d84bd;
  --light-blue-700: #176794;
  --light-blue-800: #125072;
  --light-blue-900: #0d3d57;
  --grey-50: #f9fafb;
  --grey-100: #f2f4f7;
  --grey-300: #d0d5dd;
  --grey-700: #344154;
  --grey-900: #101828;
  --grey: #d9d9d9;
  --primary-200: #e9d7fe;
  --pink-50: #fdf2fa;
  --ros-50: #fff1f3;
  --pink-700: #c11574;
  --indigo-700: #3538cd;
  --primary-50: #f9f5ff;
  --primary-700: #6941c6;
  --ros-700: #c11048;
  --success-50: #ecfdf3;
  --success-700: #037a48;
  --orange-50: #fff6ed;
  --orange-700: #c4320a;
  --white: #fff;
  --black: #000;
  --text-primary-color: #667085;
  --secondary-color: #344054;
  --orange-color: #fd853a;
  --light-green: #32d583;
  --light-grey: #000e2a;
  --green-color: #027a48;
  --pale-white-color: #eaecd0;
  --light-blue-grey-100: #eaecf0;
  --slate-blue: #475467;
  --azure-blue: #3174ad;
  --medium-blue: #0070f3;
  --blue-light-700: #026aa2;
  --blue-light-50: #f0f9ff;
  --indigo-50: #eef4ff;
  --text-md-regular-size: 16px;
  --text-sm-regular-size: 14px;
  --text-xl-regular-size: 20px;
  --display-sm-semibold-size: 30px;
  --display-xs-semibold-size: 24px;
  --text-lg-regular-size: 18px;
  --font-size-lgi: 19px;
  --display-md-semibold-size: 36px;
  --font-size-10xl: 29px;
  --font-size-3xl: 22px;
  --display-lg-semibold-size: 48px;
  --font-size-19xl: 38px;
  --header-height: 80px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

body {
  color: #333;
  line-height: 1.6;
  background-color: #f2f8ff;
  overflow-x: hidden;
  margin-top: 80px; /* Adjust this value based on your header height */
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
}

.btn-primary {
  background-color: #77ad26;
  color: #fff;
}

.btn-primary:hover {
  background-color: #0056b3;
}

/* Header */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    background-color: var(--white);
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    height: 80px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    height: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    padding: 8px 0;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-logo-img {
    height: 110px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    margin: 4px 0;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

.nav-list {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: #77ad26;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #77ad26;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #77ad26;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.nav-button:hover {
    background-color: #669324;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #333;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #333;
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 1rem 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-toggle {
        display: block;
    }

    .nav-cta {
        display: none;
    }

    .nav-logo-img {
        height: 85px;
    }
    
    .navbar {
        height: 70px;
    }

    .mobile-menu-btn span {
        background-color: #77ad26;
    }
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 30px 0;
  background-color: #f2f8ff;
}

.cssbuttons-io-button {
  background: #77ad26;
  color: white;
  font-family: inherit;
  padding: 0.35em;
  padding-left: 1.2em;
  font-size: 15px;
  border-radius: 50px;
  border: none;
  display: flex;
  align-items: center;
  box-shadow: inset 0 0 1.6em -0.6em #77ad26;
  overflow: hidden;
  position: relative;
  height: 2.8em;
  padding-right: 3.3em;
  cursor: pointer;
}

.cssbuttons-io-button .icon {
  background: white;
  margin-left: 1em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.2em;
  width: 2.2em;
  border-radius: 50px;
  box-shadow: 0.1em 0.1em 0.6em 0.2em #77ad26;
  right: 0.3em;
  transition: all 0.3s;
}

.cssbuttons-io-button:hover .icon {
  width: calc(100% - 0.6em);
}

.cssbuttons-io-button .icon svg {
  width: 1.1em;
  transition: transform 0.3s;
  color: #77ad26;
}

.cssbuttons-io-button:hover .icon svg {
  transform: translateX(0.1em);
}

.cssbuttons-io-button:active .icon {
  transform: scale(0.95);
}

.hero-main-logo {
  width: 100vw;
  height: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-main-logo img {
  width: 120px;
}
.hero h1 {
  font-size: 48px;
}

.hero h1 span {
  color: #77ad26;
}

.hero p {
  font-size: 18px;
  color: #666;
}

.hero-logos {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px; /* Space between logos and rating bar */
}

.logos {
  display: flex;
  position: relative; /* Needed for overlapping */
}

.logos img {
  width: 50px; /* Adjust size as needed */
  height: 50px;
  border-radius: 50%; /* Make the logos circular */
  border: 2px solid #fff; /* White border to enhance overlap effect */
  object-fit: cover; /* Ensure the image fits well in the circle */
}

/* Overlap effect */
.logos img:not(:first-child) {
  margin-left: -15px; /* Negative margin to overlap on the right */
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: 5px; /* Space between stars and text */
}

.rating-bar svg {
  width: 16px;
  height: 16px;
}

.rating-bar p {
  font-size: 14px;
  color: #666;
}
.hero-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

/* Services Section */
.services {
  padding: 80px 0;
  text-align: center;
}

.services h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

.container h2 span {
  color: #77ad26;
}
.service-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.service-cards .card:hover {
  transform: scale(1.1, 1.1);
}

.service-cards:hover > .card:not(:hover) {
  filter: blur(10px);
  transform: scale(0.9, 0.9);
}
.card {
  background-color: #fff;
  padding: 20px;
  border-radius: 30px;
  box-shadow: 0 2px 10px rgba(94, 94, 94, 0.1);
  width: 100%;
  height: min-content;
  text-align: left;
  cursor: pointer;
  transition: 400ms;
}
.card-header h3.tip {
  font-size: 1em;
  font-weight: 700;
}

.card p.second-text {
  font-size: 0.7em;
}

.card-img {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
.card-img img {
  width: 40%;
  height: 50%;
}
.card-header {
  width: 100%;
  display: flex;
}
.card-header h3 {
  width: 98%;
}
.circle {
  width: 25px;
  height: 25px;
  border-radius: 50px;
  background-color: #77ad26;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card h3 {
  font-size: 24px;
}

.card p {
  color: #666;
}

/* Msg Section */
.msg-section {
  width: 100%;
  height: 100px;
}

.msg {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bubble {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  box-shadow: inset 0 0 25px rgba (255, 255, 255, 0.25);
  animation: animate_4010 8s ease-in-out infinite;
}

.bubble:nth-child(2) {
  position: relative;
  zoom: 0.45;
  left: -10px;
  top: -100px;
  animation-delay: -4s;
}

.bubble:nth-child(3) {
  position: relative;
  zoom: 0.45;
  right: -80px;
  top: -300px;
  animation-delay: -6s;
}

.bubble:nth-child(4) {
  position: relative;
  zoom: 0.35;
  left: -120px;
  bottom: -200px;
  animation-delay: -3s;
}

.bubble:nth-child(5) {
  position: relative;
  zoom: 0.5;
  left: 0px;
  top: 200px;
  animation-delay: -5s;
}

@keyframes animate_4010 {
  0%,
  100% {
    transform: translateY(-20px);
  }

  50% {
    transform: translateY(20px);
  }
}

.bubble::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 45px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  z-index: 10;
  filter: blur(2px);
}

.bubble::after {
  content: "";
  position: absolute;
  top: 80px;
  left: 80px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  z-index: 10;
  filter: blur(2px);
}

.bubble span {
  position: absolute;
  border-radius: 50%;
}

.bubble span:nth-child(1) {
  inset: 10px;
  border-left: 15px solid #0fb4ff;
  filter: blur(8px);
}

.bubble span:nth-child(2) {
  inset: 10px;
  border-right: 15px solid #ff4484;
  filter: blur(8px);
}

.bubble span:nth-child(3) {
  inset: 10px;
  border-top: 15px solid #ffeb3b;
  filter: blur(8px);
}

.bubble span:nth-child(4) {
  inset: 30px;
  border-left: 15px solid #ff4484;
  filter: blur(12px);
}

.bubble span:nth-child(5) {
  inset: 10px;
  border-bottom: 10px solid #fff;
  filter: blur(8px);
  transform: rotate(330deg);
}

/* Workflow Section */
.workflow {
  padding: 80px 0;
  background-color: #f2f8ff;
  text-align: center;
}

.card-main-poc {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
  padding: 0 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.card-poc {
  width: calc(25% - 30px);
  min-width: 250px;
  height: 350px;
  background: #ffffff;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 25px;
  color: #333;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  cursor: pointer;
  border: 1px solid rgba(0,0,0,0.06);
  margin: 0;
  flex: 0 0 calc(25% - 30px);
}

.card-poc h1 {
  margin-top: 0;
  margin-bottom: 0;
  color: #313131;
  font-weight: 700;
  font-size: 22px;
  text-align: center;
  position: absolute;
  bottom: 30px;
  width: 100%;
  z-index: 3; /* Ensure it stays above the overlay */
  transition: all 0.4s ease;
}

.card-poc:hover h1 {
  color: #fff; /* Keep the white color on hover */
  transform: scale(1.05); /* Just slight growth instead of movement */
  text-shadow: 0 2px 5px rgba(0,0,0,0.2); /* Keep the shadow for readability */
}

.img-poc {
  height: 120px;
  width: 120px;
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.5s ease;
  z-index: 1;
  filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
}

.textBox-poc {
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  transition: all 0.5s ease;
  z-index: 3;
  padding: 20px;
  transform: translateY(30px);
  color: #fff;
  width: 100%;
  position: absolute;
  top: 40%;
  bottom: auto;
  height: auto;
  max-height: calc(100% - 100px); /* Leave space for the title */
}

.card-poc:hover > .textBox-poc {
  opacity: 1;
  transform: translateY(0);
}

.card-poc:hover > .img-poc {
  transform: translateY(-30px) translateX(-50%) scale(1.1);
  filter: blur(8px) brightness(0.7) opacity(0.6);
  opacity: 0.4;
  top: 20px; /* Move it more toward the top */
}

.textBox-poc > span {
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
  font-weight: 400;
  max-height: 200px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3); /* Add text shadow for better readability */
}

.textBox-poc > .text-poc {
  font-weight: 700;
}

.textBox-poc > .price-poc {
  display: none; /* Hide the price completely */
}

.card-poc::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(0,0,0,0.05));
  z-index: 0;
  transition: opacity 0.4s ease;
}

.card-poc:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(119, 173, 38, 0.3); /* Updated shadow color to match new background */
  background: linear-gradient(135deg, #77ad26, #8cc63f); /* Green gradient */
}

.card-poc:hover > .textBox-poc {
  opacity: 1;
  transform: translateY(0);
}

.card-poc:hover > .img-poc {
  transform: translateY(-30px) translateX(-50%) scale(1.1);
  filter: blur(8px) brightness(0.7) opacity(0.6);
  opacity: 0.4;
  top: 20px; /* Move it more toward the top */
}

.card-poc::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #8cc63f, #77ad26); /* Updated to green gradient */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.card-poc:hover::after {
  transform: scaleX(1);
}

.card-main-poc {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
  padding: 0 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1200px) {
  .card-poc {
    flex: 0 0 calc(33.333% - 30px);
    width: calc(33.333% - 30px);
  }
}

@media (max-width: 992px) {
  .card-poc {
    flex: 0 0 calc(50% - 30px);
    width: calc(50% - 30px);
  }
}

@media (max-width: 768px) {
  .card-poc {
    flex: 0 0 calc(100% - 30px);
    width: calc(100% - 30px);
    max-width: 320px;
    height: 330px;
  }
}

.workflow h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.workflow p {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
}

.workflow-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
}


/* sec-number */
.sec-number {
  width: 100vw;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sec-number-main{
  width: 90%;
  height: 70%;
  border: 2px solid #cecece;
  border-radius: 30px;
  display: grid;
  justify-content: center;
  align-items: center;
}
.career-advisors-section {
  text-align: center; /* Center the text and button */
  padding: 20px;
}

.advisors-title {
  font-size: 36px; /* Large heading size */
  font-weight: 700; /* Bold weight */
  color: #333; /* Dark color for the main title */
  margin: 0 0 10px 0; /* Margin below the title */
  line-height: 1.2; /* Adjust line height for better spacing */
}

.advisors-subtitle {
  font-size: 24px; /* Slightly smaller subtitle size */
  font-weight: 400; /* Regular weight */
  color: #333; /* Dark color to match the title */
  margin: 0 0 20px 0; /* Margin below the subtitle */
}

.advisors-button {
  background-color: #77ad26; /* Blue color from the image */
  color: #fff; /* White text */
  border: none; /* Remove default border */
  padding: 12px 24px; /* Padding for button size */
  font-size: 16px; /* Button text size */
  font-weight: 500; /* Medium weight */
  border-radius: 50px; /* Slight rounding of corners */
  cursor: pointer; /* Hand cursor on hover */
  display: inline-flex; /* Flex for aligning icon and text */
  align-items: center; /* Center icon vertically */
  gap: 8px; /* Space between text and icon */
  transition: background-color 0.3s; /* Smooth hover effect */
}

.advisors-button:hover {
  background-color: #77ad26; /* Darker blue on hover */
}

.phone-icon {
  font-size: 18px; /* Size of the phone icon */
}


.social-proof-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 20px;
  background-color: transparent;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.social-proof-container.in-view {
  opacity: 1;
  transform: translateY(0);
}

.social-proof-container span {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* Style the large number/percentage */
.stat-number.stat-number-text {
  font-size: 48px;
  font-weight: 600;
  color: #a6db58;
  margin: 0;
}

/* Add animation class for counting (optional styling if needed) */
.stat-number.stat-number-text.counting {
  animation: none;
}

/* Style the description text */
.stat-description {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin: 5px 0 0 0;
  text-align: center;
}

/* Vertical lines between spans */
.social-proof-container span:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #ccc;
}

/* sponsor  */
.sponsor {
    justify-content: center;
    align-items: center;
}
.slider-container {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    background: #ffffff;
    position: relative;
}
.sponsor h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 40px;
    text-align: center;
    opacity: 0.9;
  }

.slider {
    display: flex;
    position: relative;
    white-space: nowrap;
}

.logo-wrapper {
    display: inline-flex;
    margin: 0 20px; /* Gap between logos */
    width: 150px; /* Fixed width for all logos */
    height: 100px; /* Fixed height for all logos */
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Blur effect at edges */
.slider-container::before,
.slider-container::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100px;
    z-index: 2;
    top: 0;
}

.slider-container::before {
    left: 0;
    background: linear-gradient(to right, #f5f5f5, transparent);
}

.slider-container::after {
    right: 0;
    background: linear-gradient(to left, #f5f5f5, transparent);
}

/* Stack containers vertically */
.slider-container.left {
    margin-bottom: 20px; /* Space between sliders */
}

/* Features Section */
.features {
  padding: 10px 0;
  background-color: #f2f8ff;
  text-align: center;
  padding: 80px;
}

.features h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 40px;
  opacity: 0.9;
}
.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Testimonials Section */

.reviews {
  padding: 50px 20px;
  text-align: center;
}

.reviews h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 40px;
  opacity: 0.9;
}

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

.review-card {
  background-color: #fff;
  color: #333;
  border-radius: 15px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.review-header h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0;
}

.handle {
  font-size: 0.9rem;
  color: #666;
}

.review-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 10px 0;
}

.stars {
  font-size: 1.2rem;
  color: #ffd700; /* Gold color for stars */
}

.stars span {
  margin-right: 2px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .reviews h2 {
    font-size: 2rem;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }
}

/* Call to Action Section */

.cta-v2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: 50%;
  padding: 96px 112px;
  position: relative;
  background: rgba(202, 245, 146, 0.851);
  width: 85%;
  height: 65vh;
  border-radius: 30px;
}

.cta-v2 .page_backgroundImage___AIxn {
  position: absolute;
  object-fit: cover;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 30px;
}

.cta-parent {
  padding: 80px 0;
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta {
  width: 85%;
  height: 65vh;
  background-color: #73a2ff;
  border-radius: 30px;
  color: #d1e4f9;
}
.cta-main-logo {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-main-logo img {
  width: 200px;
  margin-bottom: 20px;
}
.cta-container {
  padding: 35px;
  justify-content: center;
  align-items: center;
}
.cta-container h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.cta-container button {
  background-color: #fff;
  width: 70%;
  height: 50px;
  border-radius: 25px;
  color: #218d00;
  align-items: center;
  justify-content: center;
}

.cta-container button:hover {
  background-color: #77ad11;
  color: white;
}

/* Footer */
.footer {
  background-color: #fff;
  padding: 20px 20px;
  color: #333;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.logo-footer {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.logo-icon-footer {
  margin-right: 5px;
  font-size: 1.2rem;
}

.footer-column p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.get-started-btn {
  background-color: #e6f0fa;
  color: #77ad26;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(119, 173, 38, 0.1);
}

.get-started-btn:hover {
  background-color: #77ad26;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(119, 173, 38, 0.2);
}

.arrow {
  margin-left: 8px;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.get-started-btn:hover .arrow {
  transform: translateX(4px);
}

.footer-column h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 15px;
}

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

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

.footer-column ul li a {
  color: #333;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #77ad26;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-column {
    margin-bottom: 30px;
  }

  .get-started-btn {
    margin: 0 auto;
  }
}

.line-parent {
  display: flex;
  justify-content: center;
  align-items: center;
}
.line {
  width: 92%;
  height: 1px;
  background-color: #dbdbdb;
  margin-top: 30px;
  margin-left: 30px;
  margin-right: 30px;
}

.footer2 {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.footer2 p {
  margin-top: 20px;
  padding: 0;
}



/* hire */
/* Hero Section */
.hero-section-hr {
  background-color: #77ad26; /* Blue background to match the image */
  padding: 40px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.hero-container-hr {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}

.hero-content-hr {
  display: flex;
  width: 100%;
  gap: 40px;
}

.hero-left-hr {
  flex: 1;
}

.heading-container-hr {
  margin-bottom: 20px;
}

.hero-heading-hr {
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 10px 0;
}

.hero-subheading-hr {
  font-size: 1.125rem;
  font-weight: 400;
  color: #e0e0e0;
  margin: 0;
}

.hero-checklist-hr {
  margin-bottom: 20px;
}

.hero-checklist-hr p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #e0e0e0;
  margin: 8px 0;
}

.hero-checklist-hr img {
  width: 28px;
  height: 28px;
}

.talk-button-container-hr {
  margin-top: 20px;
}

.btn-hr {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.1s ease;
  justify-content: center;
}

.btn-secondary-hr {
  background-color: #fff;
  color: #13191f;
  border: none;
  width: 100%;
}

.btn-secondary-hr:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.btn-secondary-hr img {
  width: 20px;
  height: 20px;
}

.btn-full-width-hr {
  width: 100%;
}

.hero-right-hr {
  flex: 1;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-container-hr {
  width: 100%;
}

.hero-form-hr {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-container-hr {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.input-label-hr {
  font-size: 0.875rem;
  color: #333;
  margin: 0;
}

.required-hr {
  color: #ff0000;
}

.input-wrapper-hr {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 8px;
  background-color: #fff;
}

.input-outlined-hr {
  border-color: #ccc;
}

.input-field-hr {
  border: none;
  outline: none;
  width: 100%;
  font-size: 1rem;
}

.input-field-hr:focus {
  outline: none;
}

/* .input-field-hr.input-outlined-hr[placeholder="example@gmail.com"] {
 } */

.btn-primary-hr {
  background-color: #77ad26;
  color: #fff;
  border: none;
}

.btn-primary-hr:hover {
  background-color: #77ad26;
  transform: translateY(-2px);
}

.btn-xl-hr {
  padding: 14px 28px;
  justify-content: center;
}

.contact-agreement-hr {
  font-size: 0.75rem;
  color: #666;
  text-align: center;
  margin-top: 10px;
}

.contact-agreement-hr a {
  color: #77ad26;
  text-decoration: none;
}

.contact-agreement-hr a:hover {
  text-decoration: underline;
}
/* Domains Section */
.domains-section {
  padding: 60px 20px;
  background-color: #f2f8ff;
  text-align: center;
}

.domains-container {
  max-width: 1200px;
  margin: 0 auto;
}

.domains-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.domains-subheading {
  font-size: 1rem;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* Domains Cards */
.domains-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-items: center;
}

.domain-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 100%;
  max-width: 300px;
  text-align: left;
  transition: transform 0.3s ease;
}

.domain-card:hover {
  transform: translateY(-5px);
}

.card-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.card-description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}



/* ccc */
.page_header__H0DA1 {
  padding: 0
}

.page_contact_us__nDlr_ {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: 50%;
  padding: 96px 112px;
  position: relative;
  background: rgb(66 123 62 / 85%);
}

.page_contact_us__nDlr_ .page_backgroundImage___AIxn {
  position: absolute;
  object-fit: cover;
  z-index: -1;
  width: 100%;
  height: 100%
}

.page_contact_us__nDlr_ .page_heading_section___gLKE,.page_contact_us__nDlr_ .page_heading_section___gLKE .page_first__YvfNd {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center
}

.page_contact_us__nDlr_ .page_heading_section___gLKE .page_first__YvfNd b {
  font-size: 48px;
  color: var(--white)
}

.page_contact_us__nDlr_ .page_heading_section___gLKE .page_first__YvfNd button {
  background: var(--white);
  color: var(--dark-blue-500);
  padding: 4px 12px;
  font-size: 14px;
  cursor: pointer;
  transition: background .3s,color .3s;
  border-radius: 22px
}

.page_contact_us__nDlr_ .page_heading_section___gLKE .page_second__aZRyW {
  margin-top: 24px
}

.page_contact_us__nDlr_ .page_heading_section___gLKE .page_second__aZRyW p {
  color: var(--white);
  font-size: 20px
}

@media(max-width: 480px) {
  .page_contact_us__nDlr_ {
      width:100%;
      padding: 60px 16px
  }

  .page_contact_us__nDlr_ .page_backgroundImage___AIxn {
      height: 288px;
      width: 100%
  }

  .page_contact_us__nDlr_ .page_first__YvfNd {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center
  }

  .page_contact_us__nDlr_ .page_first__YvfNd b {
      font-size: 36px;
      color: var(--white)
  }

  .page_contact_us__nDlr_ .page_second__aZRyW {
      width: 100%;
      max-width: 343px;
      height: 60px
  }

  .page_contact_us__nDlr_ .page_second__aZRyW p {
      color: var(--white);
      font-size: 20px
  }
}


.student-reviews_badge3__7l1TM,.student-reviews_badgeBase3__lR1vI {
  display: flex;
  flex-direction: row
}

.student-reviews_badgeBase3__lR1vI {
  border-radius: 16px;
  background-color: var(--foundation-dark-blue-dark-blue-50);
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  white-space: nowrap
}

.student-reviews_badge3__7l1TM {
  align-items: flex-start;
  justify-content: flex-start
}

.page_middle_page__WgH6p {
  display: flex;
  flex-direction: column
}

.page_middle_page__WgH6p .page_address_info__baT5_ {
  padding: 48px 64px 48px 112px;
  flex: 1 1;
  justify-content: space-between;
  max-width: 544px
}

.page_middle_page__WgH6p .page_address_info__baT5_ .page_nested_address_info__eGxDA {
  width: 100%
}

.page_middle_page__WgH6p .page_address_info__baT5_ .page_nested_address_info__eGxDA .page_chat_to_us__tcOe1,.page_middle_page__WgH6p .page_address_info__baT5_ .page_nested_address_info__eGxDA .page_office__Jlocn,.page_middle_page__WgH6p .page_address_info__baT5_ .page_nested_address_info__eGxDA .page_phone__Quj6V {
  position: relative;
  display: flex;
  align-items: center;
  padding-bottom: 32px;
  padding-left: 40px
}

.page_middle_page__WgH6p .page_address_info__baT5_ .page_nested_address_info__eGxDA .page_chat_to_us__tcOe1 .page_icon__8grPD,.page_middle_page__WgH6p .page_address_info__baT5_ .page_nested_address_info__eGxDA .page_office__Jlocn .page_icon__8grPD,.page_middle_page__WgH6p .page_address_info__baT5_ .page_nested_address_info__eGxDA .page_phone__Quj6V .page_icon__8grPD {
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  z-index: 1;
  padding-right: 4px
}

.page_middle_page__WgH6p .page_address_info__baT5_ .page_nested_address_info__eGxDA .page_chat_to_us__tcOe1 .page_icon_text_container__1LYOS,.page_middle_page__WgH6p .page_address_info__baT5_ .page_nested_address_info__eGxDA .page_office__Jlocn .page_icon_text_container__1LYOS,.page_middle_page__WgH6p .page_address_info__baT5_ .page_nested_address_info__eGxDA .page_phone__Quj6V .page_icon_text_container__1LYOS {
  display: flex;
  flex-direction: column
}

.page_middle_page__WgH6p .page_address_info__baT5_ .page_nested_address_info__eGxDA .page_chat_to_us__tcOe1 .page_icon_text_container__1LYOS h2,.page_middle_page__WgH6p .page_address_info__baT5_ .page_nested_address_info__eGxDA .page_chat_to_us__tcOe1 .page_icon_text_container__1LYOS h3,.page_middle_page__WgH6p .page_address_info__baT5_ .page_nested_address_info__eGxDA .page_office__Jlocn .page_icon_text_container__1LYOS h2,.page_middle_page__WgH6p .page_address_info__baT5_ .page_nested_address_info__eGxDA .page_office__Jlocn .page_icon_text_container__1LYOS h3,.page_middle_page__WgH6p .page_address_info__baT5_ .page_nested_address_info__eGxDA .page_phone__Quj6V .page_icon_text_container__1LYOS h2,.page_middle_page__WgH6p .page_address_info__baT5_ .page_nested_address_info__eGxDA .page_phone__Quj6V .page_icon_text_container__1LYOS h3 {
  margin: 0
}

.page_middle_page__WgH6p .page_address_info__baT5_ .page_chat_to_us__tcOe1 .page_icon_text_container__1LYOS a,.page_middle_page__WgH6p .page_address_info__baT5_ .page_chat_to_us__tcOe1 .page_icon_text_container__1LYOS b,.page_middle_page__WgH6p .page_address_info__baT5_ .page_chat_to_us__tcOe1 .page_icon_text_container__1LYOS p,.page_middle_page__WgH6p .page_address_info__baT5_ .page_office__Jlocn .page_icon_text_container__1LYOS a,.page_middle_page__WgH6p .page_address_info__baT5_ .page_office__Jlocn .page_icon_text_container__1LYOS b,.page_middle_page__WgH6p .page_address_info__baT5_ .page_office__Jlocn .page_icon_text_container__1LYOS p,.page_middle_page__WgH6p .page_address_info__baT5_ .page_phone__Quj6V .page_icon_text_container__1LYOS a,.page_middle_page__WgH6p .page_address_info__baT5_ .page_phone__Quj6V .page_icon_text_container__1LYOS b,.page_middle_page__WgH6p .page_address_info__baT5_ .page_phone__Quj6V .page_icon_text_container__1LYOS p {
  margin-top: 5px
}

.page_middle_page__WgH6p .page_address_info__baT5_ p {
  color: var(--text-primary-color)
}

.page_middle_page__WgH6p .page_address_info__baT5_ b {
  color: var(--dark-blue-500)
}

.page_middle_page__WgH6p .page_address_info__baT5_ .page_social_icons__MKdYc {
  display: flex;
  justify-content: flex-start;
  padding-bottom: 42px
}

.page_middle_page__WgH6p .page_address_info__baT5_ .page_social_icons__MKdYc .page_instagram__VbZ_n,.page_middle_page__WgH6p .page_address_info__baT5_ .page_social_icons__MKdYc .page_linkedIn__OKKaG,.page_middle_page__WgH6p .page_address_info__baT5_ .page_social_icons__MKdYc .page_youtube__c0Icm {
  margin: 0 15px;
  width: 24px;
  height: 24px
}

.page_middle_page__WgH6p .page_address_info__baT5_ .page_social_icons__MKdYc .page_facebook__j0Pae {
  margin-right: 15px;
  width: 24px;
  height: 24px
}

.page_middle_page__WgH6p .page_hero_form_container__66fkU {
  flex: 1 1;
  padding: 48px 0 64px;
  height: 100%;
  width: 100%
}

.page_middle_page__WgH6p .page_hero_form_container__66fkU .page_form_section__rXLlf {
  padding-left: 40px;
}

.page_middle_page__WgH6p .page_hero_form_container__66fkU .page_form_inner_section1__Ax0LJ {
  width: 70%
}

.page_middle_page__WgH6p .page_hero_form_container__66fkU .page_form_inner_section2__03K_g {
  width: 100%
}

.page_middle_page__WgH6p .page_hero_form_container__66fkU h1 {
  font-size: 30px;
  font-weight: 600;
  line-height: 38px;
  color: var(--black)
}

.page_middle_page__WgH6p .page_hero_form_container__66fkU .page_contact_agreement__OHLgN {
  line-height: 24px;
  color: var(--text-primary-color);
  margin-top: 24px;
  width: 100%;
  height: 24px;
  font-size: 16px;
  display: flex;
  align-items: center;
  text-wrap: nowrap
}

.page_middle_page__WgH6p .page_hero_form_container__66fkU .page_contact_agreement__OHLgN a {
  color: var(--text-primary-color);
  border-bottom: 1px solid var(--text-primary-color)
}

.page_middle_page__WgH6p .page_hero_form_container__66fkU .page_horizontalInputs__xwO9u {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
  margin-top: 24px
}

.page_middle_page__WgH6p .page_hero_form_container__66fkU .page_horizontalInputs__xwO9u input {
  width: 100%;
  height: 48px;
  border-radius: 8px;
  border-top: 1px solid var(--grey-300);
  border-bottom: 1px solid var(--grey-300);
  color: var(--text-primary-color)
}

.page_middle_page__WgH6p .page_hero_form_container__66fkU .page_textareaInputField__uOAzK {
  display: flex;
  flex-direction: column;
  margin-top: 48px
}

.page_middle_page__WgH6p .page_hero_form_container__66fkU .page_textareaInputField__uOAzK textarea {
  width: 100%;
  margin-top: 6px;
  border: 1px solid var(--grey-300);
  border-radius: 8px;
  resize: none;
  box-sizing: border-box;
  font-size: 16px;
  color: var(--text-primary-color)
}

.page_middle_page__WgH6p .page_hero_form_container__66fkU button {
  background: var(--dark-blue-500);
  color: var(--white);
  font-size: 16px;
  cursor: pointer;
  transition: background .3s,color .3s;
  border-radius: 8px;
  margin-top: 32px;
  height: 48px;
  width: 100%
}

.page_middle_page__WgH6p .page_hero_form_container__66fkU .page_emailInput_Wrapper__kPj_V {
  margin-bottom: 24px
}

.page_middle_page__WgH6p .page_hero_form_container__66fkU .page_emailInput_Wrapper__kPj_V input {
  width: 100%;
  height: 48px;
  border-radius: 8px;
  border-top: 1px solid var(--grey-300);
  border-bottom: 1px solid var(--grey-300);
  color: var(--text-primary-color)
}

.page_middle_page__WgH6p .page_hero_form_container__66fkU .page_phoneNumber_InputWrapper__IJyDj {
  width: 100%;
  max-width: 320px;
  height: 48px;
  border-radius: 8px
}

.page_middle_page__WgH6p .page_hero_form_container__66fkU .page_phoneNumber_InputWrapper__IJyDj input {
  color: var(--text-primary-color)
}


@media(min-width: 731px) {
  .page_middle_page__WgH6p {
      flex-direction:row
  }

  .page_middle_page__WgH6p .page_hero_form_container__66fkU .page_horizontalInputs__xwO9u {
      flex-direction: row;
      gap: 32px;
      width: 100%
  }
}

@media(max-width: 730px) {
  .page_middle_page__WgH6p {
      height:100%;
      width: 100%
  }

  .page_middle_page__WgH6p .page_hero_form_container__66fkU {
      order: 1;
      padding-top: 20px;
      width: 100%;
      height: 100%;
      padding-left: 30px;
      padding-right: 30px
  }

  .page_middle_page__WgH6p .page_hero_form_container__66fkU .page_form_section__rXLlf {
      padding: 0
  }

  .page_middle_page__WgH6p .page_hero_form_container__66fkU .page_form_inner_section1__Ax0LJ {
      width: auto;
      max-width: 730px
  }

  .page_middle_page__WgH6p .page_hero_form_container__66fkU .page_form_inner_section2__03K_g {
      width: 100%;
      max-width: 730px!important
  }

  .page_middle_page__WgH6p .page_hero_form_container__66fkU .page_emailInput_Wrapper__kPj_V,.page_middle_page__WgH6p .page_hero_form_container__66fkU .page_phoneNumber_InputWrapper__IJyDj {
      width: 100%
  }

  .page_middle_page__WgH6p .page_hero_form_container__66fkU .page_phoneNumber_InputWrapper__IJyDj {
      max-width: 100%
  }

  .page_middle_page__WgH6p .page_hero_form_container__66fkU .page_last_name__blZlr {
      padding-top: 24px;
      width: 100%
  }

  .page_middle_page__WgH6p .page_hero_form_container__66fkU .page_textareaInputField__uOAzK textarea,.page_middle_page__WgH6p .page_hero_form_container__66fkU button {
      width: 100%
  }

  .page_middle_page__WgH6p .page_address_info__baT5_ {
      order: 2;
      width: 100%;
      max-width: 730px;
      height: 100%;
      padding: 16px 30px!important
  }

  .page_middle_page__WgH6p .page_address_info__baT5_ .page_nested_address_info__eGxDA {
      width: 100%;
      margin-right: 20px
  }

  .page_middle_page__WgH6p .page_address_info__baT5_ .page_nested_address_info__eGxDA .page_chat_to_us__tcOe1,.page_middle_page__WgH6p .page_address_info__baT5_ .page_nested_address_info__eGxDA .page_office__Jlocn,.page_middle_page__WgH6p .page_address_info__baT5_ .page_nested_address_info__eGxDA .page_phone__Quj6V {
      position: relative;
      display: flex;
      align-items: center;
      padding-left: 40px
  }

  .page_middle_page__WgH6p .page_address_info__baT5_ .page_social_icons__MKdYc {
      display: flex;
      justify-content: flex-start
  }

  .page_maps_container__VsVaS iframe {
      padding: 16px;
      height: 440px;
      width: 100%
  }
}

.page_maps_container__VsVaS {
  position: relative
}

.page_maps_container__VsVaS iframe {
  padding: 60px 112px;
      width: 100%;
  height: 512px;
  border: 0
}

/* slider */

/* Add these styles for mobile navigation */
.mobile-menu-btn {
  display: none;
  cursor: pointer;
  z-index: 1000;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #1787ff;
  margin: 5px 0;
  transition: 0.3s;
}

nav {
  transition: transform 0.3s ease-in-out;
}

/* Hide the Get Started button on mobile */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  header .cssbuttons-io-button {
    display: none;
  }

  nav {
    position: fixed;
    top: 0;
    right: -250px; /* Start off-screen */
    width: 250px;
    height: 100vh;
    background-color: #fff;
    padding: 80px 20px 20px;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease-in-out;
    z-index: 999;
  }

  nav.active {
    right: 0;
  }

  nav ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  nav ul li {
    margin: 0;
    width: 100%;
  }

  nav ul li a {
    display: block;
    padding: 10px;
    width: 100%;
  }

  /* Hamburger menu animation */
  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  /* Add overlay when menu is open */
  .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
  }

  .overlay.active {
    display: block;
  }

  /* Hero section mobile styles */
  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  /* Services section mobile styles */
  .service-cards {
    flex-direction: column;
  align-items: center;
  }

  .card {
    width: 90%;
    margin-bottom: 20px;
  }

  /* Workflow section mobile styles */
  .card-main-poc {
    flex-direction: column;
  align-items: center;
    gap: 20px;
  }

  .card-poc {
    width: 90%;
  }

  /* Features section mobile styles */
  .grid {
    grid-template-columns: 1fr !important;
  }

  /* Review section mobile styles */
  .review-grid {
    grid-template-columns: 1fr;
  }

  /* Footer mobile styles */
  .footer-container {
  flex-direction: column;
    text-align: center;
  }

  .footer-column {
    margin-bottom: 30px;
  }
}

/* Tablet styles */
@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    width: 90%;
  }

  .service-cards {
    flex-wrap: wrap;
  justify-content: center;
    gap: 20px;
  }

  .card {
    width: 45%;
  }

  .card-main-poc {
    flex-wrap: wrap;
    justify-content: center;
  }

  .card-poc {
    width: 45%;
  }

  .grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Base responsive styles */
@media (max-width: 768px) {
  header {
    height: var(--header-height);
    position: fixed;
    width: 100%;
    top: 0;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
  }

  header .container {
    padding: 0 15px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    font-size: 20px;
  }
}

/* Hero section responsive */
@media (max-width: 768px) {
  .hero {
    margin-top: var(--header-height);
    padding: 40px 0;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero p {
    font-size: 16px;
    line-height: 1.5;
  }

  .hero-logos {
    flex-direction: column;
    gap: 20px;
  }

  .hero-main-logo img {
    width: 80px;
  }
}

/* Services section responsive */
@media (max-width: 768px) {
  .services {
    padding: 40px 0;
  }

  .services h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .service-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .card {
    width: 100%;
    margin: 0;
  }

  .card-img img {
    width: 30%;
  }
}

/* Workflow/Courses section responsive */
@media (max-width: 768px) {
  .workflow {
    padding: 40px 0;
  }

  .workflow h2 {
    font-size: 24px;
  }

  .card-main-poc {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }

  .card-poc {
    width: 100%;
    height: auto;
    min-height: 250px;
  }

  .img-poc {
    height: 80px;
    width: 80px;
  }
}

/* Stats section responsive */
@media (max-width: 768px) {
  .sec-number {
    height: auto;
    padding: 40px 0;
  }

  .sec-number-main {
    width: 95%;
    height: auto;
    padding: 30px 15px;
  }

  .career-advisors-section {
    padding: 20px;
  }

  .advisors-title {
    font-size: 24px;
  }

  .social-proof-container {
    flex-direction: column;
    gap: 30px;
  }

  .stat-number-text {
    font-size: 36px;
  }
}

/* Features section responsive */
@media (max-width: 768px) {
  .features {
    padding: 40px 20px;
  }

  .features h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .grid {
    grid-template-columns: 1fr !important;
  }
}

/* Reviews section responsive */
@media (max-width: 768px) {
  .reviews {
    padding: 40px 20px;
  }

  .reviews h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }

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

  .review-card {
    width: 100%;
  }
}

/* CTA section responsive */
@media (max-width: 768px) {
  .cta-parent {
    padding: 40px 20px;
  }

  .cta-v2 {
    width: 95%;
    height: auto;
    padding: 40px 20px;
  }

  .cta-v2 h2 {
    font-size: 24px;
  }

  .cta-main-logo img {
    width: 80px;
  }
}

/* Footer responsive */
@media (max-width: 768px) {
  .footer {
    padding: 40px 20px 20px;
  }

  .footer-container {
    flex-direction: column;
    gap: 30px;
  }

  .footer-column {
    width: 100%;
    text-align: center;
  }

  .footer-column ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/* Tablet responsive styles */
@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    width: 95%;
  }

  .hero h1 {
    font-size: 36px;
  }

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

  .card-main-poc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .social-proof-container {
    gap: 20px;
  }

  .grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .review-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

/* Large screen styles */
@media (min-width: 1025px) {
  .container {
    max-width: 1200px;
  }
}

/* Navigation drawer improvements */
@media (max-width: 768px) {
  nav {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background-color: #fff;
    padding: 100px 30px 30px;
    transition: right 0.3s ease-in-out;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    overflow-y: auto;
  }

  nav.active {
    right: 0;
  }

  nav ul {
    gap: 25px;
  }

  nav ul li a {
    font-size: 18px;
    padding: 12px 15px;
    border-radius: 8px;
    transition: background-color 0.3s;
  }

  nav ul li a:hover {
    background-color: #f5f5f5;
  }

  .mobile-menu-btn {
    padding: 15px;
    margin-right: -15px;
  }

  .mobile-menu-btn span {
    width: 28px;
    height: 2px;
    margin: 6px 0;
  }

  .overlay.active {
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
  }
}

/* Button responsive styles */
@media (max-width: 768px) {
  .cssbuttons-io-button {
    padding: 8px 16px;
    font-size: 14px;
    width: 125px;
  }

  .cssbuttons-io-button .icon {
    height: 1.8em;
    width: 1.8em;
  }
}

/* Additional spacing utilities */
@media (max-width: 768px) {
  .section-padding {
    padding: 40px 0;
  }

  .section-margin {
    margin: 40px 0;
  }

  .text-center-mobile {
    text-align: center;
  }
}

/* Hire Us Page Responsive Styles */
@media (max-width: 768px) {
  /* Hero Section Mobile Styles */
  .hero-section-hr {
    padding: 20px;
    margin-top: var(--header-height);
  }

  .hero-container-hr {
    width: 100%;
    padding: 0;
  }

  .hero-content-hr {
    flex-direction: column;
    gap: 30px;
  }

  .hero-left-hr {
    text-align: center;
  }

  .hero-heading-hr {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .hero-subheading-hr {
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-checklist-hr p {
    text-align: left;
    font-size: 0.9rem;
    margin: 15px 0;
  }

  .hero-right-hr {
    padding: 20px;
  }

  .form-container-hr {
    width: 100%;
  }

  .name-section-hr {
    flex-direction: column;
    gap: 20px;
  }

  .input-container-hr {
    margin-bottom: 15px;
  }

  /* Domains Section Mobile Styles */
  .domains-section {
    padding: 40px 20px;
  }

  .domains-heading {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .domains-subheading {
    font-size: 0.9rem;
    margin-bottom: 30px;
  }

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

  .domain-card {
    padding: 25px;
  }

  .card-icon {
    width: 40px;
    height: 40px;
  }

  .card-title {
    font-size: 1.2rem;
  }

  .card-description {
    font-size: 0.9rem;
  }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-section-hr {
    padding: 40px;
  }

  .hero-container-hr {
    width: 100%;
    padding: 0;
  }

  .hero-content-hr {
    gap: 40px;
  }

  .hero-heading-hr {
    font-size: 2.2rem;
  }

  .hero-subheading-hr {
    font-size: 1.1rem;
  }

  .hero-right-hr {
    min-width: 350px;
  }

  /* Domains Section Tablet Styles */
  .domains-section {
    padding: 60px 40px;
  }

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

  .domain-card {
    height: 100%;
  }
}

/* Shared Form Styles */
@media (max-width: 1024px) {
  .input-wrapper-hr {
    width: 100%;
  }

  .input-field-hr {
    width: 100%;
    font-size: 16px; /* Prevents zoom on iOS */
  }

  .btn-hr {
    width: 100%;
    height: 48px;
    font-size: 16px;
  }

  .contact-agreement-hr {
    font-size: 12px;
    padding: 0 10px;
    text-align: center;
  }
}

/* Additional Improvements */
.hero-checklist-hr p img {
  flex-shrink: 0;
}

.input-container-hr {
  position: relative;
}

.required-hr {
  position: absolute;
  right: 10px;
  top: 0;
}

/* Fix for iOS input styles */
input[type="text"],
input[type="number"],
input[type="email"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 8px;
}

/* Improve touch targets */
.btn-hr,
.input-field-hr {
  min-height: 44px; /* Minimum touch target size */
}

/* Contact Page Responsive Styles */

/* Base responsive styles for contact page */
@media (max-width: 768px) {
  .page_contact_us__nDlr_ {
    padding: 40px 20px;
    text-align: center;
  }

  .page_contact_us__nDlr_ .page_heading_section___gLKE .page_first__YvfNd b {
    font-size: 32px;
  }

  .page_contact_us__nDlr_ .page_second__aZRyW p {
    font-size: 16px;
  }

  .page_middle_page__WgH6p {
    flex-direction: column;
  }

  /* Form section mobile styles */
  .page_hero_form_container__66fkU {
    padding: 30px 20px;
  }

  .page_form_section__rXLlf {
    padding: 0;
  }

  .page_form_inner_section1__Ax0LJ,
  .page_form_inner_section2__03K_g {
    width: 100%;
  }

  .page_horizontalInputs__xwO9u {
    flex-direction: column;
    gap: 20px;
  }

  .page_emailInput_Wrapper__kPj_V,
  .page_phoneNumber_InputWrapper__IJyDj {
    width: 100%;
    max-width: 100%;
  }

  /* Address info mobile styles */
  .page_address_info__baT5_ {
    padding: 30px 20px;
    order: 2;
  }

  .page_nested_address_info__eGxDA {
    width: 100%;
  }

  .page_phone__Quj6V,
  .page_chat_to_us__tcOe1,
  .page_office__Jlocn {
    padding-left: 50px;
    margin-bottom: 30px;
  }

  .page_social_icons__MKdYc {
    justify-content: center;
    gap: 20px;
  }

  /* Map container mobile styles */
  .page_maps_container__VsVaS iframe {
    padding: 20px;
    height: 300px;
  }
}

/* Tablet styles */
@media (min-width: 769px) and (max-width: 1024px) {
  .page_contact_us__nDlr_ {
    padding: 60px 40px;
  }

  .page_middle_page__WgH6p {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .page_hero_form_container__66fkU,
  .page_address_info__baT5_ {
    flex: 0 0 100%;
    padding: 40px;
  }

  .page_form_inner_section1__Ax0LJ,
  .page_form_inner_section2__03K_g {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }

  .page_horizontalInputs__xwO9u {
    flex-direction: row;
    gap: 20px;
  }

  /* Map container tablet styles */
  .page_maps_container__VsVaS iframe {
    padding: 40px;
    height: 400px;
  }
}

/* Form input styles */
.text-field_input__L6Yab,
.textarea-field_textarea__RC_od {
  width: 100%;
  padding: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
}

.text-field_input__L6Yab:focus,
.textarea-field_textarea__RC_od:focus {
  outline: none;
  border-color: #77ad26;
}

/* Button styles */
.button_button__QnBCk {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 8px;
  background-color: #77ad26;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.button_button__QnBCk:hover {
  background-color: #1565c0;
}

.button_button__QnBCk:disabled {
  background-color: #e0e0e0;
  cursor: not-allowed;
}

/* Checkbox styles */
.custom-checkbox_customCheckbox__VUZrB {
  display: flex;
  align-items: center;
  gap: 8px;
}

.custom-checkbox_checkboxInput__fBBOc {
  margin-right: 8px;
}

/* Social icons hover effect */
.page_social_icons__MKdYc a:hover img {
  opacity: 0.7;
  transform: scale(1.1);
  transition: all 0.3s ease;
}

/* Contact Page Responsive Styles */

/* Mobile styles (up to 768px) */
@media (max-width: 768px) {
  /* Header spacing for contact page */
  .page_contact_us__nDlr_ {
    margin-top: var(--header-height);
    padding: 40px 20px;
  }

  /* Hero section adjustments */
  .page_contact_us__nDlr_ .page_heading_section___gLKE .page_first__YvfNd b {
    font-size: 28px;
    line-height: 1.3;
  }

  .page_contact_us__nDlr_ .page_second__aZRyW p {
    font-size: 16px;
    padding: 0 20px;
  }

  /* Form and contact info layout */
  .page_middle_page__WgH6p {
    flex-direction: column;
    padding: 20px;
  }

  .page_hero_form_container__66fkU {
    padding: 20px 0;
  }

  .page_form_section__rXLlf {
    padding-left: 0;
  }

  .page_form_inner_section1__Ax0LJ,
  .page_form_inner_section2__03K_g {
    width: 100%;
  }

  /* Form inputs */
  .page_horizontalInputs__xwO9u {
    margin: 15px 0;
  }

  .text-field_input__L6Yab,
  .textarea-field_textarea__RC_od {
    width: 100%;
    font-size: 16px; /* Prevents zoom on iOS */
  }

  /* Contact information section */
  .page_address_info__baT5_ {
    padding: 30px 20px;
    margin-top: 20px;
  }

  .page_nested_address_info__eGxDA > div {
    padding-bottom: 20px;
  }

  /* Social icons */
  .page_social_icons__MKdYc {
    justify-content: center;
    padding-bottom: 20px;
  }

  /* Map container */
  .page_maps_container__VsVaS iframe {
    height: 300px;
    padding: 20px;
  }
}

/* Tablet styles (769px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .page_middle_page__WgH6p {
    flex-direction: row;
    padding: 40px;
    gap: 30px;
  }

  .page_hero_form_container__66fkU,
  .page_address_info__baT5_ {
    flex: 1;
  }

  .page_form_section__rXLlf {
    padding-left: 0;
  }

  .page_form_inner_section1__Ax0LJ,
  .page_form_inner_section2__03K_g {
    width: 100%;
  }

  /* Form layout improvements */
  .page_horizontalInputs__xwO9u {
    display: flex;
    gap: 20px;
  }

  /* Map size for tablets */
  .page_maps_container__VsVaS iframe {
    height: 400px;
    padding: 40px;
  }
}

/* Shared styles for better touch interactions */
@media (max-width: 1024px) {
  /* Better touch targets */
  .text-field_input__L6Yab,
  .textarea-field_textarea__RC_od,
  .button_button__QnBCk {
    min-height: 44px;
  }

  /* Improve checkbox touch target */
  .custom-checkbox_customCheckbox__VUZrB {
    padding: 10px 0;
  }

  .custom-checkbox_checkboxInput__fBBOc {
    width: 20px;
    height: 20px;
  }

  /* Social icons touch targets */
  .page_social_icons__MKdYc a {
    padding: 10px;
    display: inline-block;
  }

  /* Form validation message */
  .text-field_requiredStyle__wv1Ao {
    font-size: 14px;
  }

  /* Privacy policy text */
  .page_contact_agreement__OHLgN {
    font-size: 14px;
    line-height: 1.4;
    margin: 15px 0;
  }
}

/* Additional improvements for larger screens */
@media (min-width: 1025px) {
  .page_middle_page__WgH6p {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
  }

  .page_maps_container__VsVaS iframe {
    max-width: 1200px;
    margin: 0 auto;
    display: block;
  }
}

/* Fix for iOS form elements */
@supports (-webkit-touch-callout: none) {
  .text-field_input__L6Yab,
  .textarea-field_textarea__RC_od {
    font-size: 16px;
  }

  select {
    font-size: 16px;
  }
}

/* Contact Page Specific Responsive Styles */
@media (max-width: 768px) {
  /* Contact Hero Section */
  .page_contact_us__nDlr_ {
    margin-top: var(--header-height);
    padding: 40px 20px;
  }

  .page_contact_us__nDlr_ .page_first__YvfNd b {
    font-size: 28px;
  }

  .page_contact_us__nDlr_ .page_second__aZRyW p {
    font-size: 16px;
    padding: 0 15px;
  }

  /* Contact Form Section */
  .page_middle_page__WgH6p {
    flex-direction: column;
  }

  .page_hero_form_container__66fkU {
    order: 1;
    padding: 20px;
  }

  .page_form_section__rXLlf {
    padding: 0;
  }

  .page_form_inner_section1__Ax0LJ,
  .page_form_inner_section2__03K_g {
    width: 100%;
  }

  .page_horizontalInputs__xwO9u {
    flex-direction: column;
  }

  /* Contact Info Section */
  .page_address_info__baT5_ {
    order: 2;
    padding: 20px;
  }

  .page_nested_address_info__eGxDA {
    width: 100%;
  }

  .page_phone__Quj6V,
  .page_chat_to_us__tcOe1,
  .page_office__Jlocn {
    padding-left: 40px;
    margin-bottom: 20px;
  }

  /* Map Section */
  .page_maps_container__VsVaS iframe {
    height: 300px;
    padding: 20px;
  }

  /* Form Elements */
  .text-field_input__L6Yab,
  .textarea-field_textarea__RC_od {
    width: 100%;
    font-size: 16px;
  }

  .page_phoneNumber_InputWrapper__IJyDj {
    width: 100%;
    max-width: 100%;
  }

  /* Social Icons */
  .page_social_icons__MKdYc {
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
  }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
  .page_middle_page__WgH6p {
    padding: 40px;
    gap: 30px;
  }

  .page_hero_form_container__66fkU,
  .page_address_info__baT5_ {
    flex: 1;
  }

  .page_form_inner_section1__Ax0LJ,
  .page_form_inner_section2__03K_g {
    width: 100%;
  }

  .page_maps_container__VsVaS iframe {
    height: 400px;
    padding: 40px;
  }
}

/* Form Input Improvements */
@media (max-width: 1024px) {
  .text-field_input__L6Yab,
  .textarea-field_textarea__RC_od,
  .button_button__QnBCk {
    min-height: 44px;
    -webkit-appearance: none;
    border-radius: 8px;
  }

  .page_contact_agreement__OHLgN {
    font-size: 14px;
    padding: 0 10px;
  }

  /* Fix for iOS zoom on input focus */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea {
    font-size: 16px !important;
  }
}

/* Fix for sticky header on iOS */
@supports (-webkit-touch-callout: none) {
  .page_contact_us__nDlr_ {
    padding-top: calc(var(--header-height) + 20px);
  }
}

/* Mobile Menu Button Styles */
.mobile-menu-btn {
  display: none;
  z-index: 1001;
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
    cursor: pointer;
    padding: 15px;
  }

  .mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #77ad26;
    margin: 6px 0;
    transition: 0.4s;
  }

  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
}

/* Contact page hero section responsive fixes */
.page_contact_us__nDlr_ {
    position: relative;
    width: 100%;
    height: 300px; /* Fixed height for mobile */
    overflow: hidden;
}

.page_backgroundImage___AIxn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* This ensures the image covers the area without distortion */
}

.page_heading_section___gLKE {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    color: white;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
    .page_contact_us__nDlr_ {
        height: 250px; /* Slightly smaller height for mobile */
        margin-top: 60px; /* Adjust based on your header height */
    }

    .page_heading_section___gLKE {
        padding: 15px;
    }

    .page_first__YvfNd b {
        font-size: 24px;
        line-height: 1.2;
    }

    .page_second__aZRyW p {
        font-size: 16px;
        line-height: 1.4;
        margin: 10px 0;
    }

    .page_backgroundImage___AIxn {
        width: 100%;
        height: 100%;
        object-position: center; /* Centers the image */
    }
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .page_contact_us__nDlr_ {
        height: 350px;
    }

    .page_first__YvfNd b {
        font-size: 32px;
    }

    .page_second__aZRyW p {
        font-size: 18px;
    }
}

/* Additional overlay for better text readability */
.page_contact_us__nDlr_::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 1;
}
