

:root {
    font-family: 'Nunito Sans', system-ui, Avenir, Helvetica, Arial, sans-serif;
    line-height: 1.5;
    font-weight: 400;
  
    color-scheme: light dark;
    color: #292929;
    background-color: #fff;
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  a {
    color: #646cff;
    text-decoration: inherit;
  }

  
  body {
    margin: 0;
    min-width: 320px;
    /* Remove display: flex and place-items: center */
  }
  
  h1 {
    font-size: 3.2em;
    line-height: 1.1;
  }
  
  select {
	  cursor: pointer;
  }

  /* Remove or comment out the generic button styles */
  button {
    border-radius: 8px;
    border: 1px solid transparent;
    padding: 0.6em 1.2em;
    font-size: 1em;
    font-weight: 500;
    font-family: inherit;
    background-color: #1a1a1a;
    cursor: pointer;
    transition: border-color 0.25s;
  }
  
  .book-appointment-button {
    width: 200px;
    height: 50px;
    border-radius: 50px;
    border: none;
    color: white;
    font-size: 16px;
    background-color: #292929;
  }
  
  button:focus,
  button:focus-visible {
    outline: 4px auto -webkit-focus-ring-color;
  }


input:focus,
textarea:focus,
select:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(100, 108, 255, 0.3);
  color: black;
}

/* Updated rule for autocomplete styling */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: #292929 !important;
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  transition: background-color 5000s ease-in-out 0s;
  caret-color: #292929; /* Ensures cursor is visible */
}

input, textarea {
  font-family: 'Nunito Sans', sans-serif;
}

  .team-section {
    padding-top: 50px;
  }
  
  .doctors-section {
    position: relative;
    width: 100%;
    overflow-x: hidden;
    padding: 0 20px;
  }
  
  .doctors-carousel {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    padding: 20px 0 30px;
    width: 100%;
    margin: 0 auto;
    justify-content: flex-start;
    scroll-behavior: smooth;
    scrollbar-width: thin;
  }
  
  /* Scrollbar styles for Firefox */
  .doctors-carousel::-webkit-scrollbar {
    height: 6px;
    background-color: transparent;
  }
  
  .doctors-carousel::-webkit-scrollbar-track {
    background-color: #e0e0e0;
    border-radius: 3px;
    margin: 0 20px; /* Add some space on the sides */
  }
  
  .doctors-carousel::-webkit-scrollbar-thumb {
    border-radius: 3px;
    transition: background-color 0.3s ease;
  }
  
  .doctor-card {
    flex: 0 0 auto;
    width: calc(100% - 40px);
    max-width: 262px;
    text-align: center;
    border-radius: 8px;
    padding: 15px;
    display: inline-block;
    scroll-snap-align: start;
  }
  
  .doctor-image {
    width: 100%;
    max-width: 262px;
    height: auto;
    max-height: 262px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
  }
  
  .doctor-card h3 {
    margin: 0 0 5px;
    font-size: 18px;
  }
  
  .doctor-card p {
    margin: 0;
    font-size: 14px;
    color: #666;
  }
  
  @media (prefers-color-scheme: light) {
    :root {
      color: #213547;
      background-color: #ffffff;
    }
    a:hover {
      color: #747bff;
    }
    /* button {
      background-color: #f9f9f9;
    } */
  }
  
  @media (max-width: 1024px) {
    .doctors-carousel {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      overflow-x: visible;
      white-space: normal;
    }
  
    .doctor-card {
      width: calc(50% - 20px);
      scroll-snap-align: unset;
    }
  
    .doctor-image {
      max-width: 200px;
      max-height: 200px;
    }
  }
  
  @media (max-width: 768px) {
  
    .doctor-card {
      width: 30%;
    }
  
    .doctor-image {
      max-width: 150px;
      max-height: 150px;
    }
  }
  
  @media (min-width: 768px) {
    .doctors-section {
      padding: 0 40px;
    }
  
    .doctor-card {
      width: calc(25% - 15px);
    }
    
  }

  .hero-section {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-left: 0;
	height: 94vh;
	position: relative;
}

#coming-soon {
	margin-left: 4%;
	margin-top: 100px;
}

#coming-soon a {
	text-decoration: underline;
}

.hero-content {
	display: flex;
	flex-direction: column;
	align-items: left;
	justify-content: left;
	padding-left: 4%;
	width: 40%;
	z-index: 2;
}

.hero-content h1 {
	font-size: 80px;
	margin-bottom: 0;
}

.hero-content h2 {
	font-size: 40px;
	margin-top: 10%;
}

.hero-content p {
	font-size: 25px;
	width: 80%;
}

