@import url(var.css);
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
    scroll-padding-top: 150px;
}


body{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}


body h1, h2, h3, h4, h5, h6{
    font-family: var(--h-fam);
}

body p, body button, body a{
    font-family: var(--n-fam);
}

.main-content{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.main-content.gap{
  margin-top: 120px;
}

.disp-col{
    display: flex;
    flex-direction: column;
}

.disp-row{
    display: flex;
    align-items: center;
}


.bread-crumb a{
  color: #fff;
}


.bread-crumb{
  display: flex;
  gap: 4px;
  align-items: center;
  position: relative;
  z-index: 3;
}

.bread-crumb span{
  font-size: large;
}

.bread-crumb a{
  text-decoration: none;
}


.with-deco-border::before{
   content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 70px;
  background-color: var(--pri-col);
}

/*error element*/

.error-element{
  width: 100%;
  min-height: 300px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 30px;
  background-color: #fff;
}

.error-element i{
  font-size: 80px;
  color: rgb(255, 46, 31);
}


/*floating whatsapp icon*/

.whatsapp-contact{
    position: fixed;
    z-index: 5;
    right: 5%;
    bottom: 5%;
    width: 70px;
    height: 70px;
    text-decoration: none;
    animation: iconFloat 1s infinite ease alternate;
}


.whatsapp-contact img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(5px 5px 5px rgba(0, 255, 85, 0.479));
}

@keyframes iconFloat {
  0% {
    transform: translateY(-3px);
  }
  100% {
    transform: translateY(3px);
  }
}


.navigation{
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 5;
    background-color: #ffffff;
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 30px 0px 10px;
    transition: all .4s ease-in-out;
}


.navigation .top-details{
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    padding: 2px 20px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navigation .fa-bars{
  color: var(--sec-col);
}

.navigation .top-details h4 a{
    text-decoration: none;
    font-size: 14px;
    color: var(--sec-col);
}

.navigation .top-details .socials{
    gap: 10px;
}

.navigation .top-details .socials a{
    color: var(--sec-col);
    text-decoration: none;
    font-size: 18px;
}

.navigation .logo-place{
    max-width: 30%;
}

.navigation .logo-place img{
    width: 80px;
    height: 80px;
    object-fit: contain;
}


.navigation nav ul{
    display: flex;
    align-items: center;
    gap: 15px;
    list-style: none;
}

.navigation nav ul li .main-nav-links{
    padding: 10px;
    text-decoration: none;
    color: var(--sec-col);
    font-weight: bold;
    transition: all .3s ease-in-out;
}

.navigation .nav-with-submenu{
  position: relative;
}

.navigation .nav-with-submenu:hover .submenu{
  display: flex;
}

nav ul li .main-nav-links:hover{
    color: var(--pri-col);
}



.submenu{
  position: absolute;
  left: 0%;
  top: 120%;
  color: var(--text-dark);
  display: none;
  flex-direction: column;
  width: 300px;
  z-index: 10;
  background-color: var(--text-dark);
  backdrop-filter: blur(5px);
}

.nav-with-submenu:hover .submenu{
  display: flex;
}

/* .submenu .backdrop{
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #44444427;
  filter: blur(2px);
  z-index: -1;
} */

.submenu .submenu-items{
  padding: 10px;
  position: relative;
  font-size: 14px;
}

.submenu .submenu-items .submenu-links{
  position: absolute;
  padding: 10px;
  left: 100%;
  top: 10%;
  width: 300px;
  background-color: #222;
  display: none;
}

.submenu .submenu-items:hover .submenu-links{
  display: flex;
}

.submenu-items, .submenu-links{
  display: flex;
  flex-direction: column;
}


.submenu a{
  text-decoration: none;
  color: #fff;
  padding: 10px;
  transition: all .3s ease-in-out;
  border-radius: 5px;
}

.submenu a:hover{
  color: var(--pri-col);
  background-color: #2e2e2e;
}

.menu-toggle{
    display: none;
}
.menu-toggle i{
    font-size: 25px;
    color: #fff;
}

.main-ctas{
    width: 200px;
    padding: 15px;
    border-radius: 3px;
    text-decoration: none;
    cursor: pointer;
    text-decoration: none;
    background-color: var(--pri-col);
    color: #fff;
    cursor: pointer;
    transition: all .2s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: none;
    font-size: 16px;
}

.main-ctas::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255,255,255,0.4);
  transform: skewX(-25deg);
}

