@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  scroll-behavior: auto !important;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
}

:root {
  --SectionPadding: 70px 0;
  --HeadingFontSize: 55px;
  --BodyFontSize: 20px;
  --TitleFontSize: 52px;
  --buttonFontSize: 18px;
  --ServiceTitleFontSize: 32px;
  --FontHeading: "Nunito";
  --FontBody: "Open_Sans";
  --ButtonBg: #000;
  --Yellow: #F7AF14;
  --PrimaryColor: #fff;
  --hover-text: #000;
  --BannerTitleFontSize: 58px;
  --SubTitleFontSize: 24px;
}

::-moz-selection {
  background: var(--ButtonBg) !important;
  color: var(--PrimaryColor) !important;
  text-shadow: none;
}

::selection {
  background: var(--ButtonBg) !important;
  color: var(--PrimaryColor) !important;
  text-shadow: none;
}

@font-face {
  font-family: "Nunito";
  src: url(../fonts/Nunito/Nunito-VariableFont_wght.ttf);
}
@font-face {
  font-family: "Open_Sans";
  src: url(../fonts/Open_Sans/OpenSans-VariableFont_wdth.ttf);
}
body {
  font-family: var(--FontBody);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--FontHeading);
}

section {
  padding: var(--SectionPadding);
  overflow: hidden;
}

.WebBtn {
  color: var(--ButtonBg);
  cursor: pointer;
  border: 2px solid var(--ButtonBg);
  border-radius: 4px;
  padding: 12px 40px;
  transition: 0.2s;
  display: block;
  font-size: var(--buttonFontSize);
  border-radius: 10px;
  gap: 10px;
  display: block;
  min-width: 200px;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
}
.WebBtn:hover {
  color: var(--hover-text);
  transform: translate(-0.25rem, -0.25rem);
  background: var(--hover-bg);
  box-shadow: 0.25rem 0.25rem var(--ButtonBg);
}
.WebBtn:active {
  transform: translate(0);
  box-shadow: none;
}

.WebBtnWhite {
  color: var(--ButtonBg);
  cursor: pointer;
  border: 2px solid var(--ButtonBg);
  border-radius: 10px;
  padding: 12px 40px;
  background: transparent;
  transition: 0.2s;
  display: block;
  font-size: var(--buttonFontSize);
  gap: 10px;
  min-width: 190px;
  text-align: center;
}
.WebBtnWhite:hover {
  transform: translate(-0.25rem, -0.25rem);
  box-shadow: 0.25rem 0.25rem #000000;
  border-color: #000000;
}
.WebBtnWhite:active {
  transform: translate(0);
  box-shadow: none;
}

.SectionTitle {
  text-align: center;
}
.SectionTitle .SubTitle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--SubTitleFontSize);
  color: var(--Yellow);
  margin: 0 0 10px;
}
.SectionTitle .SubTitle::before, .SectionTitle .SubTitle::after {
  content: "";
  display: flex;
  align-items: center;
  height: 8px;
  width: 70px;
  background: url("../images/TitleDecor.svg") no-repeat center;
  background-size: contain;
}
.SectionTitle .SubTitle::after {
  transform: rotate(180deg);
}
.SectionTitle .Title {
  font-weight: 600;
  font-size: var(--TitleFontSize);
  line-height: 54px;
  margin-bottom: 24px;
  text-align: left;
}
.SectionTitle p {
  font-size: var(--BodyFontSize);
}

#Header {
  background: var(--PrimaryColor);
  border-bottom: 1px solid rgba(0, 0, 0, 0.0509803922);
  padding: 17px 0;
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.2509803922);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  /* Logo */
  /* Navigation */
}
#Header.darkHeader {
  position: fixed;
  padding: 10px 0;
}
#Header.darkHeader .logo img {
  height: 65px;
}
#Header .header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#Header .logo img {
  height: 80px;
  transition: 500ms all ease;
}
#Header .nav {
  display: flex;
  gap: 48px;
}
#Header .nav a {
  text-decoration: none;
  color: #000;
  font-size: 15px;
  position: relative;
  transition: color 0.3s ease;
  font-size: var(--BodyFontSize);
  font-family: var(--BodyFontSize);
}
#Header .nav a::after {
  content: "";
  position: absolute;
  left: 51%;
  bottom: -8px;
  width: 120%;
  height: 2px;
  background: var(--Yellow);
  transition: 400ms all ease-in-out;
  transform: translateX(-50%) scale(0);
}
#Header .nav a:hover {
  color: var(--Yellow);
}
#Header .nav a:hover::after {
  transform: translateX(-50%) scale(1);
}
#Header .nav a.active {
  color: var(--Yellow);
}
#Header .nav a.active::after {
  transform: translateX(-50%) scale(1);
}
#Header .nav .nav-item {
  position: relative;
}
#Header .nav .has-dropdown {
  padding-bottom: 0px;
}
#Header .nav .has-dropdown .DropDownContainer {
  position: absolute;
  top: calc(100% + 12px);
  left: 0%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 300ms ease;
  z-index: 1000;
}
#Header .nav .has-dropdown .DropDownContainer .dropdown {
  margin-top: 10px;
  background: #fff;
  border-radius: 8px;
  min-width: 220px;
  padding: 10px 0;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}
#Header .nav .has-dropdown .DropDownContainer a {
  display: block;
  padding: 10px 18px;
  color: #000;
  font-size: calc(var(--BodyFontSize) - 2px);
  white-space: nowrap;
  transition: 200ms ease;
}
#Header .nav .has-dropdown .DropDownContainer a:hover {
  background: #f5f5f5;
  color: var(--Yellow);
}
#Header .nav .has-dropdown .DropDownContainer a::after {
  display: none;
}
#Header .nav .has-dropdown:hover .DropDownContainer {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  top: 100%;
}
#Header .has-dropdown > a::before {
  content: "";
  display: inline-block;
  position: absolute;
  right: -18px;
  top: 8px;
  width: 10px;
  height: 10px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}
#Header .has-dropdown > a::before {
  transition: transform 0.3s ease;
}
#Header .has-dropdown:hover > a::before {
  transform: rotate(225deg) translateY(-2px);
}