#service-description {
	display: flex;
	justify-content: center;
	gap: 4%;
	margin-bottom: 100px;
}

.hero-image .sticky-note {
    box-shadow: -3px 3px 3px rgba(0, 0, 0, 0.15);
}
#service-description .sticky-note {
	max-width: 20%;
	min-width: 25%;
	padding: 20px;
	color: white;
	line-height: 2;
}

#service-description .sticky-note span {
	display: flex;
	align-items: center;
	gap: 20px;
}

#service-description .sticky-note p {
	font-size: 18px;
}

#service-description .sticky-note h3 {
	font-size: 26px;
	width: 40%;
	line-height: 30px;
}

.hero-content button,
#about-content button {
	width: 200px;
	height: 50px;
	border-radius: 50px;
	border: none;
	color: white;
	font-size: 16px;
	background-color: #292929;
}


.hero-image {
	width: 60%;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	background: linear-gradient(131.9deg, rgba(30, 168, 209, 0) 20.6%, rgba(30, 168, 209, 0.5) 90.87%);
	border-radius: 1400px 0px 0px 0px;
}

.hero-image img {
	width: 70%;
	object-fit: contain;
	border-radius: 20px;
	position: relative;
}

.hero-image .sticky-note svg {
	margin-top: 1%;
	width: 20px;
	height: 20px;
	background-color: white;
	padding: 8px;
	border-radius: 50%;
}
#about-section {
	padding-left: 4%;
	margin-top: 100px;
	display: flex;
	/* justify-content: flex-start; */
	/* gap: 5%; */
	margin-bottom: 200px;
	height: 100vh;
}

#about-content {
	margin-left: 80px;
	width: 60%;
	align-self: center;
	padding-right: 5%;
}

#about-content button {
	margin-top: 20px;
}

.about-images {
	width: 40%;
}

.about-images-container {
	display: flex;
	gap: 5%;
	height: 100%;
}

.about-images-column {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.about-images-column-center {
	/* height: 80%; */
	justify-content: center;
}

.about-image {
	object-fit: cover;
	height: 49%;
	width: 100%;
	border-radius: 10px;
}


.about-image-large {
	height: 80%;
}


.about-bulletpoints {
	display: flex;
	gap: 20%;
	margin-bottom: 20px;
}

.bulletpoint svg {
	background-color: #1B529E;
	border-radius: 50%;
	padding: 1px;
}

.bulletpoint {
	display: flex;
	gap: 10px;
	align-items: center;
}

#services-section {
	background-color: #E7F1FF;
	padding: 50px 0;
}


.book-appointment-button-container {
	display: flex;
	justify-content: center;
	margin-top: 50px;
}
#existing-patient-form > * , #new-patient-form > * {
    margin-bottom: 5%;
}
#existing-patient-form > label , #new-patient-form > label {
    margin-bottom: 1%;
}

#get-in-touch {
	background-color: #04B794;
	padding: 60px 80px;
	display: flex;
	justify-content: center;
	color: white;
	position: relative;
	width: 80%;
	margin: 100px auto -120px;
	border-radius: 50px;
	z-index: 10;
	box-sizing: border-box;
}

#get-in-touch-image {
	position: absolute;
	bottom: 0;
	left: 100px;
	height: 120%;
	width: auto;
	object-fit: cover;
}

#get-in-touch-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	z-index: 1;
}

#get-in-touch-content p {
	margin-bottom: 10px;
}

#get-in-touch-content h1 {
	font-family: 'Oswald', sans-serif;
	margin-top: 0;
	text-align: center;
	line-height: 70px;
}

#get-in-touch-content span {
	display: flex;
	gap: 20px;
}

#get-in-touch-content button {
	background: transparent;
	border: 1px solid white;
	border-radius: 20px;
	color: white;
	padding: 10px 20px;
	cursor: pointer;
	transition: background-color 0.3s, color 0.3s;
}

#get-in-touch-content button:hover {
	background-color: white;
	color: #04B794;
}



@media(min-width: 1441px) {

	.hero-image .sticky-note:first-of-type {
		margin-top: 50%;
		transform: translateX(-20%); /* Shifts the element 50px to the left */
	}

	.hero-image .sticky-note:last-of-type {
		margin-bottom: 50%;
		transform: translateX(-20%); /* Shifts the element 50px to the left */
	}

}


@media(max-width: 1440px) {

	.hero-content h1 {
		font-size: 70px;
	}
	.hero-content p {
		font-size: 20px;
	}
    .hero-image img {
        width: 60%;
    }

	.hero-image .sticky-note:first-of-type {
		margin-top: 40%;
		transform: translateX(-10%);
	}
	.hero-image .sticky-note:last-of-type {
		margin-bottom: 40%;
		transform: translateX(-10%);
	}

	.hero-image .sticky-note p {
		font-size: 14px;
	}
	.hero-image .sticky-note h4 {
		font-size: 16px;
	}

	.hero-image .sticky-note svg {
		padding: 5px;
		/* height: 20px; */
	}
}


