/* Core Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    color: #253045;
    background: linear-gradient(to bottom, #ffffff, #f7f7f7);
}

/* Header Styles */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #f0f0f0;
}

.header-strip {
    height: 10px;
    background-color: #4FAF92;
    width: 100%;
}

header .logo img {
  width: 150px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 65px;
    transition: all 0.3s ease;
}

nav > .logo {
    flex-shrink: 0;
    margin-right: auto;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

nav.scrolled {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul li a {
    color: #253045;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #4FAF92;
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #253045;
  font-size: 1rem;
  padding: 8px 12px;
  transition: color 0.3s ease;
}

/* Remove the .active class styling and only use hover */
.nav-links a:hover {
  color: #4FAF92;
}

/* Only keep .active for the current page indicator if needed */
.nav-links a.active {
  color: #253045;
}

.nav-links a.active:hover {
  color: #4FAF92;
}

/* Provider Login Button */
.provider-login-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  color: #4FAF92;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background-color: transparent;
}

.provider-login-btn:hover {
  background-color: #4FAF92;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(79, 175, 146, 0.3);
}

.provider-login-btn i {
  font-size: 1rem;
}

/* Mobile Menu Styles */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #253045;
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  transition: color 0.3s ease;
  z-index: 1000;
}

.menu-toggle:hover {
  color: #4FAF92;
}

/* Active state for menu toggle */
.menu-toggle.active {
  color: #4FAF92;
}

@media (max-width: 767px) {
  .menu-toggle {
      display: block;
  }

  .nav-wrapper {
      position: fixed;
      top: 90px;
      left: 0;
      width: 100%;
      background-color: white;
      padding: 20px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      transform: translateY(-100%);
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease-in-out;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      z-index: 999;
  }

  .nav-wrapper.show {
      transform: translateY(0);
      opacity: 1;
      visibility: visible;
  }

  .nav-links {
      position: static;
      width: 100%;
      background-color: transparent;
      padding: 0;
      box-shadow: none;
      transform: none;
      opacity: 1;
      visibility: visible;
      flex-direction: column;
      align-items: center;
      gap: 0;
  }

  .nav-links li {
      width: 100%;
      text-align: center;
  }

  .nav-links a {
      display: block;
      padding: 15px;
      width: 100%;
      border-radius: 5px;
      transition: background-color 0.3s ease;
  }

  .nav-links a:hover {
      background-color: #f5f5f5;
      color: #4FAF92;
  }

  .provider-login-btn {
      width: 100%;
      justify-content: center;
      border-radius: 6px;
      margin-left: 0;
      padding: 12px 20px;
  }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
  max-width: 100%;
  overflow-x: hidden;
}

/* Hero Section */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    margin-top: 60px;
}

.hero-content {
    max-width: 800px;
}

h1, h2, h3, h4 {
  font-family: 'Martian Mono', monospace;
}

h1 {
    font-size: 4em;
    margin-bottom: 20px;
    color: #253045;
}

h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #253045;
}

.subtitle {
    font-size: 1.5em;
    color: #4FAF92;
    margin-bottom: 40px;
}


.scroll-curve-container {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  overflow: visible;
  z-index: 1;
  pointer-events: none;
}

  /* Hide the curve on mobile devices */
  @media (max-width: 768px) {
  .scroll-curve-container {
      display: none;
  }
  }

.scroll-curve {
  position: absolute;
  width: 100%;
  height: 100%;
}

.curve-path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: stroke-dashoffset 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


/* Section Styles */
.section {
    padding: 100px 65px;
    margin: 0 auto;
    max-width: 1400px;
}

.section-content {
    margin: 0 auto;
}

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-card i {
    font-size: 2.5em;
    color: #4FAF92;
    margin-bottom: 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    background: linear-gradient(45deg, #4FAF92, #009B77);
    color: white;
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 175, 146, 0.3);
}

/* Footer */
.footer {
    background-color: #253045;
    color: white;
    padding: 65px;
    margin-top: 65px;
    text-align: left;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    max-width: calc(100%);
    margin: 0 auto;
  }
  
  .footer-column {
    flex: 1;
    padding: 0 20px;
    box-sizing: border-box;
  }
  
  .footer-title {
    font-size: 1.2em;
    font-weight: bold;
    margin: 0;
    margin-bottom: 10px;
  }
  
  .footer-title a {
    color:white;
    text-decoration: none;
  }
  
  .footer-title a:hover {
    color: #4FAF92;
  }
  
  address {
    font-style: normal;
    text-align: left;
  }
  
  address a {
    color: white; 
    text-decoration: none;
  }
  
  address a:hover {
    color: #d1d1d1; 
  }  

  .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: white;
}

