/* 
1. Preloader css
*/

/* ALL COLORS */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap');

:root {
    --white: #fff;
    --red: #EA1826;
    --primary: #13457E;
    --secondary: #E7ECF2;
    --white: #fff;
    --accent: #58D5F4;
    --accent_v2: #30B2D2;
    --accent_v3: #FF4880;
    --accent_v4: #253A5A;
    --dark_blue: #14457B;
    --gray: #f5f5f5;
    --border: #ddd;
    --primary-font: "Montserrat", sans-serif;
}

/* 1.Preloader css */

.cs_preloader {
    position: fixed;
    height: 100vh;
    width: 100vw;
    z-index: 99999;
    left: 0;
    top: 0;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cs_preloader_in {
    position: relative;
}

.cs_preloader_in svg {
    width: 110px;
    height: 110px;
}

.cs_wave_first svg {
    fill: var(--border);
}

.cs_wave_second {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    animation: spark 1.25s linear infinite;
}

.cs_wave_second svg {
    fill: currentColor;
}

@keyframes spark {
    0% {
        max-width: 0;
    }

    100% {
        max-width: 100%;
    }
}

.cs_accent_color_v4 {
    color: var(--accent_v4);
}




/* 2. NAV CSS */
.nav-section {
    height: 80px;
}

.logInWrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #F8F8F8;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    position: fixed;
    width: 100%;
    z-index: 999;
}

.loginBtn {
    padding: 10px 15px;
    display: inline-block;
    /* line-height: 1.4; */
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    /* border-top: 1px solid rgba(44, 44, 44, 1); */
    color: white;
    background-color: var(--accent_v4);
    font-weight: 600;
}

/* 3. DOCTOR , SERVICES  */

.doctor-services {
    background-color: var(--secondary);
}

.doctors-card-container {
    gap: 20px 0;
}

.doctor-card {
    -webkit-box-shadow: 0px 0px 45px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 0px 45px 0px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    overflow: hidden;
}

.doctor-info {
    background-color: var(--primary);
    color: #fff;
    padding: 5px 5px;
    cursor: pointer;
    min-height: 50px;
}

.doctor-name {
    font-size: clamp(10px, 1.2vw + 4px, 16px);
}

.doctor-img img {
    max-width: 100%;
}

.right-arrow img {
    max-width: 20px;
}

.services-card-container {
    gap: 20px 0;
}

.service-card {
    background-color: var(--white);
    padding: 10px;
    box-shadow: 0px 0px 45px 0px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    height: 100%;
}

.service-content {
    padding: 5% 0;
    color: var(--primary);
}

.service-card-heaging {
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
    font-size: 22px;
}

.service-card-heaging {
    display: flex;
    gap: 10px;
    min-height: 70px;
}

.service-img img {
    width: 40px;
}

/* PRIVACY POLICY */

.header-section {
    width: 100%;
    min-height: 40vh;
    /* margin-top: 140px; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-image: url("/images/privacy-header.jpeg");
    background-repeat: no-repeat;
    background-position: center;
}

/* POPUP */

/* Remove double scroll when popup is open */
body.popup-open {
  overflow: hidden;
}



/* Popup overlay */
.popup {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 9999;
}

.popup.show {
  display: flex;
   justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Popup box */
.popup-content {
  background: #fff;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;     /* Prevent overflow */
  overflow-y: auto;     /* Scroll only inside popup if needed */
  padding: 2%;
  border-radius: 10px;
  position: relative;
}

/* Close button */
.close {
  position: absolute;
  right: 10px;
  top: 10px;
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}


@media (max-width: 768px) {
    .service-content {
        min-height: 130px;
    }
}

/* COMMON CSS */

body {
    line-height: 1.3 !important;
    font-family: "Montserrat", sans-serif;
}

a {
    color: inherit;
    text-decoration: none !important;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.text-center {
    text-align: center !important;
}

.font-32 {
    font-size: clamp(32px, calc(1.875vw + 22px), 58px);
}

.font-22 {
    font-size: clamp(22px, calc(1.875vw + 10px), 32px);
}

.font-16 {
    font-size: clamp(16px, 1.2vw + 4px, 18px);
}

.primary-color {
    color: var(--primary) !important;
}

.secondary-color {
    color: var(--secondary) !important;
}

.black-color {
    color: #000 !important;
}

.white-color {
    color: var(--white) !important;
}

.primary-bg {
    background-color: var(--primary) !important;
}