@font-face {
	font-family: 'Manrope-Medium';
	src: url('assets/fonts/Lillies/Manrope-Medium.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}



/*
Theme Name: Custom Lillie's Friends
Author: lillie
Description: Custom theme for Lillie's Friends with dynamic theme 
Version: 1.0
*/



/* 1. Base Font Setup */
body {

	font-family: Manrope-Medium, serif;
	font-size: 16px;
	line-height: 28px; /* 1.75x for good readability */

}

html {
	scroll-padding-top: 100px; /* Adjust based on your sticky header height */
}

/* 2. Headings */
h1, h2, h3, h4, h5, h6 {
	font-family: Manrope-Medium, serif;
	font-weight: bold;
	margin-top: 22px;
	margin-bottom: 10px;
	line-height: 1.3;
}

h1 { font-size: 36px; line-height: 50px; }
h2 { font-size: 30px; line-height: 40px; }
h3 { font-size: 26px; line-height: 36px; }
h4 { font-size: 22px; line-height: 32px; } 
h5 { font-size: 18px; line-height: 28px; } 
h6 { font-size: 16px; line-height: 24px; }

/* 3. Paragraphs */
p {
	font-size: 16px;
	line-height: 28px;
	margin-bottom: 20px;
}

/* 4. Lists */
ul, ol {
	font-size: 16px;
	line-height: 28px;
	padding-left: 24px;
	margin-bottom: 20px;
}
   
li {
	margin-bottom: 8px;
}

/* 5. Links */
a {
	color: #004785;
	text-decoration: none;
	transition: color 0.2s ease;
}

a:hover {
	color: #001f33;
	text-decoration: underline;
}



/* ========== BASE: Desktop & Laptop (≥992px) ========== */
h1 { font-size: 36px; line-height: 50px; }
h2 { font-size: 30px; line-height: 40px; }
h3 { font-size: 26px; line-height: 36px; }
h4 { font-size: 22px; line-height: 32px; }
h5 { font-size: 18px; line-height: 28px; }
h6 { font-size: 16px; line-height: 24px; }

p, ul, ol {
	font-size: 16px;
	line-height: 28px;
}

li {
	margin-bottom: 8px;
}

/* ========== Tablet (768px to 991px) ========== */
@media (max-width: 991.98px) {
	h1 { font-size: 30px; line-height: 44px; }
	h2 { font-size: 26px; line-height: 38px; }
	h3 { font-size: 22px; line-height: 34px; }
	h4 { font-size: 20px; line-height: 30px; }
	h5 { font-size: 18px; line-height: 28px; }
	h6 { font-size: 16px; line-height: 24px; }

	p, ul, ol {
		font-size: 15px;
		line-height: 26px;
	}
}

/* ========== Mobile (≤767px) ========== */
@media (max-width: 767.98px) {
	h1 { font-size: 24px; line-height: 36px; }
	h2 { font-size: 22px; line-height: 34px; }
	h3 { font-size: 20px; line-height: 32px; }
	h4 { font-size: 18px; line-height: 28px; }
	h5 { font-size: 16px; line-height: 24px; }
	h6 { font-size: 14px; line-height: 22px; }

	p, ul, ol {
		font-size: 14px;
		line-height: 24px;
	}
}





/* css code for srollbar thumb  */

:root{
	--brand: #003559;               /* primary color from site (rgba(0,53,89,1)) */
	--brand-contrast: #ffffff;     /* thumb text / contrast if needed */
	--track-bg: rgba(0,53,89,0.06);/* subtle track */
	--thumb-hover: #002b47;        /* slightly darker on hover */
}

/* WebKit (Chrome, Edge, Safari) */
::-webkit-scrollbar {
	width: 12px;        /* vertical scrollbar width */
	height: 12px;       /* horizontal scrollbar height */
}

::-webkit-scrollbar-track {
	background: var(--track-bg);
	border-radius: 10px;
	box-shadow: inset 0 0 0 1px rgba(0,0,0,0.02);
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, var(--brand), rgba(0,84,130,1));
	border-radius: 10px;
	border: 3px solid rgba(0,0,0,0);   /* leaves a little gap so track shows through */
	min-height: 28px;
	background-clip: padding-box;
	transition: transform .12s ease, box-shadow .12s ease;
}

/* Hover / active states */
::-webkit-scrollbar-thumb:hover {
	background: var(--thumb-hover);
	transform: scale(1.03);
	box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}
::-webkit-scrollbar-thumb:active {
	transform: scale(0.98);
}

/* Corner (bottom-right) */
::-webkit-scrollbar-corner {
	background: transparent;
}

/* Firefox */
html {
	scrollbar-width: thin; /* auto, thin */
	scrollbar-color: var(--brand) var(--track-bg); /* thumb, track */
}

/* Optional: make scrollbars match a modal or .element specifically */
/* Example: .modal { overflow-y: auto; } .modal::-webkit-scrollbar { width: 10px; } */








header,
footer {
	background-color: rgba(0, 34, 49, 1);
	color: #ffffff;
}


header {
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}



footer h5 {
	border-bottom: 2px solid #ffffff;
	padding-bottom: 5px;
	margin-bottom: 15px;
	display: inline-block;
}

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

footer ul li {
	margin-bottom: 10px;
}



ul{
	list-style-type: circle;
}

ul li::marker {
	color: rgba(0, 53, 89, 1);
	font-weight: 600;
}


footer a {
	color: #ffffff;
}

footer a:hover {
	color: #cccccc;
}

.site-logo img {
	max-height: 50px;
}

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


.desktop-menu li a{
	font-weight: 500;
	margin-right: 25px;
	color: white;
	font-size: 18px;
}

/* Parent menu item */
.navbar-nav > li {
	position: relative;
}

/* Main dropdown */
.navbar-nav .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background-color: rgba(0, 34, 49, 1);
	padding: 0;
	margin: 0;
	padding-top: 20px;
	list-style: none;
	display: none;
	min-width: 220px;
	border-radius: 0 0 10px 10px;
	overflow: hidden;
	z-index: 1000;
	flex-direction: column;
}