#Hero {
  position: relative;
  padding: 0px 0 20px;
  /* Shared card style */
  /* Front card (lower + slightly left) */
  /* Back card (higher + more right) */
  /* Responsive */
}
#Hero .HeroDecor {
  width: 125px;
  position: absolute;
  left: 0;
  top: 62%;
  transform: translateY(-50%);
  animation: floatY 3s ease-in-out infinite;
}
@keyframes floatY {
  0% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(calc(-50% - 20px));
  }
  100% {
    transform: translateY(-50%);
  }
}
#Hero .HeroContainer {
  padding: 0px 0;
}
#Hero .ButtonWrapper {
  display: flex;
  gap: 18px;
}
#Hero .HeroTitle {
  font-size: var(--BannerTitleFontSize);
  font-weight: 600;
  line-height: 64px;
  margin-bottom: 18px;
  width: 110%;
}
#Hero .HeroTitle span {
  color: var(--Yellow);
}
#Hero .HeroImgWrapper {
  position: relative;
  width: 560px;
  height: 520px;
  margin-left: auto;
}
#Hero .HeroImgWrapper .WebBtn {
  position: absolute;
  bottom: 50%;
  z-index: 10;
  right: 100%;
  transform: translate(0%, 50%) rotate(90deg);
  background: #fff;
}
#Hero .HeroImgWrapper .WebBtn:hover {
  background: #fff;
}
#Hero .HeroImgWrapper:hover .CardOne {
  top: 120px;
  left: -100px;
  transform: rotate(-70deg);
}
#Hero .HeroImgWrapper:hover .CardOne .WebBtn {
  right: 58%;
}
#Hero .HeroImgWrapper:hover .CardOne img {
  transform: rotate(45deg) scale(1.45);
}
#Hero .HeroImgWrapper:hover .CardTwo {
  top: 154px;
  left: 243px;
  transform: rotate(20deg);
}
#Hero .HeroImgWrapper:hover .CardTwo .WebBtn {
  right: -7%;
  bottom: 10px;
  transform: rotate(0deg) translate(-50%, -50%);
}
#Hero .HeroImgWrapper:hover .CardTwo img {
  transform: rotate(45deg) scale(1.45);
}
#Hero .HeroImg {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 48px;
  overflow: hidden;
  background: #000;
  border: 5px solid #000000;
  box-shadow: 0px 0px 8px 5px rgba(0, 0, 0, 0.2509803922);
  transition: 600ms all ease;
}
#Hero .HeroImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: rotate(45deg) scale(1.35);
  transition: 500ms all ease;
}
#Hero .CardOne {
  top: 120px;
  left: 0px;
  transform: rotate(-45deg);
  z-index: 2;
}
#Hero .CardTwo {
  top: 120px;
  left: 200px;
  transform: rotate(45deg);
  z-index: 1;
  filter: brightness(0.95);
}
#Hero .CardTwo .WebBtn {
  position: absolute;
  z-index: 10;
  right: -7%;
  bottom: -100px;
  transform: rotate(0deg) translate(-50%, -50%);
}
#Hero .CardTwo .WebBtn:hover {
  background: #fff;
}
@media (max-width: 992px) {
  #Hero .HeroImgWrapper {
    width: 360px;
    height: 360px;
  }
  #Hero .HeroImg {
    width: 260px;
    height: 260px;
  }
  #Hero .CardTwo {
    left: 140px;
    top: 0;
  }
  #Hero .CardOne {
    top: 80px;
    left: 0;
  }
}
#Hero .HeroDescription {
  width: 70%;
  font-size: var(--BodyFontSize);
  margin-bottom: 36px;
}
#Hero #LogoSlider {
  width: 100%;
  position: relative;
  height: 140px;
  top: calc(50% - 20vw);
  margin-top: 100px;
}
#Hero .logo-wrapper {
  width: 12%;
  position: absolute;
  visibility: hidden;
  top: 0;
  filter: grayscale(1);
}
#Hero .logo-wrapper::after {
  content: "";
  display: block;
  position: relative;
  width: 100%;
  padding-bottom: 70%;
}
#Hero .logo-wrapper .logo {
  display: grid;
  place-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  border-radius: 100%;
}
#Hero .logo-wrapper .logo img {
  width: 100%;
  aspect-ratio: 1/1;
}

#Services .SectionTitle {
  text-align: left;
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  margin-bottom: 24px;
}
#Services .SectionTitle p {
  text-align: right;
  width: 50%;
}
#Services .SectionTitle .SubTitle {
  width: -moz-fit-content;
  width: fit-content;
}
#Services .SectionTitle .SubTitle::after {
  display: none;
}
#Services .accordion {
  margin: auto;
}
#Services .item {
  background: #eee;
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
}
#Services .item.active {
  background: #000;
  color: #fff;
}
#Services .header {
  display: flex;
  align-items: center;
  padding: 24px;
  gap: 16px;
  height: 120px;
  cursor: pointer;
}
#Services .num {
  margin: 0;
  font-size: var(--ServiceTitleFontSize);
}
#Services .header h3 {
  flex: 1;
  font-size: var(--ServiceTitleFontSize);
  margin: 0 0 -4px;
}
#Services .icon {
  font-size: var(--ServiceTitleFontSize);
  transition: transform 0.4s ease;
  background: var(--ButtonBg);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  border-radius: 100%;
  height: 60px;
  width: 60px;
}
#Services .icon i {
  color: #fff;
  padding: 15px;
  font-size: 30px;
}
#Services .rotate {
  transform: rotate(-45deg);
  background: var(--PrimaryColor);
}
#Services .rotate i {
  color: var(--ButtonBg);
}
#Services .content {
  display: flex;
  gap: 40px;
  padding: 0 4px;
  max-width: 94%;
  margin: auto;
  height: 0;
  overflow: hidden;
  align-items: center;
}
#Services .left {
  flex: 1;
}
#Services .left ul {
  margin-top: 10px;
}
#Services .left li {
  list-style: none;
  margin-bottom: 24px;
  font-size: var(--BodyFontSize);
  color: rgba(255, 255, 255, 0.8980392157);
  display: flex;
  align-items: center;
}
#Services .left li::before {
  content: url("../images/YellowTick.svg");
  width: 20px;
  height: 20px;
  margin-right: 18px;
  margin-top: -15px;
  display: block;
}
#Services .WebBtnWhite {
  border-color: #fff;
  color: var(--PrimaryColor);
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 12px;
}
#Services .WebBtnWhite span {
  display: block;
  margin-top: -3px;
}
#Services .WebBtnWhite:hover {
  box-shadow: 0.25rem 0.25rem #fff;
  border-color: #fff;
}
#Services .WebBtnWhite:active {
  transform: translate(0);
  box-shadow: none;
}
#Services .right {
  flex: 1;
  margin-bottom: 36px;
  position: relative;
}
#Services .right::after {
  content: "";
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 30%, rgb(0, 0, 0) 100%);
  position: absolute;
  top: 0;
  left: 0;
}
#Services .right .WebBtnWhite {
  position: absolute;
  bottom: 20px;
  left: 46%;
  transform: translateX(-50%);
  z-index: 10;
}
#Services .right img {
  width: 85%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 14px;
}