/* Tablet styles */
@media (max-width: 1024px) {
	.hero-section {
		height: auto;
		margin-bottom: 50px;
	}
	#get-in-touch {
		padding: 20px 40px;
		min-width: 90%;
		max-width: 90%;
	}
	#coming-soon {
		font-size: 30px;
		margin-top: 0;
		margin-left: 0;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	#get-in-touch-image {
		display: none;
	}

	#get-in-touch-content {
		width: 100%;
		margin: auto;
		text-align: center;
	}

	#get-in-touch {
		padding: 20px 40px;
		min-width: 90%;
		max-width: 90%;
	}

	#get-in-touch-image {
		display: none;
	}

	#get-in-touch-content {
		width: 100%;
		margin: auto;
		text-align: center;
	}

	#get-in-touch span {
		justify-content: center;
	}

	.hero-section {
		flex-direction: column;
		justify-content: center;
	}

	.hero-content {
		width: 80%;
		padding: 20px 4%;
		padding-bottom: 50px;
		text-align: center;
		align-items: center;
	}

	.hero-content h1 {
		font-size: 48px; /* Reduced from 80px */
	}

	.hero-content p {
		font-size: 18px; /* Slightly reduced from 20px */
	}

	.hero-image {
		width: 100%;
		height: auto;
		background: none;
		border-radius: 0;
		display: flex;
		flex-direction: row; /* Change to row for sticky notes */
		justify-content: center;
		align-items: flex-start;
		padding: 0;
		gap: 25px;
	}

	.hero-image img {
		display: none; /* Hide the image */
	}

	.hero-image .sticky-note:first-of-type {
		margin-top: 0;
		transform: translateX(0);
	}
	.hero-image .sticky-note:last-of-type {
		margin-bottom: 0;
		transform: translateX(0);
	}
	.hero-image .sticky-note {
		position: static;   
		width: 40%;
		padding: 20px;
		height: auto;
		max-width: 150px;
	}  
	.hero-image .sticky-note p {
		font-size: 12px;
		width: 70%;
	}
	.hero-image .sticky-note h4 {
		font-size: 16px;
		margin-top: 10px;
		margin-bottom: 10px;
	}
	.hero-image .sticky-note svg {
		height: 20px;
		width: 20px;
	}

	#about-section {
		flex-direction: column;
		height: auto;
		padding: 5%;
		margin-bottom: 0;
		margin-top: 50px;
	}

	#about-section h1, #about-section p {
		text-align: center;
	}

	#about-content {
		display: flex;
		flex-direction: column;
		width: 100%;
		margin-left: 0;
		padding-right: 0;
		margin-bottom: 50px;
	}

	.about-bulletpoints {
		justify-content: space-around;
	}

	#about-content button {
		align-self: center;
	}

	.about-images-container {
		display: none;
	}
	#service-description {
		flex-wrap: wrap;
		justify-content: center;
	}

	#service-description .sticky-note {
		margin-bottom: 20px;
	}

	#service-description .sticky-note span {
		gap: 10px;
	}

	#service-description img {
		width: 20px;
		height: 20px;
	}

	#service-description .sticky-note p {
		font-size: 12px;
	}

	#service-description .sticky-note h3 {
		font-size: 20px;
		width: 100%;
		line-height: 1;
	}


}


/* Mobile styles */
@media (max-width: 768px) {
	#get-in-touch {
		display: block;
		width: 100%;
		padding: 20px;
		margin: 50px auto;
		/* margin-top: 50px; */
		border-radius: 20px;
		/* border-top-left-radius: 20px; */
		/* border-top-right-radius: 20px; */
		position: static;
	}

	#get-in-touch-image {
		display: none;
	}

	#get-in-touch-content {
		width: 100%;
		padding: 0;
	}

	#get-in-touch h1 {
		font-size: 24px;
		line-height: 1.3;
		margin-bottom: 20px;
	}

	#get-in-touch-content span {
		width: 100%;
		flex-direction: column;
		align-items: center;
		gap: 5px;
	}

	#get-in-touch-content button {
		width: 60%;
		max-width: 200px;
		margin-bottom: 10px;
	}

	#get-in-touch-content p {
		font-size: 16px; /* Further reduced for mobile */
	}

	#get-in-touch-content h1 {
		font-size: 24px;
		line-height: 1.3;
	}

	#get-in-touch-content button {
		font-size: 16px;
		padding: 10px 20px;
	}

	.hero-content h1 {
		font-size: 45px; /* Further reduced for mobile */
	}

	.hero-content p {
		font-size: 16px; /* Further reduced for mobile */
	}

	.hero-image .sticky-note {
		width: 100%;
		height: auto;
		max-width: 200px; /* Limit maximum width */
		border-radius: 20px;
		padding: 10px;
		margin-bottom: 10px; /* Add space between sticky notes */
	}

	.hero-image {
		flex-direction: column;
		align-items: center;
	}

	.hero-image .sticky-note h4 {
		margin: 0;
		margin-top: 3%;
	}

	.hero-image .sticky-note svg {
		margin-top: 1%;
		width: 20px;
		height: 20px;
	}

	.hero-image .sticky-note p {
		font-size: 12px;
	}

	.hero-content button,
	#about-content button {
		width: 100%;
		max-width: 200px;
	}

	.about-bulletpoints {
		flex-direction: column;
		gap: 10px;
	}

}

