/* Universal Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Body Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #fff;
    color: #000;
}

/* Headings Styles */
h1 {
    font-size: 46px;
    line-height: 54px;
    font-weight: 800;
    color: #000;
}

h2 {
    font-size: 38px;
    line-height: 46px;
    font-weight: 800;
    color: #000;
}

h3 {
    font-size: 32px;
    line-height: 40px;
    font-weight: 700;
    color: #000;
}

h4 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    color: #000;
}

h5 {
    font-size: 20px;
    line-height: 26px;
    font-weight: 600;
    color: #000;
}

p {
    font-size: 16px;
}

.container {
    max-width: 1280px;
}

img {
    width: 100%;
}


/* Colors */
:root {
    --primary-color: #123B47;
    --accent-color: #ed673e;
    --secondary-color: #218CB1;
    --grey-color: #f6f4f5;
    --white-color: #ffffff;
    --black-color: #000;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    transition: background 0.3s;
}

.cta-button:hover {
    background-color: var(--black-color);
    color: white;
}

/* Header Styles */
header {
    padding-inline: 50px;
    position: sticky;
    top: 12px;
    z-index: 9;
    margin-top: -100px;
}

header a.navbar-brand.desktop-logo {
    display: none;
}

.hamburger {
    display: inline-block;
    cursor: pointer;
    width: 25px;
    height: 20px;
    position: relative;
    transition: transform 0.3s ease;
}

.hamburger span {
    background: #000;
    position: absolute;
    height: 3px;
    width: 100%;
    left: 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Three lines */
.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 8px;
}

.hamburger span:nth-child(3) {
    top: 16px;
}

button.btn-close {
    opacity: 1;
    height: 20px;
    width: 20px;
    font-size: 20px;
    position: relative;
}

.offcanvas-header {
    justify-content: end;
    padding-right: 22px;
    padding-bottom: 0px;
    padding-top: 25px;
}

/* Navigation Styles */
.navbar-brand {
    padding: 0;
    margin: 0;
}

