@font-face {
    font-family: 'Arial, sans-serif';
    src: url('fonts/AnyConv.com__arial.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Montserrat-Regular';
    src: url('fonts/AnyConv.com__Montserrat-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: '_Montserrat-Medium';
    src: url('fonts/AnyConv.com__Montserrat-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: '"Montserrat", sans-serif';
    src: url('fonts/AnyConv.com__Montserrat-Bold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}


/* Root Variables */
:root {
	--background-color: #F0F9FF;
	/* Light beige */
	--primary-color: #ffffff;
	/* Blue */
	--secondary-color: #F0F9FF;
	/* Light grey */
	--text-color: #333;
	/* Dark grey for text */
	--accent-color: #0056b3;
	/* Darker blue for hover effects */
	--heading-font: 'Arial', serif;
	--body-font: 'Arial', sans-serif;
	--button-bg-color: #0000C7;
	--button-hover-bg-color: #000000;
}
.bold {
    font-weight: bold;
}
.red {
    color: red;
}
.hero-img-title.bold {
    font-size: 25px;
    margin-bottom: 15px;
}
.validation-section h2 {
    margin-bottom: 40px;
    text-align: center;
    font-size: 30px;
}
section.about-more-section.img-with-text {
    display: none;
}
/* General Reset */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: var(--body-font);
	color: var(--text-color);
	/* background-color: var(--background-color); */
	line-height: 1.6;
}

img {
	height: auto;
	width: 100%;
	max-width: 100% !important;
	display: block;
}

.container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 30px;
}

/* Utility Classes */
.text-center {
	text-align: center;
}

.text-primary {
	color: var(--primary-color);
}

.bg-secondary {
	background-color: var(--secondary-color);
}

.bg-primary {
	background-color: var(--primary-color);
}

.text-white {
	color: #fff;
}

section {
	padding: 50px 0 !important;
}

.btn {
	display: inline-block;
	padding: 12px 25px;
	font-size: 1rem;
	text-decoration: none;
	border-radius: 5px;
	color: #fff;
	background-color: var(--button-bg-color);
	transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
	background-color: var(--button-hover-bg-color);
	transform: scale(1.05);
}

@keyframes moveTopBottomLeftRight {
	0% {
		transform: translate(0, 0);
	}

	25% {
		transform: translate(8px, -8px);
	}

	50% {
		transform: translate(-9px, 9px);
	}

	75% {
		transform: translate(11px, -21px);
	}

	100% {
		transform: translate(0, 0);
	}
}
.step.half-complate {
    display: none !important;
}
/* Header Styles */
.header {
	background-color: var(--background-color);
	box-shadow: 1px 2px 22px 5px gray;
	padding: 15px 20px;
	z-index: 999;
}

.header-container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo img {
	height: 60px;
    width: auto;
    object-fit: scale-down;
}
.logo a {
 display: flex;
    width: 50%;
    gap: 15px;
    align-items: center;
}
.contact {
	display: flex;
	align-items: center;
}

header .cta:hover {
	background-color: #79f033;
	color: #000000;
}

.contact-link {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: var(--primary-color);
	font-size: 1rem;
	transition: color 0.3s ease;
}

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

.contact-link .icon {
	margin-right: 8px;
	font-size: 1.2rem;
}

.phone-number {
	font-weight: bold;
}

/* Mobile Menu Button */
.menu-btn {
	display: none;
	font-size: 1.5rem;
	color: var(--primary-color);
	cursor: pointer;
}

/* Hero Section */
.hero-section {
	background-color: var(--background-color);
	padding: 60px 20px;
	padding-bottom: 0;
	position: relative;
}

.stylish-svg-shape-icon.medi-anim_two-right {
	position: absolute;
	top: calc(14% - 10px);
	right: calc(8% - 100px);
	animation: moveTopBottomLeftRight 6s ease-in-out infinite;
}

.stylish-svg-shape-icon.medi-anim_two-left {
	position: absolute;
	bottom: calc(14% - 10px);
	left: calc(8% - 100px);
	animation: moveTopBottomLeftRight 6s ease-in-out infinite;
}

.hero-wrapper {
	display: flex;
	align-items: start;
	justify-content: space-between;
	gap: 30px;
}

.hero-content {
	flex: 1;
	padding-right: 20px;
}

.hero-content h1 {
	font-family: var(--heading-font);
	font-size: 2.5rem;
	color: var(--text-color);
	line-height: 1.4;
	margin-bottom: 20px;
}

.hero-content p {
	font-size: 1.3rem;
	color: #555;
	line-height: 1.6;
	margin-bottom: 20px;
}

.hero-content ul {
	list-style-type: disc;
	padding-left: 20px;
	margin-bottom: 20px;
}

.hero-content ul li {
	font-size: 1rem;
	color: #555;
	margin-bottom: 10px;
}

.hero-image {
	flex: 1;
	text-align: center;
}

.hero-image img {
	max-width: 100%;
	height: auto;
	border-radius: 15px;
}

/* Section 1: Why Choose Us */
.why-choose-us {
	padding: 2rem 0;
	background-color: var(--secondary-color);
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	align-items: center;
	position: relative;
}

.content {
	flex: 1;
}

.content h4 {
	color: var(--primary-color);
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
}

.content h1 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
}

.info-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

header .contact a {
	background: white;
	color: black;
	font-weight: 700;
	background: url(./img/phone-icon.webp) 0 11px / 23px auto no-repeat rgba(0, 0, 0, 0);
    font-size: 35px;
    padding: 0 0 0 35px;
    line-height: 40px;
    transition: all 0.3s linear;
    
}
header .contact a:hover {
    filter: drop-shadow(2px 4px 6px black);
}
.info-item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	border-radius: 20px;
	border: 1px solid #0d5b857d;
	box-shadow: 0px 0px 5px 1px #126c9c69;
	padding: 40px 30px;
	background: white;
}

.icon {
	font-size: 2rem;
	margin-bottom: 0.5rem;
	color: var(--primary-color);
}

.info-item h3 {
	font-size: 1.4rem;
	margin-bottom: 0.5rem;
}

.info-item p {
	font-size: 0.9rem;
	color: #666;
}

/* Section 2: Consultation */
.consultation {
	flex: 1;
	text-align: center;
}

.consultation img {
	max-width: 100%;
	border-radius: 5px;
	margin-bottom: 1rem;
}

.consultation h2 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.cta {
	display: inline-block;
	padding: 0.7rem 1.5rem;
	font-size: 1rem;
	color: var(--primary-color);
	text-decoration: none;
	border: 1px solid #0476fb;
	border-radius: 5px;
	transition: all 0.3s ease;
	background: var(--button-bg-color);
}

section.about-more-section.conte-video {
	position: relative;
}

.cta:hover {
	background-color: var(--button-hover-bg-color);
	color: #fff;
	border-color: var(--button-hover-bg-color);
}

/* Section 3: Additional Content */
.additional-content {
	padding: 4rem 0;
	position: relative;
	background-image: url('././img/360_F_868412167_OSA4lza1jQ8L2zLGLfUTvFQ0E3qvhZPn.webp');
	background-size: cover;
	background-attachment: fixed;
}

.additional-content::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgb(0 0 0 / 65%);
	/* Dark overlay */
	z-index: 1;
}

