@import url("https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Marcellus&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Outfit:wght@100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Poppins: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&family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root {
  --primary-color: #020202;
  --primary-color1: #333333;
  --secondary-color: #4a4848;
  /* --secondary-color1		: #d08c27; */
  --secondary-color1: #a87e00;
  --secondary-color2: #083f60;
  --secondary-color3: #c89d49;
  /* --secondary-color3		: #a78e59; */
  --secondary-color4: #c89d49;
  --text-color: #eadec8;
  --arrow-color: #eadec8;
  --accent-color: #ffc107;
  --white-color: #fff;
  /* --white-color: #ffffff; */
  --divider-color: #eaeaea;
  --dark-divider-color: #ffffff1a;
  --btn-color: #e7f4f9;
  --btn6-color: #efb708;
  --btn1-color: #a78b76;
  --othr-color: #612e11;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dark: #9a7a30;
  --cream: #faf6ee;
  --dark: #1a1209;
  --dark2: #2c1f0a;
  --text: #3d2e10;
  --muted: #8a7050;
  --default-font: "Montserrat", sans-serif;
  --default-font1: "Lato", sans-serif;
  --default-font2: "Source Serif 4", serif;
  --default-font3: "Cormorant Garamond";
  --default-font4: "Inter", sans-serif;
  /* --default-font3: "Cormorant", serif; */
  /* --accent-font			: "Montserrat", sans-serif; */

  --center-width: 300px;
  --side-width: 200px;
  --gap: 20px;
  --duration: 0.8s;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

/* body {
    font-size: 20px !important;
    background: url("../img/Texturelabs_Paper_234L\ PNG\ 3.png") no-repeat center center fixed;
    background-size: cover; 
} */

body {
  font-size: 20px !important;
  /* background-color: #f4f4f4; */
}

html {
  font-size: 100%;
}
a {
  text-decoration: none !important;
}

p {
  line-height: 1.8em;
  margin-bottom: 0px !important;
  margin-top: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: var(--default-font);
  font-weight: 600;
  line-height: 1.2em;
  color: var(--primary-color);
  margin-bottom: 0px !important;
}

figure {
  margin: 0 !important;
}

/* img{
	max-width: 100%;
} */

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  outline: 0;
}

a:focus {
  text-decoration: none;
  outline: 0;
}

html,
body {
  width: 100%;
  overflow-x: clip;
}

.container {
  max-width: 1120px;
}

.image-anime {
  position: relative;
  overflow: hidden;
  /* border: 2px solid var(--secondary-color1); */
}
.image-anime img {
  width: 100% !important;
}

.image-anime:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.image-anime:hover:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}
.image-anime:hover {
  border: 2px solid transparent;
}

/* .fade-i {
  opacity: 0;
  animation: fadeIn 1.2s ease-in forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
} */

.fade-i {
  opacity: 0;
  transition:
    opacity 3s ease,
    transform 3s ease;
}

.fade-i.visible {
  opacity: 1;
  transform: translateY(0);
}

.image-anime.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  /* visibility: hidden; */
  overflow: hidden;
}
.reveal img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform-origin: left;
  transform-origin: left;
  transition:
    transform 1s ease-out,
    visibility 0s 0s;
  transform: translateX(-100%);
}

/* Class to trigger reveal animation */
.reveal.show img {
  transform: translateX(0); /* Move to normal position */
  visibility: visible;
}

.reveal1 {
  position: relative;
  display: inline-flex;
  overflow: hidden;
}

.reveal1 img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transform-origin: right;
  transform: translateX(100%);
  transition: transform 1s ease-out;
  visibility: hidden;
}

.reveal1.show img {
  transform: translateX(0);
  visibility: visible;
}

.header1 {
  width: 100%;
  height: auto;
  z-index: 999;
  padding: 0px 90px;
  font-variant: var(--white-color);
}

header {
  /* position: fixed; */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

header.sticky {
  background-size: 100% 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  /* transform: translateY(0); */
  background: rgba(255, 255, 255, 0.8);
}

header.sticky .navbar-light .navbar-nav .nav-link {
  color: var(--primary-color) !important;
}
/* header.sticky .logo {
  filter: invert(1) brightness(0.1) contrast(2);
} */
header.sticky #primary li a:before {
  background: var(--primary-color);
}
header.sticky .nav-btn-text {
  /* background-image: linear-gradient(to right, #000, #23abd4 50%, #000 50%); */
  color: var(--primary-color) !important;
}
header.sticky .dropdown-toggle::after {
  color: var(--primary-color) !important;
}

.navbar-expand-lg .navbar-collapse {
  justify-content: end !important;
}
.logo {
  color: #fff;
}

.logo img {
  width: 150px;
  height: auto;
}