span.navbar-toggler-icon {
    background: var(--accent-color);
    border-radius: 5px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar img.logo {
    width: 100%;
    max-width: 140px;
    object-fit: cover;
}

.navbar ul.navbar-nav {
    gap: 20px;
}

.navbar .container {
    background: #fff;
    border-radius: 15px;
    box-shadow: rgb(50 50 93 / 17%) 0px 50px 100px -20px, rgb(0 0 0 / 21%) 0px 30px 60px -30px, rgb(10 37 64 / 21%) 0px -2px 6px 0px inset;
}

.navbar a.nav-link.active {
    border-bottom: 2px solid var(--accent-color);
}

.navbar .nav-link {
    color: var(--secondary-color);
    font-weight: 800;
}

.navbar a.nav-link:hover {
    border-bottom: 2px solid #ed673e;
}

/* hero-banner-css */
section.hero-banner {
    background-image: url('../Images/banner-background.jpg');
    padding: 200px 0px 200px 0px;
    background-position: center;
    background-size: cover;
}

.hero-banner .hero-content {
    max-width: 600px;
}

.hero-banner .hero-content h1 {
    font-weight: 800;
    text-transform: capitalize;
    color: #000;
}

.hero-banner .hero-content h4 {
    background-color: #218cb1;
    font-weight: revert;
    margin-bottom: 15px;
    text-transform: uppercase;
    display: inline-block;
    letter-spacing: 2px;
    padding: 6px 20px;
    font-size: 14px;
    border-radius: 100px;
    color: #fff;
}

.hero-banner .hero-content h1 span {
    color: var(--accent-color);
}

.hero-banner .hero-content p {
    font-size: 20px;
    color: #000;
    margin-block: 30px;
    line-height: 30px;
}

.hero-banner .hero-image img {
    width: 500px;
    max-width: 100%;
    border-radius: 20px;
}

/* Info-css */
.info-details {
    margin-top: -100px;
}

.info-card i {
    color: #ffff;
}

.info-card {
    color: white;
    border-radius: 15px;
    padding: 35px;
    height: 100%;
    transition: all .5s;
}

.info-card h6 {
    font-size: 20px;
}

.info-card h6 i {
    background: #ffff;
    color: #f7931e;
    font-size: 18px;
    border-radius: 100px;
    padding: 8px;
    margin-top: 5px;
}

.info-card.bg-bl.text-white {
    background: var(--accent-color);
}

.info-card a.btn.btn-outline-light.btn-sm {
    padding: 6px 20px;
    font-size: 18px;
}

.info-card li {
    margin-bottom: 6px;
}

.info-card:hover {
    transform: translateY(-10px);
}

.info-card .icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.info-card h3 {
    color: #fff;
}

.info-card p {
    margin-bottom: 30px;
}

.info-card.bg-dark-blue {
    background-color: #218cb1;
}

.info-card.bg-blue {
    background-color: var(--accent-color);
}

.info-card.bg-orange {
    background-color: #123B47;
}

/* About us css */
.about-section {
    padding: 100px 0;
}

.tag {
    display: inline-block;
    background-color: #218cb1ad;
    color: #fff;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.about-section .about-description {
    font-size: 18px;
}

.about-section .checklist {
    list-style: none;
    padding-left: 0;
}

.about-section .checklist li {
    margin-bottom: 5px;
    font-size: 16px;
}

.about-section .checklist li i {
    color: var(--accent-color);
    margin-right: 8px;
}

.left-about-img {
    position: relative;
    padding-bottom: 550px;
    border-radius: 15px;
    overflow: hidden;
    background-color: var(--accent-color);
}

.about-section .about-img {

    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    object-fit: cover;
    left: 0px;
}

.about-section .right-content {
    padding-left: 40px;
}

/* Services css */
.services {
    padding: 100px 0px;
    background: #ed673e0d;
}

.services .card {
    border: none;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgb(0 0 0 / 0.05);
}

.services .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgb(0 0 0 / 0.1);
}

.services .card:hover img {
    transform: scale(1.2);
    opacity: 1;
}

.services .service-icon {
    position: relative;
    padding-bottom: 250px;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    background-color: var(--accent-color);
}

.services .service-icon img {
    width: 100%;
    height: 100%;
    position: absolute;
    transition: all 1s;
    top: 0;
    object-fit: cover;
    left: 0;
    opacity: .7;
}

.card-title {
    font-weight: 600;
    margin: 0px;
    color: var(--accent-color);
}

/* call-to-action-css */
.call-to-action {
    padding: 100px 0px;
}

.call-content {
    background-image: url(../Images/home-doctor-showing-test-results.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 1000px;
    margin: auto;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    padding: 80px 20px;
}

.call-content h2 {
    color: #fff;
}

.call-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(0 0 0 / 56%);
    z-index: -1;
    border-radius: 20px;

}

/* ABOUT-US-CSS */
.about-hero-banner {
    background-image: url('../Images/happy-korean-woman-medical-face-mask-thumbs-up-posing-with-cute-suitcare-tourist-going-vacatio.jpg');
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;
    height: 500px;
    padding: 200px 0px 100px 0px;
}

.about-hero-banner .hero-content {
    background: #ffffffc2;
    padding: 20px;
    border-radius: 20px;
}

.about-hero-banner .row {
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.about-hero-banner p {
    font-size: 18px;
    line-height: 26px;
}

/* ABOUT MV-css */
.mv-section {
    background-color: #f8f9fa;
    padding: 80px 0px;
}

.mv-section .mv-box {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    height:100%;
}

.mv-section .bg-orange {
    background: #ed673e !important;
}

.mv-section .mv-box:first-child {
    margin-bottom: 25px;
}

.mv-section .bg-orange p {
    color: #fff !important;
}

.mv-section .bg-orange i.fa.fa-eye,
.mv-section .bg-orange h3 {
    color: #fff;
}

.mv-section .mv-icon {
    font-size: 48px;
    color: #ed673e;
}

.mv-section .mv-text {
    font-size: 1.05rem;
    color: #555;
}

.mv-section .mv-center-img img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
}

