/* FONTS */
@import url(../css/clash-display.css);


/* VARIABLES */
:root {
    --c-dark: #333333;
    --c-brand: #003366;
    --c-brand-light: #87CEEB;
    --c-secondary: #FF8A02;
    --c-brand-rgb: 240, 0, 120;
    --c-body: #727272;
    --c-box : #D5D8E7;
    --font-base: "Roboto", sans-serif;
    --box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.164);
    --transition: all 0.5s ease;
}


/* RESET & HELPERS */
body {
    font-family: var(--font-base);
    line-height: 1.7;
    color: var(--c-body);
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-weight: 600;
    color: var(--c-dark);
}

a {
    text-decoration: none;
    color: var(--c-brand);
    transition: var(--transition);
}

a:hover {
    color: var(--c-brand-light);
}

img {
    max-width: 100%;
    height: auto;
}

.section-padding {
    padding-top: 140px;
    padding-bottom: 140px;
}

.theme-shadow {
    box-shadow: var(--box-shadow);
}


/* IMAGE ZOOM */
.image-zoom {
    position: relative;
    overflow: hidden;
}

.image-zoom-warpper {
    position: relative;
    overflow: hidden;
}

.image-zoom-warpper img {
    transition: var(--transition);
}

.image-zoom:hover .image-zoom-warpper img {
    transform: scale(1.1);
}


/* NAVBAR */
.navbar {
    box-shadow: var(--box-shadow);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--c-dark);
}

.navbar-nav .nav-link:hover {
    transform: scale(1.05);
    transition: ease 0.05s;
}

.navbar-nav .nav-link.active {
    color: var(--c-secondary);
}


/* BUTTON */
.btn {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 0;
    padding: 10px 24px;
}

.btn-brand {
    background-color: var(--c-brand);
    border-color: var(--c-brand);
    color: white;
}

.btn-light:hover {
    background-color: rgba(255, 255, 255, 0.863);
    border-color: rgba(255, 255, 255, 0.863);
    transform: scale(1.01);
}

.btn-brand:hover {
    background-color: var(--c-brand-light);
    border-color: var(--c-brand-light);
    color: white;
    transform: scale(1.01);
}
.btn-primary {
    background: linear-gradient(to right,
        rgba(0, 51, 102, 1),
        rgba(43, 113, 178, 1),
        rgba(64, 144, 217, 1)) !important;
    border: none !important;
    border-radius: 50px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .btn-primary:hover {
    background: linear-gradient(to left,
        rgba(0, 51, 102, 1),
        rgba(43, 113, 178, 1),
        rgba(64, 144, 217, 1)) !important;
  }

.btn-custom {
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
  }


/* MAIN */
#main {
    background: linear-gradient(89.62deg, rgba(0, 51, 102, 0.6) 0.28%, rgba(43, 113, 179, 0.6) 49.96%, rgba(64, 144, 217, 0.6) 74.8%, rgba(75, 160, 236, 0.6) 87.22%, rgba(80, 167, 245, 0.6) 93.43%, rgba(86, 175, 255, 0.6) 99.64%), url(/assets/h1.png);
    background-position: center;
    background-size: cover;
    
}


/* SECTION TITLE */
.section-title {
    margin-bottom: 40px;
}

#about .section-title .line {
    width: 50px;
    height: 4px;
    background-color: var(--c-brand);
    margin: 16px auto 24px auto;
}

#services .section-title .line {
    width: 200px;
    height: 4px;
    background-color: var(--c-brand);
    margin: 16px auto 24px auto;
}

#portfolio .section-title .line {
    width: 80px;
    height: 4px;
    background-color: var(--c-brand);
    margin: 10px auto 24px auto;
}

#testimonial .section-title .line {
    width: 150px;
    height: 4px;
    background-color: var(--c-brand);
    margin: 16px auto 24px auto;
}

.section-title .p {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}


/* ICONBOX */
.iconbox {
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--c-brand-rgb), 0.2);
    color: var(--c-brand);
    font-size: 34px;
    flex: none;
}