.main-ctas:hover{
  color: var(--text-dark);
  background-color: var(--hover);
}
.main-ctas:hover::after {
  left: 130%;
  transition: left 0.5s ease;
}

.mobile-menu{
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 4;
    background-color: var(--sec-col);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    padding: 30px 20px;
    transform: translateX(-100%);
    transition: all .4s ease-in-out;
}

.mobile-menu.active{
    transform: translateX(0);
}

.mobile-menu ul{
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: none;
}

.mobile-menu ul li{
  padding: 8px 0;
}

.mobile-menu ul li a{
    text-decoration: none;
    color: #fff;
}

.submenu-expander{
  width: 100%;
  overflow: hidden;
  height: 30px;
  transition: all .3s ease-in-out;
}

.submenu-expander.expand{
  min-height: 180px;
  height: 230px;
}

.expander-link{
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-submenu{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 10px;
}

.mobile-submenu a{
  padding: 5px;
}

/*featured*/

.main-services {
  padding: 60px 20px;
  background: #f9f9f9;
  font-family: var(--n-fam);
}

.main-services .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.main-services .section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.main-services .section-header p {
  font-size: 1rem;
  color: #666;
}

.main-services .service-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  padding: 10px;
  gap: 15px;
}

.main-services .service-card-big {
  max-width: 100%;
  width: 350px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  overflow: hidden;
  position: relative;
}


.main-services .service-card-big:hover {
  transform: translateY(-6px);
}

.main-services .image-container {
  position: relative;
}

.main-services .image-container img {
  height: 250px;
  width: 100%;
  display: block;
  border-bottom: 1px solid #eee;
  object-fit: cover;
}

.main-services .badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgb(255, 217, 0);
  color: #000;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
}

.main-services .service-card-content {
  padding: 20px 10px;
}

.main-services .service-card-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #222;
}

.main-services .service-card-content h3 a{
  text-decoration: none;
  color: var(--text-dark);
  transition: all .3s ease;
}

.main-services .service-card-content h3 a:hover{
  color: var(--hover);
}

.main-services .service-card-content p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 50px;
}

.main-services .features {
  display: flex;
  gap: 20px;
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 15px;
}

.main-services .features span i {
  margin-right: 2px;
  color: rgb(255, 217, 0);
}

.main-services .price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #111;
}

.service-card-big .main-ctas{
    margin: 0px;
    text-align: center;
    position: absolute;
    left: 0%;
    bottom: 0%;
    width: 100%;
    border-radius: 0;
}


.section-header-deco{
  width: 100%;
  display: flex;
  align-items: center;
  padding: 10px 20px;
  gap: 15px;
}

.section-header-deco .header-dots{
  display: flex;
  align-items: center;
  gap: 5px;
}

.section-header-deco .header-dots span{
  border-radius: 50%;
  background-color: var(--sec-col);
}

.section-header-deco .header-dots span:nth-child(1){
  width: 5px;
  height: 5px;
}

.section-header-deco .header-dots span:nth-child(2){
  width: 15px;
  height: 15px;
}
.section-header-deco .header-dots span:nth-child(3){
  width: 25px;
  height: 25px;
}

.section-header-deco .header-line{
  max-width: auto;
  width: 800px;
  height: 2px;
  background-color: rgba(0,0,0,0.1);
  border-radius: 10px;
}

.section-header-deco{
  margin-bottom: 40px;
}

.wcu{
  width: 100%;
  padding: 30px 10px;
  gap: 30px;
}

.wcu-main{
  width: 100%;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 10px 30px;
}

.wcu-main .wcu-stmt{
  max-width: 100%;
  width: 270px;
  padding: 20px 10px;
  background-color: #fff;
  box-shadow: 3px 2px 6px 4px rgba(0,0,0,0.05);
  border-radius: 5px;
  gap: 10px;
  border-left: 4px solid var(--pri-col);
  min-height: 200px;
}

.wcu-main .wcu-stmt i{
  font-size: 60px;
  color: rgb(255, 196, 0);
}

.wcu-main .wcu-stmt p{
  font-size: 14px;
}


/*testimonials*/

