@import url("https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}
p{
  color: #6e6e6e !important;
}
body {
  font-family: "Lexend Deca", serif;
}

a {
  text-decoration: none !important;
  display: inline-block !important;
}
img {
  width: 100%;
  display: block;
}
ul {
  padding: 0;
  margin: 0;
}
p {
  color: var(--c4);
  padding: 0;
  margin: 0;
  line-height: 30px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}

/* Colors Root */

:root {
  --c1: #a08021; /* Golden */
  --c2: #fff; /* White */
  --c3: #15233c; /* Dark Blue */
  --c4: #222021; /* Background Color */
}

/* Web Selection */

::selection {
  background: var(--c3);
  color: var(--c2);
}

/* Loader */

/* loader-css */

div#preloader {
  position: fixed;
  z-index: 999999999;
  background: var(--c2);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
}
.custom-loader {
  width: 50px;
  height: 50px;
  display: grid;
  border: 4px solid #0000;
  border-radius: 50%;
  border-color: var(--c1) #0000;
  animation: s6 1s infinite linear;
}
.custom-loader::before,
.custom-loader::after {
  content: "";
  grid-area: 1/1;
  margin: 2px;
  border: inherit;
  border-radius: 50%;
}
.custom-loader::before {
  border-color: var(--c3) #0000;
  animation: inherit;
  animation-duration: 0.5s;
  animation-direction: reverse;
}
.custom-loader::after {
  margin: 8px;
}

@keyframes s6 {
  100% {
    transform: rotate(1turn);
  }
}
#preloader.remove {
  opacity: 0 !important;
  visibility: hidden !important;
}

/* Spacing */

.spacing {
  padding: 60px 0px;
}

/* Container Fluid */

.container-fluid {
  max-width: 1700px;
}

/* Wrapper */

.wrapper {
  overflow: hidden;
}

/* WEB BUTTON TWO */

.web-btn a {
  border: 1px solid rgb(128 128 128 / 32%);
  padding: 12px 15px 12px 65px;
  position: relative;
  border-radius: 5px;
  color: var(--c3);
  font-weight: 500;
  font-size: 15px;
  transition: all 0.7s;
  z-index: 1;
}

.web-btn a::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 85%;
  content: "";
  background-color: var(--c1);
  border-radius: 5px;
  left: 4px;
  transition: all 0.7s;
  z-index: -1;
}

.web-btn a i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--c2);
  left: 18px;
  transition: all 0.7s;
}

.web-btn a:hover {
  padding: 12px 65px 12px 15px;
  color: var(--c2);
}

.web-btn a:hover::before {
  width: 95.5%;
}

.web-btn a:hover i {
  left: 82%;
}

/* Main Title */

.main-title h4 {
  color: var(--c4);
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.main-title h2 {
  color: var(--c3);
  font-size: 42px;
  text-transform: capitalize;
}
.banner-video{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    height: 100vh;
}
/* Bg Shape Title */

.bg-shape-title span {
  display: inline-block;
  position: relative;
  z-index: 2;
}
.bg-shape-title span:before {
  position: absolute;
  /* content: ""; */
  top: 50%;
  left: -5%;
  width: 110%;
  background-color: var(--c3);
  z-index: -1;
  transform: rotate(-3deg) translateY(-50%);
  box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.25);
  border-radius: 6px;
  height: 100%;
}

/* WEB BTN */

.main-btn a {
  font-weight: 600;
  background-color: var(--c1);
  padding: 15px 30px;
  border-radius: 6px;
  box-shadow: 2px 3px 8px 0px rgba(0, 0, 0, 0.13);
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: var(--c2);
  font-size: 18px;
}

.main-btn a::before {
  width: 0%;
  height: 100%;
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  background-color: var(--c3);
  transition: all 0.7s;
  z-index: -1;
}

.main-btn a:hover::before {
  width: 100%;
  left: 0;
  right: unset;
}

.main-btn a:hover {
  /* color: var(--c2); */
}

/* Responsive Menu */

.responsive-btn a {
  padding: 10px 26px;
}
.responsive-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--c2);
  z-index: 9999;
  transition: all 0.5s;
}
.responsive-links ul li ul {
  display: none;
}
.responsive-links ul li i {
  transition: transform 0.3s ease;
}

