/* ========================================
   MINDFUL PATH WELLNESS - MAIN STYLESHEET
   A Modern Mental Health Clinic Website
   ======================================== */

/* CSS Variables - Design System */
:root {
    /* Primary Colors */
    --primary-green: #3894c1;
    --primary-green-light: #1b6183;
    --primary-green-dark: #f88920;

    /* Secondary Colors */
    --secondary-yellow: #f88920;
    --secondary-yellow-light: #f88920;
    --secondary-yellow-dark: #f88920;

    /* Accent Colors */
    --accent-orange: #e89b5c;
    --accent-orange-light: #f0b88a;
    --accent-orange-dark: #d17a3a;

    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #fafaf8;
    --cream: #f5f3ef;
    --light-gray: #e8e6e1;
    --medium-gray: #9a9590;
    --dark-gray: #4a4540;
    --charcoal: #2a2825;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #3894c1 0%, #1a6e97 100%);
    --gradient-warm: linear-gradient(135deg, var(--secondary-yellow-light) 0%, var(--accent-orange-light) 100%);
    --gradient-soft: linear-gradient(180deg, var(--off-white) 0%, var(--cream) 100%);

    /* Typography */
    /* --font-heading: 'Playfair Display', Georgia, serif; */
    /* --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; */

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.4rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 50%;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(45, 90, 74, 0.08);
    --shadow-md: 0 4px 20px rgba(45, 90, 74, 0.12);
    --shadow-lg: 0 8px 40px rgba(45, 90, 74, 0.16);
    --shadow-xl: 0 16px 60px rgba(45, 90, 74, 0.2);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--charcoal);
    background-color: var(--off-white);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul,
ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--charcoal);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

h5 {
    font-size: 1.125rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.lead {
    font-size: 1.25rem;
    line-height: 1.8;
}

.text-accent {
    color: var(--primary-green);
}

.text-warm {
    color: var(--accent-orange);
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.container-narrow {
    max-width: 800px;
}

.section {
    padding: 50px 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-header h2 {
    margin-bottom: 10px;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 18px;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-green);
    margin-bottom: 5px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-xl);
    transition: var(--transition-normal);
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-green-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-green-dark);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
}

.btn-accent {
    background: var(--gradient-warm);
    color: var(--charcoal);
    box-shadow: var(--shadow-md);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: 1rem 1.5rem;
    font-size: 1.125rem;
    line-height: 1.125rem;
}

.btn-sm {
    padding: 12px 20px;
    font-size: 17px;
    line-height: 27px;
}

.btn-check:checked+.btn:focus-visible,
.btn.active:focus-visible,
.btn.show:focus-visible,
.btn:first-child:active:focus-visible,
:not(.btn-check)+.btn:active:focus-visible {
    box-shadow: unset;
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    color: var(--bs-btn-active-color);
    background-color: unset;
    border-color: var(--bs-btn-active-border-color);
}

/* Hero Main */

section.hero-main {
    position: relative;
    z-index: 2;
    padding: 0 0 40px;
}

.video-sec {
    position: relative;
    z-index: 2;
}

.video-sec::after {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background: #000;
    opacity: 0.3;
    bottom: 0;
    top: 0;
    z-index: 0;
}

/* .video-sec::before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    margin: auto;
    height: 550px;
    width: 100%;
    background: url(../img/homeherobg.webp) no-repeat;
    opacity: 0.5;
    bottom: 0;
    z-index: 2;
    background-position: bottom;
    background-size: cover;
} */

.logo-hero img {
    width: 250px;
    background: #fff;
    border-radius: 50%;
    padding: 0;
    border: 10px solid;
    border-color: #dbdbdbcf;
    margin: auto;
}

.video-content {
    z-index: 33;
    position: absolute;
    top: 20%;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}

.video-content h5 {
    font-size: 24px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 40px;
}

.video-content h2 {
    color: #fff;
    font-size: 70px;
    line-height: 70px;
    margin-bottom: 20px;
}