/* Small mobile styles */
@media (max-width: 480px) {

	.hero-section {
		margin-top: 80px;
	}

	.hero-image .sticky-note h4 {
		font-size: 18px;
	}

	.hero-image .sticky-note p {
		font-size: 16px;
		width: 80%;
	}

	.hero-image .sticky-note svg {
		height: 15px;
		width: 15px;
	}

	.hero-image {
		margin-top: 10%;
		margin-bottom: 20%;
	}

	#coming-soon  {
		margin-top: 50px;
	}

	#get-in-touch {
		padding: 15px;
	}

	#get-in-touch-content p {
		font-size: 12px;
	}

	#get-in-touch-content h1 {
		font-size: 28px;
		line-height: 35px;
	}

	#get-in-touch-content button {
		font-size: 14px;
		padding: 5px 10px;
		border-radius: 10px;

	}

	#service-description .sticky-note,
	#service-description .sticky-note:last-child {
		max-width: 70%;
		min-width: 70%;
	}

	#get-in-touch-content p {
		font-size: 10px;
	}
}

#navbar-main-container {
    top: 0;
    left: 0;
    right: 0;
    /* width: 100%; */
    z-index: 1001;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
}

#navbar-main-container h2 {
	font-family: "Oswald";
}

#logo {
    max-width: 300px;
    min-width: 300px;
    height: auto;
    cursor: pointer;
}

#navbar-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-grow: 1; /* Added to allow the links container to grow */
}

.navbar-link {
    margin: 0 15px;
    color: var(--primary-black);
    cursor: pointer;
    position: relative;
    user-select: none;
}

.navbar-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -3px;
    left: 0;
    background-color: currentColor;
    transition: width 0.3s ease;
}

.navbar-link:hover::after,
.navbar-link.active::after {
    width: 100%;
}

.services-dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    margin-top: 3px;
    background-color: white;
    min-width: 160px;
    z-index: 1;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.1s ease, visibility 0.1s ease;
    pointer-events: none; /* Prevent hover from expanding the hoverable area */
}

.services-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto; /* Re-enable pointer events when dropdown is visible */
}

.dropdown-content div {
    color: var(--primary-black);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    opacity: 0;
    transform: translateY(-5px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    /* transition-delay: 0.1s; */
}

.services-dropdown:hover .dropdown-content div {
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content div:hover {
    background-color: #f1f1f1;
}

@media(max-width: 1024px) {
    #logo {
        max-width: 250px;
        min-width: 250px;
    }
    .navbar-link {
        font-size: 12px;
    }
	#coming-soon {
		flex-direction: column;
	}
}

@media (max-width: 767px) {
    #navbar-main-container {
        padding: 15px;
    }

    #logo {
        max-width: 200px;
        min-width: 200px;
    }

    #navbar-links {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: white;
        z-index: 1002;
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    #navbar-links.show {
        opacity: 1;
        visibility: visible;
    }

    .navbar-link {
        margin: 10px 0;
        padding: 10px 0;
        font-size: 1.2rem;
        text-align: center;
        width: 100%;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    #navbar-links.show .navbar-link {
        opacity: 1;
        transform: translateY(0);
    }

    .burger-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 25px;
        cursor: pointer;
        z-index: 1003;
    }

    .burger-menu div {
        width: 100%;
        height: 2px;
        background-color: currentColor;
        transition: all 0.3s ;
    }

    .burger-menu.open div:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger-menu.open div:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.open div:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .mobile-service-options {
        padding-top: 50%;
        box-sizing: border-box;
    }
}

.mobile-service-options {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%; /* Adjust as needed */
    height: 100%;
    background-color: white;
    z-index: 1003;
    padding: 20px;
    padding-top: 50%;
    overflow-y: auto;
}

