
/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

 #spinner.show {
     transition: opacity .8s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
 }
/*** Spinner End ***/
.navbar-brand img{
    width: 220px;
}
.faficon{
    color: #fff !important;
}
/*** Common CSS Start ***/
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

h1,
h2,
h3,
.h1,
.h2,
.h3 {
    font-weight: 200;
    font-family: 'Montserrat', sans-serif;
}

h4,
h5,
h6,
.h4,
.h5,
.h6 {
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
    font-weight: 700;
    font-family: 'Fredoka', sans-serif;
}

.display-4,
.display-5,
.display-6 {
    font-weight: 600;
}

.wow,
.animated {
    animation-duration: 2s !important;
}
/*** Common CSS End ***/


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    border: 0;
    color: var(--bs-white);
}

.btn.btn-primary:hover {
    background: var(--bs-secondary);
    color: var(--bs-primary);
}

.btn-border-radius {
    border-radius: 25% 10%;
}

.img-border-radius {
        border: 3px solid #ffffff;
        border-radius: 12px;
        padding: 4px;
        background: #fff;
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        transition: all 0.3s ease;
}

.title-border-radius {
    border-radius: 10% 30%;
}
/*** Button End ***/


/*** Topbar Start ***/
.topbar .top-info {
    font-size: medium;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.topbar .top-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar .top-link a {
    margin-right: 10px;
}

.topbar .top-link a:hover {
    background: var(--bs-secondary) !important;
}

.topbar .top-link a:hover i {
    color: var(--bs-primary) !important;
}
/*** Topbar End ***/

.page-header
{
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.05)), url(../img/hero-img.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
/*** Navbar Start ***/
.navbar {
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.navbar .navbar-nav .nav-link {
    padding: 10px 12px;
    font-size: 16px;
    font-weight: 600;
    transition: .5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.fixed-top.bg-white .navbar .navbar-nav .nav-link:hover,
.fixed-top.bg-white .navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        font-weight: 400;
        font-family: 'Fredoka', sans-serif;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-secondary);
    color: var(--bs-primary);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    border-radius: 10px !important;
    transition: .5s;
    opacity: 1;
}

#searchModal .modal-content {
    background: rgba(255, 255, 255, .8);
}
/*** Navbar End ***/


/*** Hero Header ***/
.hero-slide{
    height:100vh;
    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

/* Dark overlay */
.overlay{
    background:rgba(0,0,0,0.55);
    padding:40px;
    border-radius:10px;
    max-width:700px;
}

/* Stylish Text */
.overlay h1{
    font-size:55px;
    font-weight:800;
    color:#fff;
    margin-bottom:20px;
    letter-spacing:1px;
}

.overlay p{
    font-size:18px;
    color:#eee;
    margin-bottom:30px;
}

.top-text{
    color:#00d084;
    font-weight:600;
    letter-spacing:2px;
    margin-bottom:10px;
}

/* Stylish Button */
.hero-btn{
    background:#00d084;
    color:#fff;
    padding:14px 35px;
    font-size:18px;
    border-radius:50px;
    text-decoration:none;
    transition:0.3s;
}

.hero-btn:hover{
    background:#009e63;
    transform:scale(1.05);
}

/* Background Images */
.service-bg-1{
background:linear-gradient(rgba(0,0,0,.4),rgba(0,0,0,.4)),url('../img/program-1.jpg');
background-size:cover;
}

.service-bg-2{
background:linear-gradient(rgba(0,0,0,.4),rgba(0,0,0,.4)),url('../img/program-1.jpg');
background-size:cover;
}

.service-bg-3{
background:linear-gradient(rgba(0,0,0,.4),rgba(0,0,0,.4)),url('../imgprogram-1jpg');
background-size:cover;
}

/* Mobile Responsive */
@media(max-width:768px){
.navbar-brand img {
    width: 150px;
}
.map{
    display: none;
}

.overlay h1{
font-size:32px;
}

.overlay p{
font-size:16px;
}

.hero-btn{
padding:12px 25px;
font-size:16px;
}

.hero-slide{
height:80vh;
}
.video {
    display: none !important;
}
.csa {
    font-size: 38px !important;
}
}
/*** Hero Header ***/


/*** About Start ***/
.video {
    position: relative;
    height: 100%;
    min-height: 770px;
    background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)), url(../img/about.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--bs-secondary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--bs-primary);
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--bs-white);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}

