@charset "UTF-8";
/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/**==Typhograhy setion css start==**/


/**Appointments Calender page Css open**/


.appointment-card {
    background: var(--color-white);
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.appointment-header {
    background: var(--color-primary);
    color: white;
    padding: 25px 30px;
    text-align: center;
}

.appointment-header h2,
.appointment-header h1 {
    font-size: 28px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.appointment-header h2 i,
.appointment-header h1 i  {
    margin-right: 15px;
}

.appointment-header p {
    font-size: 16px;
    opacity: 0.9;
    color: var(--color-white)
}

.appointment-body {
    padding: 30px;
}

.calendar-section {
    margin-bottom: 30px;
}

.section-title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary);
}

.section-title i {
    margin-right: 10px;
    font-size: 20px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    background: var(--color-light);
    border-radius: 8px;
}

.current-month {
    font-weight: 600;
    font-size: 18px;
    color: var(--color-heading);
}

.nav-btn {

    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.nav-btn:hover:not(:disabled) {
    background: var(--color-secondary);
}

/* Improved Calendar Design */


.calendar-day.has-appointments::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--color-light-green);
    border-radius: 50%;
}

.time-slots-container {
    margin-bottom: 25px;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.time-slot {
    padding: 12px 5px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.time-slot:hover {
    background: var(--color-light);
    transform: translateY(-2px);
    border-color: var(--color-light-blue);
}

.time-slot.selected {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
    box-shadow: 0 5px 15px rgba(7, 116, 158, 0.2);
}

.time-slot.booked {
    background: #f8d7da;
    color: #721c24;
    cursor: not-allowed;
}

.time-slot.passed {
    background: #e9ecef;
    color: #6c757d;
    cursor: not-allowed;
}

.time-slot.break {
    background: #fff3cd;
    color: #856404;
    cursor: not-allowed;
}



.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s linear infinite;
    display: none;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.confirmation {
    display: none;
    margin-top: 30px;
    padding: 25px;
    background: var(--color-light);
    border-radius: 10px;
    border-left: 5px solid var(--color-light-green);
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.confirmation h3 {
    color: var(--color-light-green);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-item {
    margin-bottom: 12px;
    display: flex;
}

.detail-item strong {
    min-width: 80px;
    color: var(--color-heading);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .time-slots-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 15px;
    }

    .menu {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .btn-login {
        display: none;
    }

    .calendar-grid {
        gap: 5px;
    }

    .calendar-day {
        padding: 12px 2px;
        font-size: 14px;
    }

    .day-header {
        padding: 10px 2px;
        font-size: 12px;
    }

    .time-slots-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .appointment-body {
        padding: 20px;
    }

    .logo-text {
        font-size: 20px;
    }

    .appointment-header h1 {
        font-size: 24px;
    }

    .appointment-header {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .time-slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .calendar-day {
        padding: 10px 1px;
        font-size: 12px;
    }

    .day-header {
        padding: 8px 1px;
        font-size: 11px;
    }

    .nav-btn {
        padding: 6px 10px;
        font-size: 14px;
    }

    .current-month {
        font-size: 16px;
    }

    .mobile-menu-container {
        width: 280px;
    }
}

/**Appointments Calender page Css Close**/

/**Verification page Css Open**/

.verification-card {
    background-color: var(--color-white);
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    width: 100%;
    max-width: 500px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    margin: 60px auto;
}
.ime-modal-body .verification-card {
    max-width:100%;
    margin:0;
	position:relative;
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.card-header h1 {
    color: var(--color-darkblue);
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 700;
}

.card-header p {
    color: var(--color-secondary-text);
    font-size: 16px;
    line-height: 1.5;
}

.header-icon {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-light-blue) 100%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--color-white);
    font-size: 28px;
    box-shadow: 0 8px 20px rgba(7, 116, 158, 0.25);
}

.form-group {
    margin-bottom: 24px;
    position: relative;
}

label {
    display: block;
    margin-bottom: 8px;
    color: var(--color-darkblue);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
}

label i {
    margin-right: 10px;
    color: var(--color-primary);
    width: 20px;
    text-align: center;
}

input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    border: 2px solid var(--color-grey);
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    color: var(--color-text);
    background-color: var(--color-light);
}

input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(7, 116, 158, 0.1);
    background-color: var(--color-white);
}

i.input-icon {
    position: absolute;
    left: 16px;
    top: 54px;
    color: var(--color-primary);
}

.submit-btn {
    background: linear-gradient(to right, var(--color-primary), var(--color-light-blue));
    color: white;
    border: none;
    border-radius: 12px;
    padding: 18px 20px;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 5px 15px rgba(7, 116, 158, 0.2);
}

.submit-btn:hover {
    background: linear-gradient(to right, var(--color-green), var(--color-primary));
    box-shadow: 0 8px 20px rgba(7, 116, 158, 0.3);
    transform: translateY(-2px);
}
#emailButton{
	max-width: fit-content;
	margin-bottom:30px;
}

span.required{
	color: #dc3545 !important;
	font-size: 24px;
	font-weight:bold;			
}
.security-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
    background: var(--color-note);
    padding: 15px;
    border-radius: 12px;
    font-size: 14px;
    color: var(--color-text);
    border-left: 4px solid var(--color-light-green);
}

