/* THEME DETAILS ***********************/
/* THEME DETAILS ***********************/

@charset "utf-8";

/* embedding fonts custom/google fonts */
@import url("https://fonts.googleapis.com/css2?family=Anek+Gujarati:wght@100..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
/* embedding fonts custom/google fonts */

:root {
  /* ~-~-~-~-~ common transition ~-~-~-~-~ */
  --transition-common: all 0.5s ease 0s;
  /* ~-~-~-~-~ common transition ~-~-~-~-~ */

  /* ~-~-~-~-~ colors ~-~-~-~-~ */
  --clr-primary: #fff;
  --clr-secondary: #ffd500;
  --clr-accent: #0054a6;
  --clr-white: #fff;
  --clr-black: #000000;
  /* ~-~-~-~-~ colors ~-~-~-~-~ */

  /* ~-~-~-~-~ declare font family & weight ~-~-~-~-~ */
  --ff-base: "Anek Gujarati", sans-serif;
  --ff-title: "Playfair Display", serif;
  --ff-awesome: "Font Awesome 6 Free";
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semi-bold: 600;
  --fw-bold: 700;
  /* ~-~-~-~-~ declare font family & weight ~-~-~-~-~ */

  /* ~-~-~-~-~ declare font size ~-~-~-~-~ */
  --f-size-XL: 60px; /* h1 */
  --f-size-L: 40px; /* h2 */
  --f-size-M: 26px; /* h3 */
  --f-size-S: 22px; /* h4 */
  --f-size-Body: 20px;
  /* ~-~-~-~-~ declare font size ~-~-~-~-~ */

  /* ~-~-~-~-~ other adjustments ~-~-~-~-~ */
  --margin-title: 0 0 25px 0;
  --margin-paragraph: 0 0 25px 0;
}
@media only screen and (max-width: 767px) {
  :root {
    --f-size-XL: 48px; /* h1 */
    --f-size-L: 35px; /* h2 */
    --f-size-M: 23px; /* h3 */
    --f-size-S: 20px; /* h4 */
    --f-size-Body: 18px;
  }
}

/* ~-~-~-~-~-~-~-~-~-~ global font settings start ~-~-~-~-~-~-~-~-~-~ */

:is(body, p) {
  font-family: var(--ff-base);
  font-weight: var(--fw-regular);
  font-size: var(--f-size-Body);
  color: var(--clr-primary);
  margin: 0;
}
p {
  line-height: 1.3;
}
:is(p):not(:last-child) {
  margin: var(--margin-paragraph);
}
:is(h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6) {
  font-family: var(--ff-title);
  font-weight: var(--fw-regular);
  color: var(--clr-secondary);
  margin: var(--margin-title);
}
:is(h1, .h1) {
  font-size: var(--f-size-XL);
}
:is(h2, .h2) {
  font-size: var(--f-size-L);
}
:is(h3, .h3) {
  font-size: var(--f-size-M);
}
:is(h4, .h4) {
  font-size: var(--f-size-S);
}

/* ~-~-~-~-~-~-~-~-~-~ global font settings end ~-~-~-~-~-~-~-~-~-~ */

/* ~-~-~-~-~-~-~-~-~-~~-~-~-~-~-~-~-~-~-~~-~-~-~-~-~-~-~-~-~~-~-~-~-~ */
/* ~-~-~-~-~-~-~-~-~-~ global adjustments start ~-~-~-~-~-~-~-~-~-~ */
html {
  overflow-x: hidden;
}
body {
  background: var(--clr-black);
  margin: 0;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}
a,
img {
  border: none;
  text-decoration: none;
  outline: none;
}
a,
a:link,
a:visited,
a:focus,
a:hover {
  outline: none;
  text-decoration: none;
  transition: var(--transition-common);
}
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
a:hover {
  color: var(--clr-secondary) !important;
}
.button {
  display: inline-block;
  vertical-align: top;
  background: transparent;
  border: 1px solid var(--clr-secondary);
  border-radius: 10px;
  color: var(--clr-secondary);
  line-height: 1;
  padding: 16px 50px;
  transition: var(--transition-common);
}
.button:hover {
  background: var(--clr-secondary);
  color: var(--clr-black);
}

.form-control {
  height: 50px;
  border: none;
  border-radius: 15px;
  box-shadow: none !important;
  padding-inline: 20px;
}
.form-control::-moz-placeholder {
  color: var(--clr-black);
  opacity: 1;
  font-weight: 400;
}
.form-control:-ms-input-placeholder {
  color: var(--clr-black);
  font-weight: 400;
}
.form-control::-webkit-input-placeholder {
  color: var(--clr-black);
  font-weight: 400;
}

.form-row {
  margin-bottom: 15px;
}

.main-header {
  padding: 10px 0;
  border-bottom: 2px solid var(--clr-secondary);
}
.main-header .header-logo {
  height: 80px;
  width: fit-content;
  margin: 0 auto;
}
.main-header .header-logo * {
  display: inline-block;
  height: 100%;
}

.contact-us-section {
  padding: 80px 0;
}
.contact-form {
  max-width: 850px;
  margin: 0 auto;
  padding: 30px;
  border: 1px solid var(--clr-secondary);
  border-radius: 25px;
  box-shadow: -20px -10px 100px -50px rgba(0, 0, 0, 0.5);
}
.contact-us-section .section-title {
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}
.contact-us-section .info-wraper h3 {
  margin-bottom: 30px;
}
.contact-us-section .contact-item {
  margin-bottom: 25px;
}
.contact-us-section .contact-item h4 {
  margin-bottom: 15px;
}
.contact-us-section .contact-item a {
  color: var(--body-color);
}

/* .map-wraper { max-width: 2000px; margin: 0 auto; position: relative; padding-bottom: 30%; } */
.map-wraper iframe {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.i4ewOd-pzNkMb-tJHJj .i4ewOd-pzNkMb-r4nke-LS81yb.di8rgd-TEhSn.SfQLQb-fI6EEc {
  display: none;
}

.main-footer {
  padding: 40px 0 20px;
}
.main-footer .info-wraper {
  max-width: 750px;
  margin: 0 auto;
}
.main-footer .info-wraper .contact-wrap {
  margin-bottom: 25px;
}
.main-footer .info-wraper .contact-wrap a {
  color: var(--clr-white);
  font-size: var(--f-size-M);
}
@media only screen and (max-width: 991px) {
  .main-header .header-logo {
    height: 60px;
  }
  .contact-us-section {
    padding: 60px 0;
    text-align: center;
  }
  .contact-us-section h2 {
    margin-bottom: 15px;
  }
  .top-wrap {
    margin-bottom: 30px;
  }
  .contact-form {
    padding: 20px;
    margin-bottom: 30px;
  }
  .contact-us-section .contact-item {
    margin-bottom: 30px;
  }
  .contact-us-section .contact-item h3 {
    margin-bottom: 0;
  }
  .contact-us-section .contact-item:last-child {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .contact-us-section {
    padding: 50px 0;
  }
  .contact-form {
    padding: 20px 15px;
  }
  /* .map-wraper{ padding-bottom: 60%;} */
}
@media only screen and (max-width: 419px) {
  /* .map-wraper{ padding-bottom: 90%;} */
}





#map {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 50%;
}

/* For tablets and small desktops */
@media (max-width: 1024px) {
    #map {
        object-position: center 45%;
    }
}

/* For mobile screens */
@media (max-width: 768px) {
    #map {
        height: 700px;
        width: 120%; /* Expand width slightly to remove gaps */
        object-position: center 40%;
    }
}

/* For very small screens */
@media (max-width: 480px) {
    #map {
        height: 200px; /* Reduce height further for compact view */
      /* Slightly reduce width */
        object-position: center;
    }
}













.btn-call-pulse {
    background: #007bff; /* Blue color for call button */
    color: white;
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 35px;
    text-decoration: none;
    border-radius: 50%;
    animation: pulse 1.5s ease-out infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.5);
    }
    80% {
        box-shadow: 0 0 0 14px rgba(0, 123, 255, 0);
    }
}

.btn-call-pulse-border {
    bottom: 25px;
    right: 20px;
    animation-play-state: paused;
}

.btn-call-pulse-border::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    padding: 25px;
    border: 5px solid #007bff;
    opacity: 0.75;
    animation: pulse-border 1.5s ease-out infinite;
}

@keyframes pulse-border {
    0% {
        padding: 25px;
        opacity: 0.75;
    }
    75% {
        padding: 50px;
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}


