/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color: #ffffff;
  --primary-color: rgb(128, 0, 128);
  --secondary-color: rgb(239, 136, 239);
  --section-bg-color: #f0f8ff;
  --custom-btn-bg-color: rgb(110, 0, 110);
  --custom-btn-bg-hover-color: rgb(110, 0, 110);
  --dark-color: #000000;
  --p-color: #000000;
  --link-hover-color: rgb(128, 0, 128);
  --intense-care-color: #35a762;

  --body-font-family: "Outfit", sans-serif;

  --h1-font-size: 42px;
  --h2-font-size: 36px;
  --h3-font-size: 28px;
  --h4-font-size: 24px;
  --h5-font-size: 22px;
  --h6-font-size: 20px;
  --p-font-size: 16px;
  --menu-font-size: 16px;
  --btn-font-size: 14px;
  --copyright-font-size: 14px;

  --border-radius-large: 100px;
  --border-radius-medium: 20px;
  --border-radius-small: 10px;

  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family);
}

main {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* takes full screen height */
}

/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-light);
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
}

h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--font-weight-bold);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  color: var(--secondary-color);
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a,
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 75px;
  padding-bottom: 75px;
}

::selection {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

/*---------------------------------------
  AVATAR IMAGE               
-----------------------------------------*/
.avatar-image {
  border: 4px solid var(--white-color);
  border-radius: 100px;
  width: 60px;
  height: 60px;
  object-fit: cover;
}

.avatar-image-left {
  position: relative;
  left: -10px;
}

.avatar-image-left + .avatar-image-left {
  left: -20px;
}

.avatar-image-left + .avatar-image-left + .avatar-image-left {
  left: -30px;
}

.avatar-image-left
  + .avatar-image-left
  + .avatar-image-left
  + .avatar-image-left {
  left: -40px;
}

/*---------------------------------------
  SERVICES SECTION               
-----------------------------------------*/

.services-description {
  width: 70%;
  margin: 0 auto;
  text-align: center;
  font-size: var(--h4-font-size);
  font-weight: var(--font-weight-normal);
  color: var(--p-color);
  line-height: 1.6;
  padding-bottom: 50px;
}

.services-combined-title {
  font-size: 50px;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
}

.avatar-group,
.services-group {
  position: relative;
  z-index: 22;
}

.services-group {
  display: inline-block;
  vertical-align: top;
}

.services-group strong {
  font-size: var(--h3-font-size);
  margin-right: 10px;
}

.services-section .container {
  overflow: visible;
}

.services-section .row {
  overflow: visible;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  overflow: visible;
  padding-top: 30px;
}

/*---------------------------------------
  CUSTOM LINK              
-----------------------------------------*/
.link {
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  color: var(--white-color);
}

.link::before,
.link::after {
  position: absolute;
  width: 100%;
  height: 1px;
  background: currentColor;
  top: 100%;
  left: 0;
  pointer-events: none;
}

.link::before {
  content: "";
}

.link--kale::before {
  height: 10px;
  top: 100%;
  opacity: 0;
}

.link--kale:hover::before {
  opacity: 1;
  animation: lineUp 0.3s ease forwards;
}

@keyframes lineUp {
  0% {
    transform-origin: 50% 100%;
    transform: scale3d(1, 0.045, 1);
  }

  50% {
    transform-origin: 50% 100%;
    transform: scale3d(1, 1, 1);
  }

  51% {
    transform-origin: 50% 0%;
    transform: scale3d(1, 1, 1);
  }

  100% {
    transform-origin: 50% 0%;
    transform: scale3d(1, 0.045, 1);
  }
}

.link--kale::after {
  content: "";
  transition: opacity 0.3s;
  opacity: 0;
  transition-delay: 0s;
}

.link--kale:hover::after {
  opacity: 1;
  transition-delay: 0.5s;
}

/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  /* background: var(--custom-btn-bg-color); */
  border: 2px solid var(--custom-btn-bg-color);
  border-radius: var(--border-radius-large);
  color: var(--custom-btn-bg-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-light);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;
}

.custom-btn-white {
  border: 2px solid white;
  border-radius: var(--border-radius-large);
  color: white;
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-light);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;
}

.custom-btn-white:hover,
.custom-btn-white:active {
  background-color: white;
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius-large);
  color: black;
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-light);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;
}