/* Show dropdown on hover */
.navbar-nav li:hover > .sub-menu {
	display: flex; 
}

/* Dropdown items */
.navbar-nav .sub-menu li {
	border-bottom: 1px solid #fff;
	position: relative;
}

.navbar-nav .sub-menu li:last-child {
	border-bottom: none;
}

/* Dropdown links */
.navbar-nav .sub-menu li a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 16px;
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	margin-right: 0px;
}

/* Hover effect */
.navbar-nav .sub-menu li a:hover {
	background-color: rgba(0, 34, 49, 1);
}

/* Font Awesome arrow icon */
.navbar-nav .menu-item-has-children > a::after {
	/*   font-family: "Font Awesome 5 Free"; */
	content: "v"; /* fa-angle-down */
	font-weight: 700;
	margin-left: 8px;
}

/* Sub-submenu (nested, stacked vertically below each item) */
.navbar-nav .sub-menu .menu-item-has-children > .sub-menu {
	position: relative;
	top: 0;
	left: 0;
	display: none;
	background-color: rgba(0, 34, 49, 1);
	min-width: 100%;
	border-radius: 0;
	z-index: 999;
	padding-top: 0px;
}

/* Show sub-submenu when hovering over its parent li */
.navbar-nav .sub-menu .menu-item-has-children:hover > .sub-menu {
	display: flex;
	flex-direction: column;
}

/* Remove extra spacing on nested submenu items */
.navbar-nav .sub-menu .sub-menu li a {
	padding-left: 24px;
	font-weight: 400;
}









.navbar-nav li:hover > a::after {
	transform: rotate(180deg);
}



/* responsive and mobile menu  */



/* For the Hamburger Icon */
.mobile-menu-icon {
	display: block;
}

.mobile-menu-icon i {
	font-size: 30px;
	cursor: pointer;
}

/* Mobile Menu Styles */
.mobile-menu {
	display: none;
	position: fixed;

	left: 0;
	right: 0;

	background-color: rgba(0, 0, 0, 0.8);
	z-index: 9999;
	flex-direction: column;
	justify-content: flex-start;
}

.mobile-menu .mobile-nav {
	background-color: rgba(0, 34, 49, 1);
	width: 100%;
	padding-top: 10px; /* To give space under the header */
}

.mobile-menu .navbar-nav {
	list-style: none;
	padding: 0;
	margin: 0;
}

.mobile-menu .navbar-nav li {
	margin: 10px 0;
	border-bottom: 1px solid whitesmoke;
}

.mobile-menu .navbar-nav li a {
	color: #fff;
	text-decoration: none;
	font-size: 18px;
	display: block;
	padding: 1px 20px;
}

.mobile-menu .navbar-nav li a:hover {
	background-color: rgba(0, 34, 49, 1);
}

/* Close icon for the menu */
.mobile-menu .fa-times {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 30px;
	color: #fff;
	cursor: pointer;
}


.social-icon {

	margin-bottom: 15px;
}

/* Make sure menu only appears on mobile/tablet */
@media (max-width: 768px) {


	.desktop-menu{

		display: none !important;
	}

	.mobile-menu {
		display: flex; /* Show mobile menu when triggered */
	}
}





@media (max-width: 991px) {
	.navbar-nav .menu-item-has-children .sub-menu {
		/* 		display: none !important; */
		flex-direction: column;
	}

	.navbar-nav .menu-item-has-children.submenu-open > .sub-menu {
		display: flex !important;
	}
}



@media (max-width: 991px) {
	/* Prevent overflow: show submenus inside parent flow */
	.navbar-nav .menu-item-has-children {
		position: relative;
		width: 100%;
	}

	.navbar-nav .menu-item-has-children .sub-menu {
		position: static !important;  /* No absolute position */
		/* 		display: none !important; */
		width: 100%;
		padding-left: 15px;
		background-color: #002b49; /* slightly different shade if needed */
	}

	.navbar-nav .menu-item-has-children.submenu-open > .sub-menu {
		display: flex !important;
		flex-direction: column;
	}

	/* Optional: style child links */
	.navbar-nav .menu-item-has-children .sub-menu li a {
		padding: 8px 16px;
		font-size: 15px;
	}
}


#close-icon {
	display: none;
}

footer .footer-menu ul li a {
	transition: margin-left 0.3s ease;
}

footer .footer-menu ul li:hover a {
	margin-left: 5px;
	text-decoration: none;
}








/* our typograghy code start from here  */

.main-home-content-b p{

	font-size: 18px;
	font-weight: 500;
	color: rgba(0, 34, 49, 1);

}



.main-home-content-b h2{
	margin:  28px 0px;
	font-size: 28px;
	font-weight: 500;
	color: rgba(0, 34, 49, 1);
}

.main-home-content-b .doted-row .col-md-3{

	padding: 20px 30px;
	border-left: 1px solid rgba(138, 153, 160, 0.24);
}

.main-home-content-b .doted-row img {
	background-color: rgba(246, 249, 250, 1);
	padding: 10px;
	border-radius: 50%;
	border: 1px solid rgba(138, 153, 160, 0.24);
	margin: 15px 0px;
	transition: all 0.3s ease;
}


.main-home-content-b .doted-row h5{

	margin: 10px 0px;

}


.main-home-content-b .doted-row{

	padding: 15px 15px 100px;
	border: 2px dashed rgba(151, 71, 255, 1);
	border-radius: 5px;
	margin: 30px 0px 5px 0px;

}

.main-home-content-b .doted-row .col-md-3:hover{

	background-color: rgba(41, 141, 157, 1);
	cursor: pointer;
	color: white;

}

.main-home-content-b .doted-row .col-md-3:hover img {
	/* filter: brightness(0) invert(1);  */
	background-color: rgba(84, 164, 177, 1);         /* Sets black background */

}


.main-home-content-b .dashed-row{

	padding: 20px 15px ;
	border: 2px dashed rgba(151, 71, 255, 1);
	border-radius: 5px;
	margin: 30px 0px 5px 0px;

}



