* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --light-blue: #f8f9fa;
}

body {
    font-family: sans-serif;
    color: #333;
	overflow-x: hidden;
}

section {
    padding: 80px 0;
}

/* Header */

.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header .header-top {
    background-color: #003;
    font-size: 18px;
}

.header .contact-info a {
    margin-right: 10px;
}

.header .header-top .social-links a img {
    width: 100px;
}

.header .header-top .social-links a.facebook-icon {
    font-size: 30px;
	text-decoration: none;
	color: #fff;
}

.header .desktop-navbar{
    padding: 10px 0;
}

.header .desktop-navbar-logo img {
    width: 150px;
}

.header .desktop-nav-list {
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.header .desktop-nav-list li a {
    text-decoration: none;
    color: rgb(91 91 91);
    font-size: 18px;
}

.header .desktop-nav-list li a:hover {
    color: #000;
}

.header .Contact-btn {
    background-color: #26b4e5;
    color: white;
    border: none;
    padding: 12px 35px;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    float: right;
    letter-spacing: 2px;
}

.banner-section {
	width: 100%;
	height: auto;
    padding: 0;
    margin-top: 135px;
	overflow-x: hidden;
}

.banner-section .home-banner-carousel .item {
    padding: 180px 100px;
}

.banner-section #carousel-slide1 {
    background: url('../image/banner1.jpg') no-repeat center center/cover;
}

.banner-section #carousel-slide2 {
    background: url('../image/banner2.jpg') no-repeat center center/cover;
}

.banner-section #carousel-slide3 {
    background: url('../image/banner3.jpg') no-repeat center top/cover;
}

.banner-section .home-banner-carousel .banner-content h2 {
    font-size: 50px;
    font-weight: 600;
	margin-bottom: 50px;
}

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

.banner-section .home-banner-carousel .banner-content .call-btn {
    color: #000;
    background-color: #fff;
    border: none;
    padding: 15px 35px;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;    
}

.banner-section .home-banner-carousel .banner-content .call-btn .bxs-phone-call {
    color: #26b4e5;
    font-size: 20px;
    vertical-align: middle;
    margin-right: 5px;
}

.about-section .container h3 {
    font-size: 40px;
    font-weight: 600;
    margin-top: 50px;
    margin-bottom: 30px;
}

.about-section .container p {
    font-size: 18px;
    text-align: justify;
}

.about-section img {
    width: 100%;
}

.about-section .container .read-btn {
    color: #fff;
    background-color: #003;
    border: none;
    padding: 12px 50px;
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    letter-spacing: 2px;
    display: inline-block;
    margin: 20px 0;
}

.counter-section {
    padding: 30px 0;
    background: linear-gradient(to bottom, #0B5FA4, #000A38);
    color: #fff;
}

.counter-box {
    text-align: center;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
}

.counter-section ul {
   display: flex;
   justify-content: space-between;
   list-style: none;
   padding: 0;
}

.counter-section ul li {
    width: 33%;
    border-right: 2px solid white;
}

.counter-section ul li:last-child {
    border: none;
}

.counter-section .counter-icon {
    font-size: 3.5rem;
}

.counter-section .counter-number {
    font-size: 4rem;
    font-weight: bold;
}

.counter-section .counter-label {
    font-size: 1.5rem;
    text-transform: uppercase;
    text-align: center;
    margin-top: -20px;
}

.therapeutic-section .therapeutic-header {
    text-align: center;
}

.therapeutic-section .therapeutic-header h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.therapeutic-section .therapeutic-header p {
    color: #666;
    padding: 0 1rem;
    font-size: 18px;
}

.therapeutic-section .specialty-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgb(0 0 0 / 34%);
    margin: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease;
    padding: 25px;
    height: 450px;
}

.therapeutic-section .specialty-card:hover {
    transform: scale(1.03);
}

.therapeutic-section .specialty-img {
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
}

.therapeutic-section .specialty-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.therapeutic-section .specialty-content {
    padding-top: 1.5rem;
}

.therapeutic-section .specialty-content h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.therapeutic-section .specialty-content p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.therapeutic-section .specialties-carousel .owl-stage {
    padding: 30px 0;
}

.therapeutic-section .specialties-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2) !important;
    color: #ffffff !important;
    font-size: 1.8rem !important;
    background: linear-gradient(to bottom, #0B5FA4, #000A38) !important;
}

.therapeutic-section .specialties-carousel .owl-prev {
    left: -50px;
}

.therapeutic-section .specialties-carousel .owl-next {
    right: -50px;
}


.approach-section {
    background: linear-gradient(180deg, #020B2C 0%, #03427B 100%);
    color: white;
    text-align: center;    
}

.approach-section .section-title {
    color: #40E0FF;
    font-size: 40px;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.approach-section .section-description {
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff;
}

.approach-section .approach-flex {
    display: flex;
    justify-content: space-evenly;
    gap: 10px;
    flex-wrap: wrap;
}

.approach-section .approach-card {
    transition: transform 0.3s ease;
	margin-bottom: 30px;
}

.approach-section .approach-card:hover {
    transform: translateY(-10px);
}

.approach-section .card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.approach-section .card-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 600;
}

.approach-section .card-description {
    color: #e0e0e0;
    line-height: 1.5;
    font-size: 16px;
	margin-bottom: 0;
}

.categories-section {
    background-color: #A5DCED;
}


.categories-section .categories-header {
    margin-bottom: 20px;
}

.categories-section .categories-header h2 {
    font-size: 40px;
    font-weight: 700;
}

.categories-section .categories-header p {
    color: #424242;
    line-height: 1.6;
    text-align: right;
    padding: 0 1rem;
}

.categories-section .category-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgb(0 0 0 / 34%);
    margin: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease;
    padding: 25px;
    height: 400px;
}