.responsive-menu.active {
  left: 0;
}
.responsive-links ul li ul li {
  list-style: disc;
  color: var(--c3);
}
.responsive-menu-main {
  height: 100%;
  padding: 25px 40px;
  position: relative;
}
.responsive-logo {
  width: 50%;
  margin-bottom: 30px;
}
.responsive-links ul li a {
  color: var(--c4);
  padding: 10px 0px;
  display: block !important;
  font-weight: 600;
}
.responsive-links ul li {
  border-bottom: 1px solid #8080803d;
  position: relative;
}
.resp-social {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--c3);
  padding: 6px 0px;
}
.responsive-icon a i {
  display: block;
}
.responsive-icon {
  position: absolute;
  top: 30px;
  right: 30px;
}
.responsive-icon a {
  color: var(--c3);
  font-size: 30px;
}
.responsive-links ul li:last-child {
  border: 0;
}
body.scroll-stop {
  overflow: hidden;
}
.resp-social ul {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.resp-social ul li a i {
  display: block;
}
.resp-social ul li a {
  padding: 10px;
  color: var(--c2);
  font-size: 18px;
}
.responsive-links ul li i {
  position: absolute;
  right: 0;
  top: 13px;
  color: var(--c3);
}
.responsive-links ul li ul {
  padding-left: 30px;
  border-top: 1px solid #8080803d;
}
.responsive-links ul li i.active::before {
  content: "\f068";
}

/* HEADER */

.sub-header {
  background-color: var(--c1);
  padding: 10px 0px;
}

.sub-header-info ul {
  display: flex;
  gap: 20px;
}

.sub-header-info ul li,
.sub-header-info ul li a {
  color: var(--c2);
  font-size: 14px;
  transition: all 0.5s;
}

.sub-header-info ul li i {
  color: var(--c3);
  margin-right: 6px;
}

.sub-header-social ul {
  display: flex;
  justify-content: end;
  gap: 20px;
}

.sub-header-social ul li a {
  color: var(--c2);
  transition: all 0.5s;
}

.sub-header-social ul li a:hover {
  color: var(--c3);
}

.sub-header-info ul li a:hover {
  color: var(--c2);
}
.sub-header-social ul li:last-child {
    border-left: 1px solid #ffffff;
    padding-left: 11px;
}
.head-logo a {
  display: block !important;
  width: 120px;
}

.header {
  /* padding: 20px 0px; */
  box-shadow: 0px 5.77px 86.5px 0px rgba(0, 0, 0, 0.08);
}
.head-numb a i {
  margin-right: 10px;
}
.nav-bar nav ul {
  display: flex;
  gap: 35px;
  justify-content: center;
}

.head-btns {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: end;
}
.main-header {
    background: var(--c3);
}
.head-buton a {
    color: var(--c2);
    border: 1px solid rgb(255 255 255 / 32%);
}
.head-numb a {
  color: var(--c3);
  font-weight: 500;
  transition: all 0.5s;
}

.nav-bar nav ul li a {
  font-weight: 500;
  color: var(--c2);
  transition: all 0.5s;
  position: relative;
  padding: 30px 0px;
}

.nav-bar nav ul li a::before {
  position: absolute;
  content: "";
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background-color: var(--c1);
  border-radius: 50%;
  transition: all 0.5s;
  visibility: hidden;
  opacity: 0;
}

.nav-bar nav ul li a:hover::before {
  visibility: visible;
  opacity: 1;
}

.nav-bar nav ul li a:hover {
  color: var(--c1);
}

.head-numb a img {
  width: 30px;
}

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

.nav-bar nav ul li ul {
  position: absolute;
  flex-direction: column;
  gap: 0px;
  background-color: var(--c2);
  z-index: 99;
  width: 280px;
  transform: scaleY(0);
  transition: all 0.5s;
  transform-origin: top;
  left: -20px;
  top: 100%;
}

.nav-bar nav ul li {
  position: relative;
}

.nav-bar nav ul li ul li a {
  display: block !important;
  padding: 10px 20px;
  color: var(--c1);
}

.nav-bar nav ul li ul li a::before {
  display: none;
}

.nav-bar nav ul li ul li a:hover {
  background-color: var(--c3);
  color: var(--c2);
}

.nav-bar nav ul li:hover ul {
  transform: scaleY(1);
}

/* Banner */

.main-home {
  /* position: relative; */
}
.banner-content-main span:before {
  height: 120%;
  border-radius: 20px;
}
.banner-content-main p:last-of-type {
  margin-top: 10px;
  color: #fff !important;
}
.banner {
  position: relative;
}
.banner-btn {
  margin-top: 60px;
}
.banner-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 3;
}

.banner-video video {
  object-fit: cover;
  width: 100%;
  display: block;
  height: 100%;
}
.banner-content-main h4 {
    color: var(--c2);
    font-size: 20px;
    margin-bottom: 10px;
    position: relative;
}

.banner-content-main h4 {
    position: relative;
    display: inline-block;
    padding-right: 180px; /* line ke liye space */
}
.banner-content-main h4 {
    position: relative;
    display: inline-block;
    padding-right: clamp(90px, 12vw, 180px);
}

.banner-content-main h4::before {
    position: absolute;
    content: '';
    left: 60%;
    top: 50%;
    transform: translateY(-50%);
    height: 1px;

    /* Minimum - Responsive - Maximum */
    width: clamp(70px, 24vw, 560px);
    background: var(--c2);
}
.banner-content-main h1 {
  text-transform: capitalize;
  color: var(--c2);
  font-size: 46px;
  margin-bottom: 20px;
}

.banner-content-main p {
  color: var(--c2);
}

.banner:before {
  position: absolute;
  content: "";
  background: #000000e0;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.banner-content-main {
  position: relative;
  z-index: 99;
}

.banner-btn a {
  /* border-color: 2px solid var(--c2); */
  /* color: var(--c2); */
  background: var(--c1);
}

/* SECTION ABOUT US */

.about-img.one {
  margin-bottom: 24px;
}

.about-content h2 {
  margin-bottom: 20px;
}
.about-content p {
  color: var(--c1);
  margin-bottom: 15px;
}
.about-content {
  padding-left: 20px;
}
.about-img img {
  object-fit: cover;
  transition: all 0.5s;
}
.about-img img:hover {
  transform: scale(1.1);
}

.about-img {
  overflow: hidden;
  border-radius: 15px;
}
.about-img.three img {
  height: 300px;
}
.about-us {
  position: relative;
}
.about-top-img {
  position: absolute;
  top: -40px;
  right: 0;
  width: 30%;
  opacity: 0.6;
  z-index: -1;
}
.about-cent-img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20%;
  z-index: -1;
}

/* About Us Page */

.about-us-image {
  position: relative;
  border: 1px solid var(--c3);
  padding: 20px;
}

.about-us-image:before {
  position: absolute;
  content: "";
  bottom: -20px;
  left: -20px;
  width: 100%;
  height: 85%;
  background-color: var(--c3);
  z-index: -1;
}
.about-us-title p {
  margin-top: 15px;
}

.about-us-image img {
  height: 550px;
  object-fit: cover;
}

.about-us-title {
  padding-left: 20px;
}

/* Error 404 */

.error {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 100dvh;
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
}
.error404 .inner-header {
  display: none;
}
.error-content h2 {
  color: var(--c2);
}
.error:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #000000c2;
}
.error-content {
  position: relative;
}
.error-content p {
  color: var(--c2);
  margin: 0px 0px 30px 0px;
}

/* Mission */

.mission-content-image {
  overflow: hidden;
  border-radius: 15px;
}

.mission-content-image img {
  transition: all 0.5s;
}

.mission-content-image img:hover {
  transform: scale(1.1);
}

.mission-content h2 {
  margin-bottom: 15px;
}

.mission-content ul li {
  list-style: disc;
}

.mission-content ul {
  padding-left: 20px;
}

/* SECTION SAFER TOMORROW */