.video-content ul.btn-slide {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.btn:focus-visible {
    outline: unset;
}

:not(.btn-check)+.btn:active {
    border: none;
}

.logo-hero {
    margin-top: -140px;
    z-index: 9;
    position: relative;
}

.video-content ul.btn-slide a {
    color: #fff;
    font-size: 17px;
    display: inline-block;
    border: 1px solid #fff;
    padding: 10px 30px 12px;
    border-radius: 3px;
    transition: all 0.4s linear;
}

.video-content ul.btn-slide li:nth-child(1) a,
.video-content ul.btn-slide li:nth-child(3) a {
    background-color: #f88920;
    color: #fff;
    border-color: #f88920;
}

.video-content ul.btn-slide li a:hover {
    background: #fff !important;
    color: #000;
    border-color: #fff !important;
}

.video-content ul.btn-slide li:nth-child(2) a {
    background: #3894c1;
    border-color: #3894c1;
}

.left-list ul li a,
.left-right ul li a {
    font-size: 17px;
    background: #fffdf542;
    padding: 13px 20px 15px;
    border-radius: 10px;
    color: #fff;
}

.left-list ul li,
.left-right ul li {
    margin-bottom: 60px;
}

.left-list ul li:nth-child(1) {
    padding-left: 100px;
}

.left-right ul li:nth-child(1) {
    padding-right: 100px;
}

.left-list,
.left-right {
    margin-top: 60px;
}

.left-list ul li a i,
.left-right ul li a i {
    background: #fff;
    height: 35px;
    width: 35px;
    color: #333;
    line-height: 35px;
    border-radius: 20px;
    margin-right: 5px;
}

/* Hero Section */
.hero {
    position: relative;
    background: var(--gradient-soft);
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(244, 197, 91, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 50%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(45, 90, 74, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: rgba(45, 90, 74, 0.1);
    color: var(--primary-green);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: 50px;
    line-height: 50px;
    margin-bottom: 15px;
}

.hero h1 span {
    color: var(--primary-green);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--dark-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.hero-stats {
    display: flex;
    gap: var(--spacing-xl);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1;
}

.stat-label {
    font-size: 18px;
    color: #333;
    margin-top: var(--spacing-xs);
}

.hero-image {
    position: relative;
}

.hero-image-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-image-main img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hero-floating-card {
    position: absolute;
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
}

.hero-floating-card.card-1 {
    top: 10%;
    left: -10%;
}

.hero-floating-card.card-2 {
    bottom: 15%;
    right: -5%;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Welcome Section */
.welcome {
    background: var(--white);
}

.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.welcome-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.welcome-text h2 {
    line-height: 50px;
    margin-bottom: 20px;
    font-weight: 700;
}

.welcome-text p {
    margin: 0;
}

.welcome-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 17px;
    line-height: 22px;
    font-weight: 500;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(45, 90, 74, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
    stroke: #f88920;
}

/* Services Section */
.services {
    background: var(--gradient-soft);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.service-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-warm);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-hero);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
}

.service-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--white);
}

.service-card h4 {
    margin-bottom: var(--spacing-sm);
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: var(--spacing-md);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.95rem;
}

.service-link svg {
    width: 16px;
    height: 16px;
    transition: var(--transition-normal);
}

.service-link:hover svg {
    transform: translateX(5px);
}

/* Conditions Section */
.conditions {
    position: relative;
    padding: 0;
    overflow: hidden;
    background: url(../img/team-work.jpeg) no-repeat;
    background-size: cover;
    padding: 60px 0;
    z-index: 2;
}

/* .video-background {
    position: absolute;
    left: 0;
    top: 10%;
    right: 0;
    z-index: 99;
} */

.conditions::after {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    background: #000;
    opacity: 0.5;
}

.conditions span.section-label {
    color: #fff;
}

.conditions h2 {
    color: #fff;
}

.conditions p {
    color: #fff;
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.condition-card {
    text-align: center;
    padding: 30px 10px;
    border-radius: var(--radius-lg);
    background: var(--cream);
    transition: var(--transition-normal);
}

.condition-card:hover {
    background: var(--primary-green);
    box-shadow: var(--shadow-md);
}

.condition-card:hover h5,
.condition-card:hover p {
    color: #fff;
}

.condition-icon {
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    box-shadow: var(--shadow-sm);
}

.condition-icon svg {
    width: 35px;
    height: 35px;
    stroke: #f88920;
}

.condition-card h5 {
    margin-bottom: var(--spacing-xs);
    color: var(--charcoal);
    line-height: 28px;
    font-size: 21px;
}

.condition-card p {
    font-size: 17px;
    color: #333;
    margin: 0;
}

/* Why Choose Us Section */
.why-us {
    background: var(--gradient-hero);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.why-us .section-label {
    color: var(--secondary-yellow);
}

.why-us h2 {
    color: var(--white);
}

.why-us p {
    color: rgba(255, 255, 255, 0.85);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.why-us-card {
    text-align: center;
    padding: 30px 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-normal);
}

.why-us-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.why-us-icon {
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.why-us-icon svg {
    width: 35px;
    height: 35px;
    stroke: var(--primary-green);
}

.why-us-card h5 {
    color: var(--white);
    margin-bottom: var(--spacing-xs);
    font-size: 20px;
}

.why-us-card p {
    font-size: 0.9rem;
    margin: 0;
}

/* Team Section */
.team {
    background: var(--gradient-soft);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.team-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: var(--cream);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition-slow);
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-lg);
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    opacity: 0;
    transition: var(--transition-normal);
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: var(--spacing-sm);
}

.team-social a {
    width: 36px;
    height: 36px;
    background: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
}

.team-social a:hover {
    background: var(--primary-green);
    color: var(--white);
}

.team-info {
    padding: var(--spacing-lg);
    text-align: center;
}

.team-info h4 {
    margin-bottom: var(--spacing-xs);
}

.team-role {
    color: var(--primary-green);
    font-weight: 500;
    font-size: 19px;
    margin-bottom: 5px;
}

.team-credentials {
    font-size: 0.85rem;
    color: var(--medium-gray);
    margin-bottom: var(--spacing-md);
}

.team-bio {
    font-size: 17px;
    color: var(--dark-gray);
    margin-bottom: 5px;
}

/* Testimonials Section */
.testimonials {
    background: var(--white);
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--cream);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
}

.testimonial-card::before {
    content: '"';

    font-size: 8rem;
    color: var(--primary-green);
    opacity: 0.1;
    position: absolute;
    top: -20px;
    left: 30px;
    line-height: 1;
}

.testimonial-content {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    overflow: hidden;
    background: var(--light-gray);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h5 {
    color: var(--charcoal);
    margin-bottom: 0;
}

.testimonial-info span {
    font-size: 0.875rem;
    color: var(--medium-gray);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.testimonial-rating svg {
    width: 20px;
    height: 20px;
    fill: var(--secondary-yellow);
}

/* CTA Section */
.cta-section {
    background: #f88920;
    padding: 60px 0;
    text-align: center;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: var(--spacing-md);
    color: #fff;
    font-weight: 600;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #fff;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 19px;
    color: #ffff;
}

.cta-feature svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
}

/* FAQ Section */
.faq {
    background: var(--gradient-soft);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: var(--spacing-md);
}

.faq-question h5 {
    flex: 1;
    margin: 0;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    background: var(--cream);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-normal);
}

.faq-toggle svg {
    width: 16px;
    height: 16px;
    stroke: var(--primary-green);
}

.faq-item.active .faq-toggle {
    background: var(--primary-green);
}

.faq-item.active .faq-toggle svg {
    stroke: var(--white);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    margin-top: var(--spacing-md);
}

.faq-answer p {
    font-size: 0.95rem;
    margin: 0;
}

/* Footer */
.footer {
    background: url('../img/footer-bg.webp') no-repeat;
    padding-top: var(--spacing-2xl);
    /* background-blend-mode: luminosity; */
    /* background-color: #113474; */
    position: relative;
    z-index: 23;
    mix-blend-mode: multiply;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.footer::after {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    opacity: 0.9;
    background: #254352;
    z-index: -1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 10px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgb(253 253 253 / 44%);
}

.footer-brand p {
    color: #fff;
    margin: 0;
    font-size: 16px;
    margin-bottom: 20px;
    padding-right: 40px;
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--primary-green);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: var(--white);
}

.footer-column h5 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 27px;
}