#AboutUs {
  /* Shared card style */
  /* Front card (lower + slightly left) */
  /* Back card (higher + more right) */
  /* Responsive */
}
#AboutUs .HeroImgWrapper {
  position: relative;
  width: 560px;
  height: 520px;
  margin-left: 100px;
  margin-top: -80px;
}
#AboutUs .HeroImgWrapper .WebBtn {
  position: absolute;
  bottom: 50%;
  z-index: 10;
  right: 100%;
  transform: translate(0%, 50%) rotate(90deg);
  background: #fff;
}
#AboutUs .HeroImgWrapper .WebBtn:hover {
  background: #fff;
}
#AboutUs .HeroImgWrapper:hover .CardOne {
  top: 120px;
  left: -100px;
  transform: rotate(-70deg);
}
#AboutUs .HeroImgWrapper:hover .CardOne .WebBtn {
  right: 58%;
}
#AboutUs .HeroImgWrapper:hover .CardOne img {
  transform: rotate(45deg) scale(1.45);
}
#AboutUs .HeroImgWrapper:hover .CardTwo {
  top: 124px;
  left: 243px;
  transform: rotate(20deg);
}
#AboutUs .HeroImgWrapper:hover .CardTwo .WebBtn {
  right: -7%;
  bottom: 10px;
  transform: rotate(0deg) translate(-50%, -50%);
}
#AboutUs .HeroImgWrapper:hover .CardTwo img {
  transform: rotate(45deg) scale(1.45);
}
#AboutUs .HeroImg {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 48px;
  overflow: hidden;
  background: #000;
  border: 5px solid #000000;
  box-shadow: 0px 0px 8px 5px rgba(0, 0, 0, 0.2509803922);
  transition: 600ms all ease;
}
#AboutUs .HeroImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: rotate(45deg) scale(1.35);
  transition: 500ms all ease;
}
#AboutUs .CardOne {
  top: 120px;
  left: 0px;
  transform: rotate(-45deg);
  z-index: 2;
}
#AboutUs .CardTwo {
  top: 120px;
  left: 200px;
  transform: rotate(45deg);
  z-index: 1;
  filter: brightness(0.95);
}
#AboutUs .CardTwo .WebBtn {
  position: absolute;
  z-index: 10;
  right: -7%;
  bottom: -100px;
  transform: rotate(0deg) translate(-50%, -50%);
}
#AboutUs .CardTwo .WebBtn:hover {
  background: #fff;
}
@media (max-width: 992px) {
  #AboutUs .HeroImgWrapper {
    width: 360px;
    height: 360px;
  }
  #AboutUs .HeroImg {
    width: 260px;
    height: 260px;
  }
  #AboutUs .CardTwo {
    left: 140px;
    top: 0;
  }
  #AboutUs .CardOne {
    top: 80px;
    left: 0;
  }
}
#AboutUs .AboutUsWrapper .SectionTitle {
  text-align: left;
}
#AboutUs .AboutUsWrapper .WebBtn {
  margin-top: 36px;
}

#CTA {
  position: relative;
  overflow: hidden;
}
#CTA #bg {
  background: cover;
  position: absolute;
  bottom: -140px;
  background: linear-gradient(145deg, #080808 10%, #303030 115%);
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  z-index: 2;
}
#CTA .SectionTitle {
  text-align: center;
  position: relative;
  z-index: 10;
}
#CTA .SectionTitle .Title {
  text-align: center;
  color: var(--PrimaryColor);
}
#CTA .SectionTitle p {
  color: rgba(255, 255, 255, 0.8980392157);
}
#CTA .WebBtnWhite {
  margin-top: 20px;
  margin-left: 65px;
  border-color: #fff;
  color: var(--PrimaryColor);
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 42px auto 0;
}
#CTA .WebBtnWhite span {
  display: block;
  margin-top: -3px;
}
#CTA .WebBtnWhite:hover {
  box-shadow: 0.25rem 0.25rem #fff;
  border-color: #fff;
}
#CTA .WebBtnWhite:active {
  transform: translate(0);
  box-shadow: none;
}

#WhyChooseUs {
  position: relative;
  /* Keyframes */
}
#WhyChooseUs .Decor-1 {
  width: 250px;
  position: absolute;
  bottom: 100px;
  left: -120px;
  animation: floatRotate 6s ease-in-out infinite;
}
@keyframes floatRotate {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) rotate(90deg);
  }
  50% {
    transform: translateY(0) rotate(180deg);
  }
  75% {
    transform: translateY(20px) rotate(270deg);
  }
  100% {
    transform: translateY(0) rotate(360deg);
  }
}
#WhyChooseUs .Decor-2 {
  width: 120px;
  position: absolute;
  top: 200px;
  right: 0px;
  animation: floatY 3s ease-in-out infinite;
  transform: translateY(-50%);
  z-index: -1;
}
@keyframes floatY {
  0% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(calc(-50% - 20px));
  }
  100% {
    transform: translateY(-50%);
  }
}
#WhyChooseUs .SectionTitle {
  text-align: left;
}
#WhyChooseUs .SectionTitle .SubTitle::after {
  display: none;
}
#WhyChooseUs .WhyChooseList {
  height: auto;
  width: 100%;
  margin-top: 42px;
}
#WhyChooseUs .WhyChooseList .WhyChooseWrapper {
  display: flex;
  align-items: center;
  height: 100%;
  width: 85%;
  background: rgba(0, 0, 0, 0.0901960784);
  box-shadow: 0px 0px 4px 2px rgba(0, 0, 0, 0.2509803922);
  border-radius: 14px;
  overflow: hidden;
  margin-left: 15%;
  margin-bottom: 24px;
  transition: 600ms all ease;
}
#WhyChooseUs .WhyChooseList .WhyChooseWrapper:hover {
  transform: translateX(10px);
  background-color: #000;
}
#WhyChooseUs .WhyChooseList .WhyChooseWrapper:hover .Icon img {
  filter: invert(1);
}
#WhyChooseUs .WhyChooseList .WhyChooseWrapper:nth-child(2) {
  margin-left: 0;
}
#WhyChooseUs .WhyChooseList .WhyChooseWrapper .Icon {
  width: 120px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#WhyChooseUs .WhyChooseList .WhyChooseWrapper .Icon img {
  width: 60px;
  transition: 500ms all ease;
}
#WhyChooseUs .WhyChooseList .WhyChooseWrapper .Content {
  padding: 30px 24px;
  width: 90%;
  background-color: #fff;
}