.mobile-service-options.slide-in {
    animation: slideIn 0.3s ease-out forwards;
}

.mobile-service-options.slide-out {
    animation: slideOut 0.3s ease-out forwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

.back-button {
    font-weight: bold;
    margin-bottom: 10px;
}


/* #service-page-container h1 {
    margin-bottom: 50px;
} */

.service-card-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px;
}


.service-card {
    padding: 10px;
    padding-bottom: 0;
    border-radius: 10px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    cursor: pointer;
    box-shadow: 0;
    transition: box-shadow 0.3s;
    display: flex;
    background-color: white;
    flex-direction: column;
    align-items: left;
    width: calc(33.33% - 20px); /* 3 cards per row, accounting for gap */
    max-width: 300px;
    overflow: hidden;
}
#service-page-header {
    margin-left: 4%;
    margin-bottom: 70px;
    font-family: 'Oswald';
}
  
.service-card:hover {
    box-shadow: -10px 10px 10px rgba(0, 0, 0, 0.15);
}

.service-card:hover > .service-image {
    transform: scale(1.065);
}

.service-image {
    height: 70%;
    width: auto;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: transform 0.3s;
  }
  
  .service-card h2 {
    margin-top: 10px;
    margin-bottom: 0;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 21px;
  }

.service-card p {
    margin:5px 0;
}


.service-card-container .service-card {
    min-width: 25%;
}


@media (max-width: 768px) {

    .service-card-container .service-card {
        width: 80%;
    }

    #service-page-container h1 {
        text-align: center;
    }

    #service-page-header {
        margin-left: 0;
    }
}

.short-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    margin-bottom: 100px;
}

.short-hero-header {
    font-size: 26px;
    text-align: center;
    width: 50%;
}

.short-hero-header h1 {
    margin-top: 0;
}

.short-hero-header h3 {
    font-size: 30px;
    margin-top: 0;
    text-align: center;
}

.short-hero .sticky-note {
    display: flex;
    flex-direction: column;
    padding: 18px;
    padding-right: 0;
    margin: 0 140px;
    box-shadow: 2px 2px 10px rgba(84, 84, 84, 0.1);
    border-radius: 20px;
    max-width: 220px;
}

.short-hero .sticky-note h4 {
    margin-bottom: 0;
    margin-top: 10px;
    font-size: 24px;
}

.short-hero .sticky-note p {
    max-width: 90%;
}

.short-hero .sticky-note svg {
    align-self: flex-end;
    background-color: white;
    border-radius: 50%;
    padding: 4px;
    box-sizing: content-box;
}



.gradient-background {
    display: flex;
    justify-content: center;
    align-items: center;
}

.left-gradient {
    background: radial-gradient(circle at bottom left, rgba(4, 183, 148, 0.5) 0%, rgba(218, 245, 240, 0) 75%);
    border-radius: 0 100% 0 0;
    width: 100%;
    max-width: 460px;
    aspect-ratio: 460 / 400;
}

.left-gradient .sticky-note {
    margin-left: 20px;
    min-width: 150px;
}

.right-gradient .sticky-note {
    min-width: 150px;
    margin-right: 20px;
}

.right-gradient {
    background: radial-gradient(circle at bottom right, rgba(30, 168, 209, 0.5) 0%, rgba(30, 168, 209, 0) 75%);
    border-radius: 100% 0 0 0;
    width: 100%;
    max-width: 460px;
    aspect-ratio: 560 / 500;
    margin-left: auto; /* This pushes the element to the right */
}

@media(max-width: 1700px) {
    .short-hero-header h3 {
        font-size: 24px;
    }

    .short-hero-header h1 {
        font-size: 70px;
        margin-bottom: 15px;
    }
}