/* SERVICES */
.service {
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.service::after {
    content: "";
    width: 0;
    height: 0;
    background: rgba(var(--c-brand-rgb), 0.3);
    position: absolute;
    bottom: 0;
    right: 0;
    transition: var(--transition);
}

.service:hover::after {
    width: 100%;
    height: 100%;
    background: var(--c-brand);
    z-index: -1;
}

.service:hover h5,
.service:hover p {
    color: white;
}

.service:hover .iconbox {
    background: rgba(255, 255, 255, 0.103);
    color: white;
}


/* COUNTER */
#counter {
    background: linear-gradient(rgba(var(--c-brand-rgb), 0.7), rgba(var(--c-brand-rgb), 0.7)), url(../images/counter.png);
    background-position: center;
    background-size: cover;
}


/* PORTFOLIO */
.portfolio-item1 .iconbox {
    background-color: var(--c-brand);
    color: white;
    position: absolute;
    bottom: 30%;
    left: 20%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.portfolio-item1:hover .iconbox {
    opacity: 1;
    left: 50%;
}

.portfolio-item2 .iconbox {
    background-color: var(--c-brand);
    color: white;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.portfolio-item2:hover .iconbox {
    opacity: 1;
    top: 50%;
}
.portfolio-item3 .iconbox {
    background-color: var(--c-brand);
    color: white;
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.portfolio-item3:hover .iconbox {
    opacity: 1;
    bottom: 35%;
}

.portfolio-item4 .iconbox {
    background-color: var(--c-brand);
    color: white;
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.portfolio-item4:hover .iconbox {
    opacity: 1;
    right: 30%;
}


/* REVIEW */
.review small {
    font-weight: 600;
    text-transform: uppercase;
    color: var(--c-brand);
}

.review-head {
    position: relative;
}

.review-head::after {
    content: "";
    width: 28px;
    height: 28px;
    position: absolute;
    bottom: -14px;
    background-color: white;
    transform: rotate(45deg);
}


/* CONTACT */
#contact {
    position: relative;
    z-index: 2;
}

#contact::after {
    content: "";
    width: 100%;
    height: 70%;
    background: linear-gradient(rgba(var(--c-brand-rgb), 0.8), rgba(var(--c-brand-rgb), 0.8)), url(../images/counter.png);
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

#contact .form-control {
    border-radius: 0;
    border-color: var(--c-body);
    border-width: 1.5px;
}

#contact .form-control:focus {
    border-radius: 2px;
    box-shadow: none;
    border-color: var(--c-brand);
    transform: scale(1.01);
}


/* FOOTER */
footer p {
    color: rgba(255, 255, 255, 0.788);
}

.footerline {
    width: 100%;
    height: 2px;
    margin-top: 2em;
    background-color: var(--c-brand);
}

.social-icons .social {
    display: inline-flex;
}

.social-icons .social a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.055);
    border-radius: 100px;
}

.social-icons .social a:hover {
    background-color: var(--c-brand);
    color: white;
}