.mv-section .mv-center-img {
    height: 100%;
}

/* Services */
.services-hero-banner {
    background-image: url('../Images/services-banner.jpg');
    background-position: top;
    height: 500px;
}

/* Servies-card CSS */
.servies-card-wrapper {
    padding-block: 100px;
}

.servies-card-wrapper a.cta-button {
    padding: 8px 18px;
}

.servies-card-wrapper .container {
    max-width: 1100px;
}

.servies-card-wrapper.row.services-card-img {
    background: #123B47;
    color: #fff;
}

.servies-card-wrapper img {
    border-radius: 10px;

}

.servies-card-wrapper .col-md-6.right-text-wrapper {
    padding-left: 50px;
}

.servies-card-wrapper .row.services-card-img {
    align-items: center;
}

.servies-card-wrapper img {
    height: 260px;
    object-fit: cover;
}

.servies-card-wrapper .center-row {
    margin-block: 50px;
}

.servies-card-wrapper .row {
    background: #F7AB92;
    padding: 50px;
    border-radius: 20px;
}

.servies-card-wrapper .center-row .right-text-wrapper {
    padding-left: 0px !important;
    padding-right: 80px;
}

/* blog page css */

.blogs-hero-banner {
    background-image: url('../Images/blogs-banner.jpg');
    background-position: center;
}

.blogs-hero-banner .hero-content {
    background: #ffffffd4;
}

/*blogs wrapper */
.blogs-wrapper {
    padding: 80px 0px;
}

.blogs-wrapper .row.blog-grid {
    margin-top: 40px;
}

.blogs-wrapper h2 {
    text-align: center;
}

.blogs-wrapper .blog-card {
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
    margin-bottom: 30px;
}

.blogs-wrapper .row.blog-grid .col-md-4 {
    padding-inline: 15px;
}

.blogs-wrapper .blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.blogs-wrapper .blog-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.load-more-btn {
    text-align: center;
    margin-top: 10px;
}

.blogs-wrapper .blog-card a:first-child {
    position: relative;
    padding-bottom: 220px;
    display: block;
}

.blogs-wrapper .blog-content {
    padding: 20px;
}

.blogs-wrapper .blog-title {
    font-size: 22px;
    line-height: 24px;
    color: #000;
    margin-bottom: 5px;
}

.blogs-wrapper .blog-meta {
    font-size: 16px;
    color: #777;
    font-weight: 600;
    margin-bottom: 5px;
}

.blogs-wrapper .read-more {
    text-decoration: none;
    color: #ed673e;
    font-weight: bold;
    transition: color 0.3s;
}

.blogs-wrapper .read-more:hover {
    color: var(--primary-color);
}

/* Contact page start */

.contact-banner {
    background-image: url('../Images/contact-us-banner.jpg');
    background-position: top;
    height: 500px;
}

/* contact-us-wrapper css */
section.custom-form {
    padding: 80px 0px;
    background: #ed673e0d;
}

.contact-us-wrapper {
    padding: 80px 0px;
}

section.custom-form {
    padding-bottom: 80px;
}

.contact-us-wrapper .info-list .icon a {
    display: inline-flex;
    gap: 5px;
    text-decoration: none;
    color: #000;
    align-items: center;
    gap: 10px;
}

.contact-us-wrapper .info-list .icon {
    margin-bottom: 15px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    transition: all .5s;
}

.contact-us-wrapper .info-list .icon:hover {
    transform: translateY(-6px);
}

.contact-us-wrapper .info-list .icon p {
    margin-bottom: 0px;
    color: #000;
}

.contact-us-wrapper .info-list {
    margin-top: 30px;
}

.contact-us-wrapper .container {
    max-width: 1080px;
}

