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

/* Boxicons */
@font-face {
  font-family: boxicons;
  src: url("../fonts/boxicons/boxicons.ttf");
}

/* Root Styling */
:root {
  --c1: #5E85FF;
  --c2: #FFC107;
  --c3: #232323;
  --f1: 'poppins';
  --f2: 'Nokora';
  --f3: 'Onest';
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.img__contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.img__cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* General Styling */

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none !important;
  list-style-type: none;
  font-family: 'Roboto', sans-serif;
}

::selection {
  background-color: var(--c1);
  color: #fff;
}

a {
  display: inline-block;
  color: #000;
  transition: all 300ms ease-in-out;
}

a:hover {
  color: #000;
}

ul,
ol,
dl {
  margin-bottom: 0;
  padding: 0;
}


p,
li,
a,
span,
input,
input::placeholder,
button {
  font-family: var(--f1);
}


.imgFluid {
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
  transition: all 300ms ease-in-out;
  outline: 0;
}

i.bx {
  font-family: boxicons;
  vertical-align: middle;
}

/* button style */

.themebtn {
  padding: 12px 24px;
  background: var(--c1);
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  z-index: 99;
  font-family: var(--f1);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.themebtn i {
  font-size: 20px;
}

.themebtn:hover {
  background: var(--c1);
  color: #fff;
}

.themebtn::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
  -webkit-animation: shine .75s;
  animation: shine 2s linear infinite;
}

.themebtn::after {
  position: absolute;
  content: '';
  width: 0;
  right: 0;
  height: 100%;
  background-color: var(--c2);
  top: 0;
  transition: 400ms ease;
  z-index: -1;
}

.themebtn:hover::after {
  width: 100%;
  left: 0;
}

.themebtn:hover span {
  animation: tada 1s;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

/* button style */


/* header css start */

.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0px;
}

a.header__logo img {
  width: 200px;
  height: auto;
  object-fit: contain;
}

ul.header-main__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

ul.header-main__nav li a {
  font-size: 14px;
  font-family: var(--f1);
  position: relative;
  text-transform: capitalize;
  font-weight: 500;
}

ul.header-main__nav li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: #000;
  transition: all 500ms;
}

ul.header-main__nav li a.active::after {
  width: 100%;
  left: 0;
}

ul.header-main__nav li a:hover::after {
  width: 100%;
  left: 0;
}

ul.header-main__nav li a:hover {
  color: var(--c1);
}

ul.header-main__nav li a.active {
  color: var(--c1);
}


/* header css end */

/* baner css start */

.home_banner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
  min-height: 85vh;
}

.banner_img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.banner_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner_cont {
  position: relative;
  color: #fff;
}

.banner_cont h6 {
  font-size: 19px;
  text-transform: uppercase;
  font-family: var(--f2);
  margin: 0;
}

.banner_cont h3 {
  font-size: 54px;
  font-family: var(--f3);
  text-transform: capitalize;
  margin: 0px 0px 10px;
  font-weight: 600;
  line-height: 1.2;
}

.banner_cont p {
  font-size: 15px;
  font-family: var(--f1);
  font-weight: 400;
  width: 96%;
  margin-bottom: 9px;
}

/* baner css end */

/* new css start */

.top_header {
  background: #232323;
  padding: 6px 0px;
}

.top_head a {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-family: var(--f1);
  font-weight: 500;
  gap: 5px;
}

.top_head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top_head a span {
  background: #dcdcdc5e;
  width: 26px;
  height: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 17px;
}

.themebtn.yellow {
  background: var(--c2);
  color: #000;
} 

.banner_cont h3 span { 
  color: var(--c2);
  color: var(--c2);
  font-weight: 600;
}

.section_btn {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 14px;
}

.themebtn.yellow::after {
  background: var(--c1);
  color: #FFF;
}

.banner_cont h5 {
  font-family: var(--f2);
  font-size: 24px;
  font-weight: 400;
  text-transform: capitalize;
}

.our_services {
  padding: 55px 0px 70px;
  position: relative;
}

.bold_text {
  position: absolute;
  right: 0;
  font-size: 105px;
  color: #FFF;
  text-shadow: 1px 1px 1px black;
  top: 5px;
  font-family: var(--f3);
}

.sect_title {
  width: 84%;
}

.sect_title h3 {
  font-size: 45px;
  font-weight: 500;
  font-family: var(--f2);
  color: #000;
  margin: 0 0 30px;
  position: relative;
}

.sect_title h3 span {
  display: block;
  font-weight: 700;
  font-size: 45px;
}

.sect_title h3::before {
  position: absolute;
  content: '';
  width: 42%;
  height: 8px;
  background: var(--c1);
  bottom: -8px;
  left: 0px;
}

.sect_title p {
  font-family: var(--f1);
  font-weight: 400;
  font-size: 14px;
}

.service_img {
  width: 100%;
  height: 620px;
  overflow: hidden;
  position: relative;
  left: -55px;
}

.service_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main_service {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 65px;
  margin: 0px 0px 6px;
}

.serv_img {
  height: 145px;
  width: 245px;
  overflow: hidden;
}

.serv_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.serv_cont h4 {
  font-size: 20px;
  font-family: var(--f2);
  font-weight: 500;
  margin: 0;
  position: relative;
}

.serv_cont p {
  font-size: 14px;
  font-family: var(--f1);
  font-weight: 400;
}

.serv_cont h4::before {
  position: absolute;
  content: '';
  background: var(--c2);
  left: -15px;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50px;
}

.service_cont {
  width: 86%;
}

.experties_cont {
  position: absolute;
  bottom: 18px;
  left: 45px;
  color: #fff;
  text-transform: capitalize;
  font-family: var(--f2);
  font-weight: 600;
  font-size: 22px;
  margin: 0;
  z-index: 11;
}