.navbar-light .navbar-nav .nav-link {
  font-size: 90% !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  color: var(--primary-color) !important;
  margin-right: 1rem !important;
  margin-left: 1rem !important;
  font-family: var(--default-font3) !important;
  position: relative;
  z-index: 10;
  width: auto;
}
.navbar-light .navbar-nav .nav-link:hover {
  /* background-color: var(--white-color) !important; */
  color: var(--primary-color);
}
.navbar-expand-lg .navbar-nav {
  justify-content: center !important;
}

.navbar > .container,
.navbar > .container-fluid,
.navbar > .container-lg,
.navbar > .container-md,
.navbar > .container-sm,
.navbar > .container-xl,
.navbar > .container-xxl {
  display: flex;
  flex-wrap: inherit;
  align-items: end !important;
  justify-content: space-between;
}

.navbar-light .navbar-nav .nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px 0px 18px;
  height: 100%;
  /* border: 1px solid var(--primary-color); */
  border-radius: 50px;
  overflow: hidden;
  /* background: rgba(255, 255, 255, 0.1); */
  color: var(--white-color);
  text-decoration: none;
}

/* INVISIBLE WIDTH HOLDER */
.nav-btn-spacer {
  visibility: hidden;
  white-space: nowrap;
  font-size: inherit;
  font-weight: inherit;
}

/* ANIMATED TEXT */
.nav-btn-text,
.nav-btn-text-hover {
  position: absolute;
  white-space: nowrap;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
}

.nav-btn-text {
  transform: translateY(0);
  opacity: 1;
}

.nav-btn-text-hover {
  transform: translateY(120%);
  opacity: 0;
}

.nav-link:hover .nav-btn-text {
  transform: translateY(-120%);
  opacity: 0;
}

.nav-link:hover .nav-btn-text-hover {
  transform: translateY(0);
  opacity: 1;
}

.nav-btn-text,
.nav-btn-text-hover {
  position: absolute;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  color: #000 !important;
}

.nav-btn-text {
  transform: translateY(0);
  opacity: 1;
  color: var(--primary-color) !important;
}
.dropdown-toggle:hover::after {
  color: #000 !important;
}

.nav-btn-text-hover {
  transform: translateY(100%);
  opacity: 0;
}

.nav-link:hover {
  background-color: #fff;
  color: var(--primary-color) !important;
  border-color: var(--primary-color);
}

.nav-link:hover .nav-btn-text {
  transform: translateY(-100%);
  opacity: 0;
  color: var(--primary-color) !important;
}

.nav-link:hover .nav-btn-text-hover {
  transform: translateY(0);
  opacity: 1;
}

/* Dropdown Menu Styles */
/* Dropdown menu style */
.dropdown-menu {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  border: none;
  padding: 10px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Submenu positioning */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: 0.3rem;
  margin-top: -0.5rem;
  border-radius: 12px;
  display: none;
}

/* Show submenu on hover */
.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

/* Dropdown item styling */
.dropdown-item {
  color: #000;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.dropdown-item:hover {
  background: #f0f0f0;
}

/* Mobile responsive */
@media (max-width: 991px) {
  .dropdown-submenu > .dropdown-menu {
    position: static;
    display: block;
    margin: 0;
    box-shadow: none;
  }
}

.title {
  font-size: 55px;
  font-weight: 400;
  color: var(--primary-color);
  margin-bottom: 100px;
  font-family: var(--default-font4);
  line-height: 1.5;
}
.title-sm {
  font-size: 26px;
  font-weight: 400;
  color: var(--primary-color);
  margin-bottom: 100px;
  font-family: var(--default-font4);
  line-height: 1.2;
}
.para {
  font-family: var(--default-font4);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.8;
  color: #6f6f6f;
}
.ft-18 {
  font-size: 18px;
}

/* footer */

.footer-section {
  background: #000;
  padding-top: 80px;
  color: #fff;
  font-family: var(--default-font);
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-col h3 {
  font-size: 20px;
  margin-bottom: 30px !important;
  font-weight: 400;
  color: var(--white-color);
  font-family: var(--default-font4);
}

.footer-col ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 14px;
}

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  position: relative;
  padding-left: 28px;
  transition: 0.3s;
}

.footer-col ul li a::before {
  content: ">";
  position: absolute;
  left: 0;
  top: 0;
  color: green;
  font-weight: bold;
}

.footer-col ul li a:hover {
  color: #ccc;
}

.service-flex {
  display: flex;
  gap: 70px;
}

.contact-col h2 {
  font-size: 26px;
  font-weight: 300;
  margin-bottom: 40px !important;
  color: var(--white-color);
  font-family: var(--default-font4);
  font-weight: 300;
}

.contact-col .phone {
  display: inline-block;
  color: #8b8b8b;
  font-size: 24px;
  text-decoration: none;
  margin-bottom: 25px;
  font-family: var(--default-font3) !important;
  padding-top: 20px;
}

.contact-col p {
  color: #5f5f5f;
  line-height: 1.6;
  font-size: 14px;
  font-family: var(--default-font4);
}

