@import url(https://fonts.googleapis.com/css?family=Walter+Turncoat);
@import url(https://fonts.googleapis.com/css?family=Open+Sans);
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300);
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400);
@import url(https://fonts.googleapis.com/css?family=Open+Sans:600);
@import url(https://fonts.googleapis.com/css?family=Open+Sans:700);
@import url(https://fonts.googleapis.com/css?family=Open+Sans:800);
@import url(https://fonts.googleapis.com/css?family=Shadows+Into+Light);
@import url(https://fonts.googleapis.com/css2?family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap);
/*Background color and font for all pages*/
.mobile {
  display: none;
}
.pc {
  display: block;
}
/*quick hot fix for navbar collapse in header.html only*/
.pcHeader {
  display: block;
}
.mobileHeader {
  display: none;
}
/*quick hot fix for navbar collapse in header.html only*/

html {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  font-family: sans-serif;
}

body {
  /*background-image: url("../images/stars.jpg");*/
  background-color: #ffffff;
  font-family: "Comfortaa", sans-serif !important;
  color: black;
  margin: 0;
  font-weight: normal;
  height: 100%;
  width: 100%;
  padding: 0 1% 0 1%;
  font-size: 0.875em;
}
.h_iframe iframe {
  width: 100%;
}
.h_iframe {
  height: 100%;
  width: 100%;
}
:root {
  --blue: #00009b;
  --white: #ffffff;
  --light-blue: #0066cc;
  --soft-blue: #0088cc;
  --thin-font: "Open Sans", sans-serif;
  --background-gray: #f2f2f2;
  --font-red: #cf2727;
  --soft-red: #f2dede;
  --grey: #777;
  --green: #607961;
  --pink: #ccb9ea;
  --lavendar: rgba(148, 143, 230, 0.31);
  --purple: #716dcc;
  --lightgrey: rgba(96, 122, 97, 0.161);
  --hotpink: rgb(175, 63, 126);
}
/*header*/
#collapsibleNavbar {
  text-align: center;
}
#header {
  padding: 1% 2% 1% 2%;
  background-color: #ffffff;
  margin-bottom: 0%;
  text-align: center;
  font-family: "Montserrat Alternates", sans-serif !important;
  font-weight: 300 !important;
}
.headerCustomMobile {
  color: var(--purple);
  text-align: center;
  font-family: "Comfortaa", sans-serif;
  padding-left: 0.125rem;
  padding-right: 0.125rem;
  letter-spacing: -0.05rem;
  font-size: 1.875em;
  line-height: 1.5;
  font-weight: 700;
}
#video01 {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  position: center;
}

#video01 video {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: auto;
  object-fit: cover; /* optional: makes it fill space like a background */
}
.customBtn {
  margin-right: 10px;
}
.btn {
  white-space: normal !important;
  word-wrap: break-word;
  font-family: "Montserrat Alternates", sans-serif !important;
  font-weight: 300 !important;
}
.btn-link {
  background-color: var(--green) !important;
  color: var(--white) !important;
}
.btn-link:hover {
  background-color: var(--pink) !important;
}

.dropdown:hover > .dropdown-menu {
  display: block;
  border-radius: 15px;
  background-color: var(--green) !important;
  color: var(--white) !important;
}
.dropdown-link {
  border-radius: 15px;
  text-align: center;
  background-color: var(--green) !important;
  color: var(--white) !important;
}
.dropdown-link:hover {
  background-color: var(--pink) !important;
  color: var(--white) !important;
}
.dropdown > .dropdown-toggle:active {
  /*Without this, clicking will make it sticky*/
  pointer-events: none;
}
a:hover,
a:visited,
a:link,
a:active {
  text-decoration: none;
}

.dropdown-header {
  text-align: center;
  text-shadow: 2px 2px black;
  font-weight: bold;
  border-radius: 20px;
}
.headerlogo {
  width: 40%;
  height: auto;
}
.image {
  display: block;
  line-height: 0;
  max-width: 100%;
  position: relative;
}

#meetSethi {
  display: flex;
  margin-bottom: 1%;
}
#sethiPic {
  width: 30%;
}
#sethiInfo {
  margin-left: 3%;
  text-align: center;
  width: 70%;
  font-size: 1.3vw;
}
.typesOfAppts {
  background-color: var(--lavendar);
  width: 100%;
  text-align: center;
  margin: auto;
  overflow: auto;
  margin-top: 1%;
  padding: 3%;
}
.howMobileWorks {
  background-color: var(--lightgrey);
  width: 100%;
  text-align: center;
  margin: auto;
  overflow: auto;
  margin-top: 1%;
  margin-bottom: 1%;
  padding: 3%;
}