.testimonials-section {
  padding: 60px 0px;
  background: #fff;
}

.testimonial-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 50px;
  margin: 0 auto;
  flex-wrap: wrap;
  padding: 10px 30px;
}

.testimonial-image img {
  max-width: 100%;
  width: 450px;
  height: 300px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.swiper {
  max-width: 100%;
  width: 450px;
}

.swiper-wrapper{
  height: 200px !important;
  cursor: grab;
}

.testimonial-text {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 15px;
}

.testimonial-author {
  font-weight: bold;
  color: #555;
}

/* Swiper pagination dots */
.swiper-pagination{
  bottom: 0% !important;
  left: 2% !important;
  display: flex;
  justify-content: flex-start !important;
}
.swiper-pagination-bullet {
  background: #ffa600 !important;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: #b35f00;
}


.rand-cta{
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 50px 20px;
  text-align: center;
  overflow: hidden;
  text-align: center;
  align-items: center;
  justify-content: center;
  height: auto;
  color: #fff;
  margin: 40px 0;
}

.rand-cta h2{
  font-size: 37px;
}

.metrics-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 40px 20px;
  background: #72727265;
  backdrop-filter: blur(3px);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  flex-wrap: wrap; 
}

.metric-box {
  max-width: 45%;
  width: 200px;
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.metric-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.metric-box i {
  font-size: 2.2rem;
  color: var(--pri-col); 
  margin-bottom: 10px;
}

.metric-box h3 {
  font-size: 2rem;
  margin: 10px 0;
  color: var(--sec-col);
  font-weight: 700;
}

.metric-box p {
  font-size: 1rem;
  color: #555;
}


.rand-cta .overlay{
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0,0,0,0.5);
  z-index: -1;
}

.rand-cta img{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}


/*about*/

.about-section{
  width: 100%;
  gap: 30px;
  padding: 40px 20px;
}

.about-section .about-content{
  width: 100%;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-evenly;
}

.about-section .about-content .text{
  gap: 20px;
}

.about-section .about-content .text h3{
  font-size: 25px;
  padding: 20px 0;
  position: relative;
}

.about-section .about-content .text h3:before{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 70px;
  background-color: var(--pri-col);
}

.about-section .about-content .text p{
  line-height: 20px;
  letter-spacing: 1.5px;
  font-family: Poppins;
}

.about-section .about-content .about-image, .about-section .about-content .text{
  max-width: 100%;
  width: 450px;
}
.about-section .about-content .about-image{
  object-fit: contain;
  filter: drop-shadow(6px 6px 6px rgba(0, 0, 0, 0.281));
}


/*blog posts*/

.latest-blog-posts{
  width: 100%;
  gap: 30px;
  padding: 50px 20px;
}

.posts-container{
  width: 100%;
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}



.posts-container .post{
  max-width: 100%;
  min-height: 500px;
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 2px 3px 7px rgba(0,0,0,0.05);
}

.posts-container .post h4{
    white-space: nowrap;       
    overflow: hidden;            
    text-overflow: ellipsis;
}

.posts-container .post h4 a{
  text-decoration: none;
  color: var(--sec-col);
  transition: all .3s ease;
}


.posts-container .post h4 a:hover{
  color: var(--pri-col);
}