.contact-item i {
    width: 20px;
    color: #4FAF92;
}

.contact-item a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #4FAF92;
    text-decoration: underline;
}


  .footer-subtext {
    margin-top: 0px 0px 15px;
    font-size: 1em;
    color: #d1d1d1;
  }
  
  .email-box {
    display: flex;
    align-items: center;
    margin-top: 15px;
    background-color: #f0f0f0;
    padding: 10px;
    border-radius: 5px;
    width: 400px;
  }
  
  .email-box input[type="email"] {
    border: none;
    background: transparent;
    color: #333;
    font-size: 0.9em;
    flex: 1;
  }
  
  .email-box i {
    color: #4FAF92;
    font-size: 1.2em;
    cursor: pointer;
  }
  
  .email-box input[type="email"]::placeholder {
    color: #888;
  }
  
  .thank-you-message {
    display: none;
    color:#009B77;
    margin-top: 10px;
    font-size: 1em;
  }
  
  .center .contact-info {
    margin-top: 10px;
    font-style: italic;
  }

footer .logo img {
width: 150px;
}

.footer-divider {
border-bottom: 1px solid #d1d1d1;
margin: 20px 0;
margin-left: auto;
margin-right: auto;
}

.footer-content .footer-column:last-child {
padding-left: 65px;
padding-right: 65px;
}

.footer-content .footer-column + .footer-column {
padding-left: 0;
}

.footer-content .footer-column + .footer-column + .footer-column {
padding-right: 0;
}

.footer-content .footer-column.right {
text-align: left;
}

.footer-copyright {
color: #d1d1d1;
font-size: 0.8em;
text-align: right;
margin-top: 10px;
max-width: calc(100% - 65px); /* Aligns right with 65px margin */
margin-left: auto;
padding-right: 65px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1.8s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        padding: 20px;
    }
    
    .section {
        padding: 60px 20px;
    }
    
    h1 {
        font-size: 2.5em;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }

  .footer-column.left,
  .footer-column.center,
  .footer-column.right {
      text-align: center;
      margin-bottom: 20px;
      padding: 0; /* Remove padding to ensure consistent spacing */
  }

  .footer-column.right .footer-title,
    .footer-column.right .footer-subtext {
        text-align: center; /* Explicitly center these elements */
    }

  .footer-column.left .logo img {
      max-width: 120px; /* Ensure logo scales on smaller screens */
      height: auto;
  }

  .footer-column.center .contact-info {
      margin-top: 10px;
      font-size: 0.9em;
  }

  .footer-column.right .email-box {
      width: 90%; /* Make email input stretch better for mobile */
      max-width: 300px;
      margin-top: 8px;
  }

  .footer-column.right .email-box input[type="email"] {
      font-size: 0.9em; /* Adjust font size for readability */
  }

  .footer-divider {
    margin: 15px 0;
    max-width: 100%; 
    margin-left: auto;
    margin-right: auto;
}

.footer-copyright {
  text-align: center;
  padding-right: 0;
  max-width: 100%;
  margin: 10px 0;
}

}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2em;
    }
    
    .subtitle {
        font-size: 1.2em;
    }
    
    .btn {
        padding: 12px 30px;
    }

    .footer {
      padding: 40px 20px;
      text-align: center;
  }
  
  .footer-content {
      flex-direction: column;
      align-items: center;
      gap: 20px;
  }
  
  .footer-column {
      margin-bottom: 20px;
      text-align: center;
      padding: 0;
  }
  
  .footer-title {
      font-size: 1.2em;
      margin-bottom: 10px;
  }
  
  .footer-subtext {
      font-size: 1em;
  }
  
  .email-box {
      width: 90%;
      max-width: 300px;
      margin: 0 auto;
  }
  
  .email-box input[type="email"] {
      font-size: 0.9em;
  }
  
  footer .logo img {
      max-width: 120px;
      height: auto;
  }
  
  .footer-divider {
      margin: 20px 0;
      max-width: 100%;
      margin-left: auto;
      margin-right: auto;
  }
  
  .footer-copyright {
    text-align: center;
    padding-right: 0;
    max-width: 100%;
    margin: 10px 0;
}   
}