.offer-card {
	position: relative;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
	background-color: rgba(0, 34, 49, 0.25);

}

.offer-card img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.5s ease; /* smooth transition */
}

.offer-card:hover img {
	transform: scale(1.1); /* slight zoom for better look */
}

.offer-card:hover .step-number{
	color: white;
}


.step-number {
	position: absolute;
	top: 10px;
	left: 10px;
	background: rgba(255, 255, 255, 0.603);
	color: #001F3F;
	font-weight: 600;
	padding: 5px 10px;
	font-size: 18px;
	z-index: 2;
}

.card-overlay {
	position: absolute;
	bottom: 0;
	width: 100%;
	padding: 30px;
	background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0));
	color: #fff;
	text-align: left;
}

.card-overlay h4 {

	font-weight: 600;

}

.card-overlay p {
	color: white;
	margin: 10px 0px;
}

.offer-card .b-box-b{
	height: 35px;
	width: 35px;
	position: absolute;
	bottom: 0px;
	right: 0px;
	background: rgb(218, 218, 218);
	z-index: 2;
}


.offer-card .b-box-a{

	height: 35px;
	width: 35px;
	position: absolute;
	bottom: 20px;
	right: 20px;
	background: rgb(218, 218, 218);
	z-index: 2;

}




/* home section css code working start  */

.main-home-content h1{
	margin:  50px 0px;
	font-size: 55px;
	font-weight: 500;
	color: rgba(0, 34, 49, 1);
}


.main-home-content p{
	margin:  50px 0px;
	font-size: 23px;
	font-weight: 500;
	color: rgba(0, 34, 49, 1);
}



.button-code-learn-more{

	background-color: rgba(0, 34, 49, 1);
	color: white;
	padding: 10px 20px;
	font-size: 25px;
	font-weight: 400;
	border-radius: 10px;
	outline: none;
	border: none;

}


/* Tablet (768px to 1023px) */
@media (max-width: 1023px) {
	.main-home-content h1 {
		font-size: 40px;
		margin: 40px 0;
	}

	.main-home-content p {
		font-size: 20px;
		margin: 30px 0;
	}

	.button-code-learn-more {
		font-size: 20px;
		padding: 8px 18px;
	}
}

/* Mobile (up to 767px) */
@media (max-width: 767px) {
	.main-home-content h1 {
		font-size: 30px;
		margin: 30px 0;
	}

	.main-home-content p {
		font-size: 18px;
		margin: 20px 0;
	}

	.button-code-learn-more {
		font-size: 18px;
		padding: 8px 16px;
	}
}


/* home page third section code  */

.tab-content .numbering{

	border-radius: 50%;
	color: white;
	background-color: rgba(0, 34, 49, 1);
	height: 50px;
	width: 50px;
	margin: 10px 0px;
	padding: 15px;
}

.tab-content .numbering b{
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	line-height: 18px;
}

.tab-content h5{

	margin-top: 20px;
	margin-left: 25px;
	color: rgba(0, 34, 49, 1);
}

.tab-content-one, .tab-content-two, .tab-content-three{
	padding: 30px;
}


.tab-content .tab-item.active {

	transition: all 0.3s ease;
	cursor: pointer;
	background-color: rgba(41, 141, 157, 1);
	color: black !important;

}

.tab-content .tab-item{
	position: relative;
	padding-left: 25px; /* space for the border */
	margin: 40px 0;
}

.tab-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 1px; /* thin line */
	height: 100%;
	background: linear-gradient(to bottom, #F6F6F6 0%, #002231c9 50%, #F6F6F6 100%);
	border-radius: 2px;
}

.tab-content .tab-item:hover{

	cursor: pointer;
	background-color: rgba(41, 141, 157, 1);
	color: black !important;

}

.tab-content .tab-item:hover::before, .tab-content .tab-item.active::before{
	display: none;
}

.tab-content .tab-item:hover h5, .tab-content .tab-item.active h5{

	color: black;
}





.tab-content .tab-item:hover .numbering, .tab-content .tab-item.active .numbering{
	background-color: white;
	color: rgba(0, 34, 49, 1);
}



/* home page fourth section review  */




.avtar-header{
	display: flex;
	justify-content: space-between;
	margin-bottom: 22px ;
}

.avtar-img{
	display: flex;
}

.avtar-box{

	color: rgba(17, 59, 66, 1);
	padding: 20px;
	border: 1px solid rgba(17, 59, 66, 1);
	background-color: rgba(51, 78, 90, 0.12);
	height: 100% !important;

}




.avtar-dashed{

	border: 2px dashed rgba(151, 71, 255, 1);
	border-radius: 5px;
	padding: 15px 5px;

}


.More-Reviews-btn{

	padding: 15px 20px;
	border: 2px solid rgba(0, 34, 49, 1);
	color: rgba(0, 34, 49, 1);
	border-radius: 10px;
	font-weight: bold;

}


.More-Reviews-btn img{

	margin: 1px 8px;

}



/* home page five section FAQ's   */



.faq-container {
	border: 2px dashed #9747FF !important;
	border-radius: 10px !important;
	padding: 15px 0px 20px 15px !important;
	/* max-width: 1000px; */
	margin-bottom: 50px !important;
}

.faq-item {
	background: #f9fcfd !important;
	border: 1px solid #ddd !important;
	/* padding: 20px; */
	cursor: pointer !important;
	margin: 20px 0px !important;
}

/* .faq-item:last-child {
border-bottom: none !important;
} */

.faq-question {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	padding: 13px !important;
	cursor: pointer !important;
	position: relative !important;
	background: #f9fcfd !important;
	border-radius: 5px !important;
}

.faq-question h4 {
	color: #002231 !important;
	flex-grow: 1 !important;
	margin-left: 10px !important;
}


.faq-question .bullet {
	height: 10px;
	width: 10px;
	background-color: transparent !important;
	border-radius: 50% !important;
	margin-right: 12px !important;
	transition: background-color 0.3s ease !important;
}