.custom-btn:hover {
  background: var(--custom-btn-bg-color);
  border-color: transparent;
  color: var(--white-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}

.btn-naira {
  padding: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.btn-naira::before {
  content: "";
  position: absolute;
  left: -50%;
  width: 200%;
  height: 200%;
  background: var(--primary-color);
  top: -50%;
  z-index: -1;
  -webkit-transform: translate3d(0, -100%, 0) rotate3d(0, 0, 1, -10deg);
  transform: translate3d(0, -100%, 0) rotate3d(0, 0, 1, -10deg);
}

.btn-naira.btn-inverted::before {
  background: var(--primary-color);
}

.btn-naira > span {
  display: block;
  vertical-align: middle;
}

.btn-naira .btn-icon {
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  color: var(--white-color);
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
}

.btn-naira > span,
.btn-naira .btn-icon {
  padding: 10px 20px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}

.btn-naira:hover::before {
  -webkit-animation: anim-naira-1 0.3s forwards ease-in;
  animation: anim-naira-1 0.3s forwards ease-in;
}

@-webkit-keyframes anim-naira-1 {
  50% {
    -webkit-transform: translate3d(0, -50%, 0) rotate3d(0, 0, 1, -10deg);
    transform: translate3d(0, -50%, 0) rotate3d(0, 0, 1, -10deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  100% {
    -webkit-transform: translate3d(0, 0%, 0) rotate3d(0, 0, 1, 0deg);
    transform: translate3d(0, 0%, 0) rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes anim-naira-1 {
  50% {
    -webkit-transform: translate3d(0, -50%, 0) rotate3d(0, 0, 1, -10deg);
    transform: translate3d(0, -50%, 0) rotate3d(0, 0, 1, -10deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  100% {
    -webkit-transform: translate3d(0, 0%, 0) rotate3d(0, 0, 1, 0deg);
    transform: translate3d(0, 0%, 0) rotate3d(0, 0, 1, 0deg);
  }
}

.btn-naira:hover {
  background-color: var(--primary-color);
  -webkit-transition: background-color 0s 0.3s;
  transition: background-color 0s 0.3s;
}

.btn-naira.btn-inverted:hover {
  background-color: var(--primary-color);
}

.btn-naira:hover .btn-icon {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.btn-naira:hover > span {
  opacity: 0;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}

/*---------------------------------------
  STICKY NAVBAR              
-----------------------------------------*/
.top-info-bar {
  background-color: var(--primary-color);
  color: white;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  height: 48px;
  z-index: 1030;
  font-size: 14px;
  transition: top 0.3s ease;
}

body.banner-hidden .top-info-bar {
  top: -100px;
}

.sticky-wrapper {
  top: 64px; /* 48px banner + 16px spacing */
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  z-index: 1040;
}

/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.sticky-wrapper {
  position: absolute;
  top: 3%;
  right: 0;
  left: 0;
}

.sticky-wrapper.is-sticky .navbar {
  background-color: rgba(128, 0, 128, 0.85);
  padding-top: 10px; /* reduced padding */
  padding-bottom: 10px; /* reduced padding */
  height: 60px; /* or your desired height */
}

.sticky-wrapper.is-sticky .navbar-nav .nav-link {
  color: white;
}

.navbar {
  background: transparent;
  z-index: 99;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-brand {
  font-size: var(--h3-font-size);
  font-weight: var(--font-weight-bold);
  display: flex;
  align-items: center;
  color: var(--white-color);
}

.navbar-brand-icon {
  width: 50px;
  height: 50px;
  background-image: url("../images/website_assets/images/IntenseCare_logo_edited.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  margin-right: 10px;
  border-radius: 0;
  background-color: transparent;
}

.navbar-brand-icon::after {
  content: "";
  display: none;
}

.navbar-expand-lg .navbar-nav .nav-link {
  border-radius: var(--border-radius-large);
  margin: 30px;
  padding: 10px;
}

.section-with-navbar-offset {
  padding-top: 100px; /* fallback for no-JS environments */
}

/* .navbar-nav .nav-link {
  display: inline-block;
  color: var(--white-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-light);
  letter-spacing: 0.5px;
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--primary-color);
} */

.navbar-nav .nav-link {
  display: inline-block;
  color: rgba(0, 0, 0, 0.7); /* semi-transparent black */
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-light);
  letter-spacing: 0.5px;
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease,
    -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease,
    -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: "";
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}

/*---------------------------------------
  HERO        
-----------------------------------------*/

.hero-title {
  color: var(--intense-care-color);
  font-size: 70px;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  text-align: left;
}

.hero-subtitle {
  color: #000;
  font-size: 30px;
  font-weight: 400;
  max-width: 80%;
  line-height: 1.6;
  text-align: justify;
}

.hero-buttons {
  justify-content: flex-start !important;
}

.hero-buttons .btn {
  min-width: 180px;
  font-weight: 600;
  font-size: 16px;
}

.hero-section {
  background-image: url("../images/website_assets/images/hero.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
  padding-top: 50px;
  padding-bottom: 50px;
  min-height: 80vh;
}

.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 1;
}

.hero-section .row {
  justify-content: flex-start;
  padding-left: 10%;
  padding-right: 10%;
  text-align: left;
  position: relative;
  z-index: 2;
}

.hero-title {
  color: var(--intense-care-color);
  font-size: 70px;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  text-align: left;
}

.hero-subtitle {
  color: #000;
  font-size: 30px;
  font-weight: 400;
  max-width: 80%;
  line-height: 1.6;
  text-align: justify;
}

.hero-buttons {
  justify-content: flex-start !important;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.hero-buttons .btn {
  min-width: 180px;
  font-weight: 600;
  font-size: 16px;
}

/*---------------------------------------
  FEATURED              
-----------------------------------------*/
.featured-section {
  background-color: var(--custom-btn-bg-color);
  position: relative;
  padding-top: 50px;
  padding-bottom: 50px;
}

.featured-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 450px 450px;
  border-color: transparent transparent var(--white-color) transparent;
  pointer-events: none;
}

/*---------------------------------------
  CUSTOM BLOCK              
-----------------------------------------*/
.custom-block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 60%; /* Fill parent cell */
  min-height: 260px; /* Consistent height for all cards */
  background-size: cover;
  background-position: center;
  background-color: var(--intense-care-color);
  border-radius: var(--border-radius-medium);
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.custom-block-link {
  text-decoration: none; /* Remove underline */
  display: block; /* Make the <a> behave like a block-level element */
  cursor: pointer; /* Show pointer cursor on hover */
}

.custom-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(53, 167, 98, 0.8); /* your green overlay */
  z-index: 1;
  border-radius: var(--border-radius-medium); /* match card rounding */
}

.custom-block .avatar-image {
  min-width: 60px;
  margin: auto;
  left: 0;
}

.custom-block .bi-star {
  color: var(--white-color);
}

.custom-block .bi-star-fill {
  color: var(--secondary-color);
}

.custom-block-image-wrap {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: -60px; /* float halfway over the block */
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.custom-block-info {
  position: relative;
  z-index: 2;
  /* padding: 30px 20px 40px; */
  padding: 2rem;
  color: var(--white-color);
}

.custom-block-info > * {
  position: relative;
  z-index: 2;
}

.custom-block-info strong,
.custom-block-info p {
  color: var(--white-color);
}

.custom-block-info p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

/*---------------------------------------
  NDIS Support Section            
-----------------------------------------*/
.ndis-combined-title {
  font-size: 50px;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
}

.ndis-green {
  color: #2a9d61; /* or any green you prefer */
  margin-right: 10px;
}

.ndis-title {
  color: var(--intense-care-color);
  font-size: 50px;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  text-align: left;
}

.ndis-title2 {
  /* color: var(--intense-care-color); */
  font-size: 50px;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  text-align: left;
}

.ndis-subtitle {
  color: #000;
  font-size: 30px;
  font-weight: 400;
  max-width: 80%;
  line-height: 1.6;
  text-align: justify;
}

.ndis-support-section img {
  border-radius: 30px;
  object-fit: cover;
  width: 100%;
  height: 350px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.ndis-support-info {
  padding-top: 40px;
  padding-right: 40px;
  padding-left: 40px;
}

.nav-pills {
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius-medium);
  position: sticky;
  top: 120px;
  padding: 30px;
}

.nav-pills .nav-link {
  background: var(--section-bg-color);
  color: var(--p-color);
  border-radius: var(--border-radius-large);
  margin-top: 5px;
  margin-bottom: 10px;
  padding: 15px 30px;
}

.nav-pills .nav-link:hover,
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background: var(--primary-color);
  color: var(--white-color);
}

.nav-item {
  color: var(--white-color);
}

.scrollspy-example-2 {
  padding-right: 30px;
  padding-left: 30px;
}

.scrollspy-example-item {
  border-bottom: 5px dotted var(--p-color);
  min-height: 500px;
  padding-top: 20px;
  padding-bottom: 50px;
}

.scrollspy-example-item:last-child {
  border-bottom: 0;
}

.scrollspy-example-item-image {
  border-radius: var(--border-radius-medium);
}

.scrollspy-example-item h5 {
  padding-top: 30px;
  padding-bottom: 20px;
}

.blockquote {
  background: var(--section-bg-color);
  border-radius: var(--border-radius-small);
  font-size: var(--h5-font-size);
  font-weight: var(--font-weight-light);
  color: var(--site-footer-bg-color);
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 80px 40px 40px 40px;
  text-align: center;
}

.blockquote::before {
  content: "“";
  color: var(--custom-btn-bg-color);
  font-size: 100px;
  line-height: 1rem;
  display: block;
}

/*---------------------------------------
  AUTHOR SECTION            
-----------------------------------------*/
.author-section {
  background-image: url("../images/circle-scatter-haikei.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left bottom;
  position: relative;
  margin-top: 50px;
}

.author-image {
  border: 10px solid var(--secondary-color);
  border-radius: 100%;
  display: block;
  margin: auto;
  width: 350px;
  height: 350px;
  object-fit: cover;
}

/*---------------------------------------
  DIVIDER SECTION               
-----------------------------------------*/
.divider-section {
  background-image: url("../images/wave-haikei.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/*---------------------------------------
  CONTACT               
-----------------------------------------*/

.contact-section-font-color {
  color: var(--white-color);
}

.contact-section {
  background: var(--custom-btn-bg-color);
  overflow: hidden;
}

.contact-section .container {
  position: relative;
}

.contact-section p {
  color: var(--white-color);
  font-size: var(--h6-font-size);
}

.contact-link {
  color: var(--white-color);
}

.contact-section .copyright-text {
  font-size: var(--copyright-font-size);
}

/*---------------------------------------
  EBOOK DOWNLOAD FORM               
-----------------------------------------*/
.ebook-download-form {
  border-radius: var(--border-radius-medium);
  position: relative;
  z-index: 2;
  padding: 50px;
}

/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  border-radius: var(--border-radius-large);
  box-shadow: none;
  color: var(--p-color);
  padding-top: 13px;
  padding-bottom: 13px;
  padding-right: 40px;
  padding-left: 20px;
  outline: none;
}

.custom-form .form-control:focus,
.custom-form .form-control:hover {
  border-color: var(--primary-color);
}

.custom-form .form-control:focus + .input-group-text .custom-form-icon,
.custom-form .form-control:hover + .input-group-text .custom-form-icon {
  opacity: 1;
}

.custom-form .input-group-text {
  background: transparent;
  border: 0;
  border-radius: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: 10px;
}

.custom-form-icon {
  position: relative;
  z-index: 22;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n + 3),
.input-group:not(.has-validation)
  > .form-floating:not(:last-child)
  > .form-control,
.input-group:not(.has-validation)
  > .form-floating:not(:last-child)
  > .form-select,
.input-group:not(.has-validation)
  > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(
    .form-floating
  ) {
  border-radius: var(--border-radius-large);
}

.custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
}

/* ========== What Do I Get Section ========== */
.what-i-get {
  padding: 60px 30px;
  border-radius: 12px;
}

.what-i-get-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000;
}

.highlight-i {
  color: var(--intense-care-color); /* Green color for 'I' */
}

.what-i-get-subtitle {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #222;
  max-width: 800px;
}

.what-i-get-list {
  list-style: none;
  padding-left: 0;
  color: #222;
  font-size: 3rem;
  line-height: 2;
}

.what-i-get-list strong {
  color: #14a44d;
}

/* Styled tick icon */
.check-icon {
  color: #14a44d;
  font-size: 2.5rem;
  font-weight: bold;
  margin-right: 10px;
  line-height: 1.2;
}

.what-i-get-list li {
  font-size: 1.5rem;
  line-height: 2;
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

/*---------------------------------------
  SITE FOOTER
-----------------------------------------*/
/* Footer Section */
.footer-section {
  background: #ffffff;
  padding-top: 60px;
  border-top: 1px solid #eee;
  font-family: "Outfit", sans-serif;
  color: #000;
}

.footer-section h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-section p,
.footer-section ul {
  font-size: 20px;
  color: white;
  margin-bottom: 10px;
}

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

.footer-section ul.footer-links li {
  margin-bottom: 8px;
}

.footer-section .social-icons a {
  display: inline-block;
  font-size: 30px;
  margin-right: 10px;
  color: #000;
  transition: color 0.3s ease;
}

.footer-section .social-icons a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  background: linear-gradient(90deg, rgb(128, 0, 128), rgb(90, 60, 170));
  color: #fff;
  text-align: center;
  padding: 15px 0;
  font-size: 14px;
  margin-top: 20px;
}

/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  display: block;
  margin-right: 10px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 36px;
  transition: background 0.2s, color 0.2s;
}