#Industries {
  position: relative;
}
#Industries .DecorImg-1 {
  position: absolute;
  bottom: -200px;
  left: -5%;
  transform: translate(-50%, -50%);
}
#Industries .DecorImg-2 {
  position: absolute;
  bottom: 200px;
  right: -35%;
  transform: translate(-50%, -50%);
}
@keyframes floatRotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  25% {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  50% {
    transform: translate(-50%, -50%) rotate(180deg);
  }
  75% {
    transform: translate(-50%, -50%) rotate(270deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

#Testimonials {
  /* Owl Carousel Custom Dots */
}
#Testimonials .SectionTitle .Title {
  max-width: 50%;
  text-align: center;
  margin: auto;
}
#Testimonials .TestimonialsNavigation {
  text-align: right;
  margin-bottom: -40px;
  position: relative;
  z-index: 10;
}
#Testimonials .TestimonialsNavigation button {
  padding: 0;
  border: none;
  background: transparent;
  position: relative;
}
#Testimonials .TestimonialsNavigation button img {
  transition: 500ms all ease;
}
#Testimonials .TestimonialsNavigation button:hover img {
  opacity: 0;
}
#Testimonials .TestimonialsNavigation button:hover .IconHov {
  opacity: 1;
}
#Testimonials .TestimonialsNavigation button .IconHov {
  position: absolute;
  left: 0;
  right: 0;
  opacity: 0;
}
#Testimonials .TestimonialCard {
  background-color: var(--ButtonBg);
  border-radius: 8px;
  padding: 80px 140px 70px;
  height: 100%;
  box-shadow: 0px 0px 8px 4px rgba(0, 0, 0, 0.2509803922);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  margin: 40px 10px 70px;
}
#Testimonials .TestimonialCard::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 175px;
  background: url("../images/TestimonialShape.svg") no-repeat;
  bottom: -100px;
  margin-left: -10px;
}
#Testimonials .TestimonialCard .Comma1 {
  position: absolute;
  width: 80px;
  top: -40px;
  left: 60px;
}
#Testimonials .TestimonialCard .Comma2 {
  width: 80px;
  position: absolute;
  bottom: -40px;
  right: 60px;
}
#Testimonials .TestimonialCard .TestimonialText {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.8980392157);
  font-size: var(--BodyFontSize);
  font-weight: 300;
}
#Testimonials .TestimonialCard .AuthorName {
  font-size: var(--ServiceTitleFontSize);
  color: var(--PrimaryColor);
  margin-bottom: 0;
}
#Testimonials .TestimonialAuthor {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
}
#Testimonials .AuthorRole {
  font-size: var(--BodyFontSize);
  color: rgba(255, 255, 255, 0.8980392157);
}
#Testimonials .TestimonialsCarousel .owl-dots {
  margin-top: 32px;
  text-align: center;
}
#Testimonials .TestimonialsCarousel .owl-dot {
  width: 10px;
  height: 10px;
  background-color: #cccccc;
  border-radius: 50%;
  margin: 0 6px;
  display: inline-block;
  transition: background-color 0.3s ease;
}
#Testimonials .TestimonialsCarousel .owl-dot.active {
  background-color: #111111;
}

#Blogs {
  padding-top: 0px;
}
#Blogs .WebBtnWhite {
  width: -moz-fit-content;
  width: fit-content;
  margin: 24px auto 0;
}
#Blogs .SectionTitle {
  margin-bottom: 60px;
}
#Blogs .SectionTitle .Title {
  text-align: center;
}
#Blogs .BlogWrapper {
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  padding: 36px 0 36px;
  height: 100%;
}
#Blogs .BlogWrapper:hover .BlogTitle h4 {
  color: var(--Yellow);
}
#Blogs .BlogWrapper:hover .ReadMoreBtn a {
  color: var(--Yellow);
}
#Blogs .BlogWrapper:hover .BlogImgWrapper .BlogImg img {
  transform: scale(1.1);
}
#Blogs .BlogWrapper .BlogCategory {
  border: 2px solid rgba(0, 0, 0, 0.4);
  font-size: calc(var(--BodyFontSize) - 2px);
  padding: 8px 18px;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  background-color: var(--PrimaryColor);
  border-radius: 8px;
  left: 24px;
  top: -24px;
  min-width: 200px;
  text-align: center;
}
#Blogs .BlogWrapper .BlogImgWrapper {
  padding: 0 24px;
}
#Blogs .BlogWrapper .BlogImgWrapper .BlogImg {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}
#Blogs .BlogWrapper .BlogImgWrapper .BlogImg img {
  transition: 600ms all ease;
}
#Blogs .BlogWrapper .BlogTitle {
  padding: 14px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1019607843);
}
#Blogs .BlogWrapper .BlogTitle h4 {
  font-size: calc(var(--BodyFontSize) + 4px);
  margin: 0;
  transition: 500ms all ease;
}
#Blogs .BlogWrapper .BlogDescription {
  padding: 18px 24px 0;
  font-size: calc(var(--BodyFontSize) - 1px);
}
#Blogs .BlogWrapper .ReadMoreBtn {
  padding: 0px 24px;
  position: absolute;
  bottom: 12px;
}
#Blogs .BlogWrapper .ReadMoreBtn a {
  font-weight: 700;
  transition: 500ms all ease;
}