.post .ind-blog-category{
  font-family: var(--n-fam);
  font-size: 16px;
  color: var(--pri-col);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.posts-container .post img{
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all .4s ease-in-out;
}

.posts-container .post:hover img{
  object-position: left;
}

.posts-container .post .post-desc{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
}

.posts-container .main-ctas{
  margin: 15px;
}

/*reusables*/

.forms{
  max-width: 100%;
  width: 800px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 30px 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.forms.normal{
  background-color: #fff;
  border-top: 3px solid var(--pri-col);
}

.form-group-wrapper{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group-wrapper h4{
  font-size: 25px;
  position: relative;
  padding: 10px 0;
}

.forms .form-group-row{
  width: 100%;
  display: flex;
  align-items: stretch;
  gap: 20px;
  flex-wrap: wrap;
}

.forms .form-group-row .form-group{
  max-width: 100%;
  width: 350px;
}

.forms .form-group{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--n-fam);

}

.forms .form-group.frm-grp-half{
  max-width: 100%;
  width: 200px;
  height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.forms label.disabled{
  cursor: not-allowed;
  color: #686868;
}

.forms input[type='email'], .forms input[type='text'], .forms input[type='tel'], .forms input[type='password'], input[type='date'], input[type='time'], input[type='number'], select, textarea{
  width: 90%;
  padding: 13px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}

.forms textarea{
  height: 100px;
  resize: none;
}

.forms select{
  cursor: pointer;
}

.forms .flex-form-fields{
  width: 100%;
  gap: 20px;
  flex-wrap: wrap;
}



.forms .radio-fields, .forms .radio-fields .radio-inps, .forms .radio-fields i, .forms .flex-form-fields{
  display: flex;
  align-items: center;
}

.forms .radio-fields{
  padding: 10px 0;
  gap: 25px;
  max-width: 100%;
  width: 200px;
}


.forms .radio-fields .radio-inps{
  gap: 10px;
  width: 150px;
  justify-content: space-between;
}

.forms .form-group .radio-inps .book-opt-radios{
  margin-right: 20px;
}

.forms .radio-fields .radio-inps input:disabled{
  cursor: not-allowed;
}

.forms .radio-fields .inst-caller{
  padding: 8px;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.3);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  font-size: 12px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.815);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.forms .radio-fields .inst-caller::before{
  content: "How to Pay";
  position: absolute;
  left: 0%;
  top: -50%;
  opacity: 0;
  visibility: hidden;
  width: 100px;
  padding: 5px;
  background-color: var(--sec-col);
  border-radius: 2px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease-in-out;
  border-radius: 7px 7px 7px 2px;
}


.forms .radio-fields .inst-caller:hover::before{
  opacity: 1;
  visibility: visible;
  top: -180%;
}



.forms.glass input, .forms.glass textarea{
  background-color: transparent;
  color: #fff;
  backdrop-filter: blur(2px);
}

.forms.glass input::-webkit-input-placeholder, .forms.glass textarea::-webkit-input-placeholder{
  -webkit-appearance: none;
  color: #fff;
  font-family: var(--n-fam);
}

.forms input:focus, .forms textarea:focus{
  outline: none;
}
.forms.glass{
  background-color: #8b8b8b60;
  backdrop-filter: blur(3px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}


.forms .btn-row{
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}


.whatsapp-booking-btn{
  max-width: 80%;
  width: 200px;
  padding: 15px;
  border-radius: 3px;
  cursor: pointer;
  border: none;
  font-family: var(--n-fam);
  font-size: 16px;
  color: #fff;
  background-color: #00a738;
  transition: all .3s ease-in-out;
}

.whatsapp-booking-btn:hover{
  background-color: #00cc44;
}


/*MODALS LOADERS *************************************** START*/


.loader-wrapper{
  width: 100%;
  height: 100vh;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: #ffffffda;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 5;
  backdrop-filter: blur(2px);

}

.loader-wrapper.active{
  display: flex;
}

/* HTML: <div class="loader"></div> */
.loader {
  width: 60px;
  aspect-ratio: 2;
  --_g: no-repeat radial-gradient(circle closest-side,#000 90%,#0000);
  background: 
    var(--_g) 0%   50%,
    var(--_g) 50%  50%,
    var(--_g) 100% 50%;
  background-size: calc(100%/3) 50%;
  animation: l3 1s infinite linear;
}
@keyframes l3 {
    20%{background-position:0%   0%, 50%  50%,100%  50%}
    40%{background-position:0% 100%, 50%   0%,100%  50%}
    60%{background-position:0%  50%, 50% 100%,100%   0%}
    80%{background-position:0%  50%, 50%  50%,100% 100%}
}

.modal{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.445);
  z-index: 100;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease-in;
  overflow-y: scroll;
}
.modal::-webkit-scrollbar{
    -webkit-appearance: none;
    width: 3px;
    background-color: #fff;
}

.modal::-webkit-scrollbar-thumb{
    appearance: none;
    background-color: var(--accent);
    border-radius: 10px;
}

.modal.active{
    opacity: 1;
    visibility: visible;
}

.modal .modal-content{
  max-width: 100%;
  width: 800px;
  background-color: #fff;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
}

.modal .modal-content .modal-header{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  gap: 10px;
}

.modal-header .modal-close{
    font-size: 17px;
    cursor: pointer;
}

.modal .modal-content .modal-body{
  padding: 20px 10px;
  overflow-y: scroll;
  max-height: 700px;
}

/*MODALS *************************************** END*/


/*********************** CTA SECTION ******** START *********/

.cta-section {
  background: linear-gradient(135deg, #dfecff, #ffdec8);
  color: var(--text-dark);
  padding: 4rem 2rem;
  border-radius: 1.5rem;
  margin: 60px auto;
  max-width: 95%;
  width: 1100px;
  min-height: 400px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
}

.cta-content{
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-family: var(--h-fam);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 3rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.cta-content p {
  font-family: var(--n-fam);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-dark);
}

.cta-btn {
  display: inline-block;
  background: var(--pri-col);
  color: #fff;
  font-family: var(--h-fam);
  padding: 0.9rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.cta-btn:hover {
  background: var(--hover);
  color: var(--sec-col);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* Particles */
.particles {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.particles span {
  position: absolute;
  width: 40px;
  height: 40px;
  background: linear-gradient(#b0d0ff, transparent 70%);
  border-radius: 50%;
  opacity: 0.4;
  animation: float 12s linear infinite;
}
.particles span:nth-child(1) { top: 20%; left: 10%; animation-duration: 14s; }
.particles span:nth-child(2) { top: 70%; left: 30%; animation-duration: 18s; }
.particles span:nth-child(3) { top: 50%; left: 80%; animation-duration: 16s; }
.particles span:nth-child(4) { top: 10%; left: 60%; animation-duration: 20s; }
.particles span:nth-child(5) { top: 80%; left: 90%; animation-duration: 22s; }

@keyframes float {
  0% { transform: translateY(0) translateX(0); opacity: 0.4; }
  50% { transform: translateY(-70px) translateX(20px); opacity: 0.7; }
  100% { transform: translateY(0) translateX(0); opacity: 0.4; }
}

/*********************** CTA SECTION ******** END *********/

/*footer*/

.footer {
  background: linear-gradient(135deg, #222222, #444);
  color: #f5f5f5;
  padding: 60px 20px 20px 20px;
  font-family: Poppins;
  position: relative;
  z-index: 1;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  flex: 1 1 220px;
  min-width: 200px;
}

.footer-section h2, .footer-section h3 {
  color: var(--pri-col);
  margin-bottom: 15px;
}

.footer-section p, .footer-section li {
  font-size: 14px;
  color: #eee;
  line-height: 1.6;
}

.footer-section.contact p{
    display:flex;
    align-items:center;
    gap: 10px;
}

.footer-section.contact i{
    font-size: 20px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li a {
  color: #eee;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--pri-col);
}

.footer-section.newsletter form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-section.newsletter input {
  padding: 10px;
  border: none;
  border-radius: 5px;
  outline: none;
}

.footer-section.newsletter button {
  padding: 10px;
  border: none;
  border-radius: 5px;
  background-color: var(--pri-col);
  color: var(--sec-col);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.footer-section.newsletter button:hover {
  background-color: #e6c900;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  border-top: 1px solid #555;
  padding-top: 20px;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  font-size: 13px;
}

.social-icons a {
  color: #f5f5f5;
  margin-left: 15px;
  font-size: 16px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: var(--pri-col);
  transform: translateY(-3px);
}


/*SERVICE CATEGORY PAGE START********/


/* Main Wrapper */
.svc-main {
  padding: 60px 0px;
  font-family: 'Segoe UI', Roboto, sans-serif;
  color: #222;
  width: 100%;
  margin: 100px 0;
}

/* Header */
.svc-header {
  width: 100%;
  height: auto;
  padding: 50px 10px;
  margin: 50px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.svc-header .overlay{
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(1px);
  z-index: 2;
}

.svc-header .main-bg{
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  z-index: 1;
}

.svc-header .bread-crumb a, .svc-title, .svc-intro{
  color: #fff;
  position: relative;
  z-index: 3;
}

.svc-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.svc-intro {
  font-size: 1.1rem;
  line-height: 1.6;
}

.svc-header .bread-crumb{
  display: flex;
  gap: 4px;
  align-items: center;
}

.bread-crumb span{
  font-size: large;
}

.svc-header .bread-crumb a{
  text-decoration: none;
}




.sub-services{
  width: 100%;
  gap: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.section-title{
  text-align: center;
}

.svc-desc {
  max-width: 95%;
  width: 1000px;
  padding: 40px 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  border-left: 4px solid var(--pri-col);
  background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(250,250,250,0.95));
  border-radius: 12px;
  margin: 50px auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.svc-desc:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.svc-desc h2, .svc-desc h3 {
  position: relative;
  margin-bottom: 25px;
  padding: 12px 0;
  color: var(--sec-col);
  font-family: var(--h-fam);
  font-weight: 600;
}

.svc-desc h2::before, .svc-desc h3::before {
  content: "";
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, var(--pri-col), var(--accent));
  position: absolute;
  left: 0;
  bottom: -5px;
  border-radius: 2px;
}

.svc-desc ul, .svc-desc ol {
  list-style: none;
  padding: 20px 10px;
  margin: 0;
}

.svc-desc ul li, .svc-desc ol li {
  position: relative;
  padding: 10px 20px;
  margin-bottom: 10px;
  background: rgba(223, 121, 38, 0.05);
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.svc-desc ul li:hover, .svc-desc ol li:hover {
  background: rgba(223, 121, 38, 0.12);
  transform: translateX(5px);
}

.svc-desc ul li::before, .svc-desc ol li::before {
  content: '';
  width: 12px;
  height: 12px;
  background-color: var(--pri-col);
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}


/******************* SERVICE PRICING **************/


.svc-pricing {
  display: grid;
  gap: 15px;
  padding: 20px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  background: linear-gradient(135deg, #e7f5ff, #fff2e3);
  color: var(--text-dark);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  margin: 30px 0;
}

.svc-pricing .pricing-blocks {
  background: rgba(255,255,255,0.1);
  padding: 12px 40px;
  border-radius: 8px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.svc-pricing .pricing-blocks::before {
  content: "💼";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
}

.svc-pricing .pricing-blocks strong {
  color: var(--text-dark);
  font-weight: 600;
}

.svc-pricing .pricing-blocks:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
  transition: all 0.2s ease;
}




/* Grid */
.svc-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  width: 100%;
  padding: 30px 10px;
  align-items: stretch; 
}

/* Card */
.svc-card {
  flex: 1 1 350px;
  max-width: 350px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
  justify-content: space-between; 
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.svc-card img{
  width: 100%;
  height: 200px;
  object-fit: cover;

}

.svc-card, .s-card-content{
  display: flex;
  flex-direction: column;
}

.s-card-content{
  padding: 20px;
  gap: 10px;
}


.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 22px rgba(0,0,0,0.12);
}

.svc-card-title {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--text-dark);
  width: 100%;
  white-space: nowrap;       
  overflow: hidden;            
  text-overflow: ellipsis;
}

.svc-card-desc {
  font-size: 0.95rem;
  flex-grow: 1;
  color: #444;
  margin-bottom: 15px;
  line-height: 1.5;
}

.svc-card-link {
  align-self: flex-start;
  text-decoration: none;
  color: var(--pri-col);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.svc-card-link:hover {
  color: var(--hover);
}


.booking-section{
  width: 100%;
  padding: 50px 10px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
}


/*SERVICE CATEGORY PAGE END *********/




/*SERVICE DETAILS PAGE START******************/


/* Card */
.svc-area-card {
  max-width: 100%;
  width: 300px;
  background: linear-gradient(145deg, #ffffff, #f7f9fc);
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.svc-area-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at top left, var(--sec-col, #146eb4) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.svc-area-card:hover::before {
  opacity: 0.08;
}

.svc-area-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

/* Icon */
.svc-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sec-col, #146eb4);
  color: #fff;
  font-size: 22px;
  margin-bottom: 15px;
  z-index: 1;
}

/* Headings */
.svc-area-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--pri-col, #0a2a43);
  z-index: 1;
}

.svc-area-card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
  z-index: 1;
}


/*SERVICE DETAILS PAGE END******************/



/************************* ALL SERVICES PAGE START ********************/

.bm-services-main{
  width: 100%;
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

/************************* ALL SERVICES PAGE END ********************/


/*auth*/

.auth-pages{
    height: 100vh;
    margin-top: 100px;
}

.user-auth-content{
    width: 100%;
    height: 100%;
    gap: 20px;
    padding: 40px 10px;
    align-items: center;
    justify-content: center;
}

.auth-form-wrapper{
    max-width: 100%;
    width: 800px;
}


/********************* BLOGS PAGE ALL, START ***********/


/* Blog List */

.blog-page{
  width: 100%;
  margin: 200px 0;
}

.blog-section {
  padding: 60px 10px;
  background: #f9f9f9;
  font-family: var(--n-fam);
}



.blog-page-hero {
  position: relative;
  min-height: 300px;
  padding: 2rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.blog-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(126, 143, 160, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 45rem;
  margin: auto;
}

.blog-page-hero span {
  display: block;
  font-size: 25px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--pri-col);
  margin: 20px auto;
}

.blog-page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.blog-page-hero h1 span {
  color: var(--pri-col);
}

.blog-page-hero p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
}



.circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  z-index: 0;
}

.circle.pink {
  width: 20rem;
  height: 20rem;
  background: #ff4d6d;
  top: -5rem;
  left: -6rem;
}

.circle.purple {
  width: 25rem;
  height: 25rem;
  background: #7b2ff7;
  bottom: 1rem;
  right: -8rem;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #222;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}


.blog-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: 50% 25%;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.05);
}

.blog-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-category {
  font-size: 0.8rem;
  color: var(--pri-col);
  text-transform: uppercase;
  font-family: var(--n-fam);
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-title {
  font-size: 22px;
  margin: 0 0 10px;
  color: #333;
}

.blog-excerpt {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  flex: 1;
}

.read-more {
  margin-top: 20px;
  text-decoration: none;
  font-weight: 600;
  color: var(--pri-col);
  transition: color 0.3s ease;
}

.read-more:hover {
  color: var(--hover);
}

.blog-section .pagination{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px 0;
  gap: 5px;
}

.blog-section .pagination a{
  text-decoration: none;
  color: var(--text-dark);
  padding: 5px 10px;
  border-radius: 5px;
  transition: all .3s ease-in-out;
  flex-wrap: wrap;
}

.blog-section .pagination a:hover{
  background-color: var(--pri-col);
}



/********************* BLOGS PAGE ALL, END ***********/


/****************** IND BLOG PAGES START **************/

/*BLOGS*/

.blog-post-hero {
  padding: 60px 20px 30px;
  background: #f5f7fb;
  text-align: center;
}

.blog-post-hero .container{
  margin-top: 100px;
}

.blog-post-hero .blog-category {
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  color: var(--pri-col);
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: var(--h-fam);
}

.blog-title {
  font-size: 2.5rem;
  color: #222;
  margin: 0;
}

.blog-meta {
  color: #777;
  font-size: 0.95rem;
  margin-top: 8px;
  font-family: Manrope;
}

.blog-featured-image {
  margin-top: 30px;
}

.blog-featured-image img {
  max-width: 100%;
  width: 1000px;
  height: 600px;
  object-fit: cover;
  object-position: 50% 25%;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.blog-post-content {
  padding: 40px 20px;
  background: #fff;
  line-height: 1.8;
  font-size: 1.05rem;
  color: #333;
}

.blog-post-content h2{
  margin: 20px 0;
}

.blog-post-content .container ul{
  list-style: none;
  padding: 20px;
}

.blog-post-content .container ul li{
  position: relative;
  padding: 5px 25px;
  font-family: var(--n-fam);
}

.blog-post-content .container ul li::before{
  position: absolute;
  content: '';
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--pri-col);
  left: 0px;
  top: 11px;
}

.blog-post-content .container {
  max-width: 800px;
  margin: 0 auto;
}

.blog-post-content img {
  max-width: 100%;
  margin: 20px 0;
  border-radius: 6px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}



.blog-share-section{
  max-width: 480px;
  margin: 2rem auto;
  padding: 1.5rem;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.1);
  text-align: center;
}

.blog-share-section h3 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

.blog-share-section .share-icons {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}

.blog-share-section .share-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #eee;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.08);
  text-decoration:none;
  color: #000;
}

.blog-share-section .share-icon svg {
  width: 24px;
  height: 24px;
  pointer-events: none;
}

.blog-share-section .share-icon i {
  font-size: 22px;
  pointer-events: none;
}

.blog-share-section .share-icon:hover {
  transform: scale(1.1);
}

.share-icon.facebook:hover {
  background: #d0dfff;
  filter: brightness(110%);
}

.share-icon.linkedin:hover {
  background: #bfe9ff;
  filter: brightness(110%);
}

.share-icon.whatsapp:hover {
  background: #c9ffdd;
  filter: brightness(110%);
}

.share-icon.twitter:hover {
  background: #b1b1b1;
  filter: brightness(110%);
}

/****************** IND BLOG PAGES END **************/


/***** BOOKING FORM ******/

.pay-steps{
  width: 100%;
  padding: 20px;
  flex-direction: column;
  gap: 20px;
}

.modal-body ul, .modal-body ol{
  padding: 10px;
}

.payment-methods-grp.inactive{
  display: none;
}

.location-info, .bank-trans-info{
  display: none;
}

.location-info.active, .bank-trans-info.active{
  display: block;
}

/***** BOOKING FORM ******/


/************************ RESPONSES PAGES START **********************/

.booking-response-wrapper{
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 10px;
}

.booking-response-wrapper .booking-res{
  max-width: 100%;
  width: 800px;
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  gap: 30px;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 3px 5px 10px 3px rgba(0, 0, 0, 0.05);
  font-family: var(--n-fam);
}

.booking-res .res-acts{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.booking-res div{
  max-width: 100%;
  width: 600px;
  margin: auto;
  text-align: center;
  margin-bottom: 10px;
}

.booking-res i.fa-circle-exclamation{
  font-size: 50px;
  color: rgb(255, 46, 31);
  margin: 30px 0;
}
/************************ RESPONSES PAGES END **********************/



/******************** FAQS START ***********************/


.faq-section {
  padding: 60px 20px;
  background: #fafafa;
  font-family: var(--n-fam);
  display: grid;
  place-items: center;
}

.faq-container {
  max-width: 800px;
  width: 100%;
}

.faq-title {
  text-align: center;
  color: var(--pri-col);
  font-size: 2rem;
  margin-bottom: 10px;
}

.faq-subtitle {
  text-align: center;
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 40px;
}

.faq-items {
  display: grid;
  gap: 15px;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  padding: 18px 22px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #333;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #fff6ef;
}

.faq-toggle {
  color: var(--pri-col);
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  display: none;
  padding: 0 22px 20px;
  color: #555;
  line-height: 1.5;
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}



/******************** FAQS END ***********************/



/********* ERROR PAGES START ***********/



.error-main {
  min-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--bg-page);
  color: var(--text-dark);
  font-family: var(--n-fam);
  padding: 2rem;
}

.error-container {
  text-align: center;
  background: #fff;
  padding: 3rem 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  max-width: 100%;
  width: 1100px;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.error-container:hover {
  transform: translateY(-4px);
}

.error-code {
  font-size: 5rem;
  font-weight: 700;
  color: var(--pri-col);
  margin-bottom: 0.5rem;
  font-family: var(--h-fam);
}

.error-title {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.error-message {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 30px;
  width: 60%;
  text-align: center;
  margin: auto;

}



/* Gentle floating + glowing effect */
@keyframes floatGlow {
  0% {
    opacity: 0.9;
    
    text-shadow: 0 0 10px rgba(223, 121, 38, 0.3);
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 25px rgba(223, 121, 38, 0.7);
  }
  100% {
    opacity: 0.9;
    text-shadow: 0 0 10px rgba(223, 121, 38, 0.3);
  }
}

/* Apply only to error titles on 404 and 500 pages */
.error-404 .error-code,
.error-500 .error-code {
  animation: floatGlow 2.5s ease-in-out infinite;
}


/********* ERROR PAGES END ***********/



@media screen and (max-width: 764px) {
    .navigation nav {
        display: none;
    }
    .navigation .menu-toggle{
        display: flex;
    }
    .navigation .top-details h4 a{
      font-size: 12px;
    }
    .navigation .top-details {
      padding: 2px;
    }
    .mobile-center{
      align-items: center;
      justify-content: center;
    }
    .testimonial-container {
      flex-direction: column;
      gap: 30px;
    }
    .section-header-deco .header-dots, .section-header-deco .header-line{
      display: none;
    }
    .section-header-deco h2{
      font-size: 30px;
      text-align: center;
      margin: auto;
    }
    .modal{
        align-items: flex-start;
    }
}