.video.border {
    border-radius: 50% 20% / 10% 40%;
}

.about {
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(../img/background.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
/*** About End ***/


/*** service Start ***/
.service {
    background: linear-gradient(rgba(255, 72, 128, 0.05), rgba(255, 72, 128, 0.2));
}

.service .service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
    width: 100%;
    height: 100%;
    border-radius: 50% 20% / 10% 40%;
    transition: 0.5s;
    position: relative;
}

.service-content::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    right: auto;
    background: transparent;
    border-radius: 50% 20% / 10% 40%;
    transition: .5s;
}

.service-item:hover {
    border: 1px solid var(--bs-secondary) !important;
}

.service-item:hover .service-content::after {
    background: var(--bs-secondary);
    width: 100%;
    opacity: 1;
    z-index: 1;
}

.service-item .service-content .service-content-inner {
    position: relative;
    z-index: 2;
}

.service-item .service-content-inner i,
.service-item .service-content-inner p,
.service-item .service-content-inner a.h4 {
    transition: 0.5s;
}

.service-item:hover .service-content-inner i,
.service-item:hover .service-content-inner p {
    color: var(--bs-white) !important;
}
.service-item:hover .service-content-inner a.h4 {
    color: var(--bs-primary);
}

.service-item:hover .service-content-inner a.btn-primary {
    background: var(--bs-white) !important;
    color: var(--bs-primary) !important;
}

.service-item .service-content-inner a.btn-primary:hover {
    background: var(--bs-primary) !important;
    color: var(--bs-white) !important;
}
/*** Service End ***/


/*** Programs Start ***/
.program {
    /* background: linear-gradient(rgba(255, 72, 128, 0.1), rgba(255, 72, 128, 0.1)); */
}

.program .program-item .program-img .program-rate {
    position: absolute;
    width: 100px; 
    top: -20px; 
    left: 50%; 
    margin-left: -50px; 
    border-radius: 10% / 50%;
}
.program-img img{
height:auto;
object-fit:cover;
}
.program .program-item .program-text {
    padding-top: 150px; 
    margin-top: -125px;
}

.program .program-item .program-img img,
.program .program-item .program-teacher img,
.program .program-item:hover .program-text-inner a.h4 {
    transition: 0.5s;
    height: auto;
    border-radius: 20px;
}

.program .program-item:hover .program-img img,
.program .program-item:hover .program-teacher img {
    transform: scale(1.2);
}

.program .program-item:hover .program-text-inner a.h4 {
    color: var(--bs-primary) !important;
}
.service-slider .program-item{
box-shadow:0 10px 30px rgba(0,0,0,0.1);
border-radius:15px;
overflow:hidden;
transition:0.4s;
}

.service-slider .program-item:hover{
transform:translateY(-10px);
}

.program-img img{
height:220px;
object-fit:cover;
}

.btn-border-radius{
border-radius:30px;
}
/*** Programs End ***/


/*** Events Start ***/
.events .events-item {
    width: 100%;
    height: 100%;
    border-radius: 30%;
    position: relative;
}

.events .events-item .events-inner .events-rate {
    position: absolute;
    width: 120px; 
    top: -20px; 
    left: 50%; 
    margin-left: -60px; 
    border-radius: 10% / 50%;
}

.events .events-item .events-inner .events-img .event-overlay {
    position: absolute;
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    z-index: 1;
    opacity: 0;
}

.events .events-item .events-inner .events-img:hover .event-overlay {
    opacity: 1;
}

.events .events-item .events-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    bottom: auto;
    background: rgba(77, 101, 249, .7);
    border-radius: 10px;
    transition: 0.5s;
}

.events .events-item:hover .events-img::after {
    height: 100%;
    opacity: 1;
}

.events .events-item .events-text a.h4,
.events .events-item .events-img img {
    transition: 0.5s;
}

.events .events-item:hover .events-text a.h4 {
    color: var(--bs-primary) !important;
}

.events .events-item:hover .events-img img {
    transform: scale(1.3);
}
/*** Events End ***/