.categories-section .category-card:hover {
    transform: scale(1.03);
}

.categories-section .category-image {
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
}

.categories-section .category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.categories-section .category-content {
    margin-top: 1.5rem;
}

.categories-section .category-content h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.categories-section .category-content p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.owl-nav {
    text-align: center;
    margin-top: 30px;
}

.owl-nav button {
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    background: #1a237e !important;
    color: white !important;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.owl-nav button:hover {
    background: #323e99 !important;
}

.faq-section {
    background: linear-gradient(135deg, #004d99 0%, #001a33 100%);
}

.faq-section .faq-title {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.faq-section .faq-subtitle {
    margin-bottom: 2rem;
    color: #fff;
    line-height: 1.6;
}

.faq-section .accordion-item {
    margin-bottom: 1rem;
    border: none;
    border-radius: 10px !important;
    overflow: hidden;
}

.faq-section .accordion-button {
    background-color: white !important;
    color: #004d99 !important;
    font-weight: 600;
    padding: 1.5rem;
}

.faq-section .accordion-button:not(.collapsed) {
    box-shadow: none;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 77, 153, 0.2);
}

.faq-section .accordion-body {
    padding: 1.5rem;
    color: #4a4a4a;
    line-height: 1.6;
}

.faq-section .read-btn {
    color: #003;
    background-color: #fff;
    border: none;
    padding: 12px 50px;
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    letter-spacing: 2px;
    display: inline-block;
    margin: 20px 0;
}

.faq-section .pill-image {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

#home-contact-form-section {
    background: url('../image/GET-in-Touch.jpg') no-repeat center center/cover;
}

.contact-form-section .form-container-header h2 {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-form-section .form-container-header p {
    margin-bottom: 2rem;
    color: #fff;
    line-height: 1.6;
}

.contact-form-section .form-container {
    background: linear-gradient(135deg, #004d99 0%, #001a33 100%);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-section .form-container .form-control {
    border-radius: 8px;
    padding: 0.75rem;
}

.contact-form-section .form-container .submit-btn {
    background: #0088cc;
    border: none;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.contact-form-section .form-container .submit-btn:hover {
    background: #006699;
}

.common-banner-section {
	width: 100%;
	height: auto;
    padding: 0;
    margin-top: 135px;
	overflow-x: hidden;    
}

#about-banner-section {
    background: url('../image/about-banner.jpg') no-repeat center top/cover;
}

.common-banner-section .banner-content {
    padding: 200px 100px;
}

.common-banner-section .banner-content h1 {
    font-size: 60px;
    font-weight: 600;
    margin-bottom: 30px;
}

.common-banner-section .banner-content ul.breadcrumb {
    display: flex;
    list-style: none;
}

.common-banner-section .banner-content ul.breadcrumb li {
    font-size: 20px;
    margin-right: 10px;
}

.common-banner-section .banner-content ul.breadcrumb li a {
    text-decoration: none;
    color: inherit;
}

.common-banner-section .banner-content .call-btn {
    color: #000;
    background-color: #fff;
    border: none;
    padding: 15px 35px;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;    
}

.image-border-radious {
    border-radius: 10px;
}

.section-bg-color {
    background-color: #A5DCED;
}

#products-banner-section {
    background: url('../image/products-banner.jpg') no-repeat center top/cover;
}

#contact-banner-section {
    background: url('../image/Contact-Form.jpg') no-repeat center top/cover;
}

#contact-contact-form-section {
    background: url('../image/About-Us-5.jpg') no-repeat center center/cover;
}

.contact-map {
    margin-bottom: -7px;
}

#faq-banner-section {
    background: url('../image/faq2.jpg') no-repeat center center/cover;
}

#faq-faq-sec {
	background: #A5DCED !important;
}

#faq-faq-sec .faq-title {
    color: #000;
}

#faq-faq-sec .faq-subtitle {
    color: #000;
}

.footer-section {
    background: url('../image/Footer.jpg') no-repeat center center/cover;
    color: #ffffff;
    padding: 3rem 0;
}

.footer-logo {
    width: 160px;
    height: 90px;
    background-color: #fff;
    border-radius: 50%;
    padding: 10px 15px;
    margin: auto;
}

.footer-section .footer-logo img {
    width: 130px;
}

.footer-section .social-links {
    margin: 50px 0 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-section .social-links img {
    width: 100px;
}

.footer-section .social-links a.facebook-icon {
    font-size: 30px;
	text-decoration: none;
	color: #fff;
	margin-left: 10px;
}

.footer-section .social-links span {
    font-size: 18px;
    vertical-align: middle;
    font-weight: 600;
}

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

.footer-section .nav-links li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
}

.footer-section h5 {
    font-size: 24px;
    font-weight: 600;
    margin: 0px 0 30px;
}

.footer-section .contact-info .contact-item {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.footer-section .contact-info .contact-item i {
    margin-right: 10px;
    font-size: 20px;
}

.footer-section .company-info .contact-item p {
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #fff;
    padding-top: 1.5rem;
    margin-top: 2rem;
}

/* Back to top button styling */
#backToTop {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 50px;
	height: 50px;
	background: linear-gradient(to bottom, #0B5FA4, #000A38);
	color: white;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: none; /* Hidden initially */
	justify-content: center;
	align-items: center;
	box-shadow: 0 0 10px 0 #ffffff80;
	transition: background-color 0.3s, transform 0.3s;
	z-index: 1000;
}

#backToTop:hover {
	transform: translateY(-3px);
}

#backToTop i {
	font-size: 25px;
}

#all-product .card .card-body .card-title {
	text-align: center;
	font-weight: 600;
}