.faq-item.active .bullet {
	background-color: #007BFF !important;
}

.faq-answer {
	display: none !important;
	color: #4b5d67 !important;
	font-size: 14px !important;
	padding: 10px !important;
}

.faq-item.active .faq-answer {
	display: block !important;
}

.faq-question .icon img {
	transition: transform 0.3s ease !important;
}

.faq-item.active .faq-question .icon img {
	transform: rotate(180deg) !important;
}



/* =================================================================home page responsive code ===================================================== */


@media(max-width: 767px){


	.no-mobile{
		display: none;
	}

	.main-home-content-b .doted-row .col-md-3{

		border-left: 0px;
	}


	.main-home-content-b .dashed-row{

		padding:  0px;
		border: 2px dashed rgba(151, 71, 255, 1);
		border-radius: 5px;
		margin:  0px;

	}

	.main-home-content-b .dashed-row .col-md-4{

		margin: 11px 0px;

	}



	.avtar-dashed .col-md-4{

		margin: 10px 0px;
	}

	.faq-container{
		margin:10px 0px;
	}

}







/* blog page code  */
.category-slider-wrapper {
	overflow: hidden;
	border: 2px solid rgba(0, 34, 49, 1);
}

.category-slider {
	display: flex;
	overflow-x: auto;
	scroll-behavior: smooth;
	gap: 10px;
	padding: 20px 10px;
	scrollbar-width: none;
	border-radius: 5px;
	flex: 1;
}

.category-slider::-webkit-scrollbar {
	display: none;
}

.category-item {
	flex: 0 0 auto;
	font-size: 21px;
	font-weight: 400;
	white-space: nowrap;
	color: rgba(0, 53, 89, 1);
	margin: 2px;
	cursor: pointer;
}

.category-item.active {
	color: rgba(0, 34, 49, 1);
	text-decoration: underline;
}

.category-item:hover {
	text-decoration: underline;
}

.category-prev-btn,
.category-next-btn {
	background: transparent;
	border: none;
}

.category-prev-btn img,
.category-next-btn img{
	width:16px;
	margin: 5px;
}



.blog-card {
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0,0,0,0.05);
	border: 2px solid rgba(0, 34, 49, 1);
}

.blog-card a{
	color: rgba(0, 34, 49, 1);

}

.blog-card a h3{
	font-size: 20px;
	padding: 10px;
	margin-top: 10px;
	font-weight: 500;

}




@media(max-width: 767px){
	.category-item{
		font-size: 14px;
	}

	.category-slider{

		padding: 8px 3px;

	}

	.blog-card a h3{
		font-size: 18px;
		padding: 10px;
		margin-top: 10px;
		font-weight: 500;
	}
}





/* breadcrumb list  */

.breadcrumb {
	margin: 20px 5px;
	font-size: 16px;
}
.breadcrumb a {
	text-decoration: none;
	color:  rgba(0, 34, 49, 1);
	font-weight: bold;
}
.breadcrumb a:hover {
	text-decoration: underline;
}





.blog-thumbnail img {
	width: 100%;
	height: 250px;
	display: block;
	margin-bottom: 10px;
	object-fit: cover;
	border-radius: 7px 7px 0px 0px;
}



/* pagination css code  */


.pagination-container ul {
	list-style: none;
	padding: 0;
	display: inline-flex;
	gap: 8px;
}

.pagination-container li {

	display: inline-block;
	border: 1px solid rgba(0, 34, 49, 1);
	border-radius: 50%;

}

.pagination-container .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 15px;
	border-radius: 50%;
	color: #003559;
	font-weight: bold;
	text-decoration: none;
}

.pagination-container .page-numbers .prev, .pagination-container .page-numbers .next{

	padding: 15px 15px !important;	
}



.pagination-container .current {
	background: #003559;
	color: #fff;
	padding: 8px 19px !important;
}


.pagination-container .page-numbers img {
	vertical-align: middle;
	height: 15px;
	width: 15px;
}





/* blog read more button code  */


.read-more-button {
	display: inline-block;
	padding: 8px 16px;
	background-color: #002b3d;
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
}

.read-more-button:hover {
	background-color: #004466;
}





.post-slider-wrapper {
	position: relative;
	overflow: hidden;
}

.post-slider-wrapper .post-card {
	width: 96%;
}

.post-slider {
	display: flex;
	transition: transform 0.3s ease;
}

.post-slide {
	flex: 0 0 100%;
	max-width: 100%;
}

@media (min-width: 576px) {
	.post-slide {
		flex: 0 0 50%;
	}
}

@media (min-width: 768px) {
	.post-slide {
		flex: 0 0 33.3333%;
	}
}

@media (min-width: 992px) {
	.post-slide {
		flex: 0 0 25%;
	}
}

@media (min-width: 1200px) {
	.post-slide {
		flex: 0 0 20%; /* 5 slides per view */
	}
}

.slider-btn {
	position: absolute;
	top: 45%;
	background-color: #000;
	color: #fff;
	border: none;
	z-index: 2;
	padding: 8px 12px;
	cursor: pointer;
	font-size: 20px;
	transform: translateY(-50%);
}

.prev-btn {
	left: 0;
}

.next-btn {
	right: 0;
}






/* add author profile and viewer profile */

/* Frontend Styles */
.ars-profiles {
	display: flex;
	gap: 1rem;
	align-items: center;
	padding: 1rem;
}

.ars-author, .ars-reviewer {
	display: flex;
	gap: 1rem;
	align-items: center;

}

.ars-profile-image {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	object-fit: cover;
}


@media(max-width: 767px){

	.ars-profile-image {
		width: 40px;
		height: 40px;
		border-radius: 50%;
		object-fit: cover;
	}
}

@media(max-width: 470px){

	.ars-profiles {
		display: flex;
		flex-direction: column;
		padding: 5px;
	}
}



.ars-degree {
	margin: 0;
	color: #666;
}







/* show source link on single page  */







/* css code for blog code  */



