@font-face {
  font-family: "ProximaNovRegular";
  src: url(../fonts/proximanova-regular.ttf);
}
@font-face {
  font-family: "ProximaNovaBold";
  src: url(../fonts/Proxima-Nova-Bold.otf);
}
@font-face {
  font-family: "ProximaNovaMedium";
  src: url(../fonts/Proxima-Nova-Medium.otf);
}

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

@font-face {
    font-family: 'Arial-Bold';
    src: url('../Font/arialbd.ttf');
    font-weight: 700;
}

@font-face {
    font-family: 'Impact';
    src: url('../Font/impact.ttf');
    font-weight: 700;
}

@font-face {
    font-family: 'James_Fajardo';
    src: url('../Font/James_Fajardo.ttf');
    font-weight: 400;
}

@font-face {
    font-family: 'Peanut-Butter';
    src: url('../Font/Peanut Butter.ttf');
    font-weight: 400;
}

@font-face {
    font-family: 'Raleway-Bold';
    src: url('../Font/Raleway-Bold.ttf');
    font-weight: 700;
}

@font-face {
    font-family: 'Raleway-Medium';
    src: url('../Font/Raleway-Medium.ttf');
    font-weight: 500;
}

@font-face {
    font-family: 'Raleway-SemiBold';
    src: url('../Font/Raleway-SemiBold.ttf');
    font-weight: 600;
}

html {
    overflow-x: hidden !important;
}

:root {
    --container-width: 90%;
    --primary-color: #E72F4B;
    --secondary-color: #004C9B;
    --font-raleway-medium: 'Raleway-Medium', sans-serif;
    --font-raleway-semibold: 'Raleway-SemiBold', sans-serif;
    --font-raleway-bold: 'Raleway-Bold', sans-serif;
}

body {
    font-family: var(--font-raleway-medium);
    color: #333;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-raleway-bold);
    color: #333;
    margin-bottom: 15px;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    font-family: var(--font-raleway-medium);
    color: #666;
    margin-bottom: 10px;
}

.container {
    width: var(--container-width);
    margin: 0 auto;
}

.navbar {
    min-height: 43px;
    padding: 0;
}

.navbar-expand-lg .navbar-nav {
    align-items: center;
}

.navbar-nav .nav-link {
    position: relative;
    padding: 5px 30px !important;
    transition: opacity 0.3s;
    font-family: var(--font-raleway-medium);
    font-weight: 500;
    color: #fff !important;
}

.home a i {
    font-size: 30px;
    color: #fff;
}

.navbar-nav .nav-link:has(i) {
    padding-bottom: 0px !important;
}

.navbar-brand {
    position: absolute;
    top: 8px;
}

.navbar-nav .nav-link:hover {
    opacity: 0.8;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background-color: #fff;
}

.hero-section {
    background-image: url('../images/Banner.png');
    background-size: cover;
    background-position: center;
    padding: 150px 0;
    color: white;

    border-bottom: 5px solid var(--primary-color);
}

.hero-content {
    background-color: rgba(255, 255, 255, 0);
    padding: 20px;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

}

.hero-content h1 {
    font-family: var(--font-raleway-bold);
    color: #333;
}

.sehaj-logo {
    width: 300px;
    margin-bottom: 40px;
}

.appointment-form {
    background-color: #eeeeee;
    padding: 10px;
    border-radius: 10px;
    margin-top: 20px;
    position: absolute;
    bottom: -180px;
    width: 100%;
}

.appointment-form .white {
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;

}

.appointment-form h5 {
    font-family: var(--font-raleway-bold);
    color: #000000;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 10px;
}

.appointment-form .form-control {
    border-radius: 5px;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 8px 13px;
    border-radius: 30px;
    margin-bottom: 10px;
    color: #000;
}

.appointment-form .form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 5px rgba(0, 76, 155, 0.5);

}

.appointment-form .form-control::placeholder {
    color: #030303;
}

.appointment-form .btn {

    border-radius: 5px;
    background-color: var(--secondary-color);
    border: none;
    padding: 3px 25px;
    border-radius: 30px;
    color: #fff;
    font-family: var(--font-raleway-bold);
}