/* Make cards bigger and stretch within columns */
.howMobileWorks .card {
  padding: 2rem; /* bigger padding inside cards */
  flex: 1; /* stretch cards to fill vertical space in each column */
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem; /* small gap between image and text */
}

/* Card text styling */
.howMobileWorks .card-text {
  font-size: 1rem; /* slightly bigger text for desktop */
  line-height: 1.4;
  text-align: left; /* keeps text aligned nicely with image */
}

/* Image styling */
.howVisitWorksImg {
  width: 200px;
  height: 200px;
}
.howMobileWorks .card-text strong {
  font-weight: 700 !important;
  font-size: 1.5rem; /* slightly bigger for titles */
}

.typesOfServices {
  background-color: var(--lightgrey);
  width: 100%;
  text-align: center;
  margin: auto;
  overflow: auto;
  margin-top: 1%;
  padding: 3%;
}
.typesOfRow {
  width: 100%;
  text-align: center !important;
  margin: auto !important;
}
.servicesRow {
  width: 100%;
  text-align: center !important;
  margin: auto !important;
}
.apptCard {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto;
  background-color: transparent !important;
  border: none !important;
  overflow: hidden;
}
.apptCard .card-title {
  white-space: normal;
  word-break: keep-all; /* do NOT split words */
  overflow-wrap: normal; /* allow wrapping only at spaces */
  hyphens: none;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.25;
}
/*apptCard:hover {
  cursor: pointer;
  transform: rotate(-5deg);
}*/
.howVisitWorksImg {
  width: 100px;
  height: auto;
}
/*footer*/
#footer {
  margin-top: 4%;
  margin-bottom: 5%;
  padding: 2% 0% 5% 5%;
  background-color: var(--white);
  width: 100%;
}

.footerTitle {
  font-family: var(--thin-font);
  font-weight: lighter;
}
.icon:hover {
  font-size: 1.1em;
}
.contactLink {
  color: black;
}
.footerLink {
  color: black;
}

.section {
  width: 100%;
  background-color: var(--green);
  height: 8em;
  margin-bottom: 1%;
  border-bottom: 7px solid var(--pink);
  border-top: 7px solid var(--pink);
}
p.sectionHeader {
  color: var(--white);
  margin-left: 8%;
  font-size: 3em;
  padding: 0 0 10px; /*gap between line and wording*/

  letter-spacing: -3px;
  font-family: var(--thin-font);
  font-weight: lighter;
  margin-block-start: 0.61em; /*gap between line and div border*/
  margin-block-end: 0.06em;
}
.card {
  border: none !important;
}

.service-card {
  height: 100%;
  min-height: 220px;
  border-radius: 12px;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.service-card img {
  margin: 12px auto;
  display: block;
}

.servicesUL {
  list-style-type: none;
  font-size: 20px;
  text-align: center;
  padding-left: 1.2rem;
  margin-bottom: 0;
}
.additionalservicesUL {
  font-size: 15px;
  margin-top: 1rem;
  margin-bottom: 0;
  padding-left: 1.2rem;
  color: black;
}
/* Container */
#overLayBtns {
  position: fixed;
  bottom: 20px;
  right: 20px; /* Desktop: bottom-right */
  display: flex;
  gap: 10px; /* Space between buttons */
  z-index: 9999;
  flex-wrap: nowrap; /* Always side by side */
}