.services-section {
  position: relative;
  max-width: 1400px; /* Match the max-width of other sections */
  margin: 0 auto;    /* Center the section */
  padding: 100px 65px;
}

.services-background {
    position: absolute;
    top: 0;
    left: 65px;
    right: 65px;
    bottom: 0;
    background-image: url('../assets/images/inst-lobby.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
    opacity: 0.7; /* Slightly transparent image */
}

.services-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.2); /* White overlay */
    border-radius: 15px;
}

.services-content {
  position: relative;
  z-index: 2;
}

.institutions-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  backdrop-filter: blur(5px);
}


.institutions-card > i {
  font-size: 3rem;
  color: #4FAF92;
  margin-bottom: 1.5rem;
}

.institutions-card h3 {
  color: #253045;
  margin-bottom: 1rem;
}

.institutions-card > p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2.5rem 0;
}

.benefit-item {
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
}

.benefit-item i {
  color: #4FAF92;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.benefit-item h4 {
  color: #253045;
  margin-bottom: 0.5rem;
  font-size: 15px;
}

.benefit-item p {
  color: #666;
  font-size: 1rem;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .benefits-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
  }
  
  .institutions-card {
      padding: 2rem;
  }
}

/* Contact Page */

body.contact-page {
    background-color: #ffffff;
  }
  
  /* Poppins Font */
  .poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
  }
  
  .poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
  }
  
  .poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
  }
  
  .poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
  }
  
  .poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
  }
  
  .poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
  }
  
  .poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
  }
  
  .poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
  }
  
  .poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
  }
  
  .poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
  }
  
  .poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
  }
  
  .poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
  }
  
  .poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
  }
  
  .poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
  }  
  
  /* Poppins Font */
  
  .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: #4FAF92;
    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-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;
  }
  
  select.input {
    color: #a2a2a2;
    background-color: #f1f1f1;
  }
  
  .new_home_web .responsive-container-block.big-container {
    padding-top: 0px;
    padding-right: 100px;
    padding-bottom: 0px;
    padding-left: 100px;
    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-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 .greenText {
    color: #4FAF92;
  }
  
  .new_home_web .greenLine {
    height: 10px;
    width: 160px;
    background-color: #4FAF92;
  }
  
  .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%;
    }
  
    .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;
    }
  }
  
  @import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700;800&amp;display=swap');
  
  *,
  *:before,
  *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  }
  
  body {
  margin: 0;
  }
  
  .wk-desk-1 {
  width: 8.333333%;
  }
  
  .wk-desk-2 {
  width: 16.666667%;
  }
  
  .wk-desk-3 {
  width: 25%;
  }
  
  .wk-desk-4 {
  width: 33.333333%;
  }
  
  .wk-desk-5 {
  width: 41.666667%;
  }
  
  .wk-desk-6 {
  width: 50%;
  }
  
  .wk-desk-7 {
  width: 58.333333%;
  }
  
  .wk-desk-8 {
  width: 66.666667%;
  }
  
  .wk-desk-9 {
  width: 75%;
  }
  
  .wk-desk-10 {
  width: 83.333333%;
  }
  
  .wk-desk-11 {
  width: 91.666667%;
  }
  
  .wk-desk-12 {
  width: 100%;
  }
  
  @media (max-width: 1024px) {
  .wk-ipadp-1 {
    width: 8.333333%;
  }
  
  .wk-ipadp-2 {
    width: 16.666667%;
  }
  
  .wk-ipadp-3 {
    width: 25%;
  }
  
  .wk-ipadp-4 {
    width: 33.333333%;
  }
  
  .wk-ipadp-5 {
    width: 41.666667%;
  }
  
  .wk-ipadp-6 {
    width: 50%;
  }
  
  .wk-ipadp-7 {
    width: 58.333333%;
  }
  
  .wk-ipadp-8 {
    width: 66.666667%;
  }
  
  .wk-ipadp-9 {
    width: 75%;
  }
  
  .wk-ipadp-10 {
    width: 83.333333%;
  }
  
  .wk-ipadp-11 {
    width: 91.666667%;
  }
  
  .wk-ipadp-12 {
    width: 100%;
  }
  }
  
  @media (max-width: 768px) {
  .wk-tab-1 {
    width: 8.333333%;
  }
  
  .wk-tab-2 {
    width: 16.666667%;
  }
  
  .wk-tab-3 {
    width: 25%;
  }
  
  .wk-tab-4 {
    width: 33.333333%;
  }
  
  .wk-tab-5 {
    width: 41.666667%;
  }
  
  .wk-tab-6 {
    width: 50%;
  }
  
  .wk-tab-7 {
    width: 58.333333%;
  }
  
  .wk-tab-8 {
    width: 66.666667%;
  }
  
  .wk-tab-9 {
    width: 75%;
  }
  
  .wk-tab-10 {
    width: 83.333333%;
  }
  
  .wk-tab-11 {
    width: 91.666667%;
  }
  
  .wk-tab-12 {
    width: 100%;
  }
  }
  
  @media (max-width: 500px) {
  .wk-mobile-1 {
    width: 8.333333%;
  }
  
  .wk-mobile-2 {
    width: 16.666667%;
  }
  
  .wk-mobile-3 {
    width: 25%;
  }
  
  .wk-mobile-4 {
    width: 33.333333%;
  }
  
  .wk-mobile-5 {
    width: 41.666667%;
  }
  
  .wk-mobile-6 {
    width: 50%;
  }
  
  .wk-mobile-7 {
    width: 58.333333%;
  }
  
  .wk-mobile-8 {
    width: 66.666667%;
  }
  
  .wk-mobile-9 {
    width: 75%;
  }
  
  .wk-mobile-10 {
    width: 83.333333%;
  }
  
  .wk-mobile-11 {
    width: 91.666667%;
  }
  
  .wk-mobile-12 {
    width: 100%;
  }
}

  @keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card p {
  margin-top: 10px;
  color: #666;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.introduction-content {
    color: #253045;
    line-height: 1.6;
    text-align: center;
    margin: 0 auto;
    max-width: 1000px;
    padding-top: 50px;
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    backdrop-filter: blur(2px);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.introduction-content.fade-visible {
  opacity: 1;
  transform: translateY(0);
}

.introduction-content.btn {
  font-size: 14pt;
}

.introduction-background {
  position: absolute;
  top: 0;
  left: 65px;
  right: 65px;
  bottom: 0;
  background-image: url('../assets/images/AdobeStock_218394966.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 15px;
  opacity: 0.7;
  animation: fadeIn 2s ease forwards;
}

.introduction-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 15px;
}

/* Add new class for introduction content specific animation */
.intro-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.intro-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .services-section {
      padding: 60px 20px; /* Match your existing mobile padding */
  }

  .introduction-background {
    left: 20px;
    right: 20px; 
  }
  
  .services-background {
      left: 20px;  /* Match the mobile padding */
      right: 20px; /* Match the mobile padding */
  }
}