#Contact {
  padding: 0;
}
#Contact .WebBtnWhite {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
#Contact .ContactUsImg {
  position: relative;
  height: 100%;
  width: 100%;
}
#Contact .ContactUsImg img {
  position: absolute;
  bottom: 0;
  z-index: 10;
}
#Contact .ContactUsImg .DecorImg img {
  position: absolute;
  bottom: 0;
  left: 100px;
  z-index: 0;
  transform: rotate(45deg);
  transform-origin: center center;
}
@keyframes Rotate {
  0% {
    transform: translate(0%, 0%) rotate(0deg);
  }
  25% {
    transform: translate(0%, 0%) rotate(90deg);
  }
  50% {
    transform: translate(0%, 0%) rotate(180deg);
  }
  75% {
    transform: translate(0%, 0%) rotate(270deg);
  }
  100% {
    transform: translate(0%, 0%) rotate(360deg);
  }
}
#Contact .ContactSection {
  padding: 80px 0px 0;
  justify-content: center;
  background-color: #ffffff;
  position: relative;
  /* Responsive */
}
#Contact .ContactSection .ContactContainer {
  width: 100%;
  max-width: 900px;
  background-color: #f1f1f1;
  border-radius: 16px;
  padding: 48px 64px;
  border: 1px solid #bdbdbd;
  margin-bottom: 34px;
}
#Contact .ContactSection .SectionTitle {
  margin-bottom: 42px;
}
#Contact .ContactSection .SectionTitle .Title {
  text-align: center;
}
#Contact .ContactSection .ContactForm {
  display: flex;
  flex-direction: column;
}
#Contact .ContactSection .FormGroup {
  margin-bottom: 24px;
}
#Contact .ContactSection .FormLabel {
  display: block;
  font-size: 16px;
  color: #000000;
  margin-bottom: 8px;
}
#Contact .ContactSection .FormInput,
#Contact .ContactSection .FormTextarea {
  width: 100%;
  height: 48px;
  border-radius: 8px;
  border: 1px solid #333333;
  padding: 0 16px;
  font-size: 16px;
  background-color: transparent;
  outline: none;
  transition: 400ms all ease;
}
#Contact .ContactSection .FormTextarea {
  height: 140px;
  padding: 16px;
  resize: none;
}
#Contact .ContactSection .FormInput:focus,
#Contact .ContactSection .FormTextarea:focus {
  border-color: var(--Yellow);
}
#Contact .ContactSection .SubmitButton {
  margin: 32px auto 0;
  padding: 12px 48px;
  font-size: 16px;
  border-radius: 8px;
  background-color: transparent;
  border: 2px solid #000000;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}
#Contact .ContactSection .SubmitButton:hover {
  background-color: #000000;
  color: #ffffff;
}
@media (max-width: 768px) {
  #Contact .ContactSection .ContactContainer {
    padding: 32px 24px;
  }
  #Contact .ContactSection .ContactTitle {
    font-size: 32px;
  }
}

#Footer {
  background: var(--ButtonBg);
  /* Responsive */
}
#Footer .FooterTop {
  padding: 64px 0px;
}
#Footer .FooterGrid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
  gap: 48px;
}
#Footer .FooterBrand .BrandLogo {
  width: 150px;
  margin-bottom: 16px;
}
#Footer .FooterBrand .BrandText {
  font-size: var(--BodyFontSize);
  line-height: 1.6;
  margin-bottom: 24px;
  width: 80%;
  color: #cccccc;
  margin-bottom: 50px;
}
#Footer .FooterCall {
  display: flex;
  align-items: center;
  gap: 27px;
}
#Footer .FooterCall:hover .CallIcon {
  transform: scale(0.9);
}
#Footer .FooterCall:hover .CallNumber {
  color: var(--Yellow);
}
#Footer .FooterCall .CallIcon {
  margin-top: 5px;
  width: 65px;
  transition: 600ms all ease;
  height: 65px;
}
#Footer .FooterCall .CallLabel {
  font-size: var(--ServiceTitleFontSize);
  margin: 0 0 2px;
  color: var(--PrimaryColor);
}
#Footer .FooterCall .CallNumber {
  font-size: var(--BodyFontSize);
  margin: 0;
  color: rgba(255, 255, 255, 0.8980392157);
  transition: 600ms all ease;
}
#Footer .FooterTitle {
  font-size: calc(var(--ServiceTitleFontSize) + 2px);
  margin-bottom: 32px;
  color: var(--Yellow);
}
#Footer .FooterLinks ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#Footer .FooterLinks ul li {
  font-size: var(--BodyFontSize);
  margin-bottom: 18px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.8980392157);
  transition: 500ms all ease;
  position: relative;
  max-width: 270px;
}
#Footer .FooterLinks ul li:before {
  content: "»";
  color: var(--Yellow);
  position: absolute;
  margin-right: 10px;
  left: -18px;
}
#Footer .FooterLinks ul li:hover {
  transform: translateX(10px);
}
#Footer .FooterSocial li:before {
  display: none;
}
#Footer .FooterSocial li a {
  transition: 500ms all ease;
}
#Footer .FooterSocial li:hover {
  transform: none !important;
}
#Footer .FooterSocial li:hover a {
  color: var(--Yellow);
}
#Footer .FooterSocial .SocialIcons {
  display: flex;
  gap: 16px;
}
#Footer .FooterSocial .SocialIcons a {
  transition: 500ms all ease;
}
#Footer .FooterSocial .SocialIcons a:hover {
  transform: scale(1.14);
}
#Footer .FooterBottom {
  padding: 24px 40px 18px;
  display: flex;
  justify-content: space-between;
  font-size: var(--BodyFontSize);
  color: #cccccc;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  background: rgba(248, 250, 252, 0.1215686275);
  -webkit-backdrop-filter: blur(24px);
          backdrop-filter: blur(24px);
}
#Footer .FooterBottom p {
  margin: 0;
}
#Footer .FooterBottom p a {
  transition: 500ms all ease;
}
#Footer .FooterBottom p a:hover {
  color: var(--Yellow);
}
@media (max-width: 992px) {
  #Footer .FooterGrid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  #Footer .FooterTop {
    padding: 48px 24px;
  }
  #Footer .FooterBottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 10px 20px;
  }
}

.MobileHeader {
  display: none;
}