/* about us section */

.aboutus-section {
    padding: 40px 0;
    background-color: #fff;

}

.about-content {
    margin-bottom: 30px;
}

.about-content h2 {
    text-align: start;
    color: var(--primary-color);
}

.about-content h5 {
    margin-bottom: 8px;
    font-size: 25px;
    color: #000;
}

.about-content p {
    margin-bottom: 15px;
}

.about-content a {
    text-align: center;
    display: inline;
    background: url(../images/btn-bg.png);
    background-position: center;
    background-size: contain;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
    color: #212121;
    padding: 8px 39px;
}

.wellness-section {
    padding: 20px 0 0;
    background: var(--secondary-color)
}

.wellness-section h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
}

.wellnss-card {
    background: #fff;
    border-radius: 10px;
    padding: 8px;
    position: relative;
    text-align: center;
    margin-bottom: 20px;
}

.wellline1::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background: #707070;
    top: 15px;
    left: 0;

}

.wellline1::after {
    position: absolute;
    content: '';
    width: 1px;
    top: 0;
    height: 100%;
    background: #707070;
    left: 15px;

}

.wellline2::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    right: 0;
    background: #707070;
    bottom: 15px;

}

.wellline2::after {
    position: absolute;
    content: '';
    width: 1px;
    height: 100%;
    background: #707070;
    right: 15px;
    bottom: 0;

}

.card-img {
    width: 100%;
    border: 1px solid var(--secondary-color);
    border-radius: 10px;
    padding: 8px;
}

.card-img img {
    width: 100%;
    border-radius: 10px;
}

.wllness-bottom {
    background-color: var(--primary-color);
    padding: 20px 0;
}

.wellness-btn {
    text-align: center;
}

.wellness-btn h6 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 0px;
}

.wellness-btn img {
    width: 20px;
}


.expert,
.Reflect {
    background-color: #DBDAD9;
    padding: 60px 0;
}

.expert-heading {
    text-align: center;
    margin-bottom: 40px;
}

.expert-heading h3 {
    color: #000;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 0px;
}

.expert-heading p {
    color: #666;
    font-size: 16px;


}

.Reflect {
    padding: 60px 0;
    background: #fafafa;
}

.Reflect .expert-heading h3 {
    color: #000;
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 0px;
}


.faq {
    background: #F4DEDB;
    padding: 60px 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.faq-header {
    text-align: left;
    margin-bottom: 40px;
    display: flex;
    padding: 20px;
    gap: 0px 20px;
    justify-content: center;
    align-items: center;
}

.faq-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}
.mobile{
    display: none;
}

.accordion {
    padding: 0 60px;
}

.accordion-item {
    border: 1px solid #e0e0e0 !important;
    background: transparent;
    margin-bottom: 30px;
    border-radius: 20px !important;
    padding: 2px 26px;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-button {
    background: transparent;
    border: none;
    color: #0066cc;
    font-weight: 600;
    font-size: 1rem;
    padding: 20px 0;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: transparent;
    color: #0066cc;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230066cc'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.accordion-body {
    padding: 0 0 25px 0;
    color: #666;
    line-height: 1.6;
}

.footer-section {
    background: #003d7a;
    color: white;
    padding: 40px 0 20px;
    margin-top: 0px;
}

.footer-section h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.footer-section a {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 0.8;
}

.footer-bottom {
    background: #002855;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.social-icons {
    display: inline-flex;
    gap: 10px;
    margin: 0 10px;
}

.social-icons a {
    width: 30px;
    height: 30px;
    background: white;
    color: #003d7a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
}

.contact-number {
    font-size: 1.5rem;
    font-weight: 700;
    margin-left: 10px;
}

@media (max-width: 768px) {
    .faq-container {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .faq-header {
        flex-direction: column;
        text-align: center;
    }

    .faq-illustration {
        margin-top: 20px;
    }
}

/* Utility class for hiding the appointment button */
#whatsapp-sticky.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
}