blockquote{

	position: relative !important;
	/* margin: 20px 0; */
	padding-left: 20px !important;
	font-size: 16px !important;
	font-weight: 500 !important;
	color: #000 !important;
	line-height: 1.6 !important;
	background-color: rgb(189,222,236);

}

blockquote::before{

	content: '' !important;
	position: absolute !important;
	left: 0 !important;
	top: 6px !important;
	bottom: 6px !important;
	width: 6.5px !important;
	background-color: #002231 !important;
	border-radius: 5px !important;
	margin-left: 10px !important;

}

blockquote p{

	padding: 15px;
	/* font-size: 18px; */
	font-style: normal !important;
}






/* show evidence  */

/* Button styling */
#show-evidence-btn {

	cursor: pointer;

}



/* Popup styling */
.evidence-popup {
	display: none; /* Hidden by default */
	position: fixed;
	z-index: 500;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.7); /* Black background with opacity */
}

.evidence-popup-content {
	background-color: white;
	margin: 15% auto;
	padding: 25px;
	border-radius: 8px;
	width: 80%;
	max-width: 500px;
}

.close-popup {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
}

.close-popup:hover,
.close-popup:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
}



@media(max-width: 767px){

	.evidence-popup-content {

		margin-top: 300px;

	}

}








/* toc css code  */

.fixed-container {

	background: #f7f7f7;
	margin-bottom: 20px;
	position: sticky;
	top: 100px; /* adjust based on your header height */
	z-index: 99;
	border: 2px solid rgba(0, 34, 49, 1);
	margin-top: 200px;
	border-radius: 10px;

}



/* Mobile fixed (top) */
@media (max-width: 767.98px) {
	.fixed-container {

		position: fixed;
		top: 0px; /* adjust for mobile header height */
		left: 0;
		right: 0;
		width: 95%;
		justify-content: center;
		z-index: 999; 
		background: #f7f7f7;
		box-shadow: 0 2px 5px rgba(0,0,0,0.1);
		margin-top: 90px;
		margin-left: 2.5%;

	}

	/* Optional: Make TOC collapsible for smaller space */
	#table-of-contents {
		max-height: 250px;
		overflow-y: auto;
	}


	.article-container{

		margin-top: 70px;

	}



}








.fixed-container h4{

	color: rgba(0, 53, 89, 1);
	margin: 5px 10px;
	padding: 10px;

}

.fixed-container #table-of-contents{

	display: flex;
	flex-direction: column;
	padding: 10px;
	counter-reset: toc-counter;


}



.fixed-container button{

	margin-right: 20px;

}




.fixed-container #table-of-contents a {
	display: block;
	counter-increment: toc-counter;
	text-decoration: none;
	font-weight: 500;
	margin: 10px 3px 1px 21px;
	font-size: 16px !important;
	color: rgba(0, 53, 89, 1);
	position: relative;
	padding-left: 20px; /* Space for number */
}

.fixed-container #table-of-contents a::before {
	content: counter(toc-counter) ".";
	position: absolute;
	left: 0;
	color: rgba(0, 53, 89, 1);
}





.single-header-section{

	border-top: 2px solid rgba(0, 34, 49, 1);
	border-bottom: 2px solid rgba(0, 34, 49, 1);

	margin-top: 30px;
	margin-bottom: 15px;

}



#toggle-toc-btn {
	background-color: transparent;
	border: none;
	cursor: pointer;
	line-height: 1;
	color: rgba(0, 53, 89, 1);
}


.show-more{

	margin-bottom: 50px;

}


/* make author single page  design */

.blog-slider-container {
	position: relative;
	padding: 20px 0;
}
.slider-wrapper {
	overflow: hidden;
	width: 100%;
}
.slider-track {
	display: flex;
	transition: transform 0.4s ease;
	gap: 20px;
}
.slider-item {
	min-width: 300px;
	flex-shrink: 0;
}
.slider-arrow {
	position: absolute;
	top: 40%;
	z-index: 10;
	background: #003049;
	color: #fff;
	border: none;
	font-size: 24px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	cursor: pointer;
}
.blog-prev {
	left: -10px;
}
.blog-next {
	right: -10px;
}





/* faqs pages code setup css code  */


.main-faqs{

	margin-top: 100px !important;
	padding-top: 40px !important;

}

@media(max-width:767px){
	.main-faqs{

		margin-top: 50px;
		padding-top: 40px;
	}

	.faq-question .bullet {

		position: absolute;
		margin-top: 5px;

	}

	.active .faq-question h4{

		padding-left: 15px;
	}



}

.main-faqs img{

	border-radius: 10px;
	margin: 6px 1px;
}

html {
	scroll-padding-top: 190px; /* Adjust based on your sticky header height */
}


.faqs-page-header{

	background-color: rgba(157, 203, 210, 1);
	padding:30px 2px;

}


.main-faqs h2 {
	margin-top: 30px;
	font-weight: 500;
	margin-bottom: 20px; 
}

.main-faqs p{


	line-height: 28px;
	margin-bottom: 20px;
}




.main-faqs .faqs-page-toc-top ul {


	display: flex;
	margin-bottom: 0px;
	overflow-x: auto; /* Use 'auto' for better control */
	align-items: center;
	white-space: nowrap;
	scrollbar-width: none; /* Firefox */
	-ms-overflow-style: none;  /* IE and Edge */
	border-bottom: 1px solid #002231;


}

/* Hide scrollbar for Chrome, Safari and Opera */
.main-faqs .faqs-page-toc-top ul::-webkit-scrollbar {
	display: none;
}


.main-faqs .faqs-page-toc-top ul li{

	list-style: none;
	padding:9px;
	margin:10px 33px;

	margin-left: -33px !important;

}

.main-faqs .faqs-page-toc-top ul li a{
	color: #002231;
	font-weight: bold;

}

.main-faqs .faqs-page-toc-top ul li a:hover{
	color:#1cbcff;
}


header,
footer {
	background-color: rgba(0, 34, 49, 1);

}

header {
	/* 		position: fixed; */
	top: 0;
	width: 100%;
	z-index: 1000;
}

