@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');

*{
  margin: 0;
  padding: 0;
  box-shadow: none;
  box-sizing: border-box;
}

:root {
  /* Fonts */
  --body-font: "Inter Tight", sans-serif;
  --heading-font: "Poppins", sans-serif;
  /* Theme Colors */
  --primary-color: #012195;
  --secondary-color: #484c54;
  /* --secondary-color: #fd793d; */
  /* Base Colors */
  --color-white: #ffffff;
  --color-dark: #1E232A;
  --color-text: #484c54;
  --light-bg: #F6F6F6;
  /* Accent */
  --color-yellow: #FBA707;
  --color-red: #F05454;
  /* UI */
  --box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  --transition: all .3s ease-in-out;
  --border-radius:10px;
}


html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}


img {
  max-width: 100% !important;
}


body {
  font-family: 'Montserrat', sans-serif;
   overflow-x: hidden !important
}

body,
html {
  scroll-behavior: smooth;
  font-family: 'Montserrat', sans-serif;
}

a {
  text-decoration: none !important;
}

a:focus {
  outline: none;
  text-decoration: none;
}


textarea{
    resize: none !important;
}

h1, h2, h3, h4, h5, h6{
  font-family: 'Bai Jamjuree', sans-serif;
}

.split-heading,
.split-heading *,
.split-heading .char {
    text-transform: none !important;
    display: inline-block !important;

}

.slider_section2{
  display: none;
}

/* =======================
projects css
*/

.projects_section{
  padding: 50px 0px 50px 0px;
}

.projects_title_div{
  text-align: center;
  margin-bottom: 30px;
}

.projects_title_div > h1{
  color: var(--color-dark);
    font-size: 30px;
    font-weight: 700;
    line-height: 43px;
    margin: 5px 0px 25px 0px;
    position: relative;
}

.projects_title_div > h1 > span{
  color: var(--primary-color);
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.projects_title_div > h1 > span:before{
  position: absolute;
  content: '';
  bottom: -6px;
  width: 200px;
  height: 3px;
  background-color: var(--color-text);
  border-radius: var(--border-radius);
}



.projects_title_div > p{
  color: var(--color-dark);
    font-size: 15px;
    line-height: 28px;
    font-weight: 500;
    /* max-width: 800px; */
    margin: auto;
}

.projects_title_div > p > i{
  font-size: 20px;
  color: var(--color-dark);
  margin: 0px 4px 0px 4px;
}

.products_slider{
  background-image:
        linear-gradient(rgba(255, 255, 255, 0.929), rgba(255, 255, 255, 0.92)),
        url('../images/catebg01.png');
  padding: 20px 0px 10px 0px;
  background-position: bottom center;
  background-size: cover;

}

.projects_main_div{
  text-align: center;
}

.projects_image_div{
height: 200px;
 object-fit: cover;
  width: 100%;
  border-radius: var(--border-radius);
  margin: auto;
  border: 4px solid var(--color-white);
  box-shadow: var(--box-shadow);
   transition: var(--transition);
   position: relative;
   overflow: hidden;

}


.projects_image_div > img{
height: 200px;
 object-fit: cover;
  width: 100%;
   border-radius: var(--border-radius);
   transition: var(--transition);
    filter: brightness(75%);
   
  }
  
  .projects_main_div:hover > .projects_image_div > img{
    transform: scale(1.1,1.1);
    transition: var(--transition);
    filter: brightness(100%);
}

.projects_main_div > .projects_name {
  margin-top: 10px;
   transition: var(--transition);
}

.projects_main_div > .projects_name > span{
   color: var(--color-dark);
    font-size: 16px;
    font-weight: 700;
     text-align: center;
     text-transform: capitalize;
    margin: 7px 0px 5px 0px;
   transition: var(--transition);

}

  .projects_main_div:hover > .projects_name > span{
  color: var(--primary-color);
}



/* =======================
projects end
*/

/*--------------------------------------------------------------
# About us
--------------------------------------------------------------*/
.about_us {
  position: relative;
  display: block;
  padding: 70px 0 70px;
  z-index: 1;
}

.about_us_left {
  position: relative;
  display: block;
  margin-right: 180px;
  margin-bottom: 20px;
}

.about_us_img-box {
  position: relative;
  display: block;
}

.about_us_img {
  position: relative;
  display: block;
}

.about_us_img img {
  width: 100%;
  border-radius: var(--border-radius);
}

.about_us_img-2 {
  position: absolute;
  bottom: -215px;
  right: -120px;
  z-index: -1;
  clip-path: polygon(78% 0, 100% 0, 100% 50%, 100% 100%, 0 100%, 0 63%);
}

.about_us_img-2 img {
  width: auto;
  border-radius: var(--border-radius);
}

.about_us_experience-box {
  position: absolute;
  top: 30px;
  right: -60px;
  background-color: var(--light-bg);
  border-radius: var(--primary-color);
  padding: 30px 30px 30px;
  max-width: 150px;
  width: 100%;
  border-top: 2px solid var(--primary-color);
  border-right: 2px solid var(--primary-color);
  clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);

}