.footer-links li {
    margin-bottom: 5px;
}

.footer-links a {
    color: #fff;
    font-size: 16px;
}

.footer-links a:hover {
    color: var(--secondary-yellow);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: 10px;
    color: #fff;
    font-size: 16px;
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
    flex-shrink: 0;
    margin-top: 5px;
}

.footer-bottom {
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom p {
    color: #fff;
    font-size: 16px;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: var(--spacing-lg);
}

.footer-bottom-links a {
    color: #fff;
    font-size: 16px;
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/* Page Headers */
.page-header {
    background: var(--gradient-hero);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at right, rgba(244, 197, 91, 0.2) 0%, transparent 60%);
}

.page-header h1 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
    font-size: 50px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.breadcrumb a {
    color: #fff;
    font-size: 20px;
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span {
    color: #f88920;
    font-size: 20px;
}

/* About Page */
.about-intro {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-warm);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.about-badge .number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1;
}

.about-badge .text {
    font-size: 0.875rem;
    color: var(--dark-gray);
}

.about-text h2 {
    margin-bottom: var(--spacing-lg);
}

.about-text p {
    margin-bottom: var(--spacing-md);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.value-card {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--cream);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.value-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--primary-green);
}

.value-card h5 {
    margin-bottom: var(--spacing-xs);
}

.value-card p {
    font-size: 0.9rem;
    margin: 0;
}

.approach {
    background: var(--white);
}

.approach-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.approach-text {
    order: 1;
}

.approach-image {
    order: 2;
}

.approach-list {
    margin-top: var(--spacing-lg);
}

.approach-item {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.approach-number {
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.approach-item h5 {
    margin-bottom: var(--spacing-xs);
}

.approach-item p {
    font-size: 0.95rem;
    margin: 0;
}

/* Services Page */
.services-detail {
    background: var(--white);
}

.service-detail-card {
    padding: 30px 20px;
    background: var(--cream);
    margin-bottom: 30px;
    border-radius: 10px;
}

.service-detail-icon img {
    border-radius: var(--radius-lg);
}

.service-detail-content h3 {
    margin-bottom: 12px;
    font-weight: 700;
}

.service-detail-content p {
    margin-bottom: 10px;
    font-size: 18px;
    color: #333;
}

.service-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 18px;
}

.benefit-item svg {
    width: 30px;
    height: 30px;
    stroke: var(--primary-green);
    flex-shrink: 0;
}

/* Conditions Page */
.conditions-detail {
    background: var(--gradient-soft);
}

.condition-detail-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.condition-detail-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.condition-detail-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-hero);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.condition-detail-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--white);
}

.condition-detail-header h3 {
    margin: 0;
}

.condition-detail-content p {
    margin-bottom: 10px;
    font-size: 17px;
}

.condition-detail-content h4 {
    margin-bottom: 10px;
    font-size: 25px;
    font-weight: 700;
}