.faqs-page-toc-top {
	position: fixed;
	top: 80px; /* Adjust to be below header */
	width: 100%;
	z-index: 999;
}



.section-content {
	background-color: rgba(157, 203, 210, 1);
	padding: 2rem 1rem;
	border-radius:20px;
}

.info-card {
	background: #fff;
	padding: 1.5rem;
	border-radius: 16px;
	box-shadow: 0 2px 12px rgba(157, 203, 210, 0.4);
	height: 100%;

}



.section-content .row{

	margin-top: 20px ;
}




.persentation-primarily{

	background-color: rgba(157, 203, 210, 1);
	border-radius: 15px;
	margin-top: 20px;
	padding: 15px;
}

.Hyperactivity , .Inattentiveness{

	background-color: rgba(157, 203, 210, 1);
	border-radius: 15px;
	transition: box-shadow 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	padding: 20px;
}


.Hyperactivity:hover,
.Inattentiveness:hover {

	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);

}

.Hyperactivity b,
.Inattentiveness b {
	position: relative;
	padding-left: 12px;
	display: inline-block;
	margin: 19px 2px;
}

.Hyperactivity b::before,
.Inattentiveness b::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 5px;
	background-color: #1cbcff;
	border-radius: 40px;
}




/*  depression test css  */

.dsn-question-box {
	max-width: 700px;
	margin: auto;
	padding: 20px;
	border: 2px solid #ccc;
	border-radius: 10px;
	background-color: rgba(0, 34, 49, 1);
}
.dsn-question-step {
	margin-bottom: 20px;
	font-size: 18px;
	font-weight: bold;
	color: #0ccae6;
	text-align: end;
}

.dsn-option {
	display: block;
	margin-bottom: 23px;
	font-size: 18px;
	background-color: whitesmoke;
	padding: 10px;
	cursor: pointer;
	border-radius: 10px;
	border: 2px solid transparent; /* Prevent layout shift */
	transition: all 0.3s ease;
}

.dsn-option:hover {
	border: 2px solid #0ccae6;
	background-color: #f0faff; /* subtle light blue background on hover */
	color: #007e94; /* optional: make text color match theme */
}


.dsn-btn {
	padding: 10px 20px;
	font-size: 17px;
	cursor: pointer;
	margin: 5px;
	border: 2px solid #0ccae6;
	outline: none;
	border-radius: 10px;
	font-weight: bold;
	transition: transform 0.5s ease, background-color 0.3s ease, color 0.3s ease;
}

.dsn-btn:hover {
	background-color: #0ccae6;
	color: #fff; /* optional: white text on hover */

}



.dsn-result-box {
	text-align: center;
	font-size: 20px;
	font-weight: bold;
}



/* 	table css code  */

/* Base Table Style */
table {
	width: 100% !important;
	height: 100% !important;
	border-collapse: collapse !important;
	margin-bottom: 30px !important;
	font-family: inherit !important;
	font-size: 16px !important;
	border: 1px solid #e0e0e0 !important;
}

/* Header Row */
table thead th {
	background-color: black !important;
	color: #333 !important;
	padding: 14px 20px !important;
	text-align: left !important;
	font-weight: 600 !important;
	border-bottom: 2px solid #e893b8 !important;

}

/* Header Hover Effect */
table thead th:hover {
	background-color: #fafafa !important;
}

/* Table Body Cells */
table td {
	padding: 14px 20px !important;
	border: 1px solid #ddd !important;
	vertical-align: top !important;
	color: #555 !important;
}

/* Zebra Striping for Rows */
tbody tr:nth-child(even) {
	background-color: #fafafa !important;
}

/* Hover on Rows */
tbody tr:hover {
	background-color: #fafafa !important;
}

/* Responsive Scroll for Mobile */
@media (max-width: 768px) {
	table {
		display: block !important;
		overflow-x: auto !important;
		white-space: nowrap !important;
	}
}




@media(max-width:767px){
	.main-faqs{

		margin-top: 50px;
		padding-top: 30px;

	}
}

.navbar-nav .menu-item-has-children > a::after {
	content: "";
	display: inline-block;
	width: 20px; 
	height: 20px;
	background-image: url('https://test.lilliesfriends.org/wp-content/uploads/2025/11/pngegg.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	margin-left: 8px;
	vertical-align: middle;
	transition: transform 0.3s ease;
} 


@media (max-width: 991px) {
	.navbar-nav .menu-item-has-children .sub-menu {
		display: none ;
		flex-direction: column;
	}

	.navbar-nav .menu-item-has-children.submenu-open > .sub-menu {
		display: flex !important;
	}
}


.navbar-nav .menu-item-has-children:hover > .sub-menu {
	display: flex;
}






.direction {
	box-shadow: 0 0 20px rgba(157, 203, 210, 1); /* Equal shadow all sides */
	border: 1px solid rgba(157, 203, 210, 1);   /* Matching border */
	padding: 1rem; /* Optional spacing */
	border-radius: 15px; /* Optional rounded corners */

	margin: 25px 1px;

}

.close-img{

	height: 18px;
	width: 18px;

}



/* online adhd treatment  */

.online-adhd{
	color:rgba(28, 51, 59, 1) ;
	font-size: 55px;
	line-height: 55px;
	font-weight:700;
}



.hero-buttons .get-start{
	background-color: rgba(28, 51, 59, 1);
	color: white;
	border-radius: 10px;
	text-decoration: none;
	font-size: 15px !important;
	padding: 10px 20px;

}


.hero-buttons .learn-more{

	color: rgba(28, 51, 59, 1);
	border-radius: 30px;
	text-decoration: none;
	font-size: 18px;
	padding: 10px 15px;
	border: 2px solid rgba(28, 51, 59, 1);

}

.new-adhd-online .hero-image{
	border-radius: 60px !important;
	padding: 25px;
	height: 445px;
	width: 594px;
	object-fit: cover;
	z-index: 100;
	border: 1px solid rgba(194, 209, 214, 0.5);
}

.new-adhd-online .tele-batch{
	background-color: rgba(28, 51, 59, 0.1);
	padding:  13px 25px;
	border-radius: 30px;
}


.same-day-wrap {
	width: 100%;
	text-align: right;
}

.Same-day {
	background-color: rgba(130, 194, 201, 1);
	padding: 7px 15px;
	border-radius: 30px;
	display: inline-block; /* so background doesn't stretch */
}

.new-adhd-online .three-buttons span{
	background-color: rgba(255, 255, 255, 0.8);
	color: rgba(28, 51, 59, 1);
	padding: 7px 10px;
	border-radius: 28px;
	display: flex;
	grid-gap: 3px;

}

.new-adhd-online .three-buttons{
	margin-top: 40px;
}

.new-adhd-online .white-button{
	background-color: white;
	padding: 20px 90px;
	border-radius: 10px;
	position:absolute;
	margin-top:-50px;
	margin-left: 20px;

}

.new-adhd-online .why-choose-us .col-md-3 {
	background-color: #ffffff;
	border-radius: 20px;
	padding: 25px;
	box-shadow: 0 0 15px rgba(255, 255, 255, 0.6); /* soft white glow */
	transition: all 0.3s ease-in-out;
	margin: 10px;
}

/* Hover effect */
.new-adhd-online .why-choose-us .col-md-3:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 
		0 0 25px rgba(255, 255, 255, 0.9); /* premium double effect */
	cursor: pointer;
}


 .how-we-work .work-card{
	width: 500px;
	height: 100%;
	background-color: #ffffff;
	border-radius: 20px;
	padding: 18px;
	box-shadow: 0 0 10px rgba(255, 255, 255, 0.6); /* soft white glow */
	transition: all 0.3s ease-in-out;
	 margin-left: 70px;
}

 .how-we-work .work-card:hover{
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 
		0 0 25px rgba(255, 255, 255, 0.9); /* premium double effect */
	cursor: pointer;
}
.how-we-work .mid-border {
    position: relative;
}

