/* ======= Basic style ======= */
html,
body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-smoothing: antialiased;
  overflow-x: hidden;
}
html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  list-style: none;
  word-wrap: break-word;
}

body {
  font-family: "Instrument Sans", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75em;
  color: #555;
  overflow-x: hidden;
}

p {
  font-family: "Instrument Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.75em;
  color: #4B4B4B;
  margin-bottom: 5px;
}

h1 {
  font-size: 60px;
}

h2 {
  font-size: 43px;
}

h3 {
  font-size: 16px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 24px;
}

h6 {
  font-size: 21px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  line-height: 1.5em;
  margin: 0 0 15px 0;
  color: #000;
}

img {
  width: 100%;
  height: auto;
}

img {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  color: #f4f4f4;
}

span,
a,
a:hover {
  
  text-decoration: none;
  color: inherit;
}
li {
  font-size: 17px;
}

b {
  font-weight: 400;
  color: #555;
}

/* text field */
input[type="password"]:focus,
input[type="email"]:focus,
input[type="text"]:focus,
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus,
textarea:focus {
  outline: none;
}

input[type="password"],
input[type="email"],
input[type="text"],
input[type="file"],
textarea {
  max-width: 100%;
  margin-bottom: 10px;
  /* padding: 15px 0; */
  height: auto;
  background-color: #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-width: 0 0 1px;
  border-style: solid;
  display: block;
  width: 100%;
  line-height: 1.5em;
  font-size: 16px;
  font-weight: 400;
  color: #555;
  background-image: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  border-color: ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

input:focus,
textarea:focus {
  border-bottom-width: 1px;
  border-color: #c6321b;
}

input[type="submit"],
input[type="reset"],
input[type="button"],
button {
  text-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  line-height: 1.75em;
  -webkit-transition: background-color 0.15s ease-out;
  transition: background-color 0.15s ease-out;
  background: #fff;
  border: none;
}

input[type="submit"]:hover {
  background-color: #f4f4f4;
  color: #555;
  border: none;
}

select {
  padding: 10px;
  border-radius: 5px;
}

table,
th,
tr,
td {
  border: 1px solid #f4f4f4;
}

th,
tr,
td {
  padding: 10px;
}

input[type="radio"],
input[type="checkbox"] {
  display: inline;
}

/* placeholder */
::-webkit-input-placeholder {
  color: #555;
  font-size: 16px;
  font-weight: 400;
}

.top-bar {
    height: 12px;
    width: 100%;
    position: relative;
}
.top-bar:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: #0B1C39;
    left: 8%;
}
/*Menu Section*/
/* Sticky Header */
.navber-section {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.3s ease-in-out;
  background: #fff;
}

/* On Scroll */
.navber-section.sticky {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 0px 0; /* shrink */
	position: fixed;
}


/* HEADER */
.navber-section header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:#fff;
  position:relative;
  z-index:99;
  padding: 23px 0 27px;
}
.navber-section .header-left {
    display: flex;
    align-items:flex-end;
    gap: 25px;
}
.navber-section .logo img {
    width: auto;
    z-index: 999;
    position: relative;
    margin: 0 0 0px;
}