.condition-symptoms {
    background: var(--cream);
    padding: 15px 20px;
    border-radius: var(--radius-md);
    margin-top: 15px;
}

.condition-symptoms h5 {
    margin-bottom: var(--spacing-md);
}

.symptoms-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
}

.symptom-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 17px;
}

.symptom-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary-green);
    flex-shrink: 0;
}

/* Team Page */
.team-page {
    background: var(--white);
}

.team-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.team-detail-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
}

.team-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.team-detail-image {
    height: 350px;
    background: var(--light-gray);
    overflow: hidden;
}

.team-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.team-detail-card:hover .team-detail-image img {
    transform: scale(1.05);
}

.team-detail-info {
    padding: var(--spacing-xl);
}

.team-detail-info h4 {
    margin-bottom: var(--spacing-xs);
}

.team-detail-role {
    color: var(--primary-green);
    font-weight: 500;
    margin-bottom: var(--spacing-xs);
}

.team-detail-credentials {
    font-size: 0.875rem;
    color: var(--medium-gray);
    margin-bottom: var(--spacing-md);
}

.team-specializations {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
}

.specialization-tag {
    background: var(--white);
    color: var(--primary-green);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 500;
}

/* Resources/Blog Page */
.resources-page {
    background: var(--gradient-soft);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.resource-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.resource-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.resource-image {
    height: 200px;
    background: var(--cream);
    overflow: hidden;
}

.resource-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.resource-card:hover .resource-image img {
    transform: scale(1.05);
}

.resource-content {
    padding: var(--spacing-lg);
}

.resource-category {
    display: inline-block;
    background: rgba(45, 90, 74, 0.1);
    color: var(--primary-green);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
}

.resource-content h4 {
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
}

.resource-content h4 a {
    color: var(--charcoal);
}

.resource-content h4 a:hover {
    color: var(--primary-green);
}

.resource-excerpt {
    font-size: 0.95rem;
    color: var(--dark-gray);
    margin-bottom: var(--spacing-md);
}

.resource-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--medium-gray);
}

.read-more {
    color: var(--primary-green);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.read-more svg {
    width: 14px;
    height: 14px;
    transition: var(--transition-normal);
}

.read-more:hover svg {
    transform: translateX(5px);
}

/* Contact Page */
.contact-section {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
}

.contact-info h3 {
    margin-bottom: var(--spacing-lg);
}

.contact-info>p {
    margin-bottom: var(--spacing-xl);
}

.contact-details {
    margin-bottom: var(--spacing-xl);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--cream);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-green);
}

.contact-item h5 {
    margin-bottom: var(--spacing-xs);
}

.contact-item p {
    margin: 0;
    font-size: 0.95rem;
}

.contact-hours h5 {
    margin-bottom: var(--spacing-md);
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid var(--light-gray);
    font-size: 0.95rem;
}

.contact-form-wrapper {
    background: var(--cream);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
}

.contact-form-wrapper h3 {
    margin-bottom: var(--spacing-lg);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: var(--spacing-xs);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-md);
    background: var(--white);
    transition: var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(45, 90, 74, 0.1);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.map-section {
    background: var(--gradient-soft);
}

.map-container {
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Book Appointment Section */
.book-appointment {
    background: var(--gradient-hero);
    padding: var(--spacing-3xl) 0;
}

.book-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.book-text h2 {
    color: var(--white);
    margin-bottom: var(--spacing-lg);
}

.book-text p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--spacing-xl);
}

.book-options {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.book-option {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    color: var(--white);
}

.book-option-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.book-option-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--secondary-yellow);
}