.contact-us-wrapper .row {
    background: #f6f4f5;
    padding: 50px;
}

.contact-us-wrapper .icon i {
    background: #ed673e;
    padding: 20px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 100px;
}

.contact-us-wrapper iframe {
    width: 100%;
    border-radius: 15px;
    height: 100%;
    margin-left: 30px;
}

.contact-us-wrapper .row {
    background: #f6f4f5;
    padding: 50px;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
}

.contact-us-wrapper .social-icon {
    background: #123b47;
    border-radius: 10px;
}

.contact-us-wrapper .social-icon i {
    transition: all .5s;
}

.contact-us-wrapper .social-icon i:hover {
    transform: translateY(-5px);
}

.contact-us-wrapper .info h5 {
    margin: 0px;
}

.custom-form .col-md-7 form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.custom-form .col-md-7 label {
    font-weight: 600;
    color: #444;
    margin-bottom: 6px;
    display: block;
}

.custom-form .col-md-7 input,
.custom-form .col-md-7 textarea {
    width: 100%;
    padding: 12px 14px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.custom-form .col-md-7 input:focus,
.custom-form .col-md-7 textarea:focus {
    border-color: #ed673e;
    background-color: #fff;
    box-shadow: 0 0 6px #ed673e;
    outline: none;
}

.custom-form .col-md-7 textarea {
    resize: vertical;
    min-height: 120px;
}

.custom-form .col-md-7 button:hover {
    background-color: #000 !important;
}

.custom-form .right-image img {
    border-radius: 20px;
}

.custom-form .col-md-7 button {
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    background: #ed673e;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.custom-form .right-image {
    padding-left: 20px;
}

.custom-form .col-md-7 {
    box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
    padding: 50px;
    border-radius: 20px;
    background: #fff;
}

/* single-post-page */
.single-post-wrapper {
    background-image: url('../Images/blog_3.jpg');
    background-position: top;
    height: 500px;
}

.single-post {
    padding-top: 80px;
}

.single-post .left-images img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 10px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.single-post .left-content p {
    font-size: 15px;
    color: #333;
}

.single-post .right-content {
    background-color: #f3f1e7;
    padding: 30px;
    border-radius: 6px;
    height: 450px;
}

.single-post .right-content h2 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #111;
}

.single-post .right-content p {
    font-size: 15px;
    margin-bottom: 20px;
    color: #555;
}

.single-post .meta {
    font-size: 14px;
    color: #444;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
}

.single-post .meta span {
    display: flex;
    align-items: center;
}

.single-post .meta span::before {
    content: "📧";
    margin-right: 8px;
}

.single-post .meta span:last-child::before {
    content: "📅";
}

.single-post .left-images {
    position: relative;
    padding-bottom: 400px;
    background: #ed673e;
    border-radius: 15px;
}

.single-post .blogs-wrapper {
    padding: 50px 0px;
    margin-top: 50px;
    border-top: 1px solid #e1dede;
}









/* Footer-css */
.footer {
    background-color: #123b47;
    color: #fff;
    padding: 80px 0px 20px 0px;
}

.social-icons {
    margin-top: 20px;
}

.footer h5 {
    color: #fff;
    font-size: 22px;
    text-transform: uppercase;
}

.footer .footer-links a {
    color: #ddd;
    text-decoration: none;
    margin-right: 15px;
    transition: all 0.4s;
}

.footer ul li {
    margin-bottom: 8px;
}

.copy-right.text-center {
    margin-top: 40px;
}

.copy-right.text-center P {
    font-size: 16px;
}

.footer .footer-links a:hover {
    color: #ed673e;
}

.footer .social-icons i {
    color: #ddd;
    font-size: 25px;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.footer .social-icons i:hover {
    color: #ed673e;
}

.footer .contact-info {
    font-size: 1rem;
}

.footer-logo img {
    width: 220px;
}

.footer .copyright {
    margin-top: 30px;
    text-align: center;
    font-size: 0.875rem;
    color: #ccc;
}