a.expertise_img_card {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  display: block;
  transition: 700ms ease-in-out;
}

a.expertise_img_card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 500ms;
}

.section_title h4 {
  font-family: var(--f2);
  font-size: 40px;
  font-weight: 500;
  line-height: 1.0;
  margin: 0 0 25px;
  color: #fff;
}

.section_title h4 span {
  font-weight: 700;
  font-size: 40px;
}

.section_title p {
  font-family: var(--f1);
  font-weight: 400;
  font-size: 14px;
  color: #fff;
}

.expertise_sect {
  background: url(../images/expertise-back.webp);
  padding: 180px 0px 0px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  position: relative;
  margin-top: -96px;
  overflow: hidden;
  height: 100%;
}

.section_title::before {
  position: absolute;
}

.section_title {
  position: relative;
}

.section_title::before {
  position: absolute;
  content: '';
  background: url(../images/sun.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 140px;
  height: 140px;
  top: -100px;
  right: -60px;
  animation: startBlush 2s infinite ease-in-out;
}

.expertise_sect h2 {
  position: absolute;
  right: -365px;
  color: #4f4f4f;
  font-size: 115px;
  transform: rotate(-90deg);
  bottom: 450px;
  font-family: var(--f3);
}

.expertise_sect::before {
  position: absolute;
}

.ghosrtwriting_process .section_title h4 {
  color: #000;
}

.ghosrtwriting_process {
  padding: 40px 0px 70px;
  position: relative;
}

.ghosrtwriting_process .section_title::before {
  filter: brightness(1.4) invert(1) opacity(0.1) !important;
  right: -100px;
}

.process_main_cont {
  background: var(--c2);
  padding: 40px 20px;
  width: 88%;
  margin: 0 auto;
  border-radius: 10px;
  height: auto;
  overflow-y: auto;
  top: 50px;
  position: relative;
}

.process_cont {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 18px;
  margin: 0 0 22px;
}

.process_cont span {
  color: #fff;
  background: #444;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 18px;
}

p {}

p {}

.process_para h3 {
  font-size: 18px;
  font-family: var(--f2);
  font-weight: 600;
  margin: 0 0 5px;
}

.process_para p {
  font-size: 13px;
  font-family: var(--f1);
  font-weight: 400;
  margin: 0;
}

.process_para {
  width: 100%;
}

.process_cont span::before {
  position: absolute;
  content: '';
  width: 15px;
  height: 15px;
  background: #444444;
  right: -5px;
  top: 50%;
  transform: translateY(-50%) rotate(-30deg);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.process_img {
  position: absolute;
  z-index: -1;
  width: 55%;
  height: 540px;
  transform: translateY(-32%);
  top: 50%;
}

.process_img img {
  width: 100%;
  height: 100%;
  object-position: bottom;
  object-fit: cover;
  border-radius: 10px;
}

.process_img::before {
  position: absolute;
  content: '';
  width: 550px;
  height: 550px;
  left: -30%;
  top: -40%;
  z-index: -1;
  background: var(--c1);
  border-radius: 100%;
  opacity: 0.8;
}

.process_head {
  position: absolute;
  right: 0;
  top: 9%;
  font-family: var(--f3);
  font-size: 115px;
  color: transparent;
  -webkit-text-stroke: 1px #00000063;
}

.ghost_provide {
  position: relative;
  padding: 70px 0px 70px;
}

.provide_img {
  width: 97%;
  height: 630px;
  position: relative;
}

.provide_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.provide_cont {
  line-height: 2.2;
}

.provide_cont li a {
  font-family: var(--f3);
  font-weight: 600;
  font-size: 26px;
  position: relative;
  width: 100%;
  padding: 21px 0px;
}

.ghost_provide .section_title h4 {
  color: #000;
}

.ghost_provide .section_title::before {
  filter: brightness(1.4) invert(1) opacity(0.1);
  right: -80px;
}

.provide_cont li a::before {
  position: absolute;
  content: "\ea55";
  font-family: 'boxicons';
  font-size: 30px;
  left: -25px;
  top: 16px;
  display: none;
  transition: 500ms;
}

.provide_cont li a:hover::before {
  color: var(--c1);
  display: flex;
}

.provide_cont li a:hover {
  color: var(--c1);
  transform: translateX(15px);
}

.ghost_provide::before {
  position: absolute;
  content: '';
  background: url(../images/provide-bef.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 180px;
  height: 165px;
  left: 15px;
  top: 448px;
  z-index: -1;
}

.provide_img::before {
  position: absolute;
  content: '';
  background: var(--c2);
  width: 58px;
  height: 58px;
  top: -14px;
  left: -35px;
}

.provide_img::after {
  position: absolute;
  content: '';
  background: var(--c2);
  width: 58px;
  height: 58px;
  bottom: -14px;
  right: 28px;
}

.provide_cont li {
  border-bottom: 1px solid #000;
  width: 100%;
  line-height: 1;
}

.provide_img {
  display: none;
}

.provide_img.active {
  display: block;
}

.bacgorund_div {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #040202;
  padding: 30px 35px;
  width: 55%;
  gap: 15px;
  position: absolute;
  bottom: 42px;
  left: 57%;
  transform: translateX(-50%);
  border-radius: 0px 0px 18px 0px;
  z-index: 1;
  padding-left: 12rem;
}

.bacgorund_div::before {
  position: absolute;
  content: '';
  background: url(../images/star.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 90px;
  height: 65px;
  right: -2px;
  top: -80%;
}

.ghost_provide::after {}

.sale_img {
  width: 106%;
  height: 438px;
  position: relative;
  z-index: 1;
}

.sale_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sale_sect {
  padding: 40px 0px 0px;
  background: #232323;
  position: relative;
  overflow: hidden;
}

.sale_left_cont h3 {
  font-family: var(--f3);
  font-weight: 400;
  font-size: 40px;
  color: #fff;
  line-height: 1.1;
  text-transform: capitalize;
}

.sale_left_cont h3 span {
  color: var(--c2);
  font-weight: 600;
  font-size: 45px;
}

.sale_left_cont .themebtn.yellow {
  width: fit-content;
}

.sale_img::before {
  position: absolute;
  content: '';
  border: 1px solid #fff;
  width: 100%;
  height: 100%;
  border-radius: 49% 49% 58% 46%;
  top: -4px;
  left: -2px;
  animation: 11s rotate linear infinite;
  z-index: -1;
}

.sale_sect::before {
  position: absolute;
  content: '';
  background: url(../images/story-bef.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 180px;
  height: 150px;
  right: -90px;
  top: 20px;
  animation: 1500ms rotate linear infinite;
}

.sale_sect::after {
  position: absolute;
  content: '';
  background: url(../images/story-bef.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 280px;
  height: 280px;
  right: -30px;
  bottom: -20px;
  animation: 1500ms rotate linear infinite;
}

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

.sale_right_cont p {
  color: #fff;
  font-family: var(--f3);
  font-weight: 400;
  font-size: 18px;
  width: 84%;
  margin: 0;
}

.sale_right_cont h3 {
  color: var(--c2);
  font-size: 66px;
  font-family: var(--f3);
  font-weight: 600;
  margin: 0;
}

.sale_right_cont img {
  width: 100%;
  height: 315px;
  object-fit: contain;
}

.story_bottom {
  background: var(--c2);
  position: relative;
}

.story_div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 4px 0px;
  gap: 20px;
}

.story_div img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  animation: tada 1s linear infinite;
}

.story_cont h3 {
  font-family: var(--f3);
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.story_cont a {
  font-family: var(--f3);
  font-size: 14px;
  font-weight: 500;
}

.sale_right_cont {
  position: relative;
  z-index: 1;
  right: -60px;
}

.sale_right_cont::before {
}


/* AK CSS */

.footer {
  padding-top: 70px;
  background: #232323;
  position: relative;
  overflow: hidden;
}

h5.footer_heading {
  color: #fff;
  font-family: var(--f3);
  font-size: 20px;
  position: relative;
  margin-bottom: 23px;
  z-index: 1;
}

h5.footer_heading::before {
  content: '';
  position: absolute;
  width: 21%;
  height: 1px;
  background: #fff;
  bottom: -6px;
}

.footer_main p {
  color: #fff;
  font-family: var(--f1);
  font-size: 12px;
  text-transform: capitalize;
  width: 83%;
  line-height: 1.9;
  text-align: justify;
}

.quick_links li a {
  color: #fff;
  font-family: var(--f1);
  font-size: 14px;
  position: relative;
  text-transform: capitalize;
  font-weight: 300;
  margin-bottom: 17px;
  padding-left: 10px;
}

.quick_links li a::before {
  content: "\ea50";
  position: absolute;
  font-family: 'boxicons';
  top: 0;
  left: -15px;
  font-size: 20px;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer_icon a {
  font-size: 25px;
  width: 40px;
  height: 40px;
  background: var(--c2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer_icon {
  display: flex;
  gap: 15px;
  position: relative;
  z-index: 1;
}

.contact_info li a {
  color: #fff;
  font-family: var(--f1);
  font-size: 14px;
  margin-bottom: 20px;
  font-weight: 300;
}

.contact_info li a i {
  width: 20px;
  height: 20px;
  font-size: 20px;
  margin-left: -11px;
  color: var(--c2);
  margin-right: 5px;
}

.copyright p {
  color: #fff;
  text-align: center;
  margin: 0;
  font-size: 14px;
  font-family: var(--f1);
}

.footer_images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer_images {
  width: 430px;
  height: 400px;
  position: absolute;
  bottom: -70px;
  left: -230px;
}

.footer_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer_img {
  width: 430px;
  height: 400px;
  position: absolute;
  bottom: -70px;
  right: -230px;
}

section.your_work {
  background: var(--c3);
  margin-bottom: 150px;
}

.your_cnt_main h5 {
  color: #fff;
  text-transform: capitalize;
  font-family: var(--f2);
  font-size: 16px;
  width: 70%;
}

.your_cnt_main h3 {
  color: #fff;
  font-family: var(--f3);
  text-transform: capitalize;
  font-size: 47px;
  margin-top: 15px;
  font-weight: 300;
}


.your_cnt_main h3 span {
  color: #fff;
  font-family: var(--f3);
  text-transform: capitalize;
  font-size: 47px;
  font-weight: 700;
}

.work_ancher {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.yourwork_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yourwork_img {
  width: 90%;
  height: 419px;
  box-shadow: -8px 8px 0px 0px var(--c1);
  position: relative;
  bottom: -60px;
}

.customer_love_head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testimonial_ancher {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
}

.customer_love_head h3 {
  font-family: var(--f3);
  font-size: 28px;
  font-weight: 300;
}

.customer_love_head h3 span {
  font-family: var(--f3);
  font-size: 35px;
  font-weight: 500;
}

section.testimonial {
  padding: 70px 0;
  background-image: url(../images/testimonial.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.testimonial_slider {
  width: 30%;
  background: #ffff;
  padding: 10px 30px;
  border-radius: 15px;
  box-shadow: 0 0 10px 0 #80808042;
  margin-top: 35px;
}

.testimonial_star {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testimonial_star ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonial_star li i {
  font-size: 17px;
  color: var(--c2);
}

.testimonial_star_icon {
  color: var(--c1);
  font-size: 50px;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonial_slider p {
  font-family: var(--f1);
  font-size: 13px;
}

.testimonial_slider h4 {
  font-family: var(--f1);
  font-weight: 300;
  font-size: 23px;
}

.testimonial_star ul li {
  line-height: 1;
}

.rotate_slider {
  transform: rotate(180deg);
  margin-top: 20px;
}

.test_rotate {
  transform: rotate(180deg);
}

.turning_images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.turning_images {
  width: 90%;
  height: 628px;
  position: relative;
}

.turning_content h3 {
  font-family: var(--f3);
  font-size: 45px;
  text-transform: capitalize;
  width: 80%;
  font-weight: 400;
  position: relative;
  margin-bottom: 30px;
}

.turning_content h3 span {
  font-family: var(--f3);
  font-size: 45px;
  font-weight: 600;
}

section.turning_words {
  padding: 70px 0;
}

.turning_content h3::before {
  content: '';
  position: absolute;
  width: 35%;
  height: 5px;
  background: var(--c1);
  bottom: -3px;
}

.turning_content p {
  font-family: var(--f1);
  font-size: 14px;
  margin-bottom: 20px;
  font-weight: 400;
  font-style: italic;
}

.turning_content ul li {
  font-family: var(--f1);
  font-size: 17px;
  font-weight: 400;
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
}

.turning_content ul li::before {
  content: "\ebe6";
  position: absolute;
  font-family: 'boxicons';
  width: 20px;
  height: 25px;
  color: var(--c1);
  left: 0;
  top: 0;
  font-size: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.turning_content {
  padding: 50px 20px 20px;
  box-shadow: -2px -2px 8px 0 #80808042;
  width: 87%;
  position: relative;
  background: #fff;
}

p.trning_para {
  font-size: 14px;
  font-style: normal;
}


.turning_content::before {
  content: '';
  position: absolute;
  width: 98%;
  height: 101%;
  background: var(--c1);
  top: 51%;
  right: -10px;
  z-index: -2;
  transform: translateY(-50%);
}

.turning_image_sun img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.turning_image_sun {
  position: absolute;
  width: 120px;
  height: 120px;
  top: -50px;
  left: -60px;
}


.path_header h3 {
  font-family: var(--f3);
  font-size: 37px;
  font-weight: 400;
}

.path_header h3 span {
  font-family: var(--f3);
  font-size: 37px;
  font-weight: 600;
}

.path_header p {
  font-size: 14px;
  font-family: var(--f1);
}

section.Path_Excellence {
  padding: 70px 0;
}

.item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.path_slider {
  width: 14.2%;
}

.item {
  width: 100%;
  height: 296px;
  margin-bottom: 10px;
}

.path_slider:nth-child(odd) .item:nth-child(1) {
  margin-top: 35px !important;
}

.path_main {
  margin-top: 50px;
}

.path_header::before {
  content: '';
  position: absolute;
  background-image: url(../images/sun1.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 150px;
  height: 150px;
  right: -105px;
  top: 0;
}

.path_header {
  position: relative;
}



/* responsive  css start */

.menu_logo {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 10px;
  background: #fff;
  top: 0;
  left: 0;
  z-index: 999;
  transition: 500ms all;
  box-shadow: 0px 0px 10px 0px #cfcfcf;
}


.side_menu {
  width: 90%;
  background: #fff;
  height: 100vh;
  position: fixed;
  top: 0;
  padding: 10px 16px;
  left: 0;
  z-index: 99999;
  transform: translateX(-100%);
  transition: 200ms all;
}

.responsive_menu {
  display: none;
}

.show {
  transform: translateX(0%);
}

.responsive_logo img {
  width: 130px;
}

.open_menu {
  font-size: 30px;
  color: var(--c2);
}

.side_menu li a {
  padding: 11px 12px;
  width: 100%;
  color: #373737;
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 500;
}

.close_menu {
  width: 50px;
  text-align: end;
  padding: 8px 12px !important;
  float: inline-end;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu_sticky {
  position: fixed;
}

.responsive_overly {
  width: 100%;
  height: 100vh;
  position: fixed;
  background: #000000a3;
  transition: 200ms;
  left: -100%;
  top: 0;
  z-index: 9999;
}

.responsive_overly.show {
  left: 0;
}

.side_menu li.accordion-button {
  background: transparent;
  padding: 0;
}

.side_menu .accordion-item {
  background: transparent;
  border: none;
}

.side_menu .accordion-button::after {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: boxicons !important;
  background-image: none;
  content: "\ebc0";
  color: #000;
  font-size: 19px;
}

.side_menu .accordion-body {
  padding: 0;
  overflow-x: auto;
}

.side_menu .accordion-button:not(.collapsed)::after {
  transform: translateY(-50%) rotate(-180deg);
  background-image: none;
  content: "\eb8b";
  color: var(--c1);
}

.side_menu .accordion-button:not(.collapsed) {
  background: transparent;
  box-shadow: none;
  outline: 0;
  border-color: transparent;
}

.side_menu .accordion-button:not(.collapsed) a {
  color: var(--c1);
}

.close_menu i {
  font-size: 23px;
}



.side_form {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  padding: 5px 12px;
  gap: 10px;
  box-shadow: 0px 1px 0px 0px #ebebeb;
  margin-bottom: 14px;
  margin-top: 0px;
}

.side_form input {
  background: transparent;
  border: none;
  outline: 0;
  color: gray;
  font-size: 13px;
  width: 100%;
}

.side_form button {
  background: transparent;
  border: none;
  font-size: 17px;
  color: gray;
  outline: 0;
}

.social {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.social a {
  font-size: 24px;
  color: var(--c2);
}

.link_row {
  display: flex;
  flex-wrap: wrap;
  padding: 12px 0px;
  justify-content: space-between;
  padding-left: 14px;
}

.link_colom {
  width: 100%;
}


.sidenav {
  height: 100%;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  background-color: #fff;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 0px 10px;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition: 200ms all;
  width: 500px;
  border-left: 1px solid;
  border-top: none;
  border-right: none;
  border-bottom: none;
  border-image: initial;
  padding: 20px 17px;
}


.custom-select {
  position: relative;
  width: 180px;
  cursor: pointer;
}

.custom-select .selected {
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f1);
  font-size: 13px;
}

.custom-select img {
  width: 20px;
  height: 14px;
}

.custom-select .options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border: 1px solid #ccc;
  background: #fff;
  display: none;
  z-index: 99;
}

.custom-select .options li {
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}

.custom-select.open .options {
  display: block;
}

.side_menu ul {
  height: 84vh;
  overflow-y: auto;
}

/* responsive  css end */

/* dropdown css start */

ul.dropdown_menu {
  background: #fff;
  position: absolute;
  z-index: 99999;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transition: 500ms all;
}

ul.dropdown_menu li a {
  padding: 12px 10px;
  color: #000000;
  font-size: 13px;
  align-items: center;
}

.dropdown-submenu>.dropdown_menu,
li.dropdown-submenu ul.dropdown_menu ul.dropdown_menu {
  top: 0;
  left: 100%;
  margin-top: 0;
}

.dropdown_menu {
  padding: 0;
  margin: 0;
}

.dropdown_menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  float: left;
  min-width: 10rem;
  margin: .125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: .25rem;
}

.dropdown_menu {
  position: static;
  float: none;
}

li:hover>ul.dropdown_menu {
  box-shadow: 0 0 10px 1px rgb(0 0 0 / 9%);
  min-width: 14rem;
  visibility: visible;
  opacity: 1;
}

.header-main__nav li {
  position: relative;
}

ul.dropdown_menu li a::after {
  display: none;
}

.dropdown-toggle {
  font-size: 17px;
  transition: 500ms;
}

ul.header_nav li a i {
  font-size: 15px;
  transition: 300ms;
}

ul.header_nav li:hover i {
  transform: rotate(180deg);
}

.dropdown-submenu:hover .dropdown-toggle {
  transform: rotate(-90deg);
}

.top-radious {
  border-top-left-radius: 19px;
  border-top-right-radius: 19px;
}

.bottom-radious {
  border-bottom-left-radius: 19px;
  border-bottom-right-radius: 19px;
}

ul.dropdown_menu li a:hover {
  background: var(--c1);
  color: #fff;
}

ul.header_nav li {
  position: relative;
}

/* dropdown css end */

/* popup form css start */

.form_close {
  position: absolute;
  width: 40px;
  height: 40px;
  display: none;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  color: #fff;
  top: 6px;
  right: 6px;
  z-index: 999;
  background: var(--c1);
  border-radius: 8px;
}

.popup_form {
  display: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  background: #59362982;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999999;
  backdrop-filter: blur(24px);
  overflow: hidden;
}

.popup_form .banner_form {}

.popup_form .form_arrow {
  display: none;
}

.popup_form.active {
  display: flex;
}

.popup_form .form_close {
  display: flex;
}

.form_close:hover {
  color: #fff;
  background: var(--c2);
}

.popup_form .chat_form {
  width: 30%;
}

.popup_form .main_ban_form {
  width: 26%;
}


/* popup form css end */


/* inner banner css */

.inner_banner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  min-height: 94vh;
}

.inner_banner_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  filter: grayscale(0.3);
  z-index: -1;
}

.inner_banner_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner_cont {
  position: relative;
  z-index: 9;
  color: #fff;
}

.inner_cont h6 {
  font-size: 22px;
  text-transform: uppercase;
  font-family: var(--f1);
  font-weight: 400;
}

.inner_cont h3 {
  font-size: 42px;
  font-family: var(--f2);
  text-transform: capitalize;
  margin: 14px 0px;
  font-weight: 700;
  line-height: 1.1;
}

.inner_cont p {
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 7px;
}

.inner_sub_img {
  width: 80%;
  height: 580px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.inner_sub_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner_sub_banners {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  min-height: 107vh;
  backdrop-filter: blur(5px);
  padding: 52px 0px;
  background: #ffffff69;
}

.inner_sub_cont h3 {
  font-size: 38px;
  font-family: var(--f2);
  text-transform: uppercase;
  margin-bottom: 15px;
  line-height: 1.2;
  font-weight: 700;
}

.inner_sub_cont p {
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 7px;
}

.inner_sub_banners_overly {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner_sub_banners_overly img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner_sub_cont {
  position: relative;
  z-index: 9;
}

.inner_cont.text-center h3 {
  font-size: 80px;
  letter-spacing: 2px;
}

.inner_cont h3 span {
  display: inline-block;
  font-weight: 400;
  font-size: 64px;
  line-height: 1;
  border-radius: 10px;
  color: var(--c2);
}

.inner_sub_cont ul li {
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 7px;
  position: relative;
}

.inner_sub_cont ul {
  padding-left: 18px;
}

.inner_sub_cont ul li::before {
  position: absolute;
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 100%;
  background: var(--c2);
  top: 50%;
  left: -21px;
  transform: translateY(-50%);
}

/* inner banner css end */

/* contact us page css start */


.contact_img {
  width: 100%;
  height: 500px;
  overflow: hidden;
  position: relative;
  transform: scale(1.1);
  margin-left: -30px;
}

.contact_img img {
  width: 100%;
  height: 100%;
  position: relative;
  object-fit: contain;
}

.contact_us {
  padding: 70px 0px 100px;
  /* background: url(../images/contact-back.webp); */
  /* background-position: center; */
  /* background-size: cover; */
  /* background-repeat: no-repeat; */
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(6px);
  background: #ffffff36;
}

.contact_img::before {
  position: absolute;
  content: '';
  border: 50px solid;
  border-radius: 100%;
  background: transparent;
  height: 395px;
  width: 395px;
  right: 110px;
  top: 30px;
}

.contact_form textarea {
  height: 103px;
}

.contact_us_cont h5 {
  font-family: var(--f1);
  font-size: 22px;
  text-transform: uppercase;
  color: #333;
  word-spacing: -4px;
}

.contact_us_cont h3 {
  font-family: var(--f2);
  text-transform: uppercase;
  font-size: 44px;
  line-height: 1.1;
  color: #000;
  font-weight: 800;
}

.contact_us_cont h3 span {
  font-family: var(--f3);
  text-transform: uppercase;
  font-weight: 900;
}

.contact_form {
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

.contact_form input::placeholder {
  font-size: 14px;
  color: #333;
  font-weight: 400;
  text-transform: capitalize;
}

.contact_form textarea::placeholder {
  font-size: 14px;
  color: #333;
  text-transform: capitalize;
  font-weight: 400;
}

.contact_us::before {
  position: absolute;
  content: '';
  background: url(../images/splatter.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 220px;
  height: 208px;
  top: 8px;
  left: -74px;
  z-index: 9;
  transform: scaleX(-1) rotate(75deg);
}

.contact_us::after {}

.per-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0px 0 15px;
}

.per-check input {
  width: fit-content;
}

.per-check label {
  font-size: 12px;
}

.per-check label a {
  color: #000;
  font-weight: 800;
  text-decoration: underline !important;
  font-size: 11px;
}

.contBox a {
  width: 100%;
  display: flex;
  gap: 10px;
  font-size: 14px;
}

.contBox a i {
  font-size: 20px;
}

.contBox a span {
  font-weight: 600;
}

.contact_form_fields input,
.contact_form_fields textarea {
  width: 100%;
  border: honeydew;
  padding: 10px 10px;
  font-size: 14px;
  box-shadow: 0px 0px 8px 0px #b9b9b9;
  border-radius: 5px;
  outline: 0;
}

form.contact_page_form .col-md-4,
form.contact_page_form .col-md-12 {
  padding: 0px 7px;
}

.contact_form_fields textarea {
  height: 120px;
}

.contact_form_fields {
  margin-bottom: 10px;
}

.contact_form_fields input::placeholder,
.contact_form_fields textarea::placeholder {
  text-transform: capitalize;
}

form.contact_page_form {
  margin: 30px 0px;
}

/* contact us page css end */

.copy_right ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

.copy_right a {
  text-transform: capitalize;
  color: #fff;
  font-size: 14px;
}

.copy_right a:hover {
  color: var(--c1);
}

/* privacy page css start */

.privacy {
  padding: 80px 0;
  background: #f9fafc;
}

.policy_content {
  max-width: 1000px;
  margin: auto;
  background: #ffffff;
  padding: 50px 60px;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

/* Section Headings */
.policy_content h4 {
  font-size: 26px;
  font-family: var(--f2);
  font-weight: 600;
  margin: 13px 0;
  color: #111827;
  position: relative;
  padding-left: 18px;
  text-transform: capitalize;
}

.policy_content h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  height: 70%;
  width: 4px;
  background: var(--c1);
  border-radius: 4px;
}

/* Paragraph Styling */
.policy_content p {
  font-size: 15.5px;
  line-height: 1.9;
  color: #374151;
  text-align: justify;
  margin-bottom: 14px;
}

/* Bold text highlight */
.policy_content p b {
  color: var(--c1);
  font-weight: 600;
}

/* Links */
.policy_content a {
  color: var(--c1);
  text-decoration: none;
  font-weight: 500;
}

.policy_content a:hover {
  color: var(--c2);
}

/* Contact Section Highlight */
.policy_content h4:last-of-type {}

.policy_content h1 {
  font-size: 50px;
  font-family: var(--f1);
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 40px;
  text-align: center;
  text-decoration: underline !important;
  text-decoration-color: var(--c1) !important;
}

.policy_content ul,
.terms_content ul {
  padding-left: 22px;
  margin: 15px 0;
}

.policy_content ul li,
.terms_content ul li {
  font-size: 15px;
  line-height: 1.9;
  color: #374151;
  margin-bottom: 8px;
  position: relative;
  padding-left: 16px;
}

/* Custom bullet */
.policy_content ul li::before,
.terms_content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  color: var(--c2);
  font-size: 21px;
  line-height: 1.9;
  width: 7px;
  height: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--c2);
  border-radius: 50px;
}

.policy_content h5 {
  font-size: 22px;
  font-family: var(--f1);
  font-weight: 500;
}

/* privacy page css end */

.copyright_para {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
}

.copyright_para ul {
  display: flex;
  align-items: center;
  gap: 21px;
}

.copyright_para ul li a {
  color: #fff;
  font-size: 12px;
  text-transform: capitalize;
}

.copyright_para ul li a:hover {
  color: var(--c2);
}

.white_btn {
  text-align: -webkit-center;
}

.testo_page {
  padding: 70px 0px;
}

.testo_page .col-md-4:nth-child(odd) .testi_card {
  background: var(--c2);
}

/*===================================== faqs page css start ================================*/

.faqs_section {
  padding: 70px 0px;
}

.faqs_mian .accordion-button {
  padding: 26px 20px;
  font-family: var(--f1);
  font-weight: 600;
  color: #000;
  text-transform: capitalize;
  border-radius: 0 !important;
  background: #fff;
}

.faqs_mian .accordion-item {
  margin-bottom: 17px;
  border: 1px solid #c7c7c7 !important;
  overflow: hidden;
  border-radius: 8px !important;
  box-shadow: 0px 0px 10px 0px #00000026;
}

.faqs_mian .accordion-button:not(.collapsed) {
  color: #000;
  background: #fff;
  box-shadow: none;
}

.faqs_mian .accordion-body {
  background: var(--c3);
  padding: 24px 24px;
}

.faqs_mian .accordion-body p {
  margin: 0;
  color: #fff;
  font-size: 14px;
  line-height: 1.9;
  font-weight: 300;
}

.faqs_mian .accordion-button::after {
  background-image: none;
  content: "\ee90";
  font-size: 14px;
  width: 23px;
  height: 23px;
  font-family: boxicons !important;
  border: 2px solid;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faqs_mian .accordion-button:not(.collapsed)::after {
  background-image: none;
  transform: rotate(90deg) scale(1.3);
  color: var(--c1);
}

.faqs_mian .accordion-button:hover {
  color: var(--c1);
}

.faqs_img {
  width: 100%;
  height: 700px;
  overflow: hidden;
  position: sticky;
  top: 20px;
  transform: translateX(30px);
}

.faqs_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo_main {
  position: relative;
  width: 100%;
  height: 510px;
}

/* ====================================== faqs page css end ================================ */

/*===================================== form css start ================================*/


.chat_form {
  width: 77%;
  background: #ffffff2e;
  padding: 33px 34px;
  border-radius: 12px;
  backdrop-filter: blur(13px);
  float: inline-end;
  position: relative;
  overflow: hidden;
  z-index: 9;
}

.chat_form {}

.chat_form h4 {
  text-align: center;
}

.chat_form h3 {
  text-align: center;
}

.chat_form h4 {
  font-size: 24px;
  font-weight: 700;
  position: relative;
  color: var(--c2);
  font-family: var(--f2);
  z-index: 1;
}

.chat_form h3 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  font-family: var(--f2);
  position: relative;
  z-index: 1;
}

.form_field input,
.form_field textarea {
  width: 100%;
  padding: 11px 19px;
  border-radius: 7px;
  outline: 0;
  border: none;
  font-size: 14px;
}

.form_field textarea {
  height: 109px;
}

.form_field {
  margin-bottom: 11px;
}

.form_check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
}

.form_check input {
  width: 20px;
  height: 20px;
  accent-color: var(--c2);
  cursor: pointer;
}

.form_check label {
  font-size: 12px;
  color: #fff;
  font-family: var(--f1);
  cursor: pointer;
}

.form_check label a {
  color: #fff;
  text-decoration: underline !important;
}

.form_check label a:hover {
  color: var(--c1);
}

.chat_form::before {
  position: absolute;
  content: '';
  width: 200px;
  height: 200px;
  background: var(--c1);
  top: -100px;
  left: -100px;
  filter: blur(95px);
}

.chat_form::after {
  position: absolute;
  content: '';
  width: 200px;
  height: 200px;
  background: var(--c2);
  bottom: -100px;
  right: -100px;
  filter: blur(95px);
}

.chat_form form {
  position: relative;
  z-index: 1;
  margin-top: 15px;
}


/*===================================== form css end ================================*/

.sect_btn {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.sect_btn a i {
  transform: rotate(90deg);
}

.process_main_cont::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(202, 202, 202, 0.3);
  background-color: #F5F5F5;
}

.process_main_cont::-webkit-scrollbar {
  width: 4px;
  background-color: #F5F5F5;
}

.process_main_cont::-webkit-scrollbar-thumb {
  background-color: var(--c1);
}

.your_cnt_main {
  padding: 60px 0px 0;
}

.provide_main {
  position: relative;
  z-index: 99;
}

.footer_icon a:hover {
  box-shadow: 0px 0px 20px 0px var(--c2);
  border-radius: 100%;
  transform: translateY(-5px);
}

.color-black h4 {
  color: #000;
}

.color-black p {
  color: #000;
}

.faqs_section .section_title h4 {
  font-size: 70px;
  margin-bottom: 9px;
}

.faqs_section .section_title p {
  font-size: 20px;
}

.contact_info {
  position: relative;
  z-index: 1;
}

.quick_links li a:hover {
  color: var(--c2);
  transform: translateX(10px);
}


.test_img {
  width: 100%;
  height: 500px;
  text-align: center;
}

.test_img img {
  width: 80%;
  height: 100%;
  object-fit: cover;
  border-radius: 80px 0px 80px 80px;
  box-shadow: 20px 20px 0px 0px var(--c2);
}

section.test_time {
  padding: 70px 0px;
  background: #f8f0e9;
}

.test_cont h3 {
  font-family: var(--f3);
  font-weight: 600;
  font-size: 44px;
  margin: 0 0 22px;
  position: relative;
  line-height: 1.0;
}

.test_cont p {
  font-family: var(--f1);
  font-weight: 400;
  font-size: 14px;
  margin: 0 0 8px;
}

.test_cont h3::before {
  position: absolute;
  content: '';
  background: url(../images/title-bef.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 155px;
  height: 15px;
  right: 32px;
  bottom: 32px;
}

.test_cont ul li {
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 5px;
  position: relative;
}

.test_cont ul li::before {
  position: absolute;
  content: '';
  width: 7px;
  height: 7px;
  background: var(--c1);
  top: 10px;
  border-radius: 10px;
  left: 5px;
}

.test_cont h4 {
  font-size: 33px;
  font-family: var(--f2);
  font-weight: 600;
  margin: 12px 0px 4px;
}

.test_cont ul {
  margin-bottom: 15px;
}

.white_btn .themebtn i {
  transform: rotate(90deg);
}

.top_head a:hover {
  color: var(--c2);
}

.inner_cont li {
  padding-left: 19px;
  position: relative;
  margin-bottom: 7px;
  font-size: 14px;
  line-height: 1.9;
}

.inner_cont ul {
  margin: 15px 0px;
}

.inner_cont li::before {
  position: absolute;
  content: '';
  width: 7px;
  height: 7px;
  background: var(--c2);
  top: 10px;
  left: 4px;
  border-radius: 50px;
}

.inner_cont h4 {
  font-size: 23px;
  font-family: var(--f2);
  font-weight: 500;
  margin-top: 13px;
}

a.footer_logo {
  width: 170px;
  overflow: hidden;
  height: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 9px;
}

a.footer_logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.copyright {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 21px 0px;
  border-top: 1px solid #fff;
}

ul.copy_url {
  display: flex;
  align-items: center;
  gap: 23px;
}

ul.copy_url a {
  color: #fff;
  font-size: 13px;
  text-transform: capitalize;
}

ul.copy_url a:hover {
  color: var(--c2);
}

.process_main_cont .process_cont:nth-last-child(1) {
  margin: 0;
}

.sale_right_cont h4 {
  color: #fff;
  font-size: 36px;
  font-family: var(--f2);
  text-transform: capitalize;
  font-weight: 200;
}

.customer_love_head p {
  font-size: 14px;
  width: 38%;
  margin: 0;
}

.rotate_slider .testimonial_slider {
  transform: rotate(180deg);
}

.disclimer marquee {
  color: #fff;
  font-family: var(--f1);
  font-size: 15px;
}

.disclimer {
  padding: 2px 0px;
  margin-top: 20px;
}

.sale_right_cont h4 {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 30px;
}

.sale_left_cont p {
  color: #fff;
  font-size: 13px;
  width: 85%;
  line-height: 1.7;
}

.experties_cont p {
  text-transform: capitalize;
  font-family: var(--f2);
  font-weight: 600;
  font-size: 22px;
  margin: 0;
  transform: translateY(61px);
  transition: 300ms;
}

.experties_cont .para {
  font-size: 14px;
  font-weight: 400;
  transform: translateY(90px);
  transition: 500ms;
  opacity: 0;
}

a.expertise_img_card:hover .experties_cont p {
  transform: none;
  opacity: 1;
}

a.expertise_img_card::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 0;
  background: linear-gradient(45deg, black, transparent);
  bottom: 0;
  left: 0;
  transition: 500ms;
  z-index: 1;
}

a.expertise_img_card:hover::before {
  height: 100%;
}

.banner_cont ul li {
  padding-left: 23px;
  margin-bottom: 6px;
  line-height: 1.4;
  position: relative;
  font-size: 15px;
}

.banner_cont ul {
  margin: 13px 0px;
}

.banner_cont ul li::before {
  position: absolute;
  content: '';
  width: 7px;
  height: 7px;
  background: var(--c2);
  top: 7px;
  left: 6px;
  border-radius: 10px;
}

.turning_content h4 {
  font-size: 22px;
  font-family: var(--f2);
  text-transform: capitalize;
}

h3.heading2 {
  font-size: 27px;
}


/*about page css start*/

.about-page {
  background: #0d0f14;
  color: #d6d6d6;
  padding: 80px 0;
  font-family: 'Inter', sans-serif;
}

.page-header {
  text-align: center;
  margin-bottom: 60px;
}

.page-header h1 {
  font-size: 52px;
  color: #ffffff;
  font-family: var(--f3);
}

.page-header p {
  color: #9aa0aa;
  margin-top: 10px;
}

.about-card {
  display: flex;
  gap: 25px;
  background: #151922;
  border-radius: 14px;
  padding: 35px;
  margin-bottom: 40px;
}

.about-card .icon {
  font-size: 34px;
}

.about-card h2 {
  color: #ffffff;
  margin-bottom: 10px;
  font-family: var(--f3);
}

.about-section {
  margin-bottom: 60px;
}

.about-section h2 {
  font-size: 32px;
  color: #ffffff;
  font-family: var(--f3);
  margin-bottom: 30px;
  font-weight: 500;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.service-box {
  background: #151922;
  border-radius: 14px;
  padding: 25px;
  transition: 0.3s;
}

.service-box:hover {
  transform: translateY(-5px);
  background: #1c2230;
}

.service-box span {
  font-size: 28px;
}

.service-box h4 {
  color: #ffffff;
  margin: 15px 0 10px;
  font-family: var(--f1);
  font-size: 20px;
}

.note {
  margin-top: 25px;
  color: #aaa;
  font-size: 14px;
}

.values-list,
.serve-list {
  list-style: none;
  padding-left: 0;
}

.values-list li,
.serve-list li {
  background: #151922;
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 12px;
  font-family: var(--f1);
}

.warning {
  border-left: 4px solid #e67e22;
}

.cta-box {
  text-align: center;
  padding: 50px 30px;
  background: linear-gradient(135deg, #1e2533, #121418);
  border-radius: 18px;
}

.cta-box h2 {
  color: #ffffff;
  margin-bottom: 15px;
  font-size: 50px;
  font-family: var(--f2);
}

.cta-box p {
  color: #c5c5c5;
  margin-bottom: 25px;
}

.btn {
  display: inline-block;
  padding: 14px 34px;
  background: #6c8cff;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
}

.cta-box .section_btn {
  justify-content: center;
}

section.about-page p {
  font-family: var(--f1);
}

.content p {
  font-size: 15px;
}

.service-box p {
  margin: 0;
  font-size: 14px;
}


.content ul {
  padding-left: 21px;
}

.content ul li {
  font-size: 15px;
  margin-bottom: 10px;
  list-style-type: disc;
  font-family: var(--f1);
}

/*about page css start*/
 
.footer_main p a {
  color: #fff;
  font-size: 13px;
}

.sale_sect .row {
    margin-bottom: 40px;
}


a.expertise_img_card:hover {
    transform: scale(1.1);
    z-index: 99;
}

.white_btn a {
    width: 32%;
}

.ghost_provide .section_title::before {
    top: -85% !important;
    right: -30%;
}

.expertise_sect .section_title::before {
    right: -120px;
    top: -130px;
}

@keyframes startBlush {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 0px rgba(255, 215, 0, 0.4));
        opacity: 0.8;
    }

    50% {
        transform: scale(1.15) rotate(5deg);
        filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.9));
        opacity: 1;
    }

    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 0px rgba(255, 215, 0, 0.4));
        opacity: 0.8;
    }
}