.safer-tomorrow {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}
.safer-btn {
  text-align: center;
  margin-top: 20px;
}
.safer-img-main {
  display: flex;
  gap: 50px;
  justify-content: end;
}
.safer-tomorrow::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0000007d;
  z-index: 0;
}
.safer-img {
  width: 370px;
}
.safer-content h4 {
  color: var(--c2);
  /* text-transform: uppercase; */
  /* font-size: 20px; */
  /* font-weight: 600; */
  /* margin-bottom: 15px; */
}
.safer-content h2 {
  color: var(--c2);
  margin-bottom: 40px;
}

/* SECTION TESTIMONIAL */

.testimonial {
  background-color: var(--bg);
}

.testi-title h2,
.project-title h2 {
  color: var(--c3);
  position: relative;
  padding-bottom: 25px;
}

.testi-title {
  padding-right: 0;
}

.testi-item p {
  /* font-size: 22px; */
  /* font-weight: 400; */
  color: var(--c4);
  margin-bottom: 10px;
}

.testi-item span {
  font-size: 20px;
  font-weight: 400;
  color: rgba(167, 167, 167, 1);
}

.myTesti .swiper-pagination {
  position: unset;
  text-align: left;
  margin-top: 40px;
  display: flex;
  gap: 10px;
}
.testi-item ul {
  display: flex;
  color: var(--c3);
}
.myTesti .swiper-pagination span {
  width: 10px;
  height: 10px;
  border-radius: 0px;
  background-color: var(--c1);
  opacity: unset;
}

.myTesti .swiper-pagination span.swiper-pagination-bullet-active {
  background-color: var(--c3);
}

.testi-title h2::before {
  transform: unset;
  left: 0;
}

/* FAQ's */

.audience-faqs .accordion-item {
  border: 0;
  margin-bottom: 40px;
}
.audience-faqs .accordion-button span {
  margin-right: 10px;
  display: inline-block;
}
.page-template-about-us .faq-title,
.page-template-about-us .audience-faqs {
  padding-left: 20px;
}
.audience-faqs .accordion-button {
  font-size: 22px;
  font-weight: 600;
  color: var(--c4);
  padding: 0px;
  box-shadow: unset;
  background: unset;
}
.audience-img img {
  transition: all 0.5s;
  height: 440px;
  object-fit: cover;
}

.audience-img img:hover {
  transform: scale(1.1);
}

.audience-img {
  overflow: hidden;
  border-radius: 15px;
}
.audience-faqs .accordion-button::after {
  background-image: unset;
  content: "\f067";
  font-family: "Font Awesome 5 Pro";
  transform: unset;
}

.audience-faqs .accordion-button:not(.collapsed)::after {
  content: "\f068";
}

.audience-faqs .accordion-body {
  padding: 20px 0px 0px 0px;
  font-size: 17px;
  font-weight: 400;
  color: rgba(167, 167, 167, 1);
  line-height: 1.8;
}

.audience-faqs {
  margin-top: 40px;
}

.audience-faqs .accordion-button:not(.collapsed) {
  color: var(--c3);
}

.audience-title > h2 {
  font-size: 44px;
}

.audience-title {
  padding-right: 150px;
}

.audience-faqs .accordion-item:last-child {
  margin-bottom: 0px;
}

.audience {
  position: relative;
}

/* News & Article */

.news-main {
  display: flex;
  align-items: center;
  border: 1px solid var(--c3);
  border-radius: 15px;
  gap: 15px;
  padding: 20px;
}
.news-content {
  flex: 0 0 80%;
}
.news-title {
  margin-bottom: 40px;
}
.news-content a {
  display: block !important;
}
.load-more-btn {
  text-align: center;
  margin-top: 30px;
}
.news-image {
  border-radius: 15px;
  overflow: hidden;
  flex: 0 0 20%;
}
.news-image img {
  transition: all 0.5s;
  height: 140px;
  object-fit: cover;
}
.news-box:hover .news-image img {
  transform: scale(1.1);
}
.news-content h2 {
  font-size: 24px !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-content h4:before {
  display: none;
}
.news-content p {
  color: #ababb2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-content h4 {
  font-size: 14px;
}

/* Blogs Single */

.recent-title h4 {
  position: relative;
  margin-bottom: 40px;
  color: var(--c1);
}
.recent-title h4:after {
  position: absolute;
  content: "";
  background: var(--c3);
  width: 135px;
  height: 4px;
  left: 0px;
  top: 34px;
}
.the-date {
  color: var(--c3);
}
.blog-single-wrap h4 {
  margin-top: 30px;
  color: var(--c3);
  margin-bottom: 10px;
}

.blog-user-info ul {
  display: flex;
  margin-top: 40px;
  gap: 40px;
  color: var(--c3);
}

.blog-user-info ul li i {
  margin-right: 10px;
}
.recent-image img {
  width: 100px;
  height: 80px;
  object-fit: cover;
}
.recent-main {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 10px 0;
  color: var(--c2);
}
.recent-content a {
  color: var(--c1);
  font-weight: 600;
  transition: all 0.5s;
}
.recent-content a:hover {
  color: var(--c3);
}
.blog-single-image img {
  transition: all 0.5s;
}
.blog-single-image {
  overflow: hidden;
  border-radius: 20px;
}
.blog-single-image img:hover {
  transform: scale(1.1);
}

/* Who We Are */

.who-we-are-content ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.who-we-are-content p {
  padding: 20px 0px;
}
.who-we-are-content ul li {
  background-color: var(--c3);
  color: var(--c2);
  padding: 10px 20px;
  border-radius: 6px;
  width: max-content;
}
.who-we-are-image img {
  height: 550px;
  object-fit: cover;
  border-radius: 15px;
}
.who-we-are-content ul li i {
  background: var(--c2);
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
  color: var(--c4);
  font-size: 14px;
  margin-right: 10px;
}

/* SECTION OUR EXPERTISE */

.expertise-title p {
  padding-bottom: 20px;
}
.expert-img img {
  width: 320px;
  height: 280px;
  margin: 0 auto;
  object-fit: contain;
}

.expert-img {
  padding: 60px 0px;
}
.page-template-services .simp-serv-item {
  margin: 0px 0px;
}

.expert-content {
  background-color: #f9f9f9;
  padding: 0px 160px;
  text-align: center;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.expert-content p {
  margin: 20px 0px 35px 0px;
}

.expert-content a {
  color: rgb(117 117 117);
  position: relative;
  transition: all 0.5s;
  text-decoration: underline;
  width: max-content;
  margin: 0 auto;
}

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

.expert-content a::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: var(--c1);
  border-radius: 50%;
  left: -18px;
}

.expert-content h4 {
  font-weight: 600;
}

.our-expertise .row:nth-child(2) .col-lg-4:nth-child(2) .expert-item {
  display: flex;
  flex-direction: column-reverse;
}

.expertise-title {
  margin-bottom: 40px;
  position: relative;
  text-align: center;
}

.expertise-title img {
  /* position: absolute; */
  /* left: -20px; */
  /* width: 200px; */
  /* top: 50%; */
  /* transform: translateY(-50%); */
}

.simp-serv-item {
  /* border: 1px solid #d3d3d3; */
  padding: 30px 30px;
  border-radius: 10px;
  transition: all 0.5s;
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 291px;
  margin: 0px 10px;
  box-shadow: 0px 0px 50px -20px var(--c1);
  text-align: center;
}

.simp-serv-item img {
  height: 70px;
  object-fit: contain;
  width: max-content;
  transition: all 0.5s;
}

.simp-serv-item h3 {
  color: var(--c3);
  margin: 20px 0px 15px 0px;
  font-size: 22px;
  font-weight: 600;
}

.simp-serv-item h3,
.simp-serv-item p,
.simp-serv-item a,
.simp-serv-item a::before {
  transition: all 0.5s;
}

.simp-serv-btn {
  margin-top: 40px;
}

.simp-serv-item:hover {
  border-color: var(--c1);
}

.simp-serv-item:hover h3,
.simp-serv-item:hover p,
.simp-serv-item:hover a {
  color: var(--c2) !important;
}

.simp-serv-item:hover a::before {
  background-color: var(--c2);
}

.simp-serv-item a {
  position: absolute;
  color: var(--c1);
  margin-top: 20px;
  text-transform: uppercase;
  padding-left: 20px;
  bottom: 40px;
  px; */
;
  left: 50%;
  transform: translateX(-50%);
}

.simp-serv-item a::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: var(--c1);
  border-radius: 50%;
  left: 0;
}