@media (max-width: 1440px) {

    .short-hero-header {
        margin-bottom : 20px;
    }
    .short-hero-header h3 {
        font-size: 16px;
    }

    .short-hero-header h1 {
        font-size: 70px;
        margin-bottom: 20px;
    }

    .short-hero .sticky-note h4 {
        margin-bottom: 0;
        font-size: 20px;
    }
    
    .short-hero .sticky-note p {
        max-width: 90%;
        font-size: 14px;
    }

}
@media (max-width: 1024px) {
    .short-hero {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 40px;
        margin-top: 70px;
    }

    .short-hero-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 26px;
        text-align: center;
        width: 100%;
        order: -1; /* Ensures the header always comes first */
    }

    .short-hero-header h1 {
        font-size:50px;
    }
    .short-hero-header h3 {
        width: 80%;
    }

    .gradient-background {
        width: 100%;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
        background: none;
    }

    .left-gradient,
    .right-gradient {
        background: none;
        max-width: 100%;
        border-radius: 0;
        margin: 0;
        width: auto;
    }

    .short-hero .sticky-note {
        display: flex;
        margin: 0;
        max-width: 200px; /* Maintain max-width from larger screens */
    }
    .short-hero .sticky-note h4 {
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .gradient-background {
        padding: 1rem;
    }

    .short-hero {
        gap: 10px;
    }
    .short-hero-header {
        font-size: 30px;
        width: 80%;
    }

    .short-hero-header h1 {
        font-size: 50px;
        margin-bottom: 20px;
    }
    

    .short-hero-header h3 {
        font-size: 14px;
        width: 100%;
    }

    .short-hero .sticky-note {
        max-width: 200px;
    }
  
	.short-hero .sticky-note h4 {
		margin-top: 0;
	}
    
    .gradient-background {
        padding: 0;
    }
}

.registration-form {
    margin: 5%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
}

.registration-form form {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Increased from 10px */
    width: 100%;
    max-width: 600px; /* Added max-width for larger screens */
}

.appointment-div {
    flex-direction: row;
}

/* Customize the outer toast container */
.custom-toast-container {
    background-color: #f0f0f0;  /* Light background color */
    border-radius: 8px;         /* Rounded corners */
    padding: 16px;              /* Padding around the toast */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);  /* Soft shadow */
  }
  
  /* Customize the inner toast content */
  .custom-toast-body {
    color: #213547;             /* Text color */
    font-family: 'Oswald', sans-serif; /* Custom font family */
    font-size: 16px;            /* Font size */
  }
  
  /* Optional: Add a more subtle close button styling */
  .Toastify__close-button {
    color: #213547;             /* Close button color */
  }
  
.form-row {
    display: flex;
    gap: 50px;
}



/* For older browsers */
.registration-form input::-webkit-input-placeholder,
.registration-form textarea::-webkit-input-placeholder {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    font-style: italic;
    color: #999;
}

.registration-form input::-moz-placeholder,
.registration-form textarea::-moz-placeholder {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    font-style: italic;
    color: #999;
}

.registration-form input:-ms-input-placeholder,
.registration-form textarea:-ms-input-placeholder {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    font-style: italic;
    color: #999;
}



  .radio-options {
    display: flex;
    gap: 20px;
  }

  .radio-options.checkbox {
    flex-direction: column;
    align-items: flex-start;
  }

  .radio-options label {
    display: flex;
    align-items: center;
    margin-left: 3%;    
    white-space: nowrap;
    gap: 5%;
    margin-top: 0;
}

.radio-options label:first-child {
	margin-left: 0;
}

.doctor-selection {
    gap: 40px;
}

.doctor-selection label {
    margin-left: 0;
}
  
  .radio-options input[type="radio"], .radio-options .checkbox-inp {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid #ccc;
    border-radius: 4px; /* Make it square */
    display: inline-block;
    position: relative;
    cursor: pointer;
  }
  
  .radio-options input[type="radio"]:checked,  .checkbox-inp:checked {
    background-color: #1B529E; /* Blue background when checked */
  }
  
  .radio-options input[type="radio"]:checked::after, .checkbox-inp:checked::after {
    content: ''; /* Create a pseudo-element for the tick */
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #1B529E; /* Match background color */
  }
  .radio-options input[type="radio"]:checked::after, .checkbox-inp:checked::after {
    content: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' height='20px' viewBox='0 -960 960 960' width='20px' fill='000'><path d='M382-240 154-468l57-57 171 171 367-367 57 57-424 424Z'/></svg>");
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .form-header {
    margin-left: 3%;
}

#doctors-container {
	display: flex;
	gap: 8%;
	justify-content: space-between;
	align-items: stretch;
	margin: 50px 4%;
}

#doctors-container div {
	height: 100%;
}

#doctors-container img {
	border-radius: 20px;
	width: 40%;
	object-fit: cover;
}

#doctors-container .separator {
	width: 1px;
	background-color: black;
	height: 100%;
}

.registration-form input,
.registration-form textarea,
.registration-form select {
    width: 100%;
	font-family: 'Nunito Sans';
    padding: 12px; /* Increased from 10px */
    border: 1px solid #bbb;
    border-radius: 10px;
    background-color: white;
    color: #292929;
    margin: 10px 0; /* Added vertical margin */
    font-size: 16px; /* Added font size for text in the input */
}

.registration-form textarea {
    resize: vertical;
    min-height: 120px; /* Increased from 100px */
}

.appointment-div textarea {
    resize: none;
}