.copyright {
  border-top: 3px solid #222;
  text-align: center;
  padding: 5px 0;
  margin-top: 30px;
}

.copyright p {
  margin: 0;
  color: #5f5f5f;
  font-size: 16px;
  font-family: var(--default-font);
  font-weight: 500;
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .footer-wrapper {
    flex-direction: column;
  }

  .service-flex {
    flex-direction: column;
    gap: 0;
  }

  .contact-col h2 {
    font-size: 40px;
  }
}

/* home page */
/* =========================
   HERO AREA
========================= */

.heroic-banner-area {
  height: 85vh;

  /* background:
    linear-gradient(rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.55)),
    url("../img/page5/banner.png"); */

  background-size: cover !important;
  background-position: center;

  display: flex;
  align-items: flex-end;
  border-bottom-left-radius: 160px;
}

/* =========================
   MAIN BOX
========================= */

.heroic-banner-overlay {
  width: 88%;

  /* background: rgba(235, 235, 235, 0.78); */
  background: linear-gradient(
    180deg,
    rgba(95, 95, 95, 0.35) 0%,
    rgba(70, 70, 70, 0.28) 50%,
    rgba(45, 45, 45, 0.22) 100%
  );

  border-top-right-radius: 110px;
  border-bottom-left-radius: 160px;

  overflow: hidden;
}

/* =========================
   GRID
========================= */

.heroic-banner-grid {
  display: grid;
  grid-template-columns: 5fr 1.15fr;
  align-items: stretch;
}

/* =========================
   LEFT CONTENT
========================= */

.heroic-banner-content {
  padding: 40px 100px 50px;
  border-bottom-left-radius: 160px;
  background: rgba(220, 220, 220, 0.35);
}

.heroic-subtitle {
  display: block;
  font-size: 38px;
  line-height: 1.4;
  color: #fff;
  font-weight: 300;
  margin-bottom: 5px;
  font-family: var(--default-font4);
}

.heroic-banner-content h1 {
  font-size: 54px;
  line-height: 1.35;
  color: #fff;
  font-weight: 400;
  margin-bottom: 24px;
  font-family: var(--default-font3);
  /* max-width: 1100px; */
}
.heroic-banner-content h2 {
  font-size: 45px;
  line-height: 1.35;
  color: #fff;
  font-weight: 400;
  margin-bottom: 24px;
  font-family: var(--default-font3);
  /* max-width: 1100px; */
}
.black {
  color: #111 !important
  ;
}

.heroic-banner-content h4 {
  font-size: 36px;
  line-height: 1.5;
  color: #111;
  font-style: italic;
  font-weight: 400;
  opacity: 0.8;
  /* font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; */
  font-family: var(--default-font4);
}

/* =========================
   RIGHT SIDE
========================= */

.heroic-banner-action {
  background: rgba(255, 255, 255, 0.65);

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px;
}

/* button */
.heroic-book-btn {
  font-size: 18px;
  font-weight: 700;

  color: var(--primary-color);
  text-decoration: none;

  /* font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; */
  font-family: var(--default-font4);

  transition: 0.4s;
}

.heroic-book-btn:hover {
  color: #3d6b1f;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {
  .heroic-banner-content h1 {
    font-size: 52px;
  }
}

@media (max-width: 767.78px) {
  .heroic-banner-overlay {
    width: 100%;
    border-radius: 0;
  }

  .heroic-banner-grid {
    grid-template-columns: 1fr;
  }

  .heroic-banner-content {
    padding: 50px 25px;
  }

  .heroic-banner-content h1 {
    font-size: 40px;
  }

  .heroic-subtitle {
    font-size: 20px;
  }

  .heroic-banner-content h4 {
    font-size: 28px;
  }

  .heroic-banner-action {
    justify-content: flex-start;
    padding: 25px;
  }
}

/* about-se */

.sub-head {
  font-size: 18px;
  font-family: var(--default-font2);
  /* font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; */
  padding-bottom: 12px;
  font-weight: 400;
}

/* =========================
   ABOUT GRID
========================= */

.about-grid-area {
  display: grid;
  grid-template-columns: 3.5fr 1fr;
  gap: 20px;
  align-items: start;
}

/* =========================
   LEFT CONTENT
========================= */

.about-left-content {
  width: 85%;
}

/* =========================
   RIGHT BUTTON
========================= */

/* .about-right-btn {
  display: flex;
  justify-content: flex-end;

  position: sticky;
  top: 120px;
} */

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
  .about-grid-area {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-right-btn {
    justify-content: flex-start;
    position: relative;
    top: 0;
  }
}
.awd-mg {
  width: 100%;
  height: auto;
  margin-top: 40px;
}

.form-content1 {
  padding: 200px 200px 150px;
  background: var(--primary-color);
  align-items: center;
}

/* testimonail */

.testimonial-section {
  padding: 20px 0px 100px 0px;
  text-align: center;
}

.testimonial-carousel {
  max-width: 1000px;
  margin: auto;
}