/*** Blog Start ***/
.blog .blog-item .blog-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    bottom: auto;
    background: rgba(77, 101, 249, .7);
    border-radius: 10px 10px 0 0;
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img::after {
    height: 100%;
    opacity: 1;
}

.blog .blog-item .blog-date-comments {
    padding-top: 150px !important; 
    margin-top: -125px;
}

.blog .blog-item .blog-img img,
.blog .blog-item .blog-content img,
.blog .blog-item .blog-text-inner a.h4 {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.3);
}

.blog .blog-item:hover .blog-content img {
    transform: scale(1.3);
}

.blog .blog-item:hover .blog-text-inner a.h4 {
    color: var(--bs-primary);
}
/*** Blog End ***/



/*** Team Start ***/
.team .team-item {
    position: relative;
    width: 100%;
    height: 100%;
}

.team .team-item .team-icon {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
}

.team .team-item .team-icon a.share-link {
    opacity: 0;
    transition: 0.5s;
}

.team .team-item:hover .team-icon a.share-link {
    opacity: 1;
}

.team .team-item .team-content,
.team .team-item .team-content h4,
.team .team-item .team-content p {
    transition: 0.5s;
}

.team .team-item:hover .team-content {
    background: var(--bs-primary) !important;
    border-radius: 0 0 10px 10px;
}

.team .team-item:hover .team-content h4 {
    color: var(--bs-white) !important;
}

.team .team-item:hover .team-content p {
    color: var(--bs-dark) !important;
}
/*** Team end ***/


/*** testimonial Start ***/
.csa{
    font-size: 58px;
}
.testimonial .testimonial-carousel {
    position: relative;
    
}

.testimonial .testimonial-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--bs-primary);
    border-radius: 10px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--bs-secondary);
}
/*** testimonial End ***/


/*** Footer Start ***/
.footer {
    background: linear-gradient(rgba(255, 255, 255, .8), rgba(255, 255, 255, 1)), url(../img/background.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}

.footer .footer-galary-img img {
    width: 100%;
    border-style: dotted; 
    border-color: var(--bs-primary);
    transition: 0.5s;
}

.footer .footer-galary-img img:hover {
    transform: scale(1.2);
}

.footer-item a.text-body:hover {
    color: var(--bs-secondary) !important;
}
/*** Footer End ***/

.typeJsWrapper{
    text-align:center;
    background: linear-gradient(90deg, #0089ec, #6A5BFF);
}

.typeJsWrapper .typeJsText{
    font-family:'Montserrat',sans-serif;
    font-size:27px;
    font-weight:800;
    letter-spacing:.5px;
    line-height:1.4;
    color:#ffffff;
    display:inline-block;
    border-right:3px solid #e06327;
    padding-right:8px;
}

/* Highlight words effect */
.typeJsWrapper .typeJsText::selection{
    background:#e06327;
    color:#fff;
}
@media(max-width:768px){
  .typeJsWrapper .typeJsText{
      font-size:13px;
  }
}
.footer-item img{
    width: 220px;
}
/* Explore Fitness Start */
.explore {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(12, 24, 68, 0.7), rgba(12, 24, 68, 0.7)), url(../img/forbanner.webp);
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
/* Explore Fitness End */
 /* Appointment Section */

.appointment-image{
    position: relative;
    min-height: 550px;
    background:
    linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)),
    url("../img/indian-model.webp") center/cover no-repeat;
}

/* Overlay Content */

.overlay-content{
    position:absolute;
    bottom:60px;
    left:60px;
    color:#fff;
    max-width:350px;
}

.overlay-content h2{
    font-size:38px;
    font-weight:700;
    margin-bottom:15px;
}

.overlay-content p{
    font-size:18px;
    margin-bottom:20px;
}

/* Form Side */