.text-gradient {
    background: linear-gradient(to right,
            rgba(0, 51, 102, 1),
            rgba(43, 113, 178, 1),
            rgba(64, 144, 217, 1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-gradient {
    background: linear-gradient(to right,
    rgba(0, 51, 102, 1),
    rgba(43, 113, 178, 1),
    rgba(64, 144, 217, 1));
}

.text-gradient1 {
    background: linear-gradient(270.2deg, #FF8B00 0.14%, #C74C00 49.98%, #AB2C00 74.9%, #8F0C00 99.82%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-black {
    color: var(--c-dark)
}
.card {
    background-color: #ffffff;
    border: none;
}
.responsive-circle {
    background-color: var(--c-box);
    border-radius: 50%;
    width: 100px;
    height: 100px;
  }
  
  @media (min-width: 640px) {
    .responsive-circle {
      width: 110px;
      height: 108px;
    }
  }
  
  @media (min-width: 768px) {
    .responsive-circle {
      width: 120px;
      height: 115px;
    }
  }
  
  @media (min-width: 1024px) {
    .responsive-circle {
      width: 129px;
      height: 126px;
    }
  }

/* sections 2 */
  .landing-container {
    display: flex;
    flex-direction: column;
    /* max-height: 100vh; */
  }
  
  .hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
    /* min-height: 1200px; */
    padding: 120px 80px;
  }
  
  .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  
  .content-wrapper {
    position: relative;
    max-width: 1136px;
    width: 100%;
    text-align: center;
  }
  
  .section-title {
    font: 700 16px Montserrat, sans-serif;
    text-transform: uppercase;
    letter-spacing: 5px;
    background: linear-gradient(90deg, #036, #56afff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .section-heading {
    margin-top: 40px;
    font: 600 54px Roboto, sans-serif;
    color: #000;
    line-height: 1.1;
  }
  
  .card-grid {
    display: flex;
    gap: 20px;
    margin-top: 60px;
    flex-wrap: wrap;
    
  }
  
  .info-card {
    flex: 1 1 30%;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 40px 24px;
    border-radius: 30px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
  }
  
  .card-title {
    font: 500 28px Roboto, sans-serif;
    color: #000;
    margin-bottom: 20px;
  }
  
  .card-description {
    font: 300 18px/25px Montserrat, sans-serif;
    color: #000;
    opacity: 0.7;
    text-align: justify;
  }
  
  .learn-more-btn {
    margin-top: auto;
    margin-top: 25px;
    align-self: center;
    padding: 16px 24px;
    border-radius: 32px;
    border: 1px solid #036;
    background: linear-gradient(90deg, #036, #56afff);
    color: #fff;
    font: 700 20px Manrope, sans-serif;
    cursor: pointer;
    text-align: center;
  }

  .gradient-btn {
    /* margin-top: auto; */
    margin-top: 25px;
    flex:inline;
    width: max-content;
    align-self: center;
    padding: 16px 24px;
    border-radius: 32px;
    border: 1px solid #036;
    background: linear-gradient(90deg, #036, #56afff);
    color: #fff;
    font: 700 20px Manrope, sans-serif;
    cursor: pointer;
    text-align: center;
  }


  
  @media (max-width: 991px) {
    .hero-section {
      padding: 80px 20px;
    }
  
    .section-heading {
      font-size: 40px;
    }
  
    .card-grid {
      flex-direction: column;
      gap: 40px;
    }
  
    .info-card {
      width: 100%;
    }
  }
  //care card
  .image-container {
    width: 390px;
    height: 306px;
    border-radius: 15px;
    overflow: hidden;
    margin: 0;
  }

  .gradient{
    color: linear-gradient(to right, #083a79, #3e9ce9)
  }

  .faq-container {
    width: 100%;
    max-width: 800px;
    margin: 40px auto;
    font-family: "Helvetica Neue", sans-serif;
  }
  
  .faq-item {
    border-top: 1px solid #ccc;
  }
  
  .faq-question {
    width: 100%;
    text-align: left;
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    position: relative;
  }
  
  .faq-question::before {
    content: "+";
    position: absolute;
    left: 0;
    font-size: 20px;
    color: #000;
  }
  
  .faq-question.active::before {
    content: "−";
  }
  
  .faq-answer {
    display: none;
    padding: 0 20px 20px;
    font-size: 16px;
    color: #333;
  }
  
  .faq-answer.open {
    display: block;
  }
  
  .faq-answer ul {
    margin: 10px 0;
    padding-left: 20px;
    list-style-type: disc;
  }
  
  .faq-answer ul ul {
    list-style-type: circle;
  }
    .achc-footer {
      background: linear-gradient(to right, #083a79, #3e9ce9);
      color: white;
      padding-top: 40px;
    }
    .achc-footer-bottom {
      background-color: #f8f9fa;
      padding: 10px 0;
      font-size: 14px;
    }
    .achc-footer-logo {
      font-weight: bold;
      font-size: 20px;
    }
    .achc-footer a {
      text-decoration: none;
      color: white;
    }
    .achc-footer a:hover {
      text-decoration: underline;
    }
    .achc-newsletter input[type="email"] {
      border-radius: 50px;
      padding: 8px 16px;
      border: none;
      width: 100%;
      max-width: 250px;
    }
    .achc-subscribe-btn {
      border-radius: 50px;
      padding: 8px 20px;
      background-color: #083a79;
      color: white;
      border: none;
      margin-left: 10px;
    }
    .achc-footer-social i {
      font-size: 18px;
      margin-right: 10px;
      color: white;
    }
    @media (max-width: 767.98px) {
      .achc-newsletter {
        flex-direction: column;
        align-items: flex-start;
      }
      .achc-subscribe-btn {
        margin-left: 0;
        margin-top: 10px;
      }
    }  

    @import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;600&display=swap");

.testimonial-container {
  max-width: 346px;
  padding-top: 34px;
  font-family:
    "Plus Jakarta Sans",
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  text-align: center;
}

.testimonial-card {
  border-radius: 16px;
  background-color: #ffffff;
  box-shadow: -32px 36px 24px rgba(0, 0, 0, 0.04);
  position: relative;
  display: flex;
  margin-top: 34px;
  min-height: 260px;
  width: 100%;
  padding: 66px 24px;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}

.author-info {
  align-self: center;
  z-index: 0;
  display: flex;
  width: 109px;
  max-width: 100%;
  flex-direction: column;
  align-items: stretch;
  text-transform: capitalize;
}

.author-name {
  color: #343434;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.author-title {
  color: #6b6b6b;
  font-size: 12px;
  font-weight: 300;
  align-self: center;
  margin: 0;
}

.testimonial-quote {
  color: #6b6b6b;
  font-size: 14px;
  font-weight: 300;
  z-index: 0;
  margin: 16px 0 0;
}

.author-image {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 64px;
  border-radius: 50%;
  position: absolute;
  z-index: 0;
  left: 50%;
  top: -34px;
  transform: translate(-50%, 0);
  height: 64px;
}

.quote-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 41px;
  position: absolute;
  z-index: 0;
  left: 24px;
  top: 24px;
  height: 41px;
}

.healthcare-card {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.healthcare-card-container {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  padding: 24px 80px 24px 20px;
}

@media (max-width: 991px) {
  .healthcare-card-container {
    padding-right: 20px;
  }
}

.healthcare-card-content {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.healthcare-card-image-wrapper {
  position: relative;
  width: 26%;
  aspect-ratio: 1.611;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 51px 46px;
}

@media (max-width: 991px) {
  .healthcare-card-image-wrapper {
    width: 100%;
    margin-top: 40px;
    padding: 0 20px;
  }
}

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

.healthcare-icon {
  width: 42px;
  object-fit: contain;
  z-index: 1;
}

.healthcare-card-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #1b263b;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.healthcare-title {
  font-size: 22px;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}

.healthcare-description {
  margin-top: 16px;
  line-height: 1.4;
}

.healthcare-date {
  margin-top: 24px;
  color: #9e9e9e;
  font-size: 14px;
}

.card-title{
  font-weight: bold !important;
}

.card-description{
opacity: 1;
}

.fs-54 {
  font-size: 54px;
}


.login-title {
    font-size: 32px;
    line-height: 15px;
    font-weight: 600;
    color: white;
    margin-top: 20px;
    margin-bottom: 20px;
}

.login {
    text-align: left;
    padding: 40px;
    background: linear-gradient( 90deg, #036 0.28%, #2b71b2 49.96%, #4090d9 74.8%, #4ba0ec 87.22%, #50a7f5 93.43%, #56afff 99.64% );
    border-radius: 30px;
    margin: auto;
    position: relative;
    max-width: 550px;
}

.vertical-line {
    border: 0;
    border-left: 2px solid lightgray; /* Light gray color */
    height: 0rem; /* Adjust the height as needed */
    margin: 0 16px; /* Adjust the margin as needed */
}

@media (min-width: 768px) {
    .vertical-line {
        height: 30rem;
    }
}
/* From Uiverse.io by barisdogansutcu */
.buttonSubmit {
    padding: 17px 40px;
    border-radius: 50px;
    cursor: pointer;
    border: 0;
    background-color: white;
    box-shadow: rgb(0 0 0 / 5%) 0 0 8px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 15px;
    transition: all 0.5s ease;
    width: 100%;
}


/* Custom CSS */
.mt-custom {
    margin-top: 0;
}

@media (min-width: 768px) {
    .mt-custom {
        margin-top: 6rem;
    }
}
/* Style the select element text color */
.select-blue {
    color: #88a7c4;
}

    /* Style the options */
    .select-blue option {
        color: #000000; /* Change to your desired text color for options */
    }

        /* Style the selected option */
        .select-blue option[value=''][disabled] {
            color: #88a7c4;
        }

    /* For Firefox to show the placeholder color */
    .select-blue:invalid {
        color: #88a7c4;
    }
/* Input field styling */
.form-control {
    border: none;
    background: transparent;
    width: 100%;
    padding: 0;
    margin: 0;
    outline: none;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

/* Placeholder color */
.placeholder-blue::placeholder {
    color: #88a7c4;
    opacity: 1; /* Firefox reduces opacity by default */
}

/* Focus state */
.focus\:bg-transparent:focus {
    background-color: transparent !important;
}

/* Select dropdown styling */
.form-input select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    flex-grow: 1;
    cursor: pointer;
}

/* Maintain existing form-input styling */
.form-input {
    display: flex;
    align-items: center;
    /* Add any other existing styles you have */
}

.form-input {
    display: flex;
    align-items: center;
    /* Add your existing styles here */
}

select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    flex-grow: 1;
}

.contact-info {
    width: 40%;
    color: #fff;
}

.contact-title {
    font-size: 48px;
    font-weight: 600;
    margin: 0 0 10px;
}

.contact-subtitle {
    font-size: 18px;
    margin: 0 0 20px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.contact-icon {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}

.form-container {
    width: 50%;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    background: linear-gradient(90deg, #337dc1 0%, #3a89d0 100%);
    padding: 0 17px;
    border-radius: 63px;
    display: inline-block;
    margin-bottom: 10px;
}

.form-input {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border: 1px solid #fff;
    border-radius: 63px;
}

.form-icon {
    width: 28px;
    height: 28px;
    fill: #88a7c4;
}

.form-placeholder {
    font-size: 22px;
    color: #88a7c4;
}

.submit-button {
    padding: 20px 40px;
    border-radius: 128px;
    background: linear-gradient( 90deg, #036 0.28%, #2b71b2 49.96%, #4090d9 74.8%, #4ba0ec 87.22%, #50a7f5 93.43%, #56afff 99.64% );
    font-size: 24px;
    font-weight: 600;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    cursor: pointer;
    border: none;
    width: 100%;
}

/* @media (max-width: 991px) {
        .contact-form-container {
          flex-direction: column;
        }
        .contact-info,
        .form-container {
          width: 100%;
        }
      }

      @media (max-width: 640px) {
        .contact-form-container {
          padding: 20px;
        }
        .contact-title {
          font-size: 36px;
        }
        .contact-subtitle {
          font-size: 16px;
        }
        .form-label {
          font-size: 20px;
        }
        .form-placeholder {
          font-size: 18px;
        }
        .submit-button {
          font-size: 20px;
        }
      } */
.custom-label_modal {
    color: #003366 !important;
    font-weight: 700 !important;
    font-size: 32px !important;
}

.custom-label_modal_body {
    color: #003366 !important;
    font-weight: bold !important;
}
.custom-label {
    font-size: 14px;
    font-family: 'Lato', sans-serif !important;
    font-weight: 700;
    background: linear-gradient(to right, rgba(0, 51, 102, 1), rgba(43, 113, 178, 1), rgba(64, 144, 217, 1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.custom-input {
    width: 100% !important;
    padding: 10px !important;
    border-radius: 20px !important;
    border: 1px solid white !important;
    outline: none;
    font-size: 14px;
    /*box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);*/
    border: 1px solid #dee2e6 !important;
}

    .custom-input::placeholder {
        color: #888;
        font-size: 14px;
    }