.testimonial-item {
  padding: 0 20px;
}

.stars {
  font-size: 42px;
  color: #b8934e;
  letter-spacing: 4px;
  margin-bottom: 35px;
  line-height: 1;
}

.testimonial-text {
  font-family: var(--default-font3);
  font-size: 24px;
  line-height: 1.5;
  color: #3f3f3f;
  max-width: 850px;
  margin: auto;
}

@media (max-width: 768px) {
  .testimonial-section {
    padding: 70px 20px;
  }

  .stars {
    font-size: 30px;
  }

  .testimonial-text {
    font-size: 22px;
  }
}

.owl-dots {
  display: block !important;
  text-align: center;
  margin-top: 15px !important;
  position: relative;
  z-index: 99;
}

.owl-dot {
  display: inline-block !important;
}

.owl-dot span {
  width: 16px !important;
  height: 16px !important;
  background: #cfcfcf !important;
  border-radius: 50%;
  display: block;
  margin: 5px 35px;
}

.owl-dot.active span {
  background: #5a5a5a !important;
}
/* last-sec */
.last-sec {
  padding: 60px 0px;
}
.last-grid {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 120px;
}
.txt-sm {
  font-size: 22px;
  font-family: var(--default-font3);
  color: #3f3a37;
  font-weight: 500;
}
.last-item img {
  width: 100%;
  height: auto;
}
.social-icons.fnt-page {
  justify-content: end;
  margin-top: 185px;
}
/* about page banner */

.hero {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
  border-bottom-left-radius: 240px;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* filter: grayscale(100%) brightness(1.1); */
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    to right,
    rgba(180, 170, 155, 0.72) 0%,
    rgba(180, 170, 155, 0.45) 40%,
    rgba(180, 170, 155, 0.1) 100%
  ); */
}

/* Curved card at bottom-left exactly like the design */
.hero-card {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60%;
  padding: 40px 45px 60px 200px;
  background: rgba(255, 255, 255, 0.55);
  /* background: linear-gradient(
    to right,
    rgba(180, 170, 155, 0.72) 0%,
    rgba(180, 170, 155, 0.45) 40%,
    rgba(180, 170, 155, 0.1) 100%
  ); */
  border-top-right-radius: 160px;
  backdrop-filter: blur(2px);
}

.hero-subtitle {
  font-size: 34px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 8px;
  opacity: 0.9;
  font-family: var(--default-font1);
  padding-bottom: 20px;
  margin-top: 0px !important;
}

.hero-title {
  font-size: 55px;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.1;
  font-family: var(--default-font3);
}

/* story start */

.story {
  padding: 0px 0px 100px 0px;
}

.team-section {
  padding: 80px 0px 20px 0px;
  max-width: 810px;
  margin: auto;
}

.team-row {
  display: grid;
  grid-template-columns: 300px 1fr;
  align-items: center;
  gap: 70px;
  margin-bottom: 90px;
}

.bottom-row {
  grid-template-columns: 1fr 320px;
}

/* Image */
.team-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-bottom-right-radius: 160px;
}
.team-image1 img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-bottom-left-radius: 160px;
}

/* Content */
.team-content h2 {
  font-family: var(--default-font4);
  font-size: 30px;
  font-weight: 400;
  color: #2f2f2f;
  margin-bottom: 5px;
  text-transform: uppercase;
  opacity: 0.9;
}

.team-content h3 {
  font-family: var(--default-font3);
  font-size: 28px;
  font-style: italic;
  font-weight: 600;
  color: #3f3a37;
  margin-bottom: 18px;
  line-height: 1.5;
}

.team-content p {
  font-family: var(--default-font4);
  font-size: 18px;
  line-height: 1.7;
  color: #8b8b8b;
  margin: 0;
}

.left-content {
  text-align: left;
}

/* Responsive */
@media (max-width: 767.78px) {
  .team-row,
  .bottom-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .bottom-row .team-image {
    order: -1;
  }

  .team-image img {
    height: 320px;
  }

  .team-content h2 {
    font-size: 32px;
  }

  .team-content h3 {
    font-size: 34px;
  }

  .team-content p {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .team-section {
    padding: 60px 20px;
  }

  .team-image img {
    height: 280px;
    border-bottom-right-radius: 90px;
  }

  .team-content h2 {
    font-size: 26px;
  }

  .team-content h3 {
    font-size: 28px;
  }

  .team-content p {
    font-size: 16px;
    line-height: 1.8;
  }
}

/* team member start */

.team-members-section {
  /* background: #f3f3f3; */
  padding: 0px 0px 100px 0px;
}

/* Title */
.team-title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  margin-bottom: 70px;
}

.team-title {
  font-family: var(--default-font4);
  font-size: 55px;
  font-weight: 400;
  color: #111;
  margin: 0;
}

.line {
  width: 270px;
  height: 2px;
  background: #4b4b4b;
}

/* Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}

/* Card */
.team-card {
  text-align: center;
}

/* Image */
.team-img {
  width: 100%;
  max-width: 220px;
  margin: auto auto 20px;
  overflow: hidden;
  border-radius: 35px;
}

.team-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* Text */
.member-name {
  font-family: var(--default-font4);
  font-size: 20px;
  font-weight: 400;
  color: #2f2f2f;
  margin-bottom: 10px;
  padding-bottom: 5px;
}

.member-designation {
  font-family: var(--default-font3);
  font-size: 18px;
  font-style: italic;
  font-weight: 600;
  color: #3f3a37;
  line-height: 1.2;
  margin-bottom: 5px !important;
}

.member-details {
  font-family: var(--default-font4);
  font-size: 16px;
  line-height: 1.6;
  color: #9a9a9a;
  margin: 0;
}

/* Responsive */
@media (max-width: 1200px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .team-members-section {
    padding: 70px 20px;
  }

  .team-title {
    font-size: 38px;
  }

  .line {
    width: 80px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .member-name {
    font-size: 24px;
  }

  .member-designation {
    font-size: 28px;
  }

  .member-details {
    font-size: 17px;
  }
}

/* award */

.awards-section {
  padding: 60px 0px 0px 0px;
  max-width: 920px;
  margin: auto;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 2px dotted #bdbdbd;
}

/* Card */
.award-card {
  text-align: center;
}

/* Image */
.award-card img {
  max-width: 100%;
  width: 220px;
  height: auto;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 991px) {
  .awards-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 576px) {
  .awards-section {
    padding: 60px 20px 40px;
  }

  .award-card img {
    width: 220px;
  }
}

.partner-section {
  /* background: #f3f3f3; */
  padding: 100px 0;
}

/* Title */
.partner-title {
  text-align: center;
  font-size: 24px;
  font-weight: 400;
  color: #111;
  margin-bottom: 100px !important;
  font-family: var(--default-font4);
}

/* Grid */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 70px 40px;
  align-items: center;
}

/* Item */
.partner-item {
  text-align: center;
}

/* Logo */
.partner-item img {
  max-width: 100%;
  width: 170px;
  height: 120px;
  object-fit: contain;
  transition: 0.3s;
}

.partner-item img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 1199px) {
  .partner-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 991px) {
  .partner-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 30px;
  }

  .partner-title {
    font-size: 38px;
  }
}

@media (max-width: 767px) {
  .partner-section {
    padding: 70px 20px;
  }

  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }

  .partner-title {
    font-size: 30px;
    margin-bottom: 50px;
  }

  .partner-item img {
    width: 140px;
    height: 100px;
  }
}

@media (max-width: 480px) {
  .partner-grid {
    grid-template-columns: 1fr;
  }
}

section.heroic-banner-area.cta-part {
  border-radius: 0px;
  height: auto;
  padding: 550px 0px 0px 0px;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  width: 100%;
  border-top-left-radius: 250px;
}
.cta-new {
  /* border-radius: 0px !important; */
  border-bottom-left-radius: 0px !important;
  background: rgba(245, 236, 223, 0.42);
}
.cta-black {
  /* background: rgba(68, 65, 59, 0.88); */
  /* background-color: #1a1a1a; */
  /* color: var(--white-color) !important; */
  background-color: #1a1a1ad9;
}

/* service page mid start */
.service-layout {
  padding: 100px 0px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px 60px;
  justify-items: center;
}

/* card */
/* .service-card {
  display: flex;
  align-items: center;
  gap: 22px;
  width: 100%;
  max-width: 380px;
} */

.service-card {
  display: grid;
  /* align-items: center; */
  gap: 40px;
  width: 100%;
  /* max-width: 380px; */
  grid-template-columns: 1fr 1fr;
}

/* image */
.service-img img {
  width: 250px;
  height: auto;
  object-fit: cover;
  border-radius: 28px;
}

/* content */
.service-content {
  padding: 10px 5px 10px 5px;
}
.service-content h3 {
  font-size: 23px;
  margin-bottom: 40px !important;
  font-family: var(--default-font);
  font-weight: 500;
  text-align: center;
  padding-top: 20px;
}

.service-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #888;
  margin-bottom: 15px !important;
  width: 90%;
  font-family: var(--default-font1);
}

/* .service-content a {
  display: inline-block;
  background: var(--primary-color);
  color: #fff;
  padding: 10px 18px;
  text-decoration: none;
  font-size: 12px;
  border: 2px solid #214817;
} */

.custom-btn {
  display: inline-block;
  /* padding: 14px 18px; */
  background: #020611;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 300;
  border: 3px solid #3d6b1f;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  letter-spacing: 1px;
  font-family: var(--default-font1);
  /* font-family: "Arial", sans-serif; */
  margin-top: 50px !important;
  text-align: center;
  width: 140px;
  height: 55px;
  display: block;
  margin: auto;
  line-height: 50px;
  align-items: center;
}