.simp-serv-item::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  transform: scale(0);
  width: 100%;
  height: 100%;
  background-color: var(--c3);
  border-radius: 50%;
  transition: all 0.5s;
  z-index: -1;
}
.expertise-title p {
}
.simp-serv-item:hover::before {
  transform: scale(1);
  border-radius: 0px;
}

.simp-serv-item:hover img {
  filter: invert(100);
}

.our-expertise {
  position: relative;
  margin-bottom: 100px;
}

.service-slider .slick-arrow {
  position: absolute;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--c3);
  border-radius: 50%;
  color: var(--c2);
  transition: all 0.5s;
  cursor: pointer;
  top: -60px;
}

.service-slider .slick-next {
  right: 0;
}
.service-title-image {
  width: 13%;
  margin: 0 auto;
  position: absolute;
  top: -150px;
}
.service-slider .slick-prev {
  right: 80px;
}

/* Service Single Page */

.single-content-img img {
  height: 500px;
  object-fit: cover;
}
.postid-113 .single-content-img img {
  object-position: top;
}
.single-content-img {
  margin-bottom: 30px;
}

.single-content-main h2 {
  margin-bottom: 15px;
  color: var(--c3);
  font-size: 30px;
  font-weight: 700;
}

.single-content-main p {
  margin-bottom: 15px;
}

.single-content-main h3 {
  font-size: 22px;
  color: var(--c2);
  margin-bottom: 15px;
  font-weight: 600;
}

.single-content-img img {
  transition: all 0.5s;
  object-position: bottom;
}

.single-inner-img:hover img,
.single-content-img:hover img {
  transform: scale(1.1);
}

.single-content-img {
  overflow: hidden;
  border-radius: 8px;
}

.side-links-main h2 {
  margin-bottom: 20px;
}

.single-inner-img {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 10px 10px 10px -4px var(--c3);
  padding: 10px;
}

.single-inner-img img {
  object-fit: cover;
  transition: all 0.5s;
}

.single-inner-img,
.single-inner-list {
  margin-top: 50px;
}

.single-inner-list ul li {
  color: var(--c1);
  margin-bottom: 15px;
  position: relative;
  padding-left: 26px;
  font-weight: 600;
}

.single-inner-list ul li:before {
  position: absolute;
  top: 4px;
  left: 0;
  font-size: 13px;
  color: var(--c3);
  content: "\f00c";
  font-family: "Font Awesome 5 Pro";
}

/* Portfolio */

.portfolio-title {
  margin-bottom: 40px;
}
.gallery-items-main {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 13px;
}
.gallery-item.item2 {
  grid-column: 1/5;
}
.gallery-item img {
}
.gallery-item.item1 img {
  height: 450px;
  object-fit: cover;
  object-position: top;
}
.gallery-item.item4 img,
.gallery-item.item3 img,
.gallery-item.item2 img {
  height: 500px;
  object-fit: cover;
}