@media (max-width: 1440px) {
    .registration-form input,
    .registration-form textarea {
        max-width: 100%;
        font-size: 14px;
    }

    
    #appointment-form input,
    #appointment-form textarea, 
    #appointment-form select {
        max-width: 80%;
        font-size: 14px;
    }


    .form-row {
        gap: 10%;
        justify-content: space-between;
        /* width: 80%; */
    }
    #appointment-form .form-row {
        gap: 10%;
        width: 80%;
        justify-content: space-between;
        /* width: 80%; */
    }
    .form-row > div {
        max-width: 40%;
        min-width: 40%;
    }

    
    .form-row > div > input{
        min-width: 100%;
        max-width: 100%;
    }
}

@media screen and (max-width: 1200px) {
	#doctors-container {
		flex-direction: column;
		align-items: center;
	}
	#doctors-container div {
		width: 100%;
	}
	#doctors-container img {
		width: 90%;
		max-height: 600px;
	}
	#doctors-container .separator {
		height: 1px;
		margin: 40px 0;
		width: 100%;
	}
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .registration-form {
        justify-content: center;
        margin-left: 5%;
        margin-right: 5%;
    }

    .registration-form label {
        font-size: 22px;
    }

    .registration-form input::placeholder,
    .registration-form textarea::placeholder {
        font-size: 20px;
    }


    .radio-options {
        flex-direction: column;
    }

	#appointment-form input[type="radio"] {
		min-width: 0;
	}
        
    #appointment-form input,
    #appointment-form textarea,
    #appointment-form .form-row {
        min-width: 100%;
    }

    .registration-form input,
    .registration-form textarea {
        width: 100%;
        font-size: 24px;
        padding: 14px;
        margin-bottom: 20px;
        box-sizing: border-box;
        border-radius: 15px;
    }

    .form-header h1 {
        font-size: 40px;
    }

    .form-header p {
        font-size: 16px;
        padding-right: 1%;
    }

    .registration-form form {
        width: 100%;
        max-width: none;
    }

    .registration-form .book-appointment-button {
        align-self: center;
        margin-top: 50px;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .form-row > div {
        min-width: 100%;
        max-width: 100%;
    }

}

/* Responsive adjustments */
@media (max-width: 768px) {
    .registration-form {
        flex-direction: column;
    }

    .registration-form input::placeholder,
    .registration-form textarea::placeholder {
        font-size: 16px;
    }

    
    .registration-form input,
    .registration-form textarea {
        font-size: 18px;
    }
    .registration-form label {
        font-size: 18px;
    }


    .registration-form form {
        width: 100%;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }



}


@media (max-width: 480px) {
    
    .form-header {
        width: 85%;
    }

    .form-header h1 {
        font-size: 30px;
    }
    .form-header p {
        font-size: 15px;
    }

    .registration-form form {
        gap: 10px;
    }


    .radio-options label{
        font-size: 10px;
    }

    .registration-form label {
        font-size: 16px;
        margin-top: 10px;
    }

    .registration-form input {
        padding: 8px;
        padding-left: 10px;
        border-radius: 10px;
    }
    .radio-options input[type="radio"] {
        width: 15px;
        height: 15px;
        margin-right: 2px;
    }
    
    
    .registration-form input::placeholder,
    .registration-form textarea::placeholder {
        font-size: 14px;
    }
}



/* Styling for date and time icons */

/* Webkit (Chrome, Safari, newer versions of Opera) */
.registration-form input[type="date"]::-webkit-calendar-picker-indicator,
.registration-form input[type="time"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    filter: invert(50%) sepia(0%) saturate(0%) hue-rotate(246deg) brightness(95%) contrast(90%);
}

/* Mozilla Firefox */
.registration-form input[type="date"]::-moz-calendar-picker-indicator,
.registration-form input[type="time"]::-moz-calendar-picker-indicator {
    cursor: pointer;
    filter: invert(50%) sepia(0%) saturate(0%) hue-rotate(246deg) brightness(95%) contrast(90%);
}

/* Internet Explorer 10+ */
.registration-form input[type="date"]::-ms-clear,
.registration-form input[type="time"]::-ms-clear {
    cursor: pointer;
    filter: invert(50%) sepia(0%) saturate(0%) hue-rotate(246deg) brightness(95%) contrast(90%);
}

/* Standard syntax (future-proofing) */
.registration-form input[type="date"]::-calendar-picker-indicator,
.registration-form input[type="time"]::-calendar-picker-indicator {
    cursor: pointer;
    filter: invert(50%) sepia(0%) saturate(0%) hue-rotate(246deg) brightness(95%) contrast(90%);
}