.about_us_experience-box:before {
  content: "";
  position: absolute;
  bottom: -58px;
  right: 0px;
  border-left: 28px solid var(--primary-color);
  border-bottom: 28px solid transparent;
  border-top: 30px solid var(--primary-color);
  border-right: 30px solid transparent;
}

.about_us_experience-count {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about_us_experience-count > h2 {
  font-size: 30px;
  font-weight: 600;
  line-height: 30px !important;
  font-family: var(--cleanon-font-two) !important;
}

.about_us_experience-count span {
  font-size: 30px;
  font-weight: 600;
  line-height: 30px !important;
  font-family: var(--cleanon-font-two) !important;
  color: var(--cleanon-black);
}

.about_us_experience-count-text {
  margin-top: 6px;
  text-align: center;
  font-weight: 600;
  line-height: 25px;
}

.about_us_cleaning-gurante {
  position: relative;
  display: block;
  max-width: 165px;
  padding: 10px 10px 10px;
  text-align: center;
  background-color: var(--primary-color);
  border-radius: var(--light-bg);
  clip-path: polygon(0 0, 73% 0, 100% 21%, 100% 100%, 0 100%, 0% 50%);
  margin-top: 20px;
  z-index: 1;
}

.about_us_cleaning-gurante-bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .60;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: var(--primary-color);
  z-index: -1;
}

.about_us_cleaning-gurante-icon {
  position: relative;
  display: block;
}

.about_us_cleaning-gurante-icon img {
  width: auto;
  height: 60px;
  object-fit: contain;
  filter: invert(1);
}

.about_us_cleaning-gurante h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 35px;
  color: var(--color-white);
  margin: 17px 0 10px;
}

.about_us_cleaning-gurante p {
  color: var(--color-white);
  font-weight: 600;
  line-height: 26px;
}

.about_us_right {
  position: relative;
  display: block;
  margin-left: -20px;
}

.about_us_right > span{
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
}

.about_us_right > h3{
  color: var(--color-dark);
  font-size: 30px;
  font-weight: 700;
  line-height: 43px;
  margin: 10px 0px;
}

.about_us_right > h3 > span{
  color: var(--primary-color);
  font-weight: 800;
}


.about_us_right > p{
  color: var(--color-text);
  font-size: 15px;
  line-height: 28px;
  font-weight: 500;
}

.about_pont_main_div{
  background-color: var(--light-bg);
  padding: 15px 5px;
  margin: 20px 0px;
  border-radius: var(--border-radius);
}

.about_us_point_list > .d-flex > .flex-shrink-0 > img{
  width: 100%;
  height: 60px;
  object-fit: contain;
}