.how-we-work .mid-border::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 1px; /* Border width */
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(28, 51, 59, 0.2),
        rgba(28, 51, 59, 1),
        rgba(28, 51, 59, 0.2)
    );
}

.how-we-work .card-1{
	margin-right: 100px;
}

.how-we-work .card-2{
	margin-top: 50px;
	margin-right: 100px;
}

.how-we-work .card-3{
	margin-top:130px;
}

.how-we-work .card-4{
	margin-top: 50px;
	
	
}

.how-we-work .work-number-4,
.how-we-work .work-number-1,
.how-we-work .work-number-2,
.how-we-work .work-number-3{
	
	background-color:rgba(160, 202, 207, 0.5);
	border-radius: 50%;
/* 	padding: 10px; */
	height:50px;
	width:50px;
	color: white;
	align-items:center;
	display:flex;
	justify-content:center;
}

.how-we-work .work-number-1, .how-we-work .work-number-3{
	margin-right: -35px;
}

.how-we-work .work-number-2, .how-we-work .work-number-4{
	margin-left: -90px;
}

.how-we-work .work-number-2{
	margin-top: 90px;
}

.most-popular{
	margin-left:-320px;
}

@media(max-width: 767px){
	.most-popular{
		margin:auto;
	}

}

.feature-list{
	margin:0;
	padding:0;
}

.feature-list li {
    position: relative;
    padding-left: 30px;
	list-style:none;
	margin-left: 0px;
}

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    background-image: url('https://test.lilliesfriends.org/wp-content/uploads/2025/12/Overlay-9.png');
    background-size: cover;
}

.price-btn-1{
	background-color: rgba(28, 51, 59, 1);
	color: rgba(255, 255, 255, 1);
	font-size: 16px;
	padding: 15.5px 40px 16.5px 40px;
	border-radius: 8px;
	text-decoration: none;
	display: flex;
	justify-content: center;   /* Horizontal center */
	align-items: center;       /* Vertical center */
	text-align: center;        /* Text align center */
	
}

.price-btn-1:hover{
	color: white !important;
}

.price-btn{
	color: rgba(28, 51, 59, 1);
	font-size: 16px;
	border: 2px solid rgba(28, 51, 59, 1);
	padding: 15.5px 40px 16.5px 40px;
	border-radius: 8px;
	text-decoration: none;
	display: flex;
	justify-content: center;   /* Horizontal center */
	align-items: center;       /* Vertical center */
	text-align: center;        /* Text align center */
}

.price-box{
    display: flex;
    justify-content: center;   /* Left-right center */
    align-items: baseline;     /* Price and /visit sahi line me */
    gap: 6px;                  /* Thoda spacing */
	margin:20px;
}

.trans-price{
    font-size: 40px;
    font-weight: bold;
}



/* skills providers section  */

.skilled-providers {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 18px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.skilled-providers:hover {
    box-shadow: 0 6px 22px rgba(0,0,0,0.15);
    transform: translateY(-4px);
}

/* Circular image with soft shadow */
.skilled-providers .skill-avtar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}


/* personal portal section code  */
.personal-portal-section {
  padding: 60px 0;
  background: #f5f9fa;
}

/* Left Main Card */
.portal-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.08);
  position: relative;
}

/* Header */
.portal-header {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #dcebed;
  padding: 20px;
  border-radius: 14px;
}

.portal-header h5 {
  margin: 0;
  font-weight: 600;
  color: #1f2c3a;
}


.portal-header span {
  font-size: 13px;
  color: #6c7a85;
}

/* Each Item */
.portal-item {
  background: #e5f1f3;
  margin-top: 15px;
  padding: 15px 20px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  color: #1b2a33;
}

.badge {
  background: #1b2a33;
  color: #fff;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
	align-items:center;
	text-align: center;
	display: flex;
}

/* Popup */
.portal-popup {
  position: absolute;
  top: -15px;
/*   left: 180px; */
	right: -10px;
  background: #ffffff;
  padding: 5px 15px;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #1f2c3a;
}


.float-updown {
    animation: floatY 2.5s ease-in-out infinite;
}

@keyframes floatY {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}