/* Additional styling for time inputs */
.registration-form input[type="time"]::-webkit-time-picker-indicator {
    cursor: pointer;
    filter: invert(50%) sepia(0%) saturate(0%) hue-rotate(246deg) brightness(95%) contrast(90%);
}

.registration-form input[type="time"]::-moz-time-picker-indicator {
    cursor: pointer;
    filter: invert(50%) sepia(0%) saturate(0%) hue-rotate(246deg) brightness(95%) contrast(90%);
    cursor: pointer;
}

.registration-form input[type="time"]::-ms-time-picker-indicator {
    cursor: pointer;
    filter: invert(50%) sepia(0%) saturate(0%) hue-rotate(246deg) brightness(95%) contrast(90%);
}



.form-header {
    align-self: flex-start;
    margin-left: 5%;
    margin-top: 7%;
}


.form-row {
    display: flex;
    gap: 50px;
}

.form-row > div {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.appointment-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 15px;
    margin-bottom: 50px;
}

.appointment-images img:first-child {
    grid-column: 1 / span 2; /* Make the first image take up two columns */
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.appointment-images img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}


@media (max-width: 1440px) {

    .appointment-images {
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
        gap: 20px;
    }

    .appointment-images img {
        object-fit: cover;
    }
}

@media (max-width: 1024px) {


    .appointment-images {
        display: none;
    }

    .form-header {
        margin-left: 3%;
    }

    .form-header h1 {
        font-size: 30px;
    }

    .form-row {
        flex-direction: column; /* Stack date and time inputs vertically */
        gap: 25px; /* Increased gap between stacked inputs */
    }

    .form-row > div {
        width: 100%; /* Ensure date and time inputs take full width */
    }
	.radio-options label {
		margin-left: 0;
	}
}

@media (max-width: 480px) {
   
    .short-hero-header h1 {
        font-size: 50px;
    }

   
    .form-header {
        margin-left: 4.5%; /* Adjust margin to match form width */
    }

    .form-header h1 {
        font-size: 40px;
    }

    .form-header p {
        font-size: 18px; /* Slightly reduce paragraph size for very small screens */
    }


}

#footer-container {
    background-color: #1B529E;
    width: 100%;
    color: white;
    padding: 50px 0 8px;
    box-sizing: border-box;
    background-image: url(../images/Group.png);
    background-size: contain;
    background-position: 5% center;
    background-repeat: no-repeat;
}

#footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    padding-top: 50px;
    margin-top: 50px;
}

#footer-left {
    flex: 0 0 100%;
    max-width: 400px;
    margin-bottom: 40px;
}

#footer-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 20px;
    cursor: pointer;
}

#footer-description {
    font-size: 0.9em;
    line-height: 1.6;
    margin-bottom: 30px;
}

#footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.8em;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 100px;
    gap: 10%;
}

#footer-copyright {
    display: flex;
	align-items: center; /* Align items on the same level */
	font-size: 16px; /* Set the desired font size */
}

#footer-copyright img {
	height: 1.4em; /* Match the image height to the font size */
	margin-left: 8px; /* Optional: Add some space between the text and the image */
}

#footer-contacts {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

#footer-contacts .footer-subtext {
	margin-bottom: 0;
}
#footer-copyright {
    color: rgba(255, 255, 255, 0.7);
}

#footer-powered-by {
    display: flex;
    align-items: center;
}

#footer-powered-by img {
    margin-left: 10px;
    max-height: 20px;
    width: auto;
}

#footer-links, #footer-services {
    max-width: 250px;
    margin-bottom: 30px;
}


#footer-links *, #footer-services * {
	text-align: left;
}

.footer-section-title {
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Oswald', Times, serif;
}

.footer-subtext {
    display: block;
    color: #FAFAFA;
    text-align: center;
    font-weight: 200;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 0.9em;
}

.footer-subtext:hover {
    color: var(--primary-yellow);
}

@media screen and (max-width: 768px) {
    #footer-content {
        flex-direction: column;
        align-items: center;
        margin-top: 0;
        padding-top: 0;
    }

    #footer-container {
        background-image: none;
        padding-top: 30px;
    }

    #footer-left, #footer-links, #footer-services {
        max-width: 100%;
        text-align: center;
    }

    #footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    #footer-powered-by {
        order: -1;
    }
}

@media screen and (max-width: 480px) {
    #footer-container {
        padding: 40px 0 20px;
    }

    #footer-logo {
        max-width: 120px;
    }

    #footer-description {
        font-size: 0.8em;
    }

    #footer-copyright {
        font-size: 10px;
        text-align: center;
    }

    .footer-section-title {
        font-size: 1.5em;
    }

    .footer-subtext {
        font-size: .9em;
    }
}