/* Hover Effect */
.custom-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #3d6b1f;
  transition: all 0.4s ease;
  z-index: 0;
}

.custom-btn:hover::before {
  left: 0;
}

.custom-btn span,
.custom-btn {
  position: relative;
  z-index: 1;
}

.custom-btn:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Hover Background */
.custom-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #3d6b1f;
  transition: 0.4s;
  z-index: -1; /* IMPORTANT */
}

.custom-btn:hover::before {
  left: 0;
}

.custom-btn:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* center card */
/* .center-card {
  grid-column: 1 / -1;
  justify-self: center;
} */
.center-card {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: 45%;
  position: relative;
}

/* ampersand */
.ampersand {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 90px;
  font-family: var(--default-font4);
}
.fnt {
  font-size: 13px;
  padding-left: 10px;
}

/* reverse last */
.reverse-card {
  flex-direction: row-reverse;
  text-align: right;
}

/* responsive */
@media (max-width: 991px) {
  .service-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .center-card,
  .ampersand {
    grid-column: auto;
  }

  .reverse-card {
    flex-direction: row;
    text-align: left;
  }
}

/* contact page */

/* =========================
   CONTACT SECTION
========================= */

.contact-section {
  padding: 40px 0px 80px 0px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 60px;
}

/* =========================
   LEFT SIDE
========================= */

.contact-left h2 {
  font-size: 58px;
  font-weight: 400;
  margin-bottom: 50px;
  color: #000;
  font-family: serif;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 100px;
}

.hours-list li {
  font-size: 15px;
  color: #8a8a8a;
  margin-bottom: 20px;
  font-family: var(--default-font4);
  font-weight: 400;
}

.contact-info {
  display: grid;
  gap: 40px;
}

.info-box h4 {
  font-size: 17px;
  margin-bottom: 15px;
  color: var(--primary-color);
  font-weight: 400;
  font-family: var(--default-font4);
}

.info-box p {
  font-size: 16px;
  color: #111;
  line-height: 1.8;
  margin-top: 6px !important;
}
.info-box p a {
  color: var(--primary-color);
  text-decoration: none;
  transition: 0.3s;
}

.info-box p a:hover {
  color: #3d6b1f;
}
.mt-04 {
  margin-top: 40px;
}

/* =========================
   RIGHT SIDE
========================= */

.contact-right {
  display: grid;
  gap: 50px;
  justify-items: end;
}

/* button */
.book-btn {
  width: auto;
  background: #020611;
  border: 3px solid #3d6b1f;

  color: #fff;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 1px;

  display: grid;
  place-items: center;

  position: relative;
  overflow: hidden;

  transition: 0.4s;
  z-index: 1;
  padding: 14px 20px;
}
a.book-btn:hover {
  color: #fff;
}

/* hover */
.book-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #3d6b1f;
  transform: translateX(-100%);
  transition: 0.4s;
  z-index: -1;
}

.book-btn:hover::before {
  transform: translateX(0%);
}

.book-btn:hover {
  transform: translateY(-5px);
}

/* map */
.map-box img {
  width: 100%;
  max-width: 600px;
  display: block;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 767.78px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .contact-right {
    justify-items: start;
  }

  .contact-left h2 {
    font-size: 42px;
  }

  .hours-list li,
  .info-box p {
    font-size: 16px;
  }

  .book-btn {
    width: 100%;
    max-width: 320px;
  }
}

/* from start */

/* =========================
   CONTACT FORM SECTION
========================= */

.contact-form-section {
  padding: 0px 0px 80px 0px;
}

/* wrapper */
.form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  align-items: stretch;
  overflow: hidden;
}

/* =========================
   LEFT IMAGE
========================= */

.form-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  border-bottom-left-radius: 80px;
}

/* =========================
   RIGHT FORM
========================= */

.form-content {
  padding: 50px 270px 50px 60px;
  background: var(--primary-color);
}

/* top two fields */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* input box */
.input-box {
  margin-bottom: 18px;
}

/* inputs */
.input-box input,
.input-box textarea {
  width: 100%;
  background: #d9d9d9;

  border: 3px solid #3d6b1f;
  outline: none;

  padding: 14px 24px;

  font-size: 18px;
  color: #000;

  font-family: "Helvetica Neue", sans-serif;
}

/* textarea */
.input-box textarea {
  height: 170px;
  resize: none;
}

/* placeholder */
.input-box input::placeholder,
.input-box textarea::placeholder {
  color: #666;
}

/* =========================
   BUTTON
========================= */

.submit-btn {
  /* width: 100%;
  height: 72px; */
  width: 100%;
  padding: 14px 20px;
  background: var(--primary-color);
  border: 3px solid #3d6b1f;

  color: #fff;
  font-size: 18px;
  letter-spacing: 1px;

  cursor: pointer;

  transition: 0.4s;
  position: relative;
  overflow: hidden;

  z-index: 1;
  font-family: var(--default-font1);
}