/* Right Side */
.portal-title {
  font-size: 32px;
  font-weight: 700;
  color: #1f2c3a;
  margin-bottom: 30px;
}

.portal-features {
  margin-bottom: 30px;
}

.feature-box {
  display: flex;
  gap: 15px;
  margin-bottom: 18px;
}


.feature-box h6 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.feature-box p {
  margin: 0;
  color: #6c7a85;
}

/* Button */
.appointment-btn {
  display: inline-block;
  background: #1d313b;
  color: #fff;
  padding: 14px 30px;
  border-radius: 10px;
  text-decoration: none;
/*   font-weight: 600; */
	font-size: 16px;
}

.appointment-btn:hover{
	color: white;
}



/* Prescription management  */

.med-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
    border: 1px solid #e5e9ec;
	height: 100%;
}

.med-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.med-icon {
    display: flex;
    justify-content: center;
    align-items: center;
	margin-top: -25px;
}

.med-title {
    font-size: 20px;
    margin: 0;
    font-weight: 700;
    color: #1c333b;
}

.med-sub {
    margin: 0;
    font-size: 13px;
    color: #6d7b81;
}

.med-list {
    padding-left: 18px;
    margin: 0;
}

.med-list li {
    margin-bottom: 10px;
    color: #1c333b;
    font-size: 15px;
}

.med-list li a {
    color: #1c333b;
    font-weight: 600;
    text-decoration: underline;
}



/* comparison section cose  */

.comparison-section {
    background: #c6dfe3;
    padding: 70px 0;
    text-align: center;
}

.cmp-title {
    font-size: 42px;
    font-weight: 700;
    color: #1c333b;
}

.cmp-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
    color: #1c333bb5;
}

.comparison-table {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    max-width: 900px;
    margin: auto;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.cmp-row {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    padding: 16px 24px;
    border-bottom: 1px solid #e7ecef;
    align-items: center;
}

.cmp-head {
    background: #f1f6f7;
    font-weight: 600;
}

.cmp-row:last-child {
    border-bottom: none;
}

.feature-col {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.icon {
    font-size: 18px;
    background: #e7f3f5;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.price-bold {
    font-weight: 700;
    color: #000;
}

.old-price {
    color: #777;
    text-decoration: line-through;
}

.yes, .no {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-block;
}

.yes {
    background: #d6f3e0;
    border: 2px solid #3bbf78;
    position: relative;
}

.yes::after {
    content: "✔";
    color: #3bbf78;
    font-size: 14px;
    position: absolute;
    top: 2px;
    left: 5px;
}

.no {
    background: #f8d7db;
    border: 2px solid #e63946;
    position: relative;
}

.no::after {
    content: "✘";
    color: #e63946;
    font-size: 14px;
    position: absolute;
    top: 2px;
    left: 7px;
}

/* common symtoms  */

.adhd-symptoms-section {
    padding: 80px 0;
    background: #f7fafa;
}

.adhd-heading {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #1c333b;
}

.adhd-subtitle {
    text-align: center;
    max-width: 650px;
    margin: 10px auto 50px;
    color: #4b5a60;
    font-size: 16px;
}

.symptoms-row {
    gap: 30px;
}

.symptom-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.symp-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.symp-icon {
    font-size: 28px;
    background: #e8f1f2;
    padding: 10px;
    border-radius: 50%;
}

.symp-header h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #1c333b;
}

.symp-list {
    padding-left: 20px;
}

.symp-list li {
    margin-bottom: 10px;
    color: #4b5a60;
    font-size: 15px;
}

/* Bottom Note */
.test-note {
    font-size: 15px;
    color: #4b5a60;
    margin-bottom: 20px;
}

/* Button */
.adhd-test-btn {
  
    color: #1c333b;
    padding: 14px 28px;
    border-radius: 8px;
    border: 2px solid  #1c333b;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
}

.adhd-test-btn:hover {
    
}


/* why adult have adhd  */

.adhd-why-section {
    background-color: #c8dce0;
    padding: 80px 0;
}

.why-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #1c333b;
    margin-bottom: 10px;
}

.why-subtitle {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px;
    font-size: 16px;
    color: #1c333b;
    opacity: 0.8;
}

.why-box {
    background: #fff;
    padding: 28px 32px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border: 1px solid #eef3f3;
}



.why-box h4 {
    color: #1c333b;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.why-box p {
    font-size: 15px;
    line-height: 1.6;
    color: #3d4a50;
}


/* Depression chacker  */
.custom-accordion .ca-item {
    padding: 18px 22px;
    margin-bottom: 15px;
    cursor: pointer;
}

.custom-accordion .ca-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.custom-accordion .ca-circle {
    font-size: 20px;
}

.custom-accordion .ca-text-area {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-accordion .ca-title {
    font-size: 18px;
    font-weight: 600;
}

.custom-accordion .ca-arrow img {
    transition: transform 0.3s ease;
	right: 0px;
}

.custom-accordion .ca-arrow.rotate img {
    transform: rotate(180deg);
}

.custom-accordion .ca-content {
    margin-top: 12px;
    display: none;
    line-height: 1.6;
	margin-left: 70px;
}



/* ocd page design  */

.qube-element-top {
    height: 90px;
    width: 107px;
    background-color: rgba(235, 244, 242, 0.1);
    position: absolute;
    border-radius: 16px;
	text-align: end;
    right: 1%;   /* right side end */
   
}


.parent-rel{
	position:relative;
}

.qube-element{
	height: 90px;
    width: 107px;
    background-color: rgba(235, 244, 242, 0.1);
    position: absolute;
    border-radius: 16px;
    margin-left: 35px;
	margin-top: -90px;
}



.therapy-box {
    background: #E9F3F3;
    border-radius: 16px;
    overflow: hidden;
    padding: 0;
}

/* Image Fix */
.therapy-img {
    width: 100%;
    height: 220px;   /* top-bottom full cover ke liye fixed height */
    object-fit: cover;
    object-position: center; /* beech se crop hoga */
}

/* Text */
.therapy-text {
    padding: 30px;
}