/* NAV (Desktop) */
.navber-section nav ul{
  list-style:none;
  display:flex;
  gap:25px;
  margin: 0;
}
.navber-section nav ul li{position:relative;}
.navber-section nav ul li a{
  text-decoration:none;
  font-family: "Instrument Sans", sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: #1F1F1F;
  padding:8px 4px;
  transition:.3s;
}
.navber-section nav ul li a:hover,
.navber-section nav ul li a.active{color:#1F1F1F;}

/* Dropdown */
.navber-section nav ul li ul{
  position:absolute;
  top:100%;
  left:0;
  min-width:180px;
  background:#fff;
  box-shadow:0 4px 15px rgba(0,0,0,0.1);
  display:none;
  flex-direction:column;
  z-index:99;
  padding: 0;
    gap: 0;
}
.navber-section nav ul li:hover ul{display:flex;}
.navber-section nav ul li ul li a{
  padding:10px 15px;
  font-weight:400;
  color:#444;
  width: 100%;
}
.navber-section nav ul li ul li a:hover{background:#1F1F1F;}

/* Icons (Right) */
.navber-section .header-icons{
  display:flex;
  align-items:center;
  gap:20px;
}
.navber-section .header-icons a{
  color:#333;
  font-size:16px;
  position:relative;
}
.navber-section .header-icons a:hover{color:#0072ff;}
.navber-section .header-icons .cart-count{
  position:absolute;
  top:-6px;right:-10px;
  background:#ff9800;
  color:#fff;
  font-size:11px;
  font-weight:bold;
  padding:2px 5px;
  border-radius:50%;
}

/* HAMBURGER */
.navber-section .hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}
.navber-section .hamburger span{
  width:26px;
  height:3px;
  background:#333;
  border-radius:2px;
  transition:.3s;
}

/* MOBILE MENU (Off-canvas) */
.navber-section .mobile-nav{
  position:fixed;
  top:0;right:-100%;
  width:60%;
  height:100vh;
  background:#fff;
  transition:right .4s ease;
  padding:30px 20px;
  box-shadow:-2px 0 8px rgba(0,0,0,0.1);
  z-index:999;
}
.navber-section .mobile-nav.active{right:0;}
.navber-section .mobile-nav ul{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:15px;
}
.navber-section .mobile-nav ul li a{
  text-decoration:none;
  color:#333;
  font-size:16px;
  display:block;
  padding:10px;
  transition:.3s;
}
.navber-section .mobile-nav ul li a:hover{background:#f7f7f7;border-radius:4px;}
.navber-section .mobile-nav ul li ul{
  display:none;
  flex-direction:column;
  padding-left:15px;
}
.navber-section .mobile-nav ul li.open ul{display:flex;}

/* MOBILE ICONS */
.navber-section .mobile-icons{
  margin-top:30px;
  display:flex;
  gap:20px;
  font-size:18px;
}
.navber-section .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 22px;
  color: #333;
  cursor: pointer;
}
.navber-section .close-btn:hover {color: #0072ff;}
.navber-section nav ul li a svg {
    width: 20px;
    height: 20px;
}
/* RESPONSIVE */
@media(max-width:991px){
  .navber-section nav{display:none;}
  .navber-section .header-icons{display:none;}
  .navber-section .hamburger{display:flex;}
  .navber-section .mobile-nav ul {
    padding: 0;
}
}

.banner-sec{
  position: relative;
}
.banner-sec .swiper {
    width: 100%;
    height: 100%;
}
.banner-sec .swiper-wrapper {
    align-items: center;
}

.banner-sec .swiper-slide {
  text-align: left;
  font-size: 18px;
  /*flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;*/
  position: relative;
}

.banner-sec .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.arrow-box {
    position: absolute;
    transform: translate(-50%, -50%);
    right: 8%;
    top: 50%;
    z-index: 99;
}
.button-prev-banner img {
    transform: rotate(180deg);
    
}
.arrow-box .button-next-banner,
.arrow-box .button-prev-banner {
    cursor: pointer;
    background: #fff;
    padding: 18px;
    margin: 20px 0;
    border-radius: 50%;
}
.swiper-button-disabled{
    cursor: no-drop;
}
.arrow-box .swiper-button-disabled{
    background: rgba(255, 255, 255, 0.20);
    cursor: no-drop;
}
.swiper-button-disabled img{
    filter: contrast(0.5);
}
.banner-wrap {
    display: flex;
    justify-content: center;
}
.banner-content {
    width: 688px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #064A3D;
    margin: 92px 0;
}
.containerbox {
    max-width: 480px;
}
.containerbox h2{
  font-size: 54px;
  color: #fff;
  font-weight: 700;
  margin: 0 0 20px;
  padding: 0 0 26px;
  text-transform: uppercase;
  position: relative;
}
.containerbox h2:after{
  position: absolute;
  content: '';
  width: 160px;
  height: 1px;
  background: #1DCDAD;
/*  transform: translate(-50%, -50%);*/
  left: 0;
  bottom: 0;
}
.containerbox p{
  color: #fff;
  font-size: 17px;
  font-weight: 500;
}
.btn-custom {
    background: #1DCDAD;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    max-width: 256px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    gap: 10px;
    border: 1px solid #1DCDAD;
    transition: .4s ease-out;
}
.btn-custom:hover {
    background: #064A3D;
    border: 1px solid #1DCDAD;
    color: #fff;
    transition: .4s ease-out;
}
.btn-custom:hover svg {
    transform: rotate(45deg);
}
.banner-image {
    margin: 0 0 0 -60px;
    z-index: -1;
    width: 70%;
    max-width: 896px;
}
.banner-image img {
    width: 100%;
    object-fit: cover;
}
.about-sec{
  padding: 100px 0;
}
.about-wrap {
    display: flex;
    gap: 120px;
    align-items: center;
}
.about-wrap h1 {
    color: #07162A;
    font-size: 54px;
    font-weight: 700;
    text-transform: uppercase;
}
.about-wrap p{
    color: #000;
    font-size: 18px;
    font-weight: 400;
    text-align: justify;  
}
.about-wrap-left {
    flex: 1;
}
.about-wrap-right {
    flex: 1;
    display: flex;
    gap: 30px;
    margin: 40px 0 0;
}
.about-box-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 52px 50px;
    gap: 10px;
}
.about-box-item img {
    width: 80px;
    height: 80px;
    transition: .5s ease;
}
.about-box-item h4{
    font-size: 24px;
    margin: 0;
    color: #434343;
}
.about-box-item p {
    color: #434343;
    font-size: 16px;
    text-align: center;
}
.about-box-left {
    gap: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.about-box-left .about-box-item:nth-child(odd) {
  /* styles for odd items (1, 3, 5, ...) */
  background: #E6FFFB;
}

.about-box-left .about-box-item:nth-child(even) {
  /* styles for even items (2, 4, 6, ...) */
  background: #064A3D;
}
.about-box-left .about-box-item:nth-child(even) h4{
  font-size: 24px;
    margin: 0;
    color: #fff;
}
.about-box-left .about-box-item:nth-child(even) p{
  color: #fff;
    font-size: 16px;
    text-align: center;
}
.about-box-right {
    gap: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
    margin: 30px 0 0;
}
.about-box-right .about-box-item:nth-child(even) {
  /* styles for odd items (1, 3, 5, ...) */
  background: #E6FFFB;
}

.about-box-right .about-box-item:nth-child(odd) {
  /* styles for even items (2, 4, 6, ...) */
  background: #064A3D;
}
.about-box-right .about-box-item:nth-child(odd) h4{
  font-size: 24px;
    margin: 0;
    color: #fff;
}
.about-box-right .about-box-item:nth-child(odd) p{
  color: #fff;
    font-size: 16px;
    text-align: center;
}

/*Wha we Do*/
.what-we-do{
  padding: 100px 0;
  background: #E6FFFB;
}
.what-we-do h2{
    color: #07162A;
    font-size: 54px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 48px;

}
.whatwedo-wrap {
    border-top: 1px solid #00000024;
}
.whatwedo-item {
    display: flex;
    align-items: self-start;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid #00000024;
}
.whatwedo-item:last-child {
/*  border-bottom: none;*/
}

.item-icon {
    flex: 0 0 70px;
    display: flex;
    justify-content: center;
    width: 384px;
    align-items: center;
    gap: 20px;
}
.item-icon img {
  width: 80px;
  height: 80px;
}
.item-icon h4 {
    width: 264px;
  font-size: 26px;
  color: #000000;
  font-weight: 600;
}
.item-content {
    /* flex: 1; */
    padding: 0px 0 0;
    width: 540px;
}
.item-content h4 {
  font-size: 26px;
  color: #000000;
  font-weight: 700;
  margin: 0 0 8px;
}
.item-content p {
  font-size: 17px;
  color: #000000;
  line-height: 1.6;
  margin: 0;
}

.item-toggle .arrow {
  transform: rotate(0deg);
  transition: transform 0.3s;
}
.whatwedo-item.active .item-toggle .arrow {
  transform: rotate(90deg);
}



.item-toggle {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2fd4b6;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.item-toggle:hover {
  background: #25b79b; /* darker on hover */
}

.item-toggle .arrow {
  color: #fff;
  font-size: 20px;
  line-height: 1;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

/*Counting*/
.counting-sec{
  padding: 100px 0;
}
.counting-sec .heging-sec h2 {
    font-size: 40px;
    color: #000;
    text-transform: uppercase;
    font-weight: 600;
}
.counting-wrap {
    display: flex;
    gap: 20px;
    align-items: center;
}
.counting-sec .heging-sec {
    width: 300px;
}
.counter-section {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 5px 20px;
  background: #fff;
  text-align: center;
  flex: 1 1 60%;
  border-left: 1px solid #ccc;
}

.counter-item {
  flex: 1;
}

.counter-item h3 {
  font-size: 60px;
  color: #000;
  font-weight: 700;
  margin: 0;
}

.counter-item .highlight {
  color: #2fd4b6; /* green accent */
}

.counter-item p {
    font-size: 17px;
    color: #000;
    font-weight: 500;
    margin-top: 8px;
}

/*Team*/
.team-sec{
  padding: 0px 0;
  position: relative;
}
.team-sec:after {
    position: absolute;
    content: '';
    width: 50%;
    height: 100%;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 100%;
    background: #1DCDAD;
}
.team-sec .swiper {
    width: 100%;
    height: 100%;
}
.team-sec .swiper-wrapper {
    align-items: center;
}

.team-sec .swiper-slide {
  text-align: left;
  font-size: 18px;
  /*flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;*/
  position: relative;
}

.team-sec .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-arrow-box {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin: 0px 0 0;
}
.team-arrow-box .button-next-banner img {
    transform: rotate(180deg); 
    width: 100px;
}
.team-arrow-box .button-prev-banner img {
    transform: rotate(0deg); 
    width: 100px;
}
.team-arrow-box .button-next-banner{
  left: 50px;
}
.team-arrow-box .button-prev-banner {
  right:0
}

.team-arrow-box .button-next-banner, 
.team-arrow-box .button-prev-banner {
    cursor: pointer;
    background: #fff;
    padding: 18px;
    margin: 20px 0;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    z-index: 99;
}
.swiper-button-disabled{
    cursor: no-drop;
}
.team-arrow-box .swiper-button-disabled{
    background: rgba(255, 255, 255, 0.20);
    cursor: no-drop;
}
.swiper-button-disabled img{
    filter: contrast(0.5);
}
.team-wrap {
    background: #1DCDAD;
    padding: 40px 64px;
    display: flex;
    gap: 64px;
    justify-content: space-between;
    align-items: center;
}
.team-wrap .heging-sec {
    width: 288px;
}
.heging-sec h2 {
    font-size: 54px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
}
.team-sec-wrap {
    max-width: 726px;
}
.team-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.team-content {
    text-align: center;
    background: #064A3D;
    padding: 15px 0;
}
.team-content h3{
    text-align: center;
    margin: 0;
    color: #fff;
    font-size: 21px;
}
.team-content p{
    text-align: center;
    margin: 0;
    color: #fff;
    font-size: 16px;
}
.logos-sec {
    padding: 100px 0;
    position: relative;
}
.logos-sec:after {
    position: absolute;
    content: '';
    width: 21%;
    height: 100%;
    background: linear-gradient(268deg, rgb(254 254 254 / 9%) 0%, rgb(255 255 255) 100%);
    transform: translate(-50%, -50%);
    left: 0;
    top: 50%;
    z-index: 99;
}
.logos-sec:before {
    position: absolute;
    content: '';
    width: 21%;
    height: 100%;
    background: linear-gradient(268deg, rgb(254 254 254 / 9%) 0%, rgb(255 255 255) 100%);
    transform: translate(-50%, -50%);
    left: 100%;
    top: 50%;
    z-index: 99;
}
/*Testimonial*/
.testimonial-sec{
  position: relative;
}
.testimonial-sec:after{
  position: absolute;
  width: 40%;
  height: 100%;
  content: '';
  background: #064A3D;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 0;
}
.swiper-pagination-bullet {
  background: #2fd4b6;   /* active color */
  opacity: 0.5;
}
.swiper-pagination-bullet-active {
  opacity: 1;
}
.testimonial-wrap {
    display: flex;
    gap: 30px;
}
.testimonial-left {
    max-width: 866px;
    background: #064A3D;
    padding: 48px 64px;
}
.testimonial-box {
    max-width: 624px;
    margin: 0 auto;
}
.testimonial-box p{
    font-size: 18px;
    color: #fff;
    text-align: center;
}
.testimonial-box h3{
    font-size: 20px;
    color: #fff;
    margin: 0;
}
.testimonial-box h4{
    font-size: 18px;
    color: #fff;
    font-weight: 400;
    margin: 0;
}
.testmo-authr {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.testmo-authr img{
    width: 54px;
    height: 54px;
}
.mySwiper-testimonial .swiper-pagination {
    position: relative;
    text-align: center;
    transition: .3s opacity;
    transform: translate3d(0, 0, 0);
    z-index: 10;
    margin: 30px 0 0;
}
.mySwiper-testimonial .swiper-pagination .swiper-pagination-bullet {
    background: #ffffffc4 !important;
    opacity: 1 !important !important;
    width: 10px !important;
    height: 10px !important;
}
.mySwiper-testimonial .swiper-pagination .swiper-pagination-bullet-active {
    width: 28px !important;
    border-radius: 5px;
    background: #fff !important;
    opacity: 1 !important;
}
.testimonial-box img {
    width: auto;
}
.testimonial-box {
    max-width: 624px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.testimonial-right {
    background: #064A3D;
    display: flex;
    align-items: center;
    padding: 64px;
}
.testimonial-right h2{
    color: #fff;
    font-size: 54px;
    text-transform: uppercase;
    font-weight: 600;
}
/*Contact*/
.contact-sec{
  padding: 100px 0;
}
.contact-sec h2{
    color: #07162A;
    font-size: 54px;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0 0 40px;
}
.contact-wrap {
    display: flex;
    justify-content: space-around;
    gap: 90px;
}
.contact-left {
    width: 100%;
    max-width: 544px;
}
.contact-right {
    width: 100%;
    max-width: 430px;
}
.form-box {
    display: flex;
    align-items: center;
    gap: 10px;
}
.form-box h3 {
    color: #111111;
    font-size: 36px;
    font-family: 'League Spartan';
    font-weight: 600;
    margin:0 0 30px;
}
.field label {
    margin: 0 0 10px;
    font-size: 18px;
    color: #000000;
    font-weight: 400;
}
.field label span {
    color: #1DCDAD;
}
.detils-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.detls-item {
    display: flex;
    gap: 20px;
    align-items: center;
}
.icon-box {
    display: flex;
    /* height: auto; */
    align-items: center;
    justify-content: center;
}
.icon-box img {
}
.content-box {
    flex: 1 1 50%;
}
.detls-item h4 {
    font-size: 22px;
    color: #262525;
    margin: 0 0 5px;
}
.detls-item p {
    font-size: 17px;
    color: #000000;
    margin: 0;
}
.detls-item p a{
  text-decoration: none;
    color: #000000;
    margin: 0;
}
.homeform_wrap {
    flex: 1 1 65%;
}
.map-sec iframe {
    margin: 30px 0 0;
    width: 100%;
    height: 200px;
}


.contact-left .formbox {
    display: flex;
    gap: 15px;
    justify-content: space-around;
    width: 100%;
}
.contact-left .field {
    flex: 1;
}
.wpcf7-form-control-wrap {
    position: relative;
    width: 100%;
}
.contact-left input,
.contact-left textarea {
  width: 100%;
  padding: 12px 14px;
  min-height: 56px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
  outline: none;
  box-sizing: border-box;
}

.contact-left textarea {
  grid-column: span 2;
  height: 120px;
  resize: none;
}

.contact-left input[type="submit"] {
    /* display: inline-block; */
    /* grid-column: span 2; */
    width: auto;
    padding: 12px 50px;
    background: #064A3D;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 25px 0 0;
}

.contact-left input[type="submit"]:hover {
  background: #000;
}

/*Footer*/
.footer-sec {
    background: #064A3D;
    padding: 100px 0;
}
.footer-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-item {
    flex: 1;
}
.footer-item img{
    width: auto;
}
.footer-item h4{
  font-size: 18px;
  color: #fff;
}
.footer-item ul{
  display: flex;
  gap: 16px;
  padding: 0;
  margin: 14px 0 0
}
.footer-item p {
    color: #ffffffcc;
    text-align: right;
    font-size: 17px;
    margin: 0;
}
.book-btn {
    margin: 30px 0 0;
    display: flex;
    width: 100%;
    justify-content: center;
    text-align: center;
}
.book-btn .btn-custom {
    padding: 0 40px;
}
.bounce{
    -webkit-animation: bounce 2s ease infinite;
    animation: bounce 2s ease infinite;
}
.bounce-box img {
    width: auto;
    box-shadow: 0 0 4px #272727;
    border-radius: 50%;
}
.bounce-box {
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    z-index: 99;
}
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease, visibility 0.4s;
  z-index: 9999;
}