/* hover bg */
.submit-btn::before {
  content: "";
  position: absolute;
  inset: 0;

  background: #3d6b1f;

  transform: translateX(-100%);
  transition: 0.4s;

  z-index: -1;
}

.submit-btn:hover::before {
  transform: translateX(0%);
}

.submit-btn:hover {
  transform: translateY(-4px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
  .form-wrapper {
    grid-template-columns: 1fr;
  }

  .form-content {
    padding: 40px 25px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-image img {
    border-radius: 0;
  }
}

.follow {
  padding-top: 100px;
}
.social-icons {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
  margin-top: 60px;
}

.social-circle {
  width: 50px;
  height: 50px;

  background: #000;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;

  transition: 0.4s;
}

.social-circle i {
  color: #fff;
  font-size: 28px;
}

.social-circle:hover {
  transform: translateY(-6px) scale(1.05);
  background: #3d6b1f;
}

.sec-tion {
  padding: 40px 0px 80px 0px;
}
.sec-txt {
  width: 100%;
  max-width: 920px;
  margin: auto;
}
.mt-02 {
  margin-top: 30px !important;
}

/* service details */

.serv-sec {
  padding: 100px 0px;
}

.wrapper {
  width: 100%;
  margin-top: 100px;
  margin-bottom: 30px;
}

/* Row 1: 4-column grid */
.row1 {
  display: grid;
  grid-template-columns: repeat(4, 200px);
  justify-content: center;
  gap: 36px;
  margin-bottom: 80px;
}
.row2 {
  display: grid;
  grid-template-columns: repeat(5, 200px);
  justify-content: center;
  gap: 36px;
  margin-bottom: 80px;
}

/* Row 2: 5-column grid — cards in col 1,2,4,5 and ampersand in col 3 */
.also-row {
  display: grid;
  grid-template-columns: repeat(5, 200px);
  justify-content: center;
  align-items: center;
  gap: 36px;
}

/* Card */
.card1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  cursor: pointer;
}

.card-img-wrap {
  position: relative;
  width: auto;
  height: auto;
  border-radius: 36px;
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.22, 0.68, 0, 1.2),
    box-shadow 0.35s ease;
}

.card:hover .card-img-wrap {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
}

.card-img-wrap img {
  width: 180px;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.card:hover .card-img-wrap img {
  transform: scale(1.06);
}

/* Overlay with LUXURY BRAND text */
/* .card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.08);
  transition: background 0.3s ease;
} */

.card:hover .card-overlay {
  background: rgba(0, 0, 0, 0.18);
}

/* .luxury-text {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: 22px;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.12em;
  text-align: center;
  line-height: 1.15;
  text-transform: uppercase;
  user-select: none;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
} */

/* Label */
.card-label {
  font-family: var(--default-font4);
  font-size: 16px;
  font-weight: 400;
  color: var(--primary-color);
  text-align: center;
  letter-spacing: 0.03em;
  line-height: 1.5;
}

.ampersand-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 200px;
  height: 200px;
  font-size: 100px;
}
.ampersand.sc {
  font-size: 110px;
}
/* infertility page */

.know-more {
  padding: 0px 0px 100px 0px;
}

.faq-step-section {
  padding: 20px;
  margin-top: 80px;
}
.sec-txt-txt {
  margin: auto;
  max-width: 860px;
}

/* Item */
.faq-step-item {
  border-bottom: 2px solid #7d7d7d;
  padding: 0 0 14px;
  margin-bottom: 10px;
}

/* Button */
.faq-step-btn {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  cursor: pointer;
}

/* Text */
.faq-step-btn span {
  font-size: 10px;
  font-style: italic;
  font-weight: 700;
  color: #111;
  text-align: left;
  line-height: 1.4;
  font-family: var(--default-font4);
}

/* Icon */
.faq-step-btn svg {
  flex-shrink: 0;
}

.section {
  padding: 100px 0px 60px 0px;
}

/* Icon */
.reward-icon {
  margin-bottom: 12px;
}

.reward-icon img {
  display: block;
  margin: auto;
  width: 100px;
  height: auto;
}

/* Title */
.reward-title {
  font-size: 45px;
  font-weight: 400;
  color: #a97808;
  margin: 0;
  line-height: 1.3;
  font-family: var(--default-font4);
  text-align: center;
  border-bottom: 2px solid #a97808;
}

.heroic-banner-content.cta-new-one {
  border-radius: 0px;
  background: rgba(255, 255, 255, 0.78);
}

/* Maternal */

.text-green {
  color: #3d6f2a;
}
.text-gray {
  color: #5f5f5f;
}
section.heroic-banner-area.cta-part.one-o {
  background-size: 100% 100% !important;
}
.section-on {
  padding: 100px 0px;
}
.what-title {
  font-family: var(--default-font4);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.3;
  color: #111111;
  letter-spacing: 0;
}
.faq-cta-section {
  padding: 20px;
  margin-top: 80px;
  max-width: 800px;
  margin: auto;
  margin-bottom: 250px !important;
}