.gallery-item.item5 img,
.gallery-item.item6 img {
  height: 450px;
  object-fit: cover;
}
.gallery-item.item5 {
  grid-column: 1/7;
}
.gallery-item.item6 {
  grid-column: 7/13;
}
.gallery-item.item1 {
  grid-column: 1/13;
}
.gallery-item.item3 {
  grid-column: 5/9;
}
.gallery-item.item4 {
  grid-column: 9/13;
}
.gallery-title {
  margin-bottom: 50px;
}
.gallery-item {
  overflow: hidden;
}
.gallery-item img {
  transition: all 0.5s;
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-item a {
  height: 100%;
  display: block !important;
}

/* Contact Us */

.contact-form-main {
  padding: 60px 0;
}

.contact-us-content h2,
.contact-us-content p {
}

.contact-us-content {
  text-align: center;
  margin-bottom: 43px;
}

.contact-us-content p {
  padding: 20px 0px;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  outline: 0;
  border-radius: 0.33rem;
  box-shadow: 0px 3px 16px #04373c33;
  border: 0;
  padding: 20px 10px !important;
  transition: all 0.5s;
}

.form-field {
  margin-bottom: 20px;
}

.submit-btn input {
  width: 100%;
  border: 0;
  padding: 23px 0px;
  background: var(--c1);
  color: var(--c2);
  border-radius: 0.33rem;
  box-shadow: 0px 3px 16px #04373c33;
  font-size: 26px;
  transition: all 0.5s;
}

.submit-btn input:hover {
  background: var(--c2);
  color: var(--c1);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  box-shadow: 0px 3px 2px var(--c3);
}
.bg-prop {
  background-size: cover;
  background-position: center;
}
.contact-us .wpcf7-response-output {
  color: var(--c3);
}
.contact-us .wpcf7-not-valid-tip {
  color: #3aafd6a8;
}
.contact-us .wpcf7 form.invalid .wpcf7-response-output {
  border-color: var(--c3);
}
.contact-us .wpcf7 form .wpcf7-response-output {
  margin: 0;
}
.contact-us .container-fluid {
  max-width: unset;
}

/* Reviews */

.customer-reviews {
  position: relative;
}
.client-about ul {
  display: flex;
  color: var(--c3);
}
.customer-reviews-title {
  margin-bottom: 40px;
}
.customer-say {
  padding: 0px 10px;
  height: 120px;
  overflow-y: scroll;
}
.customer-say::-webkit-scrollbar {
  width: 3px;
}
.customer-say::-webkit-scrollbar-track {
  background: var(--c2);
}
.customer-say::-webkit-scrollbar-thumb {
  background: var(--c3);
}
.customer-reviews-main {
  padding: 30px;
  border-radius: 20px;
  background: var(--c2);
  box-shadow: 0px 0px 15px 0px #fd0307;
  height: 260px;
}
.client-profile {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 15px;
}
.client-profile-icon img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50px;
}
.customer-reviews-main:hover {
  /* box-shadow: 0px 0px 10px 0px var(--c3); */
}
.customer-reviews .client-profile-icon img {
  width: 55px;
  height: 55px;
}
.customer-reviews .client-about h4 {
  font-size: 18px;
  letter-spacing: 0;
  font-weight: 500;
}
.customer-reviews .client-about h5 {
  color: #bfbfbf;
  font-size: 15px;
  font-weight: 300;
}

/* Location */

.location-title {
  text-align: center;
  margin-bottom: 40px;
}

.contact-map iframe {
  width: 100%;
  height: 450px;
  border-radius: 15px;
}

/* inner-wrapper */

.inner-header {
  height: 400px;
  background-position: center !important;
  background-attachment: fixed !important;
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
  background-size: cover !important;
}
.inner-header:before {
  width: 100%;
  height: 100%;
  content: "";
  background: rgb(0 0 0 / 90%);
  position: absolute;
  left: 0;
  top: 0;
}
.inner-header .container {
  position: relative;
}
.inner-header .inner-header-title h2 {
  color: #fff;
  font-size: 50px;
  font-weight: 700;
  text-transform: uppercase;
}
.inner-header-title p {
    color: var(--c2) !important;
    margin-top: 9px;
}
/* Footer CSS */
.footer-social-main ul {
    display: flex;
    gap: 0px;
}
.footer-social-main ul li a i {
    color: var(--c3);
    height: 32px;
    width: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 33px;
    transition: all.5s;
    font-size: 19px;
    background: var(--c2);
}
.footer-links ul li a {
    color: var(--c2);
    transition: all.5s;
}
.footer-links ul li {
    line-height: 29px;
}
.footer-title h3 {
    margin-bottom: 14px;
    font-size: 22px;
    color: var(--c2);
}
.footer-links ul li a:hover {
    color: var(--c1);
    padding-left: 7px;
}
.f-contact-info ul li {
    padding-bottom: 14px;
}
.pry-links p {
    text-align: center;
    color: var(--c2);
}

.pry-links p a {
    color: #57a745;
    font-weight: 800;
}
.f-contact-info ul li a {
    color: var(--c2);
    transition: all.5s;
}

.f-contact-info ul li a:hover {
    color: var(--c1);
}

.f-contact-info ul li i {
    color: var(--c2);
    margin-right: 11px;
}

.pry-links.text-center ul {
    display: flex;
    gap: 7px;
}

.pry-links.text-center ul li a {
    color: var(--c2);
}
.footer-logo img {
    width: 182px;
}

.footer-social-main p {
    padding: 23px 31px 8px 0px;
    color: var(--c2) !important;
}
.footer-bottom .for-bg {
    border-top: 2px solid #868686;
    color: var(--c2);
    padding: 32px 40px 0;
    margin: 45px auto 30px;
}
.pry-links ul {
    display: flex;
    gap: 6px;
    justify-content: end;
}
.pry-links ul li a {
    color: var(--c2);
}