@media (max-width: 992px) {
  #Header {
    display: none;
  }
  /* From Uiverse.io by Cevorob */
  .burger {
    position: relative;
    width: 30px;
    height: 23px;
    background: transparent;
    cursor: pointer;
    display: block;
  }
  .burger input {
    display: none;
  }
  .burger span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: var(--ButtonBg);
    border-radius: 30px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
  }
  .burger span:nth-of-type(1) {
    top: 0px;
    transform-origin: left center;
  }
  .burger span:nth-of-type(2) {
    top: 50%;
    margin-left: 10px;
    transform: translateY(-50%);
    transform-origin: left center;
  }
  .burger span:nth-of-type(3) {
    top: 100%;
    transform-origin: left center;
    transform: translateY(-100%);
  }
  .burger input:checked ~ span:nth-of-type(1) {
    transform: rotate(45deg);
    top: 0px;
    left: 5px;
  }
  .burger input:checked ~ span:nth-of-type(2) {
    width: 0%;
    opacity: 0;
  }
  .burger input:checked ~ span:nth-of-type(3) {
    transform: rotate(-45deg);
    top: 22px;
    left: 5px;
  }
  .MobileHeader {
    display: block;
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
  }
  .MobileHeaderBar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    background: var(--PrimaryColor);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  .MobileLogo img {
    height: 32px;
  }
  .MobileNav {
    position: fixed;
    inset: 0;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(100%);
    transition: transform 0.4s ease;
  }
  #burger:checked ~ .MobileNav {
    transform: translateY(0);
  }
  .MobileNavInner {
    display: flex;
    flex-direction: column;
    gap: 28px;
    text-align: center;
  }
  .MobileNavInner a,
  .MobileNavInner .dropdown-label {
    color: var(--Yellow);
    font-size: var(--ServiceTitleFontSize);
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
  }
  .MobileNavInner .WebBtn {
    color: #fff;
  }
  /* Services Dropdown */
  .mobile-dropdown {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .mobile-dropdown input {
    display: none;
  }
  .mobile-dropdown .dropdown-label {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .mobile-dropdown .arrow {
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: 0.3s ease;
    margin-top: -4px;
  }
  .mobile-dropdown .DropDownContainer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .mobile-dropdown .dropdown {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-top: 18px;
  }
  .mobile-dropdown .dropdown a {
    font-size: 14px;
    color: #000;
  }
  .mobile-dropdown input:checked ~ .DropDownContainer {
    max-height: 300px;
  }
  .mobile-dropdown input:checked + .dropdown-label .arrow {
    transform: rotate(225deg);
  }
}
#CommonBanner {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
#CommonBanner .BannerImage {
  position: absolute;
  inset: 0;
  z-index: 0;
}
#CommonBanner .BannerImage img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#CommonBanner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.25));
  z-index: 1;
}
#CommonBanner .container {
  position: relative;
  z-index: 2;
}
#CommonBanner .BannerContent {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#CommonBanner .PageTitle {
  font-size: 48px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
#CommonBanner .Breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}
#CommonBanner .Breadcrumbs a {
  color: #fff;
  text-decoration: none;
}
#CommonBanner .Breadcrumbs a:hover {
  opacity: 0.75;
}
#CommonBanner .Breadcrumbs .Current {
  opacity: 0.65;
}

#AboutUsSection .SectionTitle {
  text-align: left;
}
#AboutUsSection .SectionTitle .SubTitle::after {
  display: none;
}
#AboutUsSection .AboutUsImg img {
  border-radius: 21px;
}

#LogoMarquee {
  padding: 0;
}
#LogoMarquee #LogoSlider {
  width: 100%;
  position: relative;
  overflow: hidden;
  min-height: 160px;
  top: calc(50% - 20vw);
}
#LogoMarquee .LogoWrapper {
  background: var(--ButtonBg);
  padding: 8px 20px;
  display: flex;
  position: relative;
  align-items: center;
  border-radius: 24px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
#LogoMarquee .logo-wrapper {
  width: 15%;
  position: absolute;
  visibility: hidden;
  top: 0;
  filter: grayscale(1);
}
#LogoMarquee .logo-wrapper::after {
  content: "";
  display: block;
  position: relative;
  width: 100%;
  padding-bottom: 70%;
}
#LogoMarquee .logo-wrapper .logo {
  display: grid;
  place-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  border-radius: 100%;
  filter: brightness(0) invert(1);
}
#LogoMarquee .logo-wrapper .logo img {
  width: 100%;
  aspect-ratio: 1/1;
}

#VissionMission {
  background: #eee;
  margin-top: -85px;
  padding-top: 150px;
}
#VissionMission .SectionTitle {
  text-align: left;
}
#VissionMission .SectionTitle .SubTitle::after {
  display: none;
}
#VissionMission .ButtonWrapper {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}
#VissionMission .VisionMissionWrapper {
  display: flex;
  align-items: center;
  width: 100%;
  background: #000000;
  box-shadow: 0px 0px 4px 2px rgba(0, 0, 0, 0.2509803922);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 24px;
  transition: 600ms all ease;
}
#VissionMission .VisionMissionWrapper:hover {
  transform: translateX(10px);
  background-color: #000;
}
#VissionMission .VisionMissionWrapper:hover .Icon img {
  filter: invert(1);
}
#VissionMission .VisionMissionWrapper .Icon {
  width: 120px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#VissionMission .VisionMissionWrapper .Icon img {
  width: 60px;
  transition: 500ms all ease;
  filter: invert(1);
}
#VissionMission .VisionMissionWrapper .Content {
  padding: 30px 24px;
  width: 90%;
  background-color: #fff;
}
#VissionMission .VisionMissionWrapper .Content p {
  margin: 0;
}

#FAQs {
  padding: 0;
}
#FAQs.ServicePage {
  padding: 0 0 var(--SectionPadding);
}
#FAQs .SectionTitle {
  text-align: center;
}
#FAQs .SectionTitle .Title {
  text-align: center;
}
#FAQs .FaqContainer {
  margin: 60px auto 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