.appointment-form{
    background: linear-gradient(135deg,#4e54c8,#6c63ff);
    padding:70px 40px;
}

.appointment-form .form-control{
    border-radius:8px;
    padding:10px 15px;
}

.appointment-form .btn-primary{
    background:#ff4f81;
    border:none;
    font-weight:600;
}

.appointment-form .btn-primary:hover{
    background:#ff2d6f;
}

/* Mobile */

@media(max-width:991px){

.overlay-content{
left:30px;
bottom:30px;
}

.appointment-form{
padding:50px 20px;
}

}
/* faq section start */
.faq-section{
max-width:900px;
margin:auto;
padding:40px 20px;
}

.faq-title{
text-align:center;
font-size:32px;
font-weight:700;
margin-bottom:30px;
color:#222;
}

.faq-container{
display:flex;
flex-direction:column;
gap:15px;
}

.faq-item{
background:white;
border-radius:10px;
box-shadow:0 4px 10px rgba(0,0,0,0.08);
overflow:hidden;
}

.faq-question{
padding:18px 20px;
cursor:pointer;
font-weight:600;
font-size:18px;
display:flex;
justify-content:space-between;
align-items:center;
}

.faq-question:hover{
background:#f0f4ff;
}

.faq-answer{
max-height:0;
overflow:hidden;
transition:all 0.4s ease;
padding:0 20px;
color:#555;
line-height:1.6;
}

.faq-item.active .faq-answer{
max-height:200px;
padding:15px 20px 20px;
}

.icon{
font-size:22px;
color:#666;
}

@media (max-width:600px){

.faq-title{
font-size:26px;
}

.faq-question{
font-size:16px;
padding:16px;
}

}
/* services page start */
/* MAIN SECTION */

/* MAIN SECTION */

.cleaning-layout-section{
padding:60px 0;
background:#f6f7fb;
font-family:Arial, Helvetica, sans-serif;
}

/* WRAPPER */

.cleaning-wrapper{
width:1200px;
max-width:95%;
margin:auto;
display:flex;
gap:40px;
align-items:flex-start;
}

/* LEFT CONTENT */

.cleaning-left-area{
flex:3;
animation:fadeUp 1s ease;
}

/* HEADING */

.cleaning-main-heading{
font-size:32px;
font-weight:700;
margin-bottom:25px;
color:#2c3e50;
}

/* IMAGE CARD */

.cleaning-image-card{
position:relative;
overflow:hidden;
border-radius:12px;
margin-bottom:25px;
}

.cleaning-image-card img{
width:100%;
height:420px;
object-fit:cover;
display:block;
transition:transform 0.5s ease;
}

.cleaning-image-card:hover img{
transform:scale(1.05);
}

/* IMAGE OVERLAY */

.cleaning-image-caption{
position:absolute;
bottom:0;
left:0;
width:100%;
padding:25px;
background:linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.cleaning-image-caption h3{
color:#fff;
font-size:22px;
margin:0;
}

/* TEXT CONTENT */

.cleaning-description-box p{
color:#666;
line-height:1.8;
margin-bottom:15px;
font-size:16px;
}

/* RIGHT SIDEBAR */

.cleaning-right-sidebar{
flex:1;
animation:fadeIn 1.2s ease;
}

/* STICKY SIDEBAR */

.cleaning-sidebar-card{
position:sticky;
top:120px;
background:#fff;
padding:25px;
border-radius:10px;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

/* SIDEBAR TITLE */

.cleaning-sidebar-title{
font-size:18px;
margin-bottom:15px;
border-left:4px solid #ff6b00;
padding-left:10px;
color:#333;
}

/* SERVICE LIST */

.cleaning-service-list{
list-style:none;
padding:0;
margin:0;
}

.cleaning-service-list li{
border-bottom:1px solid #eee;
}

.cleaning-service-list li:last-child{
border-bottom:none;
}

.cleaning-service-list li a{
display:block;
padding:12px 0;
text-decoration:none;
color:#555;
font-size:15px;
transition:all 0.3s ease;
}

.cleaning-service-list li a:hover{
color:#ff6b00;
padding-left:8px;
}

/* ANIMATIONS */

/*@keyframes fadeUp{*/
/*0%{*/
/*opacity:0;*/
/*transform:translateY(40px);*/
/*}*/
/*100%{*/
/*opacity:1;*/
/*transform:translateY(0);*/
/*}*/
/*}*/

/*@keyframes fadeIn{*/
/*0%{*/
/*opacity:0;*/
/*transform:translateX(40px);*/
/*}*/
/*100%{*/
/*opacity:1;*/
/*transform:translateX(0);*/
/*}*/
/*}*/

/* TABLET */

@media (max-width:1024px){

.cleaning-wrapper{
flex-direction:column;
}

.cleaning-left-area,
.cleaning-right-sidebar{
width:100%;
}

.cleaning-sidebar-card{
position:relative;
top:0;
margin-top:30px;
}

.cleaning-image-card img{
height:350px;
}

}

/* MOBILE */

@media (max-width:768px){

.cleaning-layout-section{
padding:40px 15px;
}

.cleaning-main-heading{
font-size:26px;
}

.cleaning-image-card img{
height:auto;
}

.cleaning-image-caption{
padding:18px;
}

.cleaning-image-caption h3{
font-size:18px;
}

.cleaning-description-box p{
font-size:15px;
}

.cleaning-sidebar-card{
padding:20px;
}

}

/* SMALL MOBILE */

@media (max-width:480px){

.cleaning-main-heading{
font-size:22px;
}

.cleaning-image-caption{
padding:15px;
}

.cleaning-image-caption h3{
font-size:16px;
}

.cleaning-sidebar-title{
font-size:16px;
}

.cleaning-description-box p{
font-size:14px;
line-height:1.7;
}

.cleaning-service-list li a{
font-size:14px;
}

}
/* Heart beat animation */

@keyframes beat{
  to { transform: scale(1.2); }
}
@media only screen and (max-width: 480px) {
  .about-section {
    position: relative;
    margin: 2px 0 70px;
}
}
/* milestone start*/
.counter-section{
background: #fff;
padding:30px 20px;
}

.counter-container{
max-width:1200px;
margin:auto;
display:flex;
justify-content:space-between;
gap:30px;
flex-wrap:wrap;
}

.counter-box{
flex:1;
min-width:220px;
padding:15px 20px;
border-radius:25px;
text-align:center;
color: #646464;
transition:0.3s;
}

.counter-box:hover{
transform:translateY(-6px);
}

.counter-box i{
font-size:35px;
margin-bottom:15px;
color: #fff;
}

.counter{
font-size:60px;
font-weight:bold;
margin-bottom:10px;
color: #fff;
}

.counter-title{
font-size:18px;
letter-spacing:1px;
font-weight:600;
color: #fff;
}

/* Colors */
.blue{ background:#0089ec; }
.teal{ background:#0089ec; }
.yellow{ background:#0089ec; }
.green{ background:#0089ec; }

/* Responsive */

@media(max-width:992px){
.counter{
font-size:50px;
}
}

@media(max-width:768px){

.counter-container{
flex-direction:column;
}

.counter-box{
width:100%;
}

}

/* milestone end */
/* jobs carrer */
/* Header */

.jobs-header{
background:linear-gradient(135deg,#4e54c8,#8f94fb);
color:white;
padding:80px 20px;
}

.jobs-header h1{
font-size:42px;
font-weight:700;
}

.jobs-header p{
font-size:18px;
opacity:.9;
}

/* Job Section */

.jobs-section{
padding:70px 20px;
}

/* Job Card */

.job-card{
background:white;
padding:35px;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:0.3s;
height:100%;
}

.job-card:hover{
transform:translateY(-8px);
box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

.job-card h3{
font-weight:700;
margin-bottom:20px;
color:#333;
}

.job-card ul{
list-style:none;
padding:0;
margin-bottom:25px;
}

.job-card ul li{
padding:6px 0;
color:#555;
}

/* Apply Button */

.apply-btn{
background:#5758d8;
color:white;
padding:12px 30px;
border-radius:30px;
font-weight:600;
transition:.3s;
}

.apply-btn:hover{
background:#ff2c6d;
color:white;
}


/* Mobile Responsive */

@media(max-width:768px){

.jobs-header{
padding:60px 20px;
}

.jobs-header h1{
font-size:32px;
}

.job-card{
padding:25px;
}

}
.heart {
  font-size: 150px;
  color: #e00;
  animation: beat .25s infinite alternate;
  transform-origin: center;
}

/* Heart beat animation */

@keyframes beat{
  to { transform: scale(1.2); }
}
@media only screen and (max-width: 480px) {
  .about-section {
    position: relative;
    margin: 2px 0 70px;
}
}