.copyrights p {
    color: var(--c2) !important;
    /* text-align: center; */
}
.footer-bottom {
    padding-bottom: 1px;
}
.footer {padding: 100px 0 0;margin-top: 63px;border-top: 1px solid #dcdcdc;background: var(--c3);}
.foot-socials ul li a {
  font-size: 18px;
  color: var(--c3);
  transition: all.5s;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
  text-align: center;
  background: var(--c2);
}
.copyrights {
  text-align: end;
}
.made-by a {
  color: var(--c3);
}
.head-logo img {
    width: 240px;
}
.project-image {
    margin: 7px 10px;
}
.project-image img {
    border-radius: 4px;
}
.package-tab-btns ul {
    display: flex;
    justify-content: center;
    margin: 20px 0 40px 0;
}
/* Counter */
.perf-box {text-align: center;}

.performance {
    padding: 70px 0 0;
}
.perf-content h4 {
    font-size: 16px;
}

.perf-content h2 {font-weight: 600;font-size: 39px;}
.more-text h3 {
    color: var(--c3);
    font-size: 21px;
    margin: 0px 0 20px;
}

.performance .row:first-child {
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 60px;
}

.capture-btn-main {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 41px;
}
.capture-sec {
    padding: 50px 0;
    background: #f8f9fa;
}
.capture-content {
    text-align: center;
}
.capture-content h2 {
    margin: 10px 0 40px;
}
.live-chat a {
    background: var(--c1);
    padding: 9px 20px;
    border-radius: 5px;
    color: var(--c2);
    transition: all.5s;
    border: 1px solid #c9c9c9;
}
.chapter-number a {
    background: var(--c1);
    color: var(--c2);
    padding: 8px 16px;
    border-radius: 3px;
}
.live-chat a:hover {
    background: var(--c3);
    color: var(--c2);
}


   
.prof-sec {
    padding: 90px 0;
    background: #f8f9fa;
}

.prof-title h2 {
    margin-bottom: 25px;
    text-align: center;
    font-size: 36px;
    font-weight: 700;
}

/* What we DO css */


.packages-section h2.section-title {
    margin-bottom: 24px;
}
.process-section {
      padding: 100px 0;
      /* background: #f8f9fa; */
    }
    
    .section-title {
      text-align: center;
      font-size: 2.8rem;
      font-weight: 700;
      margin-bottom: 70px;
      color: #222;
    }

    .process-card {
      text-align: center;
      padding: 35px 20px;
      background: white;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      transition: all 0.4s ease;
      position: relative;
      padding: 61px 80px;
      margin-bottom: 58px;
    }

    .process-card:hover {
      transform: translateY(-12px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    }

    .icon-circle {
      width: 110px;
      height: 110px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 48px;
      color: #000000;
      background: var(--c1);
    }
.strategy {
    position: absolute;
    left: -30px;
    top: -50px;
}
.icon-circle h3 {
    color: var(--c2);
    font-size: 39px;
}
.design {
    position: absolute;
    right: -50px;
    top: -50px;
}
    .process-card h4 {
      font-size: 40px;
      font-weight: 600;
      margin-bottom: 18px;
      color: var(--c1);
    }

    .process-card p {
      font-size: 0.95rem;
      color: #555;
      line-height: 1.65;
    }

    /* Only Icon Colors */
    .strategy    .icon-circle { background: linear-gradient(135deg, #f1c40f, #f39c12); }
    .design      .icon-circle { background: linear-gradient(135deg, #e67e22, #d35400); }
    .development .icon-circle { background: linear-gradient(135deg, #e74c3c, #c0392b); }
    .uat         .icon-circle { background: linear-gradient(135deg, #3498db, #2980b9); }
    .deployment  .icon-circle { background: linear-gradient(135deg, #2ecc71, #27ae60); }
/* Pricing */

.package-card {
      background: white;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      height: 100%;
      transition: all 0.4s ease;
    }

    .package-card:hover {
      transform: translateY(-15px);
      box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
    }

    .package-header {
      padding: 25px 20px;
      text-align: center;
      color: white;
      font-weight: 600;
    }

    .package-body {
      padding: 30px 25px;
      text-align: center;
    }

    .price {
      font-size: 2.2rem;
      font-weight: 700;
      margin: 15px 0;
      color: #222;
    }

    .feature-list {
      text-align: left;
      margin: 25px 0;
      padding-left: 0;
      list-style: none;
    }

    .feature-list li {
      padding: 8px 0;
      color: #444;
      border-bottom: 1px solid #eee;
    }

    .feature-list li:last-child {
      border-bottom: none;
    }

    /* Styled Link instead of Button */
    .btn-link {
      display: inline-block;
      background: var(--c1);
      color: white;
      text-decoration: none;
      padding: 12px 30px;
      border-radius: 50px;
      font-weight: 600;
      margin-top: 15px;
      transition: all 0.3s ease;
    }

    .btn-link:hover {
      background: var(--c3);
      transform: scale(1.05);
      color: white;
    }

    /* Header Colors */
    .essential-header    {background: var(--c3);}
    .essential-plus-header {background: var(--c3);}
    .professional-header  { background: var(--c3); }
    .launch-header        {background: var(--c3);}
.packages-section {
    padding: 90px 0;
    background: #f8f9fa;
    margin-bottom: 60px;
}
.package-tab-btns .nav-link:hover {
    color: var(--c3);
}
.package-tab-btns .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    background-color: var(--c1);
    color: var(--c2);
}
.package-tab-btns ul li button {
    color: var(--c1);
}
.our-expertise {
    padding: 100px 0 10px;
}
/* Single Service */
.poetry-content-main h2 {
    font-size: 50px;
    color: var(--c2);
}
.poetry-content-main h3 {
    margin: 20px 0;
    color: var(--c1);
}
.poetry-content-main p {
    color: var(--c2) !important;
}

.about-us-images img {
    border-radius: 23px;
}
.single-service-sec {
    padding: 70px 0 70px;
    background: var(--c3);
    margin: 40px 0;
}
.poetry-btn {
    margin-top: 27px;
}
.service-book-images {
    margin: 0 10px;
}

.service-book-images img {
    border-radius: 10px;
}

.slick-next.slick-arrow img {
    width: 60px;
    right: 0px;
    position: absolute;
    top: -58px;
    top: -46px;
    cursor: pointer;
}

.slick-prev.slick-arrow img {
    width: 60px;
    right: 70px;
    position: absolute;
    z-index: 4;
    top: -46px;
    cursor: pointer;
}

.service-book-sec {
    padding: 50px 0px 20px 0;
    margin-top: 55px;
}

.about-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 285px;
    filter: opacity(0.3);
    display: none;
}
.image-two img {
    height: 540px;
    object-fit: cover;
}
.about-us-images {
  position: relative;
  margin-left: 70px;
}
.image-one img {
  height: 310px;
  object-fit: cover;
  position: relative;
  transition: all 0.5s;
}
.about-us-images:before {
  position: absolute;
  content: "";
  background-size: cover;
  background-position: center;
  background-image: url(/wp-content/uploads/2026/04/download.svg);
  width: 100px;
  height: 130px;
  top: 26%;
  left: -100px;
  animation: moveLeftRight 3s infinite ease-in-out;
  z-index: -1;
  filter: brightness(0.5);
}
@keyframes moveLeftRight {
  0% {
    left: -100px;
  }
  50% {
    left: -80px;
  }
  100% {
    left: -100px;
  }
}

.image-one:before,
.image-one:after {
  content: "";
  position: absolute;
  width: 0%;
  height: 0%;
  background: #1f1917;
  opacity: 0;
  z-index: 1;
  transition: all 0.8s ease;
}
.image-one:before {
  top: 0;
  left: 0;
}
.image-one:after {
  bottom: 0;
  right: 0;
}
.about-us:hover .image-one:before,
.about-us:hover .image-one:after {
  width: 100%;
  height: 100%;
  transition: all 0.8s ease;
}
.about-us:hover .image-one:before {
  opacity: 0.6;
}
.about-us:hover .image-one:after {
  opacity: 0.15;
}
.image-one-box {
  position: absolute;
  width: 80%;
  left: -200px;
  bottom: -80px;
}
.arthur-name-description {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  padding: 0px 40px;
  text-align: center;
  transition: all 0.7s;
}
.arthur-name-description h4 {
  color: var(--c2);
  margin-bottom: 15px;
  font-weight: 600;
}
.arthur-name-description p {
  color: var(--c2) !important;
}
.about-us:hover .arthur-name-description {
  opacity: 1;
  visibility: visible;
}
.about-us:hover .image-one img {
  transform: scale(1.1);
}
.image-one {
  overflow: hidden;
}
.slick-list.draggable {
    padding: 40px 0;
}
.safer-tomorrow {
    margin: 95px 0;
}
.single-serve h2 {
    font-size: 38px;
    margin-bottom: 14px;
}

.single-serve ul li {
    line-height: 39px;
    list-style: disc;
    color: #777777;
}

.single-serve ul {
    margin-left: 34px;
}
/* Popup */
.expert-popup {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 480px;
      background: #ffffff;
      border-radius: 16px;
      box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
      overflow: hidden;
      z-index: 10000;
      display: none;
      animation: popupFade 0.4s ease forwards;
    }

    @keyframes popupFade {
      from {
        opacity: 0;
        transform: translate(-50%, -55%) scale(0.95);
      }
      to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
      }
    }

    .popup-header {
      background: var(--c3);
      color: var(
      --c2);
      padding: 20px 24px;
      display: flex;
      align-items: center;
      gap: 16px;
      position: relative;
    }

    .header-icon {
      width: 48px;
      height: 48px;
      background: #22c55e;
      color: white;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
    }

    .popup-header h2 {
      margin: 0;
      font-size: 20px;
      font-weight: 600;
      line-height: 1.3;
    }

    .popup-header p {
      margin: 4px 0 0 0;
      font-size: 14px;
      opacity: 0.85;
      color: var(--c2) !important;
    }

    .close-btn {
      position: absolute;
      top: 16px;
      right: 20px;
      background: rgba(255,255,255,0.15);
      color: white;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      cursor: pointer;
      transition: all 0.2s;
    }

    .close-btn:hover {
      background: rgba(255,255,255,0.25);
    }

    .popup-body {
      padding: 24px;
    }

    .feature {
      display: flex;
      gap: 14px;
      margin-bottom: 18px;
      align-items: flex-start;
    }

    .feature-icon {
      width: 28px;
      height: 28px;
      background: #f1f5f9;
      color: #64748b;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      flex-shrink: 0;
    }

    .feature-text strong {
      font-size: 15px;
      color: #1e2937;
    }

    .feature-text p {
      margin: 2px 0 0 0;
      font-size: 14px;
      color: #64748b;
      line-height: 1.4;
    }

    .special-offer {
      background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
      border: 1px solid #86efac;
      border-radius: 12px;
      padding: 16px;
      margin: 24px 0;
    }

    .offer-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: #166534;
      color: white;
      font-size: 12px;
      font-weight: 600;
      padding: 4px 10px;
      border-radius: 20px;
      margin-bottom: 8px;
    }

    .buttons {
      display: flex;
      gap: 12px;
      margin-top: 8px;
    }

    .btn {
      flex: 1;
      padding: 14px 20px;
      border-radius: 10px;
      font-weight: 600;
      font-size: 15.5px;
      cursor: pointer;
      transition: all 0.3s ease;
      border: none;
    }

    .btn-primary {
      background: #22c55e;
      color: white;
    }

    .btn-primary:hover {
      background: #16a34a;
      transform: translateY(-1px);
    }

    .btn-secondary {
      background: transparent;
      color: #64748b;
      border: 2px solid #e2e8f0;
    }

    .btn-secondary:hover {
      background: #f8fafc;
      border-color: #cbd5e1;
    }
/* End */


/* Whatsapp */

.whtsapp-icon {
  position: fixed;
  bottom: 3%;
  left: 2%;
  box-shadow: 0px 0px 9px -4px;
  z-index: 9999;
}

.whtsapp-icon a {
  font-size: 35px;
  color: var(--c2);
  padding: 4px 14px;
  border-radius: 8px;
  background-color: #3ed53e;
}

.whtsapp-icon {
  animation: ring 6s 0.7s ease-in-out infinite;
  transform-origin: 50% 4px;
}

@keyframes ring {
  0% {
    transform: rotate(0);
  }

  1% {
    transform: rotate(10deg);
  }

  3% {
    transform: rotate(-18deg);
  }

  5% {
    transform: rotate(14deg);
  }

  7% {
    transform: rotate(-12deg);
  }

  9% {
    transform: rotate(10deg);
  }

  11% {
    transform: rotate(-18deg);
  }

  13% {
    transform: rotate(16deg);
  }

  15% {
    transform: rotate(-14deg);
  }

  17% {
    transform: rotate(12deg);
  }

  19% {
    transform: rotate(-10deg);
  }

  21% {
    transform: rotate(8deg);
  }

  23% {
    transform: rotate(-6deg);
  }

  25% {
    transform: rotate(4deg);
  }

  27% {
    transform: rotate(-2deg);
  }

  29% {
    transform: rotate(5deg);
  }

  31% {
    transform: rotate(-8deg);
  }

  33% {
    transform: rotate(6deg);
  }

  35% {
    transform: rotate(-4deg);
  }

  37% {
    transform: rotate(2deg);
  }

  39% {
    transform: rotate(-1deg);
  }

  41% {
    transform: rotate(1deg);
  }

  43% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(0);
  }
}
/* END */
.section-container {
      max-width: 1100px;
      margin: 0 auto;
      background: white;
      border-radius: 16px;
      box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
      overflow: hidden;
    }

    /* Tabs Styling */
    .nav-tabs-custom {
      background: #f8f5f0;
      padding: 15px 25px 0;
      border-bottom: 1px solid #e5e0d8;
    }

    .nav-tabs-custom .nav-link {
      color: #6b5e4e;
      font-weight: 500;
      padding: 14px 22px;
      margin: 0 4px;
      border: none;
      border-radius: 10px 10px 0 0;
      transition: all 0.3s ease;
    }

    .nav-tabs-custom .nav-link.active {
      background: white;
      color: #3a2f1f;
      font-weight: 600;
      box-shadow: 0 -3px 8px rgba(0,0,0,0.06);
    }

    .nav-tabs-custom .nav-link i {
      margin-right: 8px;
    }

    /* Accordion Styling */
    .faq-container {
      padding: 35px 40px;
    }

    .accordion-button {
      font-size: 1.08rem;
      font-weight: 500;
      color: #3a2f1f;
      padding: 22px 20px;
      background: white;
      border: none;
    }

    .accordion-button:not(.collapsed) {
      background: #f8f5f0;
      color: #3a2f1f;
    }

    .accordion-button::after {
      font-size: 1.6rem;
      color: #a38b6b;
    }

    .accordion-item {
      border: none;
      border-bottom: 1px solid #e5e0d8;
      border-radius: 0 !important;
    }

    .accordion-item:last-child {
      border-bottom: none;
    }

    .accordion-body {
      padding: 5px 20px 25px;
      color: #555;
      line-height: 1.75;
    }

    @media (max-width: 768px) {
      .faq-container {
        padding: 25px 20px;
      }
      .nav-tabs-custom {
        padding: 12px 15px 0;
        overflow-x: auto;
        white-space: nowrap;
      }
      .nav-tabs-custom .nav-link {
        padding: 12px 18px;
        font-size: 0.97rem;
      }
    }
.nav-tabs-custom ul {
    display: flex;
    justify-content: space-between;
}
.accordion-button:focus {
    border-color: #a08021;
    box-shadow: 0 0 0 .25rem rgb(160 128 33 / 18%);
}
.accordion-button:not(.collapsed)::after {
    filter: brightness(0.5);
}
.contact-us {
    background: #f7f7f7;
}
.faq_sec {
    padding: 90px 0 20px;
}
.footer-social-main ul li a i:hover {
    background: var(--c1);
    color: var(--c2);
    border: var(--c1);
}
.news-articles {
    margin: 80px 0;
}
.poilices-content ul {margin-left: 32px;}

.poilices-content h2 {
    margin: 80px 0 30px;
}
.poilices-content h3 {
    margin: 12px 0;
}
.poilices-content ul li {
    list-style: disc;
    line-height: 34px;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
	object-position: bottom;
}
.testi-dual-btn {
    display: flex;
    justify-content: center;
    gap: 22px;
    margin-top: 54px;
}
.contact-us-cont {
    margin-bottom: 35px;
    text-align: center;
}
.gform-footer input {
    background: var(--c1);
    color: var(--c2);
    padding: 15px 10px !important;
    font-size: 20px;
    transition: all.5s;
}
.gform-footer input:hover {
    background: var(--c3);
}
.contact-form-content i {
    font-size: 100px;
    color: var(--c1);
}

.contact-form-content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.contact-form-content h2 {
    width: 47%;
    text-align: center;
    margin-top: 14px;
    font-size: 50px;
}
.contact-us-sec {
    background: #f7f7f7;
    padding: 50px 0;
}
.who-we-are {
    background: #f8f9fa;
}
.footer-social-main p span {
    font-size: 20px;
}

.preloader {
    position: fixed;
    background-color: var(--c3);
    background-position: center center;
    background-repeat: no-repeat;
    inset: 0;
    z-index: 9991;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: opacity .5s ease, visibility .5s ease;
}

.preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.preloader__image {
    width: 180px;
    height: 180px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    animation: flipLogo 2s infinite;
}

@keyframes flipLogo {
    0% {
        transform: perspective(400px) rotateY(0deg);
    }

    50% {
        transform: perspective(400px) rotateY(180deg);
    }

    100% {
        transform: perspective(400px) rotateY(360deg);
    }
}

.capture-content  h2 {
    font-size: 38px;
    font-weight: 600;
}
span.for-clr-main-title {
    color: var(--c1);
}
.web-title h2 {
    font-size: 40px;
    font-weight: 700;
}
.prof-title h4 {
    text-align: center;
}


.web-title h4 {
    color: var(--c1);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: center;
    flex-wrap: wrap;
}

.web-title h4::before,
.web-title h4::after {
    content: '';
    flex: 1;
    height: 2px;
    background: var(--c1);
    min-width: 40px;
    max-width: 120px;
}
.footer-copy-main {
    display: flex;
    justify-content: space-between;
}
.foot-socials {display: flex;gap: 24px;align-items: center;}
.foot-socials ul {
    display: flex;
    gap: 12px;
}
.foot-socials ul li a:hover {
    background: var(--c1);
    color: var(--c2);
}
.bestseller-tomorrow {
    background: var(--c3);
    margin: 140px 0 10px;
}

.bestseller-image {
    width: 80%;
    margin: 0 auto;
}

.bestseller-content h3 {
    color: var(--c2);
    font-size: 37px;
    font-weight: bold;
}

.bestseller-content h4 {
    color: var(--c1);
}

.bestseller-content p {
    color: var(--c2) !important;
    margin: 10px 0 30px;
}
.process-section .row > div:nth-child(3) .process-card,
.process-section .row > div:nth-child(4) .process-card {
    margin: 0;
}
.prof-title p {
    margin-bottom: 24px;
}
.partner-logos-sec {
    background: var(--c3);
}

.parnter-slider-image img {
    width: 120px;
    margin: 0 auto;
}

.more-content{
    display:none;
}

.read-more-btn{
    display:inline-block;
    margin-top:15px;
    color:#0073ff;
    font-weight:600;
    text-decoration:none;
}