#FAQs .FaqContainer .FaqItem {
  background: #eee;
  border-radius: 18px;
  padding: 22px 28px;
  overflow: hidden;
  transition: background 0.4s ease;
}
#FAQs .FaqContainer .FaqItem.active {
  background: #eee;
}
#FAQs .FaqContainer .FaqItem.active .FaqContent {
  max-height: 300px;
  padding-top: 16px;
}
#FAQs .FaqContainer .FaqItem.active .FaqIcon::after {
  transform: scaleY(0);
}
#FAQs .FaqContainer .FaqItem .FaqHeader {
  display: grid;
  grid-template-columns: 60px 1fr 40px;
  align-items: center;
  cursor: pointer;
  margin: 0;
}
#FAQs .FaqContainer .FaqItem .FaqHeader .FaqNum {
  font-size: var(--ServiceTitleFontSize);
  font-weight: 600;
  color: rgba(0, 0, 0, 0.25);
}
#FAQs .FaqContainer .FaqItem .FaqHeader h3 {
  font-size: var(--ServiceTitleFontSize);
  font-weight: 500;
  margin: 0;
  color: var(--ButtonBg);
}
#FAQs .FaqContainer .FaqItem .FaqHeader .FaqIcon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #000000;
  position: relative;
  transition: transform 0.4s ease;
}
#FAQs .FaqContainer .FaqItem .FaqHeader .FaqIcon::before, #FAQs .FaqContainer .FaqItem .FaqHeader .FaqIcon::after {
  content: "";
  position: absolute;
  background: var(--PrimaryColor);
  border-radius: 2px;
  transition: 0.4s ease;
}
#FAQs .FaqContainer .FaqItem .FaqHeader .FaqIcon::before {
  width: 14px;
  height: 2px;
  top: 13px;
  left: 7px;
}
#FAQs .FaqContainer .FaqItem .FaqHeader .FaqIcon::after {
  width: 2px;
  height: 14px;
  top: 7px;
  left: 13px;
}
#FAQs .FaqContainer .FaqItem .FaqContent {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease, padding-top 0.4s ease;
}
#FAQs .FaqContainer .FaqItem .FaqContent p {
  margin: 0;
  padding-right: 40px;
  line-height: 1.6;
  color: #000;
  font-size: var(--BodyFontSize);
}

#ServicesDescription {
  padding-bottom: 20px;
}
#ServicesDescription .SectionTitle {
  text-align: center;
}
#ServicesDescription .SectionTitle .Title {
  text-align: center;
}
#ServicesDescription .WebBtn {
  display: block;
  margin: 42px auto 0;
}

#HowItWorks {
  position: relative;
  padding-bottom: 0;
}
#HowItWorks .HeroDecor {
  width: 125px;
  position: absolute;
  right: 0;
  top: 22%;
  transform: translateY(-50%);
  animation: floatY 3s ease-in-out infinite;
  transform: rotate(180deg);
}
#HowItWorks .Decor-1 {
  width: 350px;
  position: absolute;
  top: 65%;
  left: -20px;
  animation: floatRotate 6s ease-in-out infinite;
}
#HowItWorks .SectionTitle {
  text-align: center;
}
#HowItWorks .SectionTitle .Title {
  text-align: center;
}
#HowItWorks .row:first-child {
  margin-top: 60px;
}
#HowItWorks .row {
  margin: auto;
  margin-bottom: 100px;
  margin-top: -100px;
  max-width: 1300px;
}
#HowItWorks .StepBox {
  border-radius: 36px;
  padding: 32px 32px 32px 110px;
  min-height: 160px;
  position: relative;
  margin: 0 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 280px;
  border: 1px solid var(--ButtonBg);
  transform: translateY(0px);
  transition: all 0.4s ease;
}
#HowItWorks .StepBox h5 {
  font-size: calc(var(--ServiceTitleFontSize) - 2px);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
#HowItWorks .StepBox p {
  font-size: calc(var(--BodyFontSize) - 2px);
  margin: 0;
}
#HowItWorks .StepBox.Highlighted {
  background: #eee;
  border-color: transparent;
  opacity: 1;
  transform: translateY(0);
}
#HowItWorks .StepIcon {
  width: 50px;
}
#HowItWorks .StepTag {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) translateX(-32%) rotate(-90deg);
  padding: 14px 14px;
  border-radius: 999px;
  font-size: var(--SubTitleFontSize);
  white-space: nowrap;
  width: 100%;
  max-width: 255px;
  text-align: center;
}
#HowItWorks .StepTag.Highlighted {
  background: #000;
  color: #fff;
}
#HowItWorks .StepTag.dark {
  background: #222;
  color: #fff;
}
#HowItWorks .Separator {
  position: absolute;
  width: 100%;
  pointer-events: none;
  opacity: 0.4;
}
#HowItWorks .Separator.sep-right {
  top: 60%;
  right: -50%;
  transform: translateY(-50%);
  width: 50%;
}
#HowItWorks .Separator.sep-down {
  top: 50%;
  left: -25%;
  transform: translateX(-50%);
  width: 50%;
}

@media (max-width: 768px) {
  .sep-right,
  .sep-down {
    display: none;
  }
  .StepTag {
    transform: translateY(-50%);
    left: 12px;
  }
  .StepBox {
    padding-left: 56px;
    margin: 0;
  }
  .ProcessFlow .row {
    margin-top: 0;
    margin-bottom: 50px;
  }
}
.CaseStudiesAlt {
  background: #fff;
}
.CaseStudiesAlt .SectionTitle {
  margin-bottom: 65px;
}
.CaseStudiesAlt .SectionTitle .Title {
  text-align: center;
}
.CaseStudiesAlt .CaseList {
  display: flex;
  flex-direction: column;
  gap: 80px;
  max-width: 1400px;
  margin: auto;
}
.CaseStudiesAlt .CaseItem {
  display: flex;
  align-items: center;
  gap: 60px;
  text-decoration: none;
  color: inherit;
}
.CaseStudiesAlt .CaseItem:hover .ViewLink {
  transform: translateX(6px);
}
.CaseStudiesAlt .CaseItem.reverse {
  flex-direction: row-reverse;
}
@media (max-width: 992px) {
  .CaseStudiesAlt .CaseItem {
    flex-direction: column;
    gap: 30px;
  }
  .CaseStudiesAlt .CaseItem.reverse {
    flex-direction: column;
  }
}
.CaseStudiesAlt .CaseImg {
  flex: 1;
  border-radius: 24px;
  overflow: hidden;
}
.CaseStudiesAlt .CaseImg img {
  width: 100%;
  height: 420px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.CaseItem:hover .CaseStudiesAlt .CaseImg img {
  transform: scale(1.05);
}
.CaseStudiesAlt .CaseContent {
  flex: 1;
  max-width: 520px;
}
.CaseStudiesAlt .CaseContent .Meta {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--Yellow);
  margin-bottom: 12px;
  display: inline-block;
}
.CaseStudiesAlt .CaseContent h3 {
  font-size: 30px;
  margin-bottom: 16px;
  line-height: 1.25;
}
.CaseStudiesAlt .CaseContent p {
  font-size: 16px;
  color: #444;
  margin-bottom: 20px;
}
.CaseStudiesAlt .CaseContent .ViewLink {
  font-size: var(--buttonFontSize);
  font-weight: 600;
  color: #000;
  display: inline-block;
  transition: transform 0.3s ease;
}