.consultation-text {
	margin-top: 20px;
}

.additional-content .container {
	position: relative;
	z-index: 2;
}

.additional-content h2,
.additional-content p,
.additional-content h3 {
	color: #fff;
}

.additional-content h2 {
	font-size: 2rem;
	margin-bottom: 1rem;
}

.additional-content h3 {
	margin-top: 1.5rem;
	font-size: 1.5rem;
}

.additional-content p {
	margin-bottom: 1rem;
	line-height: 1.6;
}

section {
	padding: 50px 0;
}

header.header {
	background-image: url(https://doctornutritionprogram.com/images/header-bg.webp);
	background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center center;
}

/* Validation Section */
.validation-section {
	background-color: #fff;
	background: url(././img/35f6f2_e44e859fdd4f4f369ae62018cd80a541~mv2.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.info-item img {
	max-width: 60%;
	margin: 0 auto;
}

.validation-section h4 {
	font-size: 1.2rem;
	color: var(--primary-color);
	margin-bottom: 0.5rem;
	text-align: center;
}

.validation-section h1 {
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
	margin-bottom: 2rem;
	color: var(--text-color);
}

/* Features Grid */
.features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.feature-item {
	background-color: var(--secondary-color);
	border: 1px solid #e0e0e0;
	padding: 1.5rem;
	border-radius: 8px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	background-image: url(https://doctornutritionprogram.com/images/header-bg.webp);
}

section.about-more-section.img-with-text .hero-wrapper {
	gap: 70px;
}

.feature-item h3 {
	font-size: 1.2rem;
	color: #7def2c;
	margin-bottom: 1rem;
}

.feature-item p {
	font-size: 0.95rem;
	color: #000;
}

.feature-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

footer {
	padding: 20px;
	background: #83e340;
}

footer .footer-info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	font-size: 18px;
	font-weight: 600;
	font-family: "Montserrat", sans-serif;
}

footer .footer-info a {
	color: #000;
	text-decoration: none;
	transition: sll 0.3s linear;
}

footer .footer-info a:hover {
	color: #000;
}

section.about-more-section.img-with-text {
	background: #b7d0e6;
}

/*form css*/
/* Style for invalid fields */
    input:invalid, select:invalid, textarea:invalid {
        border: 2px solid red;
    }
    
    /* Style for valid fields */
    input:valid, select:valid, textarea:valid {
        border: 2px solid green;
    }
    
    /* Optional: Custom message for invalid fields */
    input:invalid + span::before,
    select:invalid + span::before,
    textarea:invalid + span::before {
        content: '⚠ Please fill out this field';
        color: red;
        display: block;
        font-size: 0.9em;
        margin-top: 5px;
    }
    
    input.error:placeholder{
        color: red !important;
    }
    input.error,
    select.error {
        border-color: red !important;
    }
    
    input.error:focus,
    select.error:focus {
        outline-color: red !important;
    }
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap');

:focus-visible {
	outline: #035287 auto 1px;
	outline-offset: 0;
}
.form-group-activities .activities-group .form-group-checkbox label {
    cursor: pointer;
}

.form-group-full .form-group-checkbox label {
    cursor: pointer;
}
.form-main {
	background: url(https://doctorsnutritionprogram.com/images/banner.webp) 0 0 / 100% 100% no-repeat rgba(0, 0, 0, 0);
	background-attachment: fixed;
}

.form-container {
	max-width: 1000px;
	margin: auto;
	background: #F0F9FF;
	border-radius: 10px;
	padding: 20px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.form-header {
	text-align: center;
	margin: 15px 0;
}

.form-header h2 {
	font-size: 1.8rem;
	color: #0d5178;
	font-family: "Montserrat", sans-serif;
}

.form-step {
	display: none;
}

.form-step.active {
	display: block;
}

.form-step .feild-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 15px;
}

.form-group {
	width: calc(50% - 15px);
}

.form-group-checkbox label {
	margin: 0 !important;
}

.form-terms {
	text-align: center;
	padding: 15px 0 0;
	font-family: "Montserrat", sans-serif;
	font-size: 15px;
	font-weight: 500;
}

.form-terms a {
	text-decoration: none;
	color: #001dff;
	transition: all 0.3s linear;
}

.form-terms a:hover {
	color: #000;
}

.form-group label,
.form-group-checkbox label {
	width: 100%;
	font-size: 0.9rem;
	color: #000000;
	margin-bottom: 5px;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid rgb(36 0 255 / 36%);
	border-radius: 5px;
	font-size: 0.9rem;
	margin-top: 1px;
	margin-bottom: 7px;
}

.form-group-full {
	width: 100%;
}

.form-actions {
	display: flex;
	justify-content: end;
	margin-top: 20px;
}

#step-2 .form-actions,
#step-3 .form-actions,
#step-4 .form-actions {
	justify-content: space-between;
}

.form-actions button {
	padding: 12px 50px;
	border: none;
	border-radius: 5px;
	font-size: 1rem;
	cursor: pointer;
	color: white;
	background: #16e160;
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
}

.form-group-text h6 {
	font-size: 1rem;
	font-weight: 600;
	font-family: "Montserrat", sans-serif;
}

.form-step .feild-inner p {
	line-height: 25px;
	margin-bottom: 5px;
	font-size: 16px;
	color: #000;
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
}

.form-actions .btn-next:hover {
	background: #8114ff;
	color: white;
}

.form-actions .btn-previous:hover {
	background: #0d5178;
	color: white;
}

.form-actions .btn-next {
	background: var(--button-bg-color);
	color: #fff;
	transition: 0.5s;
}

.form-actions .btn-previous {
	background: #978bb7;
	color: #ffffff;
	margin-right: 10px;
	transition: 0.5s;
}

.form-group.form-group-birth {
	display: flex;
	flex-wrap: wrap;
	align-items: end;
	justify-content: space-between;
	column-gap: 10px;
}

.form-group.form-group-birth .form-group-inner {
	width: calc(50% - 10px);
}

.form-group-text {
	width: 100%;
}

.form-group-activities {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 10px;
}

.form-group-activities .activities-group {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 15px;
	align-items: center;
}

.form-group-activities .activities-group .form-group {
	width: calc(20% - 15px);
}

.form-group-activities .activities-group .form-group-checkbox {
	width: calc(60% - 15px);
	display: flex;
	align-items: center;
	gap: 10px;
}

.form-group-full .form-group-checkbox {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: space-between;
}

.form-group-full .form-group-checkbox .colm {
	width: calc(33.33% - 10px);
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 5px;
}

.form-group-full .form-group-checkbox .colm .fieldset {
	display: flex;
	gap: 10px;
}

.form-group-textarea {
	width: 100%;
	padding: 10px 0;
}

.form-group-textarea textarea {
	display: block;
	width: 100%;
	max-width: 100%;
}

.form-group-textarea label {
	margin-bottom: 10px;
	display: block;
}

.form-group-checkbox {
	margin: 10px;
	display: block;
}

.form-group-checkbox {
	margin: 10px 0;
	display: block;
}

.form-group-checkbox .form-group {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 10px;
}

.form-group-checkbox .form-group .halfthird-colm {
	width: calc(50% - 10px);
}

.form-group-checkbox .form-group .halfthird-colm .fieldset {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
}

.form-group-checkbox .form-group .halfthird-colm .fieldset input[type="checkbox"] {
	width: auto;
}

.form-group-checkbox .form-group .halfthird-colm .fieldset label {
	margin: 0;
}

/* Progress Bar Styles */
.step.visible:after {
    width: 50%;
}
.progress-bar-container {
	margin: 20px auto;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.progress-bar {
	display: flex;
	justify-content: space-between;
	width: 100%;
	position: relative;
	gap: 2px;
}
.step {
    display: none;
}

.step.visible {
    display: block;
}
.step {
	text-align: left;
	flex: 1;
	position: relative;
	padding-top: 15px;
	border-top: 4px solid #ddd;
}

.form-step .feild-inner p {
	line-height: 26px;
	margin-bottom: 5px;
}

.step-title {
	font-weight: 400;
	font-size: 14px;
	color: #0d5178;
	text-transform: capitalize;
	font-family: "Montserrat", sans-serif;
	letter-spacing: 0.5px;
	display: block;
}

.step-description {
	font-size: 0.9rem;
	color: #555;
	font-weight: 700;
	font-family: "Montserrat", sans-serif;
	text-transform: capitalize;
}

.step-title span.sm\:d-none {
	display: none;
}

.step::after {
	content: '';
	position: absolute;
	top: -4px;
	left: 0;
	transition: width 0.2s ease-in-out;
	height: 4px;
	width: 0;
	background: #0d5178;
	z-index: 1;
}

.step.completed::after {
	background: #ad66ff;
	width: 100%
}

.half-complate:after {
	width: 50%;
}

.half-complete:after {
	width: 50%;
}

.step.completed .step-title,
.step.completed .step-description {
	color: #ad66ff;
}

@media screen and (max-width: 1365px) {
    header .contact {
    width: 42%;
}
.stylish-svg-shape-icon.medi-anim_two-right {
    right: calc(8% - 60px);
}
}

@media screen and (max-width: 768px) {
    .header-container {
        padding: 0;
         flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
    
    .logo a img:first-child {
        width: calc(70% - 15px);
    }
    
    .logo a img:last-child {
        width: calc(30% - 15%);
    }
    .logo a {
        width: 100%;
        justify-content: center;
    }

	.form-group input,
	.form-group select {
		width: 100%;
	}

	.stylish-svg-shape-icon.medi-anim_two-right {
		position: absolute;
		top: calc(14% - 10px);
		right: calc(8% - 10px);
	}

	.stylish-svg-shape-icon.medi-anim_two-left {
		position: absolute;
		bottom: calc(14% - 10px);
		left: calc(8% - 10px);
	}
}

/* form css end*/
/* Responsive Design */

@media(max-width:1279px) {
	.hero-content h1 {
		font-size: 2rem;
	}

	section.about-more-section.conte-video .hero-image iframe {
		width: 100%;
		height: 260px;
	}

	section.about-more-section.img-with-text .hero-wrapper {
		gap: 40px;
	}
}

@media(max-width:819px) {
	.hero-content ul {
		text-align: left;
	}
}

@media (max-width: 768px) {

	/*.step-title span.sm\:d-none {*/
	/*	display: inline-block;*/
	/*}*/

    .step {
        display: none;
    }
    
    .step.visible {
        display: block;
    }
    
    .step.visible::after {
        width: 50%;
    }


	.hero-wrapper {
		flex-direction: column-reverse;
	}

	section.about-more-section.conte-video .hero-image {
		flex: 1;
		text-align: center;
		width: 100%;
	}

	section.about-more-section.conte-video .hero-image iframe {
		width: 100%;
		height: 400px;
		max-width: 100%;
	}

	section {
		padding: 40px 0 !important;
	}



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

	.hero-content {
		padding-right: 0;
	}

	.content h1 {
		font-size: 2rem;
		font-weight: 700;
		margin-bottom: 1.5rem;
	}

	.header {
		padding: 20px 20px;
	}

	section.about-more-section.img-with-text .hero-wrapper {
		gap: 30px;
	}

	.hero-content h1 {
		font-size: 1.7rem;
	}

	.validation-section h1 {
		font-size: 1.5rem;
	}
}

@media(max-width:574px) {
    .logo a img:first-child {
        width: calc(80% - 15px);
    }
    .logo a img:last-child {
        width: calc(35% - 15%);
        height: 40px;
    }
    .header-container {
        padding: 0;
        gap: 5px;
    }
    header .contact a {
        font-size: 25px;
        background: url(./img/phone-icon.webp) 0 12px / 18px auto no-repeat rgba(0, 0, 0, 0);
        padding-left: 25px;
    }
    
    header .contact {
        width: 100%;
        justify-content: center;
    }
    #step-4 .feild-inner {
        align-items: end;
    }
    .form-group-checkbox .form-group .halfthird-colm .fieldset input[type="checkbox"] {
        margin: 0;
    }
    .stylish-svg-shape-icon.medi-anim_two-left {
    display: none;
}
.stylish-svg-shape-icon.medi-anim_two-right {
    display: none;
}
    .validation-section {
    background-image: linear-gradient(#f0f9ff, #a8dcff);
}
	.form-header h2 {
		font-size: 1.7rem;
	}
    .stylish-svg-shape-icon svg {
        width: 100%;
        max-width: 70px;
    }
	.logo img {
		height: auto;
	}
.feild-inner.forth-wapper-end {
    align-items: end;
}
	footer .footer-info {
		justify-content: center;
		gap: 10px;
	}

	section.about-more-section.img-with-text .hero-wrapper {
		flex-direction: column;
	}

	.container {
		padding: 0px 20px;
	}

	.info-grid {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		gap: 1.5rem;
	}

	.hero-content p {
		font-size: 1.1rem;
	}

	.info-item img {
		max-width: 80%;
		margin: 0 auto;
	}

	.hero-content h1 {
		font-size: 1.4rem;
	}

	.cta {
		padding: 0.8rem 1.3rem;
		font-size: 1rem;
	}

	.content h1 {
		font-size: 23px;
	}

	.additional-content h2 {
		font-size: 22px;
		margin-bottom: 1rem;
	}

	.hero-content h1 {
		font-size: 25px;
	}

	section {
		padding: 30px 0 !important;
	}

	.validation-section h1 {
		font-size: 1.5rem;
		text-align: left;
	}

	.validation-section h4 {
		text-align: left;
	}

	.form-header {
		margin: 5px 0;
	}

	.form-step .feild-inner {
		gap: 8px;
	}

	.form-group input,
	.form-group select,
	.form-group textarea {
		margin-bottom: 5px;
	}

	.form-group-activities .activities-group .form-group {
		width: calc(50% - 10px);
	}

	.form-group-activities .activities-group .form-group-checkbox {
		width: calc(100% - 7px);
		gap: 5px;
	}

	.form-group {
		width: calc(50% - 10px);
	}

	p.aligncenter {
		margin-top: 20px;
	}

	.form-group-activities .activities-group {
		gap: 8px;
	}

	.form-group.form-group-textarea {
		width: 100%;
	}

	.form-group-full p {
		font-size: 15px;
		text-align: left !important;
		margin: 5px 0 !important;
	}

	.form-group-full label {
		font-size: 14px;
		text-align: left !important;
	}

	.form-group.form-group-birth {
		width: 100%;
	}

	#step-2 .feild-inner .form-group:nth-child(3) {
		width: 100%;
	}

	#step-2 .feild-inner .form-group:nth-child(8) {
		width: 100%;
	}

	.form-step .feild-inner p {
		font-size: 14px;
		line-height: 21px;
	}

	#step-2 .feild-inner .form-group:nth-child(9),
	#step-2 .feild-inner .form-group:nth-child(10) {
		width: 100%;
	}
	.validation-section h2 {
        font-size: 25px;
        line-height: 30px;
    }
}

@media(max-width:424px){
.form-group-full .form-group-checkbox .colm .fieldset {
    gap: 5px;
}

.form-group-full .form-group-checkbox .colm .fieldset label {
    font-size: 13px;
}

.form-group-full .form-group-checkbox .colm {
    width: calc(50% - 5px);
}

.form-group-full .form-group-checkbox {
    gap: 5px;
}
.form-group-activities .activities-group .form-group-checkbox label {
    font-size: 12px;
}
.validation-section h2 {
    font-size: 25px;
    line-height: 30px;
}
}









@media(max-width:374px){
#step-4 .form-actions {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    gap: 10px;
}

#step-4 .form-actions button.btn-previous {
    margin: 0;
}
}




.form-group select {
    -webkit-appearance: none;  /* Removes default Safari style */
    -moz-appearance: none;     /* Removes default Firefox style */
    appearance: none;          /* Standard appearance removal */
    padding: 10px;
    background-color: #fff;
    border: 1px solid rgb(36 0 255 / 36%);
    border-radius: 4px;
    font-size: 16px;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23000" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');  /* Custom dropdown icon */
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 17px;
    color:#000000;
}
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: rgba(var(--text-color));
    -webkit-box-shadow: 0 0 0px 1000px rgba(var(--text-color),-1.85 inset);
    transition: background-color 5000s ease-in-out 0s;
    -webkit-box-shadow: 0 0 0px 1000px rgb(46 46 46 / 0%) inset;
}