.security-notice i {
    color: var(--color-light-green);
    margin-right: 10px;
    font-size: 18px;
}

.card-decoration {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(7, 116, 158, 0.1) 0%, rgba(0, 173, 239, 0.1) 100%);
    filter: blur(20px);
    z-index: 0;
}

.decoration-1 {
    top: -50px;
    right: -50px;
}

.decoration-2 {
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(57, 149, 147, 0.1) 0%, rgba(74, 175, 82, 0.1) 100%);
}
.resend-otp {
	text-align: center;
	margin-top: 20px;
	font-size: 14px;
	color: #666;
}

.resend-otp a {
	color: var(--color-primary);
	text-decoration: none;
	font-weight: 500;
}

.resend-otp a:hover {
	text-decoration: underline;
        }
/**Verification page Css Close**/


/**Appointments Form page Css Open**/

.appointment-container {
    max-width: 1000px;
    margin: 60px auto;
    background: var(--color-white);
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.appointment-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-white);
    padding: 25px 30px;
    text-align: center;
}

.appointment-header h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.appointment-info {
    background-color: var(--color-light);
    padding: 20px 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-bottom: 1px solid var(--color-grey);
}

.info-item {
    margin: 8px 0;
    display: flex;
    align-items: center;
}

.info-item i {
    margin-right: 10px;
    color: var(--color-primary);
}

.form-section {
    padding: 30px;
    border-bottom: 1px solid var(--color-grey);
}

.section-title {
    color: var(--color-primary);
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-light-blue);
    display: flex;
    align-items: center;
}

.section-title i {
    margin-right: 10px;
}

.form-label {
    font-weight: 600;
    color: var(--color-darkblue);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.form-label i {
    margin-right: 8px;
    color: var(--color-primary);
}

.form-control,
.form-select {
    padding: 12px 16px;
    border: 1px solid var(--color-grey);
    border-radius: 8px;
    font-size: 15px;
    color: var(--color-text);
    background-color: var(--color-light);
    margin-bottom: 15px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(7, 116, 158, 0.1);
    background-color: var(--color-white);
}

.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    left: 15px;
    top: 16px;
    color: var(--color-secondary-text);
}

.input-icon .form-control,
.input-icon .form-select {
    padding-left: 45px;
}


.required {
    color: var(--color-red);
}

.instructions {

    background-color: var(--color-grey);
    padding: 20px;
    border-left: 4px solid var(--color-primary);
    border-radius: 0 8px 8px 0;
    color: var(--color-heading);
    font-weight: 500;
    margin: 40px 30px;
}

.instructions h3 {
    color: var(--color-primary);
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .appointment-info {
        flex-direction: column;
    }

}

/**Appointments Form page Css Close**/


.service-section {
    display: flex;
    margin-bottom: 50px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background: var(--color-white);
    transition: transform 0.3s ease;
}

.service-section:hover {
    transform: translateY(-5px);
}

.service-image {
    flex: 1;
    min-height: 300px;
    background-size: cover;
    background-position: center;
}

.service-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {

    margin-top: 0;
}