/* Buttons */
.open-button {
  background-color: var(--hotpink) !important;
  color: white !important;
  border-radius: 999px; /* Perfect oval */
  padding: 12px 30px; /* Padding for height & width */
  font-size: 1.1rem;
  transition: all 0.3s ease 0s;
  opacity: 0.9;
  border: none !important;
  flex: 1; /* Equal width */
  min-width: 140px; /* Prevent shrinking too small */
  max-width: 200px; /* Optional max size */
  text-align: center;
  white-space: nowrap; /* Keep text on one line */
}

.open-button:hover {
  cursor: pointer;
  background-color: var(--green);
  opacity: 1;
}

/* Match footer buttons but with purple #716dcc */
.call-text-button {
  background-color: #716dcc !important;
  color: white !important;
  border-radius: 999px;
  padding: 12px 30px;
  font-size: 1.1rem;
  transition: all 0.3s ease 0s;
  opacity: 0.9;
  border: none !important;
  flex: 1;
  min-width: 140px;
  max-width: 200px;
  text-align: center;
  white-space: nowrap;
}

.call-text-button:hover {
  cursor: pointer;
  background-color: #5b52b0; /* Slightly darker on hover */
  opacity: 1;
}

/*hotfixes for phone vs pc */

@media screen and (min-width: 0px) and (max-width: 768px) {
  .pcHeader {
    display: none;
  }
  .mobileHeader {
    display: block;
  }
  #headerUL {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }
  #collapsibleNavbar {
    background-color: #d5d8de;
  }
}
@media screen and (min-width: 0px) and (max-width: 992px) {
  .pc {
    display: none;
  }
  .mobile {
    display: block;
  }
  #meetSethi {
    display: block;
  }
  #sethiPic {
    width: 100%;
  }
  .image {
    display: block;
    margin: auto;
    line-height: 0;
    width: 55%;
    position: relative;
  }
  #sethiInfo {
    text-align: center;
    width: 90%;
    font-size: 2.5vw;
  }

  body {
    padding: 0 5% 0 5%;
    font-size: 0.775em;
  }

  #overLayBtns {
    margin-bottom: 0%;
    margin-right: 0%;
    max-width: 100%;
  }
  .typesOfRow {
    width: 90%;
    text-align: center !important;
    margin: auto !important;
  }
  .servicesRow {
    text-align: center !important;
    margin: auto !important;
  }
  #footer {
    padding-bottom: 40%;
  }

  .section {
    margin-bottom: 5%;
  }

  .service-card {
    min-height: auto;
  }
  .servicesUL {
    font-size: 15px;
  }

  .howMobileWorks .card {
    flex-direction: column; /* stack image on top of text on mobile */
    text-align: center;
    gap: 0.5rem;
  }

  .howMobileWorks .card-text {
    font-size: 0.95rem;
    line-height: 1.3;
    text-align: center;
  }

  .howVisitWorksImg {
    width: 80px;
    height: 80px;
  }
  .howMobileWorks .card-text strong {
    font-weight: 700 !important;
    font-size: 1rem; /* slightly bigger for titles */
  }

  .mobile-call-text-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
  }

  .call-text-button {
    font-size: 1rem;
    padding: 10px 20px;
    min-width: 100px;
    max-width: 150px;
  }

  #overLayBtns {
    bottom: 20px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    gap: 10px;
    flex-wrap: nowrap; /* Keep buttons side by side */
    justify-content: center;
    width: auto;
  }

  .open-button {
    font-size: 1rem;
    padding: 12px 25px; /* Adjust as needed */
    width: max-content; /* Fit the text */
    max-width: calc(50vw - 10px); /* Prevent overflow on narrow screens */
    white-space: nowrap; /* Keep text on one line */
  }
}