.about_us_point_media_content > h2{
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.about_us_point_media_content > p{
   color: var(--color-text);
  font-size: 15px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 0px !important;
}

.about_list_div{
  margin-bottom: 20px;
}

.about_list_div > ul{
  list-style: none !important;
}

.about_list_div > ul > li{
    color: var(--color-text);
  font-size: 15px;
  line-height: 35px;
  font-weight: 500;
  margin-bottom: 0px !important;
}

.about_list_div > ul > li > i{
  margin-right: 5px;

}

.about_review_box{
  margin-bottom: 20px;
}

.about_review_box > p{
   color: var(--color-text);
  font-size: 15px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 0px !important;
}

.about_us_review_star > span{
  color: var(--color-yellow);
  font-size: 15px;
  margin: 0px 0px 0px 4px;
}

.about_us_read_more_btn > a{
  background-color: var(--primary-color);
  padding: 10px 20px;
  border-radius: var(--border-radius);
  color: var(--color-white) !important;
  font-weight: 600;
  font-size: 15px;
}

.about_us_read_more_btn > a:hover{
  background-color: var(--color-dark);
}

/* css end */

/* =========================
MODERN PREMIUM COUNTER SECTION
========================= */

.number_count_section{
    position: relative;
    padding: 110px 0px;
    overflow: hidden;

    background:
    linear-gradient(
        135deg,
        rgba(4, 18, 31, 0.92),
        rgba(0, 96, 115, 0.721)
    ),
    url(../images/counterbg01.jpg);

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
/* =========================
UNIQUE WAVES EFFECT
========================= */

.number_count_section{
    position: relative;
    overflow: hidden;
}

/* animated wave top */

.number_count_section::before{
    content: "";

    position: absolute;

    left: -10%;
    top: -60px;

    width: 120%;
    height: 180px;

    background:
    radial-gradient(circle at 50% 120%,
    rgba(0,212,255,0.18),
    transparent 60%);

    animation: waveMoveTop 8s ease-in-out infinite alternate;

    z-index: 1;
}

/* animated wave bottom */

.number_count_section::after{
    content: "";

    position: absolute;

    right: -10%;
    bottom: -70px;

    width: 120%;
    height: 180px;

    background:
    radial-gradient(circle at 50% -20%,
    rgba(255,255,255,0.08),
    transparent 60%);

    animation: waveMoveBottom 10s ease-in-out infinite alternate;

    z-index: 1;
}

/* heading */

.main_div_heading_counter{
    position: relative;
    text-align: center;
    margin-bottom: 80px;
    z-index: 2;
}

/* title box */

.counter_section-title__tagline-box{
    display: inline-flex;
    align-items: center;
    gap: 18px;

    padding: 16px 28px;

    border-radius: 60px;

    background: rgba(255,255,255,0.05);

    backdrop-filter: blur(10px);

    border: 1px solid rgba(255,255,255,0.08);
}

/* side line */

.counter_section-title__tagline-border{
    position: relative;

    width: 60px;
    height: 2px;

    background:
    linear-gradient(
        to right,
        transparent,
       var(--color-white),
        transparent
    );
}

/* pulse dot */

.counter_section-title__tagline-border::before{
    content: "";

    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%,-50%);

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: var(--color-white);

    animation: pulseDot 2s infinite;
}

.counter_section-title__shape-1,
.counter_section-title__shape-2{
    display: none;
}

/* title */

.counter_section-title__tagline{
    position: relative;

    margin: 0;

    font-size: 40px;
    font-weight: 800;

    color: #fff;

    letter-spacing: 1px;

    text-transform: capitalize;
}

/* underline */

.counter_section-title__tagline::before{
    content: "";

    position: absolute;

    left: 50%;
    bottom: -10px;

    transform: translateX(-50%);

    width: 80px;
    height: 3px;

    border-radius: 20px;

    background:
    linear-gradient(
        to right,
        transparent,
       var(--color-white),
        transparent
    );
}

/* =========================
ANIMATION
========================= */

@keyframes waveMoveTop{

    0%{
        transform: translateX(0px);
    }

    100%{
        transform: translateX(40px);
    }
}

@keyframes waveMoveBottom{

    0%{
        transform: translateX(0px);
    }

    100%{
        transform: translateX(-40px);
    }
}

@keyframes pulseDot{

    0%{
        box-shadow: 0 0 0 0 rgba(0,212,255,0.7);
    }

    70%{
        box-shadow: 0 0 0 12px rgba(0,212,255,0);
    }

    100%{
        box-shadow: 0 0 0 0 rgba(0,212,255,0);
    }
}

/* =========================
COUNTER CARD
========================= */

.counter_main_box{
    margin-bottom: 30px;
}

.counter_main_div{
    position: relative;

    height: 100%;
    min-height: 310px;

    padding: 45px 30px;

    border-radius: 30px;

    overflow: hidden;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    background: rgba(255,255,255,0.08);

    backdrop-filter: blur(18px);

    border: 1px solid rgba(255,255,255,0.12);

    transition: all 0.5s ease;

    box-shadow:
    0 10px 40px rgba(0,0,0,0.15);
}

/* glossy effect */

.counter_main_div::before{
    content: "";
    position: absolute;

    top: -120px;
    left: -120px;

    width: 240px;
    height: 240px;

    border-radius: 50%;

    background: rgba(255,255,255,0.08);

    transition: 0.5s;
}

/* border glow */

.counter_main_div::after{
    content: "";
    position: absolute;
    inset: 0;

    border-radius: 30px;

    padding: 1px;

    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.25),
        rgba(255,255,255,0.03)
    );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;
            mask-composite: exclude;
}