.book-form {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.book-form h3 {
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.team-card-content h3 {
    font-size: 27px;
    font-weight: 900;
    margin-bottom: 5px;
}

.team-card-image img {
    border-radius: 20px;
    border: 5px solid var(--primary-green);
}

.contact-info-item {
    display: flex;
    gap: 10px;
}

.logo img.img-fluid {
    width: 160px;
    transition: all 0.3s linear;
    margin: auto;
}

.logo-slide img.img-fluid {
    width: 210px;
    box-shadow: 0 0 7px #0000004a;
    margin: 10px;
    padding: 10px;
    border-radius: 10px;
    background: #fff;
}

.logo-main .section-header {
    border-bottom: 2px solid #bf6a19;
    margin-bottom: 40px;
    padding-bottom: 30px;
}

.logo-main .container-fluid {
    background: #f88920;
    padding: 60px 20px;
    border-radius: 20px;
}

.logo-main span.section-label,
.logo-main h2,
.logo-main p {
    color: #fff;
}

.logo-main h2 {
    text-transform: capitalize;
    font-size: 50px;
}

.logo-main .container-fluid .row {
    padding: 10px 60px;
}

.footer-brand .logo img.img-fluid {
    background: #fff;
    padding: 10px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        display: none;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .conditions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-detail-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-md);
    }

    .btn {
        padding: 0.875rem 1.5rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

ul.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.treatment-services-sec,
.our-mission-sec {
    padding: 40px 0;
}

section.treatment-services-sec {
    background: #fff;
}

.treatment-services-sec h3,
.our-mission-sec h3 {
    line-height: 50px;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 40px;
    text-align: center;
}

.box-mission {
    background: url(../img/mission-bg.png) no-repeat;
    background-size: contain;
    background-position: center;
    padding: 40px 50px;
    margin-top: 10px;
}

.box-mission p {
    font-size: 18px;
    color: #000;
}

.welcome-serene-sec {
    padding: 50px 0;
}

.welcome-serene-sec h3 {
    color: #000;
    font-size: 40px;
    margin-bottom: 10px;
    font-weight: 700;
}

.welcome-serene-sec p {
    color: #000;
    font-size: 19px;
    margin-bottom: 15px;
}

.welcome-serene-sec h5 {
    font-size: 23px;
    font-weight: 600;
    color: #000;
}

.welcome-serene-sec ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.welcome-serene-sec ul li {
    font-size: 19px;
}

.welcome-serene-sec img.img-fluid {
    border-radius: 20px;
}

.icon3 svg {
    height: 80px;
    width: 80px;
    background: #eaeeed;
    padding: 15px;
    border-radius: 20px;
}

/* section.three-box-sec {
    padding: 60px 0;
}

.icon3 {
    margin-bottom: 10px;
} */

/* .content3 h4 {
    font-size: 30px;
    font-weight: 600;
}

.content3 p {
    font-size: 16px;
    margin: 0;
    line-height: 27px;
}

.icon-content {
    text-align: center;
    padding: 30px 10px;
    box-shadow: 0 0 8px 2px #00000047;
    border-radius: 10px;
} */

.condition-detail-header img {
    border-radius: 10px;
}

.condition-detail-content h3 {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 40px;
}

/* Header Css */

.as-header {
    position: relative;
    z-index: 1;
}

.header-layout5 .top-area {
    background-color: #254352;
    border-bottom: 1px solid #ffffffbf;
}

.header-layout5 .header-top {
    padding: 12px 0;
    --body-color: #fff;
    border-bottom: 1px solid #f2f2f236;
}

.header-notice {
    margin-bottom: 0;
    color: #fff;
    display: inline-block;
}

.background-image {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.header-links ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.header-links li {
    display: inline-block;
    position: relative;
    font-size: 16px;
    color: #fff;
    font-weight: 400;
}

.header-links li i {
    margin-right: 5px;
    color: #fff;
}

.header-layout5 .header-top a {
    color: #fff;
}

.header-layout5 .menu-top {
    padding: 10px 0;
}

.header-layout5 .header-link {
    color: #fff;
    padding-right: 10px;
    margin-right: 10px;
    border-right: 1px solid #f2f2f236;
    transition: all 0.3s;
    transition-timing-function: ease-in-out;
}

.header-link i {
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 17px;
    border: none;
    background: #f88920;
    color: #fff;
}

.header-layout5 .header-link:last-child {
    padding-right: 0;
    margin-right: 0;
    border-right: none;
}

.as-social a i {
    background-color: #f88920;
    color: #fff;
    font-size: 16px;
    text-align: center;
    margin-right: 5px;
    border-radius: 50%;
    height: 40px;
    transition: all .4s ease-in-out;
    line-height: 40px;
    width: 40px;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
}

.as-social a:hover i {
    background-color: #3894c1;
    color: #fff;
    border-color: #3894c1;
    transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
}

.header-layout5 .header-link:hover {
    color: #f88920;
}

.header-layout5 .menu-area {
    position: relative;
    background-color: var(--primary-green);
    z-index: 2;
}

.header-layout5 .menu-area::after {
    position: absolute;
    content: '';
    left: 0;
    background-color: #fff;
    right: 0;
    top: 0;
    margin: auto;
    width: 50%;
    font-size: 30px;
    line-height: 50px;
    /* opacity: 0.8; */
    z-index: -3;
    text-align: center;
    height: 50px;
    /* background: linear-gradient(to right, #f88920 100%, #3894c1 100%); */
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

.header-layout5 .menu-area::before {
    position: absolute;
    content: 'Serene Mental Health Center LLC';
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    width: 60%;
    font-size: 30px;
    line-height: 50px;
    /* opacity: 0.8; */
    z-index: -2;
    font-weight: 700;
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;
    background: linear-gradient(to right, #f88920 50%, #3894c1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* @keyframes textclip {
  
  from{
    text-shadow: -2px -2px 0 #bada55, -2px -1px 0 #bada55, -2px 0px 0 #bada55, -2px 1px 0 #bada55, -2px 2px 0 #bada55, -1px -2px 0 #bada55, -1px -1px 0 #bada55, -1px 0px 0 #bada55, -1px 1px 0 #bada55, -1px 2px 0 #bada55, 0px -2px 0 #bada55, 0px -1px 0 #bada55, 0px 0px 0 #bada55, 0px 1px 0 #bada55, 0px 2px 0 #bada55, 1px -2px 0 #bada55, 1px -1px 0 #bada55, 1px 0px 0 #bada55, 1px 1px 0 #bada55, 1px 2px 0 #bada55, 2px -2px 0 #bada55, 2px -1px 0 #bada55, 2px 0px 0 #bada55, 2px 1px 0 #bada55, 2px 2px 0 #bada55;
  }
  to {
    text-shadow: -2px -2px 0 #f88920, -2px -1px 0 #f88920, -2px 0px 0 #f88920, -2px 1px 0 #f88920, -2px 2px 0 #f88920, -1px -2px 0 #f88920, -1px -1px 0 #f88920, -1px 0px 0 #f88920, -1px 1px 0 #f88920, -1px 2px 0 #f88920, 0px -2px 0 #f88920, 0px -1px 0 #f88920, 0px 0px 0 #f88920, 0px 1px 0 #f88920, 0px 2px 0 #f88920, 1px -2px 0 #f88920, 1px -1px 0 #f88920, 1px 0px 0 #f88920, 1px 1px 0 #f88920, 1px 2px 0 #f88920, 2px -2px 0 #f88920, 2px -1px 0 #f88920, 2px 0px 0 #f88920, 2px 1px 0 #f88920, 2px 2px 0 #f88920;
  }
} */

/* .header-layout5 .menu-area .container {
    --main-container: 1562px;
    margin-left: auto;
    margin-right: 66px;
    max-width: 1590px;
} */

.sticky-wrapper {
    transition: all 0.3s linear;
}

/* 
.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 99;
    animation: smoothScroll 1s forwards;
    margin-top: 0
}

@keyframes smoothScroll {
    0% {
        transform: translateY(-40px)
    }

    100% {
        transform: translateY(0)
    }
} */

.header-layout5 .logo-shape {
    display: inline-block;
    height: 100%;
    width: 19%;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    background-size: auto;
    background-repeat: repeat;
    -webkit-clip-path: polygon(0 0, calc(100% - 100px) 0%, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, calc(100% - 100px) 0%, 100% 100%, 0% 100%);
    z-index: -1;
}

.header-logo {
    padding: 5px 0;
}

.header-logo img {
    width: 120px;
    margin: auto;
}

.header-layout5 .main-menu ul li {
    margin: 0 7px;
    list-style-type: none;
    display: inline-block;
    position: relative;
}

.header-layout5 .main-menu ul li::before {
    content: url('../img/nav-icon.png');
    position: absolute;
    top: 45%;
    right: -11px;
    transform: translateY(-50%);
}

.main-menu ul li:last-child::before {
    display: none;
}

.main-menu ul li:first-child {
    margin-left: 0 !important;
}

.main-menu ul li a {
    display: block;
    position: relative;
    font-weight: 500;
    font-size: 15px;
}

.main-menu ul li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    z-index: 999;
    height: 2px;
    background: #f88920;
    transition: var(--transition-normal);
}

.main-menu ul li a.active::after {
    width: 100%;
}

.main-menu ul li a:hover {
    color: #f88920 !important;
}

.header-layout5 .main-menu>ul>li>a {
    color: #fff;
    padding: 10px 0;
}

.header-logo h3 {
    margin-bottom: 0;
}

.main-menu ul.sub-menu,
.main-menu ul.mega-menu {
    position: absolute;
    text-align: left;
    top: 100%;
    left: 0;
    background-color: #fff;
    visibility: hidden;
    min-width: 190px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 7px;
    left: -14px;
    opacity: 0;
    z-index: -1;
    border: 1px solid #ecf1f9;
    border-radius: 10px;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -ms-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
}

.main-menu ul.sub-menu {
    padding: 15px 20px;
    left: -27px;
}

.main-menu ul li:hover>ul.sub-menu,
.main-menu ul li:hover ul.mega-menu {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    z-index: 9;
}

.main-menu ul.sub-menu li {
    display: block;
    margin: 0 0;
    padding: 0px 10px;
}

.main-menu ul.sub-menu li a {
    position: relative;
    padding-left: 23px !important;
    text-transform: capitalize;
}

.main-menu ul.sub-menu li a:before {
    content: "\f02d";
    position: absolute;
    top: 8px;
    left: 0;
    font-family: 'FontAwesome';
    width: 11px;
    height: 11px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    font-size: 0.9em;
    line-height: 1;
    color: #3894c1;
    font-weight: 700;
}

.main-menu ul.sub-menu a,
.main-menu ul.mega-menu a {
    font-size: 16px;
    line-height: 30px;
}

.sub-menu a {
    padding: 0 !important;
}

.main-menu ul li.menu-item-has-children>a:after {
    content: "\f107";
    position: relative;
    font-family: 'FontAwesome';
    margin-left: 7px;
    top: 1px;
}

.header-layout5 .as-menu-toggle {
    margin: 20px 30px;
    background-color: #f88920;
    cursor: pointer;
    width: 50px;
    height: 50px;
    line-height: 50px;
    padding: 0;
    font-size: 24px;
    border: none;
    color: #fff;
    border-radius: 5px;
}

.as-social {
    display: inline-block;
    padding-right: 10px;
}

.header-layout5 .header-button {
    margin-left: 0;
    gap: 10px;
}

.header-button {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    margin-left: 15px;
}

.icon-btn.style2 {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    line-height: 50px;
    height: 50px;
    width: 50px;
    border-radius: 50px;
}

.header-button .icon-btn {
    position: relative;
}

.read-more a {
    position: relative;
    z-index: 2;
    overflow: hidden;
    vertical-align: middle;
    display: inline-block;
    border: none;
    text-transform: capitalize;
    text-align: center;
    background-color: #fff;
    color: #333;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 13px 11px;
    box-shadow: 0px 6px 16px rgb(13 94 244 / 24%);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.read-more a:hover {
    color: #fff;
}

.read-more a:before {
    content: "";
    position: absolute;
    height: 0%;
    left: 50%;
    top: 50%;
    width: 600%;
    background-color: #f88920;
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(60deg);
    -ms-transform: translateX(-50%) translateY(-50%) rotate(60deg);
    transform: translateX(-50%) translateY(-50%) rotate(60deg);
    z-index: -1;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    -ms-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    -moz-transform: translateX(-50%) translateY(-50%) rotate(60deg);
    -o-transform: translateX(-50%) translateY(-50%) rotate(60deg);
}

.read-more a:hover::before {
    height: 560%;
}

.read-more a i {
    margin: 0;
}

.as-menu-wrapper.as-body-visible {
    opacity: 1;
    visibility: visible;
}

.as-menu-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999999;
    width: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all ease 0.8s;
    transition: all ease 0.8s;
    opacity: 0;
    visibility: hidden;
}

.as-menu-wrapper.as-body-visible .as-menu-area {
    left: 0;
    opacity: 1;
    visibility: visible;
}

.as-menu-wrapper .as-menu-area {
    width: 100%;
    max-width: 270px;
    background-color: #fff;
    border-right: 3px solid #3894c1;
    height: 100%;
    position: relative;
    left: -110%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all ease 1s;
    transition: all ease 1s;
    z-index: 1;
}

.as-menu-wrapper .as-menu-toggle {
    border: none;
    font-size: 22px;
    position: absolute;
    right: -16.5px;
    top: 25px;
    padding: 0;
    line-height: 1;
    width: 33px;
    height: 33px;
    line-height: 35px;
    font-size: 18px;
    z-index: 1;
    color: #fff;
    background-color: #3894c1;
    border-radius: 50%;
}

.as-menu-wrapper .mobile-logo {
    padding-bottom: 30px;
    padding-top: 40px;
    display: inline-block;
    text-align: center;
    border-bottom: 1px solid #7f7878;
    width: 100%;
}

.as-mobile-menu {
    overflow-y: scroll;
    /* max-height: calc(100vh - 200px); */
    padding-bottom: 40px;
    margin-top: 10px;
    text-align: left;
}

.as-mobile-menu>ul {
    padding: 0 20px;
}

.as-mobile-menu ul li {
    border-bottom: 1px solid #fdedf1;
    list-style-type: none;
}

.as-mobile-menu ul li a {
    display: block;
    position: relative;
    padding: 12px 0;
    line-height: 1.4;
    font-size: 18px;
    text-transform: capitalize;
    color: #0f2239;
    padding-left: 18px;
}

.as-mobile-menu ul li a:before {
    content: "\f105";
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
    top: 12px;
    margin-right: 10px;
    display: inline-block;
}

.as-mean-expand {
    position: absolute;
    right: 0;
    top: 50%;
    font-weight: 400;
    font-size: 12px;
    width: 25px;
    height: 25px;
    line-height: 25px;
    margin-top: -12.5px;
    display: inline-block;
    text-align: center;
    background-color: #f3f7fb;
    color: #3894c1;
    -webkit-box-shadow: 0 0 20px -8px rgb(173 136 88 / 50%);
    box-shadow: 0 0 20px -8px rgb(173 136 88 / 50%);
    border-radius: 50%;
}

.as-mean-expand:before {
    content: "\f067";
    font-family: 'FontAwesome';
}

.as-mobile-menu ul .as-item-has-children>a:after {
    content: "\f067";
    font-family: 'FontAwesome';
    width: 22px;
    height: 22px;
    line-height: 22px;
    display: inline-block;
    text-align: center;
    font-size: 12px;
    border-radius: 50px;
    background-color: #f3f7fb;
    /* float: right; */
    margin-top: 1px;
}

.as-mobile-menu ul li ul li {
    padding-left: 20px;
}

.as-mobile-menu ul .as-item-has-children.as-active>a .as-mean-expand:before {
    content: "\f068";
}

@media (min-width:320px) and (max-width:600px) {
    .header-layout5 .menu-area .container {
        margin-right: auto;
    }

    .header-layout5 .logo-shape {
        width: 65%;
    }
}

ul#menu-main-menu-1 {
    padding: 0;
    margin: 0;
}

.main-box {
    margin-top: 30px;
    position: relative;
}

.treatment-content {
    position: absolute;
    background: #11678dd4;
    bottom: 0;
    width: 100%;
    height: 25%;
    text-align: center;
    display: flex;
    align-items: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    justify-content: center;
    transition: all 0.4s linear;
}

.main-box:hover .treatment-content {
    height: 100%;
}

.treatment-content h4 {
    color: #fff;
    font-size: 27px;
    text-transform: capitalize;
}

.main-box img.img-fluid {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.world-map {
    background-image: url(../img/world_map_blue_dots.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px 0;
}

.world-map h2 {
    font-size: 40px;
    line-height: 40px;
    font-weight: 600;
}

.world-map h5 {
    font-size: 22px;
    padding: 20px 0;
    color: #6c757d;
}

.world-map h4 {
    font-size: 19px;
    margin: 0;
    line-height: 28px;
    color: #6c757d;
}

.world-map-about {
    padding-top: 20px;
}

.world-map-about p {
    font-size: 22px;
    line-height: 32px;
    color: #6c757d;
}

.pad-top {
    padding-top: 30px;
}

.card {
    width: 480px;
    border-radius: 15px;
    box-shadow: 0 0 50px 0 rgba(7, 45, 85, 0.2);
}

.card-body h2 {
    font-size: 30px;
    color: #007bff;
}

.card-body img {
    width: 50px;
}

.card-body p {
    margin: 20px 0;
    color: #6c757d;
    font-size: 16px;
}

.card-body {
    padding: 1.25rem;
}

.about-us-bg .container,
.sets-apart-sec .container {
    width: 75%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 20px;
}

.about-us-bg {
    background: url(../img/about-us-bg.png);
    background-size: 114vh;
    background-position: right top;
    background-repeat: no-repeat;
}

.core-img img {
    width: 90px;
    margin: auto;
}

.subhead-font {
    font-size: 25px;
    color: #333;
    font-weight: 600;
}

.value-head h3 {
    font-size: 40px;
    line-height: 45px;
    margin-bottom: 10px;
    display: inline-block;
    margin-top: 20px;
}

p.p-85 {
    font-size: 18px;
}

.sets-apart-sec {
    padding: 40px 0 60px;
}

.blueGradiantImg {
    background-image: url(../img/blue_gradient.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    padding: 50px 50px;
}

.set-apart {
    font-size: 21px;
    line-height: 30px;
    margin: 0;
    color: #fff;
    font-weight: 500;
    width: 90%;
    display: flex;
    justify-content: flex-end;
}

.set-img img {
    width: 110px;
}

/* .set-img {
    padding-left: 20px;
} */

.greenGradiantImg {
    background-image: url(../img/green_gradient.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    padding: 50px;
}

.green-apart {
    font-size: 21px;
    line-height: 30px;
    font-weight: 500;
    color: #fff;
}

.text-right {
    text-align: right;
}

.mr-2 {
    margin-left: auto;
}

.set-img {
    margin-top: 20px;
}

.sets-apart-sec h3.head-font {
    font-size: 40px;
    font-weight: 600;
}

.pad-cus {
    padding: 50px;
}

.head-menu {
    float: inline-end;
    display: flex;
    align-items: center;
}

h4.team-designation {
    font-size: 22px;
}

.our-team-form {
    background: #fff;
    padding: 30px 40px;
    box-shadow: 0 0 6px #0000002b;
    border-radius: 10px;
}

.our-team-sec {
    padding: 60px 0;
}

.our-team-sec .container {
    padding: 0 100px;
}

.our-team-form label {
    font-size: 17px;
}

.our-team-form input.form-control {
    border-radius: 2px;
    border: 1px solid #3333337a;
    padding: 13px;
}

input.btn-submit {
    padding: 12px;
    display: inline-block;
    width: 18%;
    background: var(--gradient-hero);
    color: #fff;
    font-size: 18px;
}

.our-team-form h2 {
    text-align: center;
    font-size: 40px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
    border-radius: 5px;
}

.request-medication-form input.btn-submit {
    width: 25%;
}

.request-medication-sec {
    padding: 60px 0;
}

.request-medication-form {
    background: #fff;
    padding: 20px 30px 10px;
    border-radius: 10px;
    box-shadow: 0 0 6px #0000002b;
}

.request-medication-form label {
    font-size: 17px;
}

.request-medication-form input.form-control,
.our-team-form textarea.form-control {
    border-radius: 2px;
    border: 1px solid #3333337a;
    padding: 13px;
}

.request-medication-sec img {
    border-radius: 10px;
}

.get-in-touch a {
    color: #fff;
    padding-right: 13px;
}

.popupform-enquery {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000ab;
    z-index: 99999;
    align-items: center;
    display: none;
}

.popupform-enquery .enquery-right {
    width: 39%;
    top: 5%;
    margin: auto;
    z-index: 9999999;
}

span.closeform {
    position: absolute;
    top: 0;
    right: 0;
    width: 45px;
    height: 45px;
    text-align: center;
    align-items: center;
    display: grid;
    font-size: 27px;
    background: #328cb8;
    color: #fff;
    cursor: pointer;
}

.enquery-right {
    position: relative;
    background: #fff;
    padding: 25px 35px;
    border-radius: 5px;
}

.enquery-right h3 {
    position: relative;
    text-align: center;
    margin: 8px 0px 20px;
    font-weight: 600;
    padding-bottom: 10px;
    font-size: 30px;
    color: #328cb8;
}

.enquery-right h3:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    width: 41px;
    margin: auto;
    border-bottom: 2px solid #328cb8;
    bottom: 0;
}