.scan-video-section {
  padding: 80px 0px;
  text-align: center;
  max-width: 700px;
  margin: auto;
}

/* Title */
.scan-title {
  font-size: 30px;
  font-weight: 500;
  color: #111;
  margin-bottom: 25px;
  font-family: var(--default-font4);
}

/* Subtitle */
.scan-subtitle {
  font-size: 20px;
  font-weight: 400;
  color: #222;
  margin-bottom: 70px;
  line-height: 1.5;
  font-family: "Inter", sans-serif;
}

/* Video */
.scan-video {
  max-width: 900px;
  margin: auto;
  position: relative;
  margin-top: 80px;
}

.scan-video img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* Optional Play Button */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 34px;
  color: #111;
}

/* Responsive */
@media (max-width: 768px) {
  .scan-video-section {
    padding: 60px 20px 70px;
  }

  .scan-title {
    font-size: 36px;
  }

  .scan-subtitle {
    font-size: 22px;
    margin-bottom: 40px;
  }

  .play-btn {
    width: 65px;
    height: 65px;
    font-size: 24px;
  }
}

/*  */
.img-fluid-new {
  width: 100%;
  height: 100%;
  border-bottom-right-radius: 100px;
}
.img-fluid-new1 {
  width: 100%;
  height: auto;
  height: auto;
  border-bottom-left-radius: 100px;
}
.img-fluid-new2 {
  width: 100%;
  height: 100%;
  border-top-left-radius: 100px;
}
.custom-grid-section {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 60px;
  align-items: start;
  margin-top: 40px;
}
.custom-grid-section1 {
  display: grid;
  grid-template-columns: 3.8fr 1fr;
  gap: 100px;
  align-items: center;
  margin-top: 40px;
}

@media (max-width: 991px) {
  .custom-grid-section {
    grid-template-columns: 1fr;
  }
  .custom-grid-section1 {
    grid-template-columns: 1fr;
  }
}

.sde {
  display: flex;
  gap: 10px;
}
.custom-grid-section-new {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 991px) {
  .custom-grid-section-new {
    grid-template-columns: 1fr;
  }
}
.align-it {
  align-items: center !important;
}
.custom-grid-section-lese {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 100px;
  align-items: center;
  margin-top: 60px;
}
.custom-grid-section-lese1 {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}
.bullets li {
  font-family: var(--default-font4);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.8;
  color: #6f6f6f;
}

.therapy-grid {
  display: grid;
  grid-template-columns: 2.4fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 991px) {
  .therapy-grid {
    grid-template-columns: 1fr;
  }
  .custom-grid-section-lese1 {
    grid-template-columns: 1fr;
  }
}
.mt-06 {
  margin-top: 90px;
}
.ft-wt {
  font-weight: 600;
}
.custom-grid-sec {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
}
.mt-05 {
  margin-top: 60px;
}

.heroic-banner-overlay.bt-r {
  border-bottom-left-radius: 230px;
}

.wellness-video-banner {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  border-bottom-left-radius: 160px;
}

.wellness-banner-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.wellness-banner-overlay {
  position: absolute;
  z-index: 2;
  bottom: 0px;
}

.wellness-banner-grid {
  position: relative;
  z-index: 3;
}

.scan-video video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/*  */

.faq-step-item {
  border-bottom: 1px solid #ddd;
}

.faq-step-btn {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  cursor: pointer;
  text-align: left;
}

.faq-step-btn span {
  font-size: 18px;
  font-weight: 500;
  color: #111;
}

.faq-step-btn svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-step-item.active .faq-step-btn svg {
  transform: rotate(180deg);
}

.faq-step-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-step-content p {
  margin: 0;
  padding: 0 0 18px;
  font-size: 16px;
  line-height: 1.6;
  color: #111;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}
.dropdown-menu {
  display: none;
  transition: 0.3s;
}
.nav-item.dropdown .nav-link::after {
  content: " ▼";
  font-size: 10px;
  margin-left: 10px;
}
@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-box {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.info-box h4 {
  font-size: 26px;
  margin-bottom: 25px;
  color: #222;
}

.info-box h4 i {
  color: green;
  margin-right: 10px;
}

.office-box {
  padding: 20px 0;
  border-bottom: 1px solid #ececec;
}

.office-box:last-child {
  border-bottom: none;
}

.office-box h5 {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 15px !important;
  font-weight: 600;
}

.office-box h5 i {
  margin-right: 8px;
}

.office-box p,
.office-box a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #555;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 12px;
  text-decoration: none;
}

.office-box a:hover {
  color: #8c52ff;
}

.office-box i {
  width: 18px;
  color: green;
  margin-top: 5px;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 32px;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: 0.3s ease;
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    right: 15px;
    bottom: 15px;
    font-size: 30px;
  }
}