/* hover */

.counter_main_div:hover{
    transform: translateY(-15px);

    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.14),
        rgba(255,255,255,0.06)
    );

    box-shadow:
    0 20px 60px rgba(0,0,0,0.28);
}

.counter_main_div:hover::before{
    transform: scale(1.4);
}

/* =========================
ICON
========================= */

.counter_icon_div{
    position: relative;

    width: 100px;
    height: 100px;

    border-radius: 25px;

    background: rgba(255,255,255,0.12);

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 28px;

    transition: 0.5s ease;
}

/* rotating border */

.counter_icon_div::before{
    content: "";
    position: absolute;

    inset: -5px;

    border-radius: 30px;

    border: 1px dashed rgba(255,255,255,0.35);

    animation: rotateborder 14s linear infinite;
}

@keyframes rotateborder{
    100%{
        transform: rotate(360deg);
    }
}

.counter_icon_div img{
    width: 52px;
    transition: 0.5s ease;
    filter: brightness(80%) invert(1);
}

.counter_main_div:hover .counter_icon_div{
    transform: rotate(8deg) scale(1.08);

    background: rgba(255,255,255,0.18);
}

.counter_main_div:hover .counter_icon_div img{
    transform: scale(1.1);
    filter: brightness(0) invert(1);
}

/* =========================
NUMBER
========================= */