.service-content p {
    margin-bottom: 25px;
}


.service-section:nth-child(even) {
    flex-direction: row-reverse;
}

.service-icon {
    font-size: 30px;
    color: var(--color-primary);
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .service-section {
        flex-direction: column;
        margin-bottom: 30px;
    }

    .service-section:nth-child(even) {
        flex-direction: column;
    }

    .service-image {
        display: none;
        ;
    }

    .service-content {
        padding: 25px;
    }
}

.panel-doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.panel-doctor-card {
    background: var(--color-light);
    border-radius: 8px;
    padding: 20px;
    border-left: 4px solid var(--color-primary);
}

.panel-doctor-name {
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 5px;
}

.panel-doctor-qualification {
    color: var(--color-text);
    font-size: 0.95rem;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}

.contact-innercard {
    flex: 1;
    min-width: 250px;
    background: var(--color-light);
    border-radius: 8px;
    padding: 20px;
    border-left: 4px solid var(--color-primary);
}

.contact-innercard h3 {
    color: var(--color-primary);
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    ;

}

.contact-innercard h3:after {
    display: none;
}

.contact-innercard p,
.contact-innercard a {
    margin-bottom: 10px;
    display: block;
}

.contact-innercard .fas {
    margin-right: 10px;
    color: var(--color-primary);
    width: 20px;
    text-align: center;
}

.contact-innercard a {
    display: inline-block;
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
}

.contact-innercard a:hover {
    text-decoration: underline;
}


@media (max-width: 768px) {
    .page-title {
        font-size: 1.8rem;
    }

    .section {
        padding: 20px;
    }

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

    .contact-info {
        flex-direction: column;
    }
}

/** Thank You page Css Open**/
 .thank-you-container {
		max-width: 600px;
		width: 100%;
		margin: 80px auto;
		overflow: hidden;
	}
	
	.thank-you-card {
		background: var(--color-white);
		border-radius: 20px;
		box-shadow: var(--box-shadow);
		padding: 60px 40px;
		text-align: center;
		position: relative;
		overflow: hidden;
		transition: transform 0.3s ease, box-shadow 0.3s ease;
	}
	
	.thank-you-card:hover {
		transform: translateY(-5px);
		box-shadow: var(--box-shadow-hover);
	}
	
	.card-decoration {
		position: absolute;
		border-radius: 50%;
		opacity: 0.08;
	}
	
	.decoration-1 {
		width: 200px;
		height: 200px;
		background: var(--color-primary);
		top: -80px;
		right: -80px;
	}
	
	.decoration-2 {
		width: 150px;
		height: 150px;
		background: var(--color-light-green);
		bottom: -60px;
		left: -60px;
	}
	
	.success-icon {
		width: 100px;
		height: 100px;
		background: linear-gradient(135deg, var(--color-light-green), var(--color-secondary));
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		margin: 0 auto 30px;
		box-shadow: 0 10px 20px rgba(74, 175, 82, 0.2);
	}
	
	.success-icon i {
		font-size: 45px;
		color: var(--color-white);
	}
	
	
	.subtitle {
		font-size: 20px;
		color: var(--color-primary);
		margin-bottom: 25px;
		font-weight: 600;
	}
	
	.message {
		font-size: 18px;
		margin-bottom: 10px;
		max-width: 500px;
		margin-left: auto;
		margin-right: auto;
	}
	
	.security-notice {
		display: flex;
		align-items: center;
		justify-content: center;
		margin-top: 40px;
		border-top: 1px solid rgba(0, 0, 0, 0.1);
		color: var(--color-secondary-text);
		font-size: 14px;
	}
	
	.security-notice i {
		margin-right: 8px;
		color: var(--color-light-green);
	}
	
	
	@keyframes confetti-fall {
		0% {
			transform: translateY(-100px) rotate(0deg);
			opacity: 1;
		}
		100% {
			transform: translateY(500px) rotate(360deg);
			opacity: 0;
		}
	}
	
	@media (max-width: 768px) {
		.thank-you-card {
			padding: 50px 25px;
		}
		
		
		.subtitle {
			font-size: 18px;
		}
		
		.message {
			font-size: 16px;
		}
	}
/** Thank You page Css Close**/