/* Modern Contact Form Styles */
.contact-container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  margin-top: 0;
  padding-top: 0;
}

.modern-form {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.form-group {
  flex: 1;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #253045;
  font-size: 0.9rem;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: #fff;
}

.form-control:focus {
  outline: none;
  border-color: #4FAF92;
  box-shadow: 0 0 0 3px rgba(79, 175, 146, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

.submit-btn {
  background: #4FAF92;
  color: white;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 25px;
}

.submit-btn:hover {
  background: #3d8b74;
  transform: translateY(-1px);
}

.response-message {
  border-radius: 6px;
  text-align: center;
}

.response-message:not(:empty) {
  padding-top: 15px;
}

/* Success message style */
.response-message.success {
  background-color: #f0fdf4;
  color: #166534;
  border: 1px solid #dcfce7;
}

/* Error message style */
.response-message.error {
  background-color: #fef2f2;
  color: #991b1b;
  border: 1px solid #fee2e2;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .form-row {
      flex-direction: column;
      gap: 1rem;
  }
  
  .contact-container {
      padding: 1rem;
  }
  
  .modern-form {
      padding: 1.5rem;
  }
}

/* Remove some old form styles that might conflict */
.new_home_web .input,
.new_home_web .textinput {
  all: unset;
}

/* Style for dropdown placeholder text */
select option[disabled] {
  color: #a2a2a2;
}

/* Style for the select element when showing placeholder */
select:invalid {
  color: #a2a2a2;
}

/* Style for the select element after a choice is made */
select:valid {
  color: #253045;
}