#Blogs.BlogPage {
  padding: var(--SectionPadding);
  position: relative;
  overflow: visible;
}
#Blogs.BlogPage .Sidebar {
  position: sticky;
  top: 100px;
}
#Blogs.BlogPage .categories-box {
  width: 100%;
  padding: 32px 32px;
  border-radius: 24px;
  text-align: center;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.4);
}
#Blogs.BlogPage .categories-box .categories-title {
  margin-bottom: 28px;
}
#Blogs.BlogPage .categories-box .categories-title h4 {
  text-align: center;
  font-size: var(--ServiceTitleFontSize);
  font-family: var(--FontBody);
  font-weight: 600;
}
#Blogs.BlogPage .categories-box .category-item {
  margin: 8px 0;
  background: rgba(255, 255, 255, 0.5019607843);
  padding: 16px;
  font-size: var(--BodyFontSize);
  font-weight: 600;
  transition: 300ms all ease;
  border-bottom: 1px solid #dadada;
}
#Blogs.BlogPage .categories-box .category-item:hover {
  color: var(--Yellow);
}
#Blogs.BlogPage .ContactSection {
  justify-content: center;
  background-color: #ffffff;
  position: relative;
  /* Responsive */
}
#Blogs.BlogPage .ContactSection .ContactContainer {
  width: 100%;
  max-width: 900px;
  background-color: #f1f1f1;
  border-radius: 16px;
  padding: 32px 24px;
  border: 1px solid #bdbdbd;
  margin-bottom: 34px;
}
#Blogs.BlogPage .ContactSection .SectionTitle {
  margin-bottom: 42px;
}
#Blogs.BlogPage .ContactSection .SectionTitle .Title {
  text-align: center;
  font-size: var(--ServiceTitleFontSize);
}
#Blogs.BlogPage .ContactSection .ContactForm {
  display: flex;
  flex-direction: column;
}
#Blogs.BlogPage .ContactSection .FormGroup {
  margin-bottom: 24px;
}
#Blogs.BlogPage .ContactSection .FormLabel {
  display: block;
  font-size: 16px;
  color: #000000;
  margin-bottom: 8px;
}
#Blogs.BlogPage .ContactSection .FormInput,
#Blogs.BlogPage .ContactSection .FormTextarea {
  width: 100%;
  height: 48px;
  border-radius: 8px;
  border: 1px solid #333333;
  padding: 0 16px;
  font-size: 16px;
  background-color: transparent;
  outline: none;
  transition: 400ms all ease;
}
#Blogs.BlogPage .ContactSection .FormTextarea {
  height: 140px;
  padding: 16px;
  resize: none;
}
#Blogs.BlogPage .ContactSection .FormInput:focus,
#Blogs.BlogPage .ContactSection .FormTextarea:focus {
  border-color: var(--Yellow);
}
#Blogs.BlogPage .ContactSection .SubmitButton {
  margin: 32px auto 0;
  padding: 12px 48px;
  font-size: 16px;
  border-radius: 8px;
  background-color: transparent;
  border: 2px solid #000000;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}
#Blogs.BlogPage .ContactSection .SubmitButton:hover {
  background-color: #000000;
  color: #ffffff;
}
@media (max-width: 768px) {
  #Blogs.BlogPage .ContactSection .ContactContainer {
    padding: 32px 24px;
  }
  #Blogs.BlogPage .ContactSection .ContactTitle {
    font-size: 32px;
  }
}

#ContactInfo {
  padding-top: 0;
}
#ContactInfo .SocialIcons {
  display: flex;
  gap: 16px;
}
#ContactInfo .SocialIcons a {
  transition: 500ms all ease;
}
#ContactInfo .SocialIcons a:hover {
  transform: scale(1.14);
}
#ContactInfo .SocialMediaTitle {
  font-size: var(--ServiceTitleFontSize);
  font-family: var(--FontHeading);
  font-weight: 600;
  margin-bottom: 24px;
  margin-top: 42px;
}
#ContactInfo .Map {
  width: 100%;
  height: 100%;
}
#ContactInfo .Map iframe {
  height: 100%;
  width: 100%;
  min-height: 500px;
  filter: grayscale(1);
}
#ContactInfo .ContactContainer {
  padding: 80px 50px 50px;
}
#ContactInfo .ContactContainer .SectionTitle {
  text-align: left;
  margin-bottom: 42px;
  border-bottom: 2px solid #eee;
}
#ContactInfo .ContactContainer .SectionTitle .SubTitle:after {
  display: none;
}
#ContactInfo .ContactContainer .ContactWrapper {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: var(--BodyFontSize);
  margin-bottom: 32px;
}
#ContactInfo .ContactContainer .ContactWrapper:hover .Info {
  color: var(--Yellow);
}
#ContactInfo .ContactContainer .ContactWrapper:hover .Icon {
  transform: scale(1.05);
}
#ContactInfo .ContactContainer .ContactWrapper .Icon {
  width: 72px;
  transition: 500ms all ease;
}
#ContactInfo .ContactContainer .ContactWrapper .Info {
  font-weight: 800;
  width: 80%;
  font-family: var(--FontHeading);
  transition: 500ms all ease;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 80px;
  height: 80px;
  background: #000;
  /* fallback if image fails */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: pulse 2s infinite;
  transition: transform 0.3s ease;
  border: 1px solid #fff;
}

.sticky-cta:hover {
  transform: scale(1.1);
}

.sticky-cta img {
  width: 58px;
  height: 58px;
  transform: rotate(-40deg);
}

/* Pulse animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.6);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(255, 77, 77, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 77, 77, 0);
  }
}/*# sourceMappingURL=style.css.map */