.counter_number_div{
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.counter_number_div h3{
    margin: 0;

    font-size: 58px;
    font-weight: 900;
    line-height: 1;

    color: #fff;

    text-shadow:
    0 0 18px rgba(255,255,255,0.18);
}

.counter_number_div span{
    margin-left: 5px;

    font-size: 28px;
    font-weight: 700;

    color: #00e5ff;
}

/* =========================
TEXT
========================= */

.counter_number_name_div h4{
    margin-top: 16px;

    font-size: 18px;
    font-weight: 500;
    line-height: 30px;

    color: rgba(255,255,255,0.88);
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:991px){

    .number_count_section{
        padding: 80px 0px;
    }

    .counter_section-title__tagline{
        font-size: 32px;
    }

    .counter_main_div{
        min-height: 280px;
    }
}

@media(max-width:767px){

    .counter_section-title__tagline{
        font-size: 26px;
    }

    .counter_section-title__tagline-border{
        width: 40px;
    }

    .counter_main_div{
        min-height: auto;
        padding: 35px 25px;
    }

    .counter_number_div h3{
        font-size: 46px;
    }
}

/* products css start */

.products_section{
  padding: 70px 0px 50px 0px;
  background-color: var(--light-bg);
}


.main_div_heading_products{
    text-align:center;
    margin-bottom:50px;
    position:relative;
    z-index:2;
}

.products_section-title__tagline-box{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:22px;
    position:relative;
    margin-bottom: 40px;
}

/* side line */

.products_section-title__tagline-border{
    width:80px;
    height:20px;
    position:relative;
}

.products_section-title__tagline-border::before{
    content:"";
    position:absolute;

    left:0;
    top:50%;

    transform:translateY(-50%);

    width:100%;
    height:2px;

    background:linear-gradient(
        to right,
        transparent,
        #06131f,
        transparent
    );
}

.products_section-title__tagline-border::after{
    content:"";
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    width:10px;
    height:10px;
    border-radius:50%;
    background:var(--color-text);
    box-shadow:
    0 0 10px rgba(0,117,132,0.25),
    0 0 25px rgba(0,117,132,0.18);
}

/* remove old */

.products_section-title__shape-1,
.products_section-title__shape-2{
    display:none;
}

/* title */

.products_section-title__tagline{
    position:relative;
    margin:0;
    font-size:40px;
    font-weight:800;
    letter-spacing:1px;
    text-transform:capitalize;

    color:#06131f;

    padding:0px 1px;
}



/* bottom line */

.products_section-title__tagline::after{
    content:"";
    position:absolute;
    bottom:-14px;
    left:50%;
    transform:translateX(-50%);
    width:150px;
    height:3px;
    border-radius:20px;
    background:linear-gradient(
        to right,
        transparent,
        var(--color-text),
        transparent
    );
}

.main_div_heading_products > p{
  color: var(--color-text);
    font-size: 15px;
    line-height: 28px;
    font-weight: 500;
}

.products_main_div_box{
    position: relative;
    background: var(--color-white);
    border-radius: 18px;
    overflow: hidden;
    transition: 0.4s ease;
    margin-bottom: 20px;
    border: 1px solid var(--light-bg);
}

.products_main_div_box:hover{
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* image */
.products_image_div{
    position: relative;
    overflow: hidden;
    height: 280px;
}

.products_image_div > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s ease;
}

.products_main_div_box:hover .products_image_div img{
    transform: scale(1.08);
     transition: 0.8s ease;

}

/* top badge */
.products_badge{
    position: absolute;
    top: 18px;
    left: 18px;
    background: #fff;
    color: #111;
    padding: 7px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
}

/* content */
.products_content_div_box{
    padding: 13px 10px 15px 10px;
    position: relative;
}

.products_content_div_box > h4{
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
    text-transform: capitalize;
}

.products_content_div_box p{
   font-size: clamp(15px, 1vw, 15px);
    color: var(--color-text);
    line-height: clamp(24px, 2vw, 28px);
    margin-bottom: 12px;
    font-weight: 500;
     display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* bottom section */
.products_bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* button */
.products_btn_div span{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-dark);
    font-size: 15px;
    font-weight: 700;
    transition: 0.4s ease;
}

.products_btn_div i{
    width: 38px;
    height: 38px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease;
}

.products_main_div_box:hover .products_btn_div{
    color: var(--primary-color);
}

.products_main_div_box:hover .products_btn_div i{
    background: var(--primary-color);
    color: var(--color-white);
    transform: rotate(45deg);
}

/* products css end */



/* testimonilas css start */
.testimonials_section{
  padding: 70px 0px 50px 0px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
}


.main_div_heading_testimonials{
    text-align:center;
    margin-bottom:50px;
    position:relative;
    z-index:2;
}

.testimonials_section-title__tagline-box{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:22px;
    position:relative;
    margin-bottom: 30px;
}

/* side line */

.testimonials_section-title__tagline-border{
    width:80px;
    height:20px;
    position:relative;
}

.testimonials_section-title__tagline-border::before{
    content:"";
    position:absolute;

    left:0;
    top:50%;

    transform:translateY(-50%);

    width:100%;
    height:2px;

    background:linear-gradient(
        to right,
        transparent,
        #06131f,
        transparent
    );
}

.testimonials_section-title__tagline-border::after{
    content:"";
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    width:10px;
    height:10px;
    border-radius:50%;
    background:var(--color-text);
    box-shadow:
    0 0 10px rgba(0,117,132,0.25),
    0 0 25px rgba(0,117,132,0.18);
}

/* remove old */

.testimonials_section-title__shape-1,
.testimonials_section-title__shape-2{
    display:none;
}

/* title */

.testimonials_section-title__tagline{
    position:relative;
    margin:0;
    font-size:40px;
    font-weight:800;
    letter-spacing:1px;
    text-transform:capitalize;

    color:#06131f;

    padding:0px 1px;
}


/* bottom line */

.testimonials_section-title__tagline::after{
    content:"";
    position:absolute;
    bottom:-14px;
    left:50%;
    transform:translateX(-50%);
    width:150px;
    height:3px;
    border-radius:20px;
    background:linear-gradient(
        to right,
        transparent,
        var(--color-text),
        transparent
    );
}

.testimonials_swiper_slider  .swiper-slide{
  background-color: var(--light-bg);
  border-radius: 10px;

  position: relative;
}

.testimonials_swiper_slider  .swiper-slide-active{
   background-color: var(--light-bg);
   background-position: center;
   background-repeat: no-repeat;
    background-size: cover;
}

.testimonials_contnet_main_div{
    padding: 30px 24px;
}

.testimonials_contnet_main_div > h4{
  color: var(--color-text);
  font-weight: 900;
  font-size: 22px;
  margin-bottom: 10px;
}

.rataing_div {
  margin-bottom: 10px;
}

.rataing_div > i{
  color: var(--color-yellow);
  font-size: 15px;
  margin: 0px 2px 0px 0px;
}

.testimonials_contnet_main_div > p{
      color: var(--color-text);
    font-weight: 500;
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 0px !important;
}

.quote_div{
  position: absolute;
  top: 20px;
  right: 20px;
}

.quote_div > i{
  font-size: 30px;
  color: var(--color-text);
}




/* testimonilas css en */


/*  */

.blog-area{
    padding: 10px 0px 50px 0px;
}

.blogs_title_div{
    margin-bottom: 30px;
}

.blogs_title_div > span{
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 700;
    
    margin-bottom: 10px;
    display: inline-block;
    margin-bottom: 7px;
}

.blogs_title_div > h4{
    font-size: 30px;
    color: var(--color-dark);
    text-transform: capitalize;
    
    font-weight: 800;

}

.blogs_title_div > p{
    font-size: 15px;
    line-height: 27px;
}

.blog-item {
  padding: 20px;
  background: var(--color-white);
  border-radius: 30px;
  transition: .5s ease-in-out;
  position: relative;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.blog-img {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: .5s ease-in-out;
  height: 280px;
}
.blog-img img {
  border-radius: 12px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s ease-in-out;
}
.blog-item:hover .blog-img img {
  transform: scale(1.1);
  transition: .5s ease-in-out;
}
.blog-date {
  position: absolute;
  right: 70px;
  top: 2px;
  background: var(--color-white);
  color: var(--primary-color);
  font-weight: 500;
  text-align: center;
  padding: 0px 15px;
  border-radius: 50px;
  border: 3px solid var(--color-white);
  z-index: 1;
}
.blog-meta {
  padding: 14px 0 2px 0;
  margin-bottom: 7px;
  border-bottom: 1px solid var(--light-bg);
}

.blog-meta ul{
    padding: 0px 2px !important;
}

.blog-meta ul li {
  display: inline-block;
  margin-right: 15px;
  position: relative;
}
.blog-meta ul li a {
  color: var(--color-dark);
  font-weight: 500;
  font-size: 15px;
}
.blog-meta ul li a:hover {
  color: var(--primary-color);
}
.blog-meta ul li i {
  margin-right: 5px;
  color: var(--primary-color);
}
.blog-title a {
  color: var(--color-dark);
  font-size: 20px;
  margin-bottom: 15px;
  text-transform: capitalize;
  font-weight: 700;
  line-height: 32px;
  
}
.blog-title a:hover {
  color: var(--primary-color);
}
.blog-info p {
 font-size: clamp(15px, 1vw, 15px);
    color: var(--color-text);
    line-height: clamp(24px, 2vw, 28px);
    margin-bottom: 12px;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-area.blog-border .blog-item {
  border: 1.5px solid var(--primary-color);
  border-radius: 35px;
  box-shadow: none;
}
.blog-area.blog-border .blog-item:hover {
  border-color: var(--primary-color2);
}
.blog-area.blog-border .blog-img {
  border-radius: 20px;
}
.blog-area.blog-border .blog-img img {
  border-radius: 20px;
}
.blog-area.blog-border .blog-title a {
  margin-bottom: 20px;
}

.blogs_btn_div{
    margin-top: 20px;
}

.blogs_btn_div a{
    background-color: var(--primary-color);
    color: var(--color-white) !important;
    padding: 7px 20px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600
}

.blogs_btn_div a:hover{
    background-color: var(--secondary-color);
}
/*  */

/* css start */

.faq-area{
    padding: 40px 0px 40px 0px;
    background-color: var(--backgorund-color);
}

.faq_title_div > span{
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 700;
    
    margin-bottom: 10px;
    display: inline-block;
    margin-bottom: 7px;
}

.faq_title_div > h4{
    font-size: 30px;
    color: var(--color-dark);
    text-transform: capitalize;
    margin-bottom: 12px;
    font-weight: 800;

}

.faq_title_div > p{
    font-size: 15px;
    line-height: 30px;
    font-weight: 500;
    color: var(--color-text);
}

.faq-area .accordion-body{
    padding: 8px 15px !important;
    font-size: 15px;
    font-weight: 400;
    line-height: 27px;
}

.faq-area .accordion-item button{
    padding: 20px 15px !important;
    font-size: 18px;
    line-height: 30px;
    
}

.faq-area .accordion-item {
  border: none;
  background: var(--color-white);
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: var(--box-shadow);
}
.faq-area .accordion-item:last-child {
  margin-bottom: 0;
}
.faq-area .accordion-button {
  border-radius: 0px;
  background: transparent;
  font-weight: 700;
  font-size: 20px;
  color: var(--color-dark);
  box-shadow: none;
}
.faq-area .accordion-button::after {
  content: "\f107";
  background: none;
   color: var(--color-text);
  font-size: 24px;
  font-weight: 500;
  font-family: "Font Awesome 6 pro";
  width: unset;
  height: unset;
  margin-right: 3px;
}
.faq-area .accordion-button:not(.collapsed) {
  color: var(--color-text);
  background: transparent;
  border-bottom: 1px dashed var(--color-text);
  box-shadow: none;
}
.faq-area .accordion-button:not(.collapsed)::after {
  content: "\f107";
  transform: rotate(-180deg);
}
.faq-area .accordion-button span {
  width: 45px;
  height: 45px;
  margin-right: 15px;
}
.faq-area .accordion-button span i {
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 50px;
  background: var(--color-text);
  text-align: center;
  color: var(--color-white);
}
.faq-area .accordion-body {
  color: var(--color-text);
  font-size: 15px;
  line-height: 25px;
  font-weight: 500;
}
.faq-area .faq-img img {
  border-radius: 20px;
  mix-blend-mode: multiply;
  height: 250px;
  width: 100%;
  object-fit: contain;
}

/*  */





/* footer css */
.footer {
 position: relative;
  background-image: linear-gradient(rgba(255, 255, 255, 0.845), rgba(255, 255, 255, 0.916)), url(../images/footerbg01.png);
   background-position: center;
   background-repeat: no-repeat;
    background-size: cover;
  padding: 30px 0px 0px;
  position: relative;
  background-attachment: fixed;
  z-index: 1;
}


.footer_contact_bg_div {
  padding-top: 20px;
}


.footer_contact_bg_div h5 {
  color: var(--color-dark);
  text-transform: capitalize;
  padding-bottom: 40px;
  font-size: 22px;
  font-weight: 700;


}

.main_div_footer {
  margin-bottom: 24px;
}

.main_div_footer img {
  width: 200px;
  margin-bottom: 8px;
}

.main_div_footer span {
  background-color: rgba(255, 255, 255, .7);
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: var(--color-dark);
  border-radius: 5px;
  margin-right: 10px;
  font-size: 18px;

}

.main_div_footer2 span {
  background-color: rgba(255, 255, 255, .7);
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: var(--color-dark);
  border-radius: 5px;
  margin-right: 10px;
  font-size: 18px;
}

.footer_num_div>h6 {
  color: var(--color-gray);
  font-size: 18px;
  font-weight: 800;
  text-transform: capitalize;
  margin-bottom: 6px !important;

}

.main_div_footer2 .footer_num_div>h6 {
  color: var(--color-white);
  font-size: 20px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 6px !important;

}


.footer_num_div a {
  color: var(--color-text);
  display: block;
  font-size: 15px;
  line-height: 26px;
  font-weight: 500;
  transition: .4s ease-out;
  
}


.footer_num_div a:hover {
  color: var(--color-gray);
  display: block;
  letter-spacing: .2px;
  transition: .4s ease-out;
}

.footer_num_div p {
  color: var(--color-text);
  font-size: 15px;
  line-height: 26px;
  font-weight: 500;
  margin-bottom: 0px !important;

}


.footer_usefull_link {
  margin-bottom: 20px;
  padding-top: 20px;
 
}

.footer_usefull_link h5 {
 color: var(--color-dark);
  text-transform: capitalize;
  padding-bottom: 30px;
  font-size: 20px;
  font-weight: 700;


}

.footer_usefull_link ul {
  list-style: none;
  padding: 0px;
}

.footer_usefull_link li {
  line-height: 40px;
  border-bottom: 1px dashed var(--light-bg);
  padding: 4px 0px;
 position: relative;
}

.footer_usefull_link li a {
  color: var(--color-text);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: space-between;
   transition: .5s ease-in-out;
}


.footer_usefull_link li a:hover {
  color: var(--color-dark);
  letter-spacing: .2px;
  transition: .5s ease-in-out;

}


.footer_usefull_link b {
  letter-spacing: 1px;
  color: var(--color-dark);
  font-size: 15px;
  font-weight: 700;
  text-transform: capitalize;
}

.footer_usefull_link p {
  margin-bottom: 10px !important;
}

.footer_usefull_link p iframe {
  border-radius: 10px;
  margin-bottom: 0px;
}

.footer_social_icon {
  text-align: left;
}

.footer_social_icon>b {
  color: var(--color-gray);
  font-size: 16px;
  margin-right: 6px;
  display: block;
  margin-bottom: 5px;
  font-weight: 800;

}

.footer_social_icon>a {
  color: var(--color-dark) !important;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  display: inline-block;
  font-size: 15px;
  border-radius: 4px;
   background-color: rgba(255, 255, 255, .7);
  transition: .4s ease-in-out;
  font-weight: 700;
}


/*  */

.copy_right_section {
  /* background-color: rgba(255, 255, 255, .6); */
  text-align: center;
  padding: 7px 1px;
}

.copyright_content_div>p {
  margin-bottom: 0px !important;
  color: var(--color-dark);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .3px;

}


.copyright_content_div>p>a {
  color: var(--color-gray2);
  text-decoration: underline !important;
}

.copyright_content_div>p>a>img {
  width: 45px;
  object-fit: contain;
  margin-left: 3px;
  filter: brightness(0%) invert(1);
}

/**/



.mobile_call_whatsapp_fixed_main_div {
    position: fixed;
    bottom: 120px;
    right: 18px;
    z-index: 1000;
}

.mobile_whatsapp {
    display: none;
}


.call_icon_div {
    text-align: center;
}

.call_icon_div>a {
    background-color: #dc3545;
    height: 60px;
    line-height: 57px;
    width: 60px;
    text-align: center;
    border-radius: 100px;
    animation: moveUpDown 2s ease-in-out infinite;
    display: inline-block;
    margin-bottom: 8px;

}

@keyframes moveUpDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
        /* Adjust the distance */
    }
}

.call_icon_div>a>img {
    width: 32px !important;
    filter: brightness(0%) invert(1);
    height: 60px;
    line-height: 60px;
    width: 60px;
    object-fit: contain;
}

.whatsapp_icon_div {
    text-align: center;
}


.whatsapp_icon_div>a {
    background-color: #008000;
    height: 60px;
    line-height: 57px;
    width: 60px;
    text-align: center;
    border-radius: 100px;
    animation: zigzag 0.5s ease-in-out infinite;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-duration: 10s;
    animation-timing-function: steps(1, end);
    position: relative;
    animation: zigzag 8s infinite;
    display: inline-block;

}



@keyframes zigzag {
    0% {
        left: 0px;
    }

    1% {
        left: -5px;
    }

    2% {
        left: 5px;
    }

    3% {
        left: -5px;
    }

    4% {
        left: 5px;
    }

    5% {
        left: 0px;
    }

    100% {
        left: 0px;
    }
}



.whatsapp_icon_div>a>img {
    width: 32px !important;
    filter: brightness(0%) invert(1);
    height: 60px;
    line-height: 60px;
    width: 60px;
    object-fit: contain;
}

.mail_icon_div{
    width: 40px !important;
    height: 60px;
    line-height: 60px;
    width: 60px;
    object-fit: contain;
    position: relative;
    top: 10px;
}


.mail_icon_div>a {
    background-color: var(--color-text);
    height: 60px;
    line-height: 57px;
    width: 60px;
    text-align: center;
    border-radius: 100px;
    animation: zigzag 0.5s ease-in-out infinite;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-duration: 10s;
    animation-timing-function: steps(1, end);
    position: relative;
    animation: zigzag 8s infinite;
    display: inline-block;

}


.mail_icon_div>a>img {
    width: 32px !important;
    filter: brightness(0%) invert(1);
    height: 60px;
    line-height: 60px;
    width: 60px;
    object-fit: contain;
}

