@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css");
*,
::after,
::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  overflow-x: hidden;
}
html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: metropolis;
  src: url("../fonts/Metropolis-Regular.otf");
}
@font-face {
  font-family: metropolis-thin;
  src: url("../fonts/Metropolis-Thin.otf");
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
a,
span,
strong,
b,
::placeholder,
input,
textarea,
select,
option,
label {
  font-family: metropolis;
}
.menu-close-icon {
    display: none;
}
:root {
  --mad-red: #e67209;
  --white-light-color: #f0ebe5;
  --dark-mode: #000;
}
body {
  background-color: #f6f6f6;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.overflow {
  overflow: hidden;
}
body::-webkit-scrollbar {
  width: 10px;
  background-color: var(--mad-red);
}
body::-webkit-scrollbar-track {
  width: 10px;
  background-color: var(--white-light-color);
  padding: 0.2rem;
}
body::-webkit-scrollbar-thumb {
  width: 5px;
  background-color: black;
}
.night-buble {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: black;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 4000;
  transition: all 0.3s ease-in-out;
  z-index: -1;
  opacity: 0;
}
.cursor {
  /* display: none; */
  width: 20px;
  z-index: 100000;
  pointer-events: none;
  left: 0;
  top: 0;
  height: 20px;
  border-radius: 50%;
  transition: 0.01s;
  background-color: black;
  /* border: 2px dotted var(--mad-red); */
  position: absolute;
  transform: translate(-50%, -50%);
  box-shadow: 0px 0px 20px 20px rgba(0, 0, 0, 0.08);
  /* transform-origin: 100% 100%; */
  animation: cursor 1s infinite ease-in-out;
}
@keyframes cursor {
  from {
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.01);
  }
  to {
    box-shadow: 0px 0px 20px 20px rgba(0, 0, 0, 0.08);
  }
}
.cursor-pointer {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--mad-red);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.mad-flex {
  display: flex;
}
.mad-container {
  width: 90%;
  margin: 0 auto;
  z-index: 100;
}
ul {
  list-style: none;
}
img {
  width: 100%;
}
a {
  text-decoration: none;
  color: black;
}
/* header starts here  */
.header-main {
  width: 100%;
  background-color: #fcfcfc;
  border: 1px solid #eeecec;
}
.header-container {
}
.logo {
  width: 20%;
}
.logo img {
  width: 50%;
  padding: 0.5rem;
}
.menu {
  width: 65%;
  display: flex;
  align-items: center;
  padding: 0 2rem;
}
.menu ul {
  width: 100%;
  padding: 0 1rem;
  justify-content: space-around;
}
.menu ul li {
  margin: 0 1vw;
}
.menu ul li a {
  font-size: clamp(1rem, 2vw, 1.1rem);
  position: relative;
  padding: 0.4rem 1rem;
  z-index: 100;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  transition-delay: 0.1s;
}

.menu ul li a::after {
  content: "";
  width: 100%;
  background-color: var(--mad-red);
  position: absolute;
  height: 100%;
  z-index: -1;
  left: 0;
  transition: all 0.3s ease-in-out;
  top: 0;
  opacity: 0;
  border-radius: 4px;
}
.menu ul li a:hover::after {
  width: 100%;
  height: 100%;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.14);
  transform: skewX(10deg);
  opacity: 1;
}
.menu ul li a:hover {
  color: var(--white-light-color);
}
.nav-right {
  width: 15%;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.nav-right a {
  width: 100%;
  align-items: center;
  z-index: 10;
  justify-content: center;
  /* margin: 0 1rem; */
  padding: 0.3rem 1rem;
  color: black;
  position: relative;
}
.nav-right a:after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: white;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.14);
  transform: skewX(10deg);
  transition: all 0.3s ease-in-out;
  border-radius: 4px;
}
.nav-right a:hover:after {
  background-color: var(--mad-red);
  color: var(--white-light-color);
}
.nav-right a img {
  width: 20%;
}
.menu ul li a {
  font-size: clamp(1rem, 2vw, 1.1rem);
}
.nav-right a:last-child::after {
  background-color: black;
}
.nav-right a:last-child {
  color: white;
  padding: 0.5rem 1rem;
  text-align: center;
}
.nav-right a:last-child:hover:after {
  background-color: var(--mad-red);
}
.menu-services-btn {
  position: relative;
}
.menu-services {
  transition: all 0.2s ease-in-out;
  width: 208%;
  margin-top: 0.5rem;
  position: absolute;
  left: -20px;
  border-radius: 10px;
  padding: 0.5rem 1rem;
  border: 1px solid grey;
  background-color: white;
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
}
.menu-services-btn:hover .menu-services {
  left: 0;
  opacity: 1;
  pointer-events: all;
}
.menu-services ul {
  padding: 0;
}
.menu-services ul li {
  margin: 1rem 0;
}
.menu-services ul li a {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  padding: 0.3rem 0.5rem;
}
.menu-services ul li a i {
  font-size: 0.8rem;
}
/* header ends here  */

/* footers starts here  */
footer {
  margin-top: 2rem;
}
.footer-logo-main,
.footer-nav,
.copyright {
  background-color: black;
  color: white;
  padding: 1.5rem 0;
}
.footer-main strong {
  color: var(--mad-red);
  display: block;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  margin: 1rem 0;
  font-weight: 400;
}
.footer-main ul li a {
  color: #f0ebe5;
  line-height: 1.7;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  font-weight: 500;
  font-family: metropolis-thin;
}
.footer-main ul li a i {
  margin-right: 0.4rem;
}
.footer-logo-main {
  padding: 2rem 0;
  padding-top: 6rem;
}
.footer-logo {
  width: 30%;
}
.footer-logo img {
  width: 25%;
}
.footer-social {
  width: 70%;
}
.footer-logo-container {
  align-items: center;
}
.footer-social ul {
  justify-content: space-around;
}
.footer-nav {
  width: 100%;
  border-bottom: 1px solid rgba(240, 235, 229, 0.29);
  border-top: 1px solid rgba(240, 235, 229, 0.29);
}
.footer-nav-container {
  gap: 2rem;
}
.footer-navbox {
  padding: 1rem;
  width: 30%;
}
.footer-nav ul li {
  margin-bottom: 0.6rem;
}
.footer-nav ul li a {
  line-height: 1.7;
  font-size: clamp(0.9rem, 1.5vw, 0.95rem);
  font-weight: 500;
  font-family: metropolis-thin;
}
.footer-navbox ul {
  flex-wrap: wrap;
}
.footer-navbox ul li {
  margin-right: 1rem;
}
.copyright {
  text-align: center;
}
.copyright p {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  font-weight: 500;
  font-family: metropolis-thin;
  color: #f0ebe5;
  font-size: clamp(0.9rem, 1.5vw, 0.9rem);
}
.footer-contact-cta {
  width: 100%;
  margin-bottom: -2.8rem;
}
.footer-contact-ctacontainer {
  width: 80%;
  padding: 1em 5rem;
  position: relative;
}
.footer-contact-ctacontainer:after {
  background-color: var(--mad-red);
  height: 100%;
  width: 100%;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  transform: skewX(-10deg);
  border-radius: 4px;
  z-index: 0;
}
.footer-cta-text {
  width: 70%;
  position: relative;
  z-index: 200;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-cta-text h4 {
  font-size: clamp(1.2rem, 2vw, 1.9rem);
  color: var(--white-light-color);
}
.footer-cta-btn {
  width: 30%;
  position: relative;
  z-index: 100;
  display: flex;
  text-align: right;
  justify-content: right;
}
.footer-cta-btn a {
  padding: 0.8rem 1.2rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  border: 0;
}
.footer-cta-btn a:after {
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white-light-color);
  border-radius: 4px;
  position: absolute;
  border: 0;
  z-index: 0;
  transition: all 0.4s ease-in-out;
  transform: skewX(-10deg);
}
.footer-cta-btn a:hover:after {
  background-color: black;
}
.footer-cta-btn a:hover i {
  color: var(--white-light-color);
}
.footer-cta-btn a i {
  font-size: clamp(1.4rem, 2vw, 2rem);
  position: relative;
  z-index: 100;
  transition: all 0.4s ease-in-out;
}
.footer-social ul li a {
  padding: 0.5rem 1rem;
  transition: all 0.3s ease-in-out;
}
.footer-social ul li a:hover {
  background-color: white;
  border-radius: 6px;
  color: black;
}
.footer-social ul li a:hover i {
  color: black;
}
.footer-social ul li a i {
  transition: all 0.3s ease-in-out;
}
/* footer ends here  */

/* home page starts here  */
.slider-main {
  background-color: #f9f9f9;
}
.slider-box {
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  position: relative;
}
.slider-box h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: bolder;
  font-family: metropolis;
  -webkit-text-stroke: 2px black;
  margin: 2rem 0;
}
.slider-box p {
  font-size: clamp(1.1rem, 2vw, 1.2rem);
  width: 90%;
  margin: 3.4rem auto;
  line-height: 2;
  text-align: center;
  color: #675e5e;
  display: block;
  font-weight: 600;
  text-align: center;
}
.slider-box span {
  position: relative;
  margin-right: 1rem;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  color: white;
  -webkit-text-stroke: 2px white;
  z-index: 100;
}
.slider-box span:after {
  width: 90px;
  height: 90px;
  background-color: var(--mad-red);
  content: "";
  left: -15px;
  top: -25px;
  position: absolute;
  border-radius: 50%;
  z-index: -1;
}
.slider-box span:before {
  width: 10px;
  height: 10px;
  background-color: transparent;
  content: "";
  right: -10px;
  top: -10px;
  position: absolute;
  border: 2px solid black;
  border-radius: 50%;
  z-index: 0;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
.slider-box-container {
}
.slider-box-container .slider-left-design-1 {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: black;
  position: absolute;
  left: 3%;
  bottom: 25%;
}
.slider-box-container .slider-left-design-2 {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--mad-red);
  position: absolute;
  left: 10%;
  bottom: 10%;
}
.slider-box-container .slider-right-design-1 {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: black;
  position: absolute;
  right: 10%;
  top: 15%;
}
.slider-box-container .slider-right-design-2 {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--mad-red);
  position: absolute;
  right: 5%;
  top: 35%;
}
.list-services-main {
  background-color: black;
  padding: 3rem;
  z-index: 1000;
  transition: all 0.2s ease-in-out;
}
.list-services-main ul {
  overflow: scroll;
  width: 100%;
  transition: all 0.04s ease-in-out;
}
.list-services-main ul::-webkit-scrollbar {
  width: 0;
}
.list-services-main ul li {
  width: 100%;
}
.list-services-main ul li a {
  color: var(--white-light-color);
  display: flex;
  white-space: nowrap;
  align-items: center;
  justify-content: center;
  margin-right: 3rem;
}
.list-services-main ul li a img {
  width: 30px;
  margin-right: 0.4rem;
}

.list-services-main ul li a {
  font-size: clamp(1.3rem, 4vw, 1.9rem);
  border-bottom: 2px solid var(--white-light-color);
  padding: 0.5rem;
  -webkit-text-stroke: 2px var(--white-light-color);
  letter-spacing: 0.5px;
}
.list-services-container {
  width: 95%;
}
.highlights-main {
  width: 100%;
  margin: 3rem 0;
}
.highlight-box {
  width: 30%;
  display: flex;
  justify-content: right;
  flex-direction: column;
  text-align: left;
  padding: 2rem;
  padding-left: 5vw;
  position: relative;
  z-index: 100;
}
.highlight-box strong {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  margin: 0.5rem 0;
  position: relative;
  z-index: 100;
}
.highlight-box p {
  font-size: clamp(1rem, 2vw, 1.1rem);
  position: relative;
  z-index: 100;
}
.highlight-box1 {
  width: 40%;
  /* background-color: var(--mad-red); */
  padding-left: 22vw;
  position: relative;
  color: white;
}
.highlight-box2 {
  width: 25%;
  /* background-color: var(--mad-red); */
  position: relative;
}
.highlight-box3 {
  width: 35%;
  /* background-color: var(--mad-red); */
  position: relative;
}
.highlight-box1:after {
  content: "";
  background-color: var(--mad-red);
  width: 130%;
  height: 100%;
  position: absolute;
  border-radius: 20px;
  transform: skewX(10deg);
  left: -40%;
  top: 0;
  z-index: 0;
}
.img-drawing {
  width: 100%;
  padding-left: 15vw;
  margin: 4rem 0;
}

.home-services-main {
  width: 100%;
  margin: 8rem 0;
}
.home-services-main h2 {
  font-size: clamp(1.1rem, 2vw, 2rem);
  padding: 0.5rem 2rem;
  position: relative;
  display: inline;
  color: var(--white-light-color);
  z-index: 100;
  font-weight: 800;
  -webkit-text-stroke: 0.5px var(--white-light-color);
}
.what-we-titlebackground {
  width: 100%;
  position: absolute;
  height: 100%;
  transform: skewX(15deg);
  left: 0;
  border-radius: 5px;
  top: 0;
  background-color: var(--mad-red);
  z-index: -1;
}
.home-services-main p {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-size: 700;
  margin-top: 2.5rem;
  -webkit-text-stroke: 0.8px black;
  line-height: 1.6;
}
.home-services-wrapper {
  gap: 3rem;
  margin: 4rem 0;
}
.home-services-wrapper h3 {
  font-size: clamp(1.6rem, 1.8vw, 1.7rem);
  margin: 1.5rem 0;
  text-align: center;
}
.home-service-container {
  width: 88%;
  position: relative;
}
.home-serive-arrow {
  position: absolute;
  left: 68%;
  top: 15%;
}
.home-serive-arrow img {
}
.home-services-design1 {
  width: 25px;
  height: 25px;
  background-color: var(--mad-red);
  right: -3%;
  top: 30%;
  position: absolute;
  border-radius: 50%;
}
.home-services-design2 {
  width: 15px;
  height: 15px;
  background-color: black;
  left: -3%;
  top: 90%;
  position: absolute;
  border-radius: 50%;
}
.work-process {
  background-color: black;
  color: white;
  padding-top: 2rem;
}
.work-process h4 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  padding: 2rem;
}
.work-process h4 span {
  color: var(--white-light-color);
  padding: 0.4rem 2rem;
  position: relative;
  z-index: 100;
  margin-left: 1rem;
  font-size: clamp(1.2rem, 2vw, 1.4rem);
}
.workprocess-titleback {
  width: 100%;
  height: 100%;
  background-color: var(--mad-red);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  transform: skewX(10deg);
  border-radius: 5px;
}
.workprocess-left {
  width: 45%;
}
.workprocess-left img {
  margin-bottom: -4px;
}
.workprocess-right {
  width: 55%;
  padding: 2rem;
  padding-top:80px !important;
}
.workprocess-right h5 {
  color: var(--white-light-color);
  font-size: clamp(1.1rem, 2vw, 1.2rem);
  font-weight: 500;
  margin-bottom: 0.8rem;
}
.workprocess-right p {
  color: var(--white-light-color);
  font-size: clamp(0.9rem, 2vw, 0.95rem);
  font-weight: 500;
  line-height: 1.8;
  opacity: 0.9;
}
.workprocess-box {
  padding: 1.5rem 0;
  position: relative;
  padding-top:60px ;
}
.workprocess-box:last-child {
  padding-bottom: 0;
}
.workprocess-box-line {
  width: 100%;
  height: 1px;
  background-color: var(--mad-red);
  position: absolute;
  bottom: 0;
  left: 0;
}
.why-madworks-main {
  padding-left: 5vw;
  margin: 6rem 0;
}
.why-madworks-left {
  width: 60%;
}
.why-madworks-right {
  width: 40%;
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  margin-top: 8rem;
}
.why-madworks-main h4 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  padding: 2rem;
}
.why-madworks-main h4 span {
  color: var(--white-light-color);
  padding: 0.4rem 2rem;
  position: relative;
  z-index: 100;
  margin-left: 1rem;
  font-size: clamp(1.2rem, 2vw, 1.4rem);
}
.why-madworks-titleback {
  width: 100%;
  height: 100%;
  background-color: var(--mad-red);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  transform: skewX(10deg);
  border-radius: 5px;
}
.why-madworks-box {
  padding: 1rem 0;
}
.why-madworks-box:first-child {
  padding-top: 0;
}
.why-madworks-box h6 {
  font-size: clamp(1.1rem, 2vw, 1.2rem);
  margin-bottom: 0.8rem;
  position: relative;
}
.why-madworks-box h6:after {
  content: "";
  left: -40px;
  top: 0;
  width: 20px;
  height: 20px;
  background-color: var(--mad-red);
  position: absolute;
  border-radius: 50%;
  z-index: 100;
}
.why-madworks-box p {
  color: #666060;
  font-size: clamp(0.9rem, 1.8vw, 0.95rem);
  line-height: 1.7;
  width: 90%;
}
.why-madworks-title {
  position: relative;
}
.why-madworks-title:after {
  content: "";
  left: 0;
  top: -10px;
  width: 100px;
  height: 100%;
  border-left: 2px solid black;
  border-top: 2px solid black;
  position: absolute;
}
.why-madworks-box-wrapper {
  padding: 0 4rem;
  padding-right: 2rem;
  position: relative;
  margin-top: 2rem;
}
.why-madworks-box-wrapper:after {
  content: "";
  left: 33px;
  top: 0;
  height: 100%;
  width: 2px;
  background-color: #9f8787;
  position: absolute;
  z-index: 0;
}
.we-are {
  position: absolute;
  left: -55px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -55px;
  background-color: var(--mad-red);
  height: 110px;
  width: 110px;
  border-radius: 50%;
}
.we-are img {
  width: 80%;
  display: none;
}
.why-madworks-letter-logo {
  margin-top: -6rem;
  text-align: center;
}

.why-madworks-letter-logo img {
  width: 80%;
}
.why-arrow-down {
  position: absolute;
  bottom: 20px;
  left: -4rem;
}
/* home page ends here  */

/* contact page css starts here  */
.contact-main {
  padding: 3rem 0;
  position: relative;
}
.contact-left {
  width: 45%;
  position: relative;
  z-index: 1000;
}
.contact-left .contact-left-box {
  align-items: flex-start;
  margin: 3rem 0;
}
.contact-left-boxleft {
  width: 10%;
}
.contact-left-boxleft img {
  width: 70%;
}
.contact-left-boxright {
  width: 90%;
}
.contact-left-boxright strong {
  color: black;
  font-size: clamp(1.1rem, 2vw, 1.2rem);
  display: block;
  font-weight: 600;
}
.contact-left-boxright p {
  margin: 1rem 0;
  font-size: clamp(1rem 1.5vw, 1.05rem);
  font-weight: 300;
}
.contact-left-boxright a {
  font-size: clamp(1rem 1.5vw, 1.05rem);
  font-weight: 600;
  line-height: 1.6;
  position: relative;
}
.contact-left-boxright a:after {
  content: "";
  left: 0;
  bottom: -10px;
  height: 2px;
  background-color: var(--mad-red);
  width: 100%;
  position: absolute;
}
.contact-right {
  width: 55%;
  position: relative;
  z-index: 1000;
}
.contact-form-wrapper {
  background-color: black;
  padding: 3rem 4rem;
  margin: 2rem;
  color: white;
  border-radius: 20px;
}
.contact-form input,
textarea {
  width: 100%;
  font-size: clamp(1.05rem, 2vw, 1.15rem);
  border: 0;
  border-bottom: 1px solid var(--white-light-color);
  background-color: transparent;
  padding: 0.8rem 1rem;
  margin: 0.7rem 0;
  outline: none;
  color: white;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--white-light-color);
  font-size: clamp(1rem, 1.5vw, 1.05rem);
}
.service-selection-wrapper {
  flex-wrap: wrap;
  /* padding: 1rem; */
  padding-top: 1rem;
}
.services-selection {
  margin: 2rem 0;
  margin-top: 1rem;
}
.s-selection {
  width: 45%;
  margin-right: 1rem;
  align-items: center;
  margin: 0.5rem 0;
}
.s-selection .checkbox {
  width: 10%;
  padding: 0.5rem;
  width: 18px;
  height: 18px;
  margin-right: 0.5rem;
  color: black;
  position: relative;
}
.s-selection .checkbox input {
  height: 18px;
  width: 18px;
  position: absolute;
  left: 0;
  top: -11px;
}
.s-selection .checkbox input:checked .checkbox {
  z-index: -1;
}
.s-selection .checkbox input:checked {
  z-index: 100;
  background-color: red !important;
}
.s-selection .checkbox:after {
  content: "";
  left: 0;
  border: 1px solid var(--white-light-color);
  top: 0;
  background-color: black;
  position: absolute;
  width: 100%;
  height: 100%;
}
.s-selection .checkbox-text {
  width: 90%;
  color: var(--white-light-color);
}
.s-selection .checkbox-text label {
  cursor: pointer;
}
.contact-right h1 {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  margin-bottom: 1rem;
  color: var(--white-light-color);
}

.submit-btn {
  background-color: var(--white-light-color) !important;
  color: black !important;
  border: 0 !important;
  border-radius: 10px !important;
  display: block;
  font-weight: 600;
  font-size: clamp(1.1rem, 2vw, 1.2rem);
}
.contact-back-design {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.07);
  clip-path: polygon(0 0, 100% 0%, 100% 30%, 0% 100%);
  z-index: 0;
}
/* contact page css ends here  */

/* about us page css starts here  */
.hero-about {
  width: 100%;
  position: relative;
  height: 80vh;
  background-color: black;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-content {
  text-align: center;
}
.hero-content h1 {
  font-size: clamp(2rem, 4vw, 4rem);
  -webkit-text-stroke: 1px white;
  position: relative;
  z-index: 1000;
}
.hero-red-design {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background-color: var(--mad-red);
  transition: all 0.6s cubic-bezier(0.91, 0, 0.17, 1);
}
.hero-red-design.active {
  width: 30%;
  opacity: 1;
}
.hero-content h1 strong {
  color: var(--mad-red);
  display: block;
  font-weight: bolder;
  -webkit-text-stroke: 1px var(--mad-red);
  margin-top: 1rem;
}
.hero-down-arrow {
  position: absolute;
  background-color: white;
  height: 70px;
  width: 70px;
  border-radius: 50%;
  z-index: 1000;
  right: 5%;
  bottom: -35px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.03));
  transition: all 0.2s cubic-bezier(0.91, 0, 0.17, 1);
  cursor: pointer;
}
.hero-down-arrow:hover {
  background-color: var(--mad-red);
}
.hero-down-arrow i {
  font-size: 2rem;
  transition: all 0.2s cubic-bezier(0, 0.61, 0.99, 0.37);
}
.hero-down-arrow:hover i {
  color: var(--white-light-color);
}
.about-main {
  margin: 3rem 0;
  width: 100%;
  padding: 2rem 0;
}
.about-container p {
  font-size: clamp(1.1rem, 2vw, 1.15rem);
  line-height: 2;
  font-weight: 500;
  text-align: center;
  width: 95%;
  margin: 1rem auto;
}
.about-high-main {
  width: 90%;
  background-color: black;
  padding: 2rem;
  margin: 5rem auto;
}
.about-high-left {
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  border-right: 2px solid var(--mad-red);
}
.about-high-right {
  width: 70%;
  flex-wrap: wrap;
  gap: 2rem 0;
}
.about-high-left strong {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  display: block;
  color: var(--mad-red);
  margin-bottom: 1rem;
}
.about-high-left span {
  font-size: clamp(1.1rem, 2vw, 1.15rem);
  display: block;
  color: white;
}
.about-high-right .about-high-right-box {
  width: 50%;
  text-align: center;
}
.about-high-right .about-high-right-box strong {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  display: block;
  color: var(--mad-red);
  margin-bottom: 0.5rem;
}
.about-high-right .about-high-right-box span {
  font-size: clamp(1rem, 2vw, 1rem);
  display: block;
  color: white;
}
.vision-main {
}
.vision-container {
  gap: 2rem;
}
.vision-left {
  text-align: left;
  position: relative;
  padding: 1.5rem 2rem;
}
.vision-left:after {
  content: "";
  left: 0;
  top: 0;
  background-color: white;
  width: 100%;
  height: 100%;
  transform: skewX(-3deg);
  position: absolute;
}
.vision-left:before {
  content: "";
  left: 0;
  top: 30%;
  background-color: var(--mad-red);
  width: 2px;
  height: 40%;
  transform: skewX(-3deg);
  position: absolute;
  z-index: 1000;
}
.vision-right {
  text-align: left;
  position: relative;
  padding: 1.5rem 2rem;
}
.vision-container h3 {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  margin-bottom: 1rem;
  position: relative;
  z-index: 100;
}
.vision-container p {
  font-size: clamp(0.9rem, 2vw, 0.95rem);
  text-align: left;
  padding: 0;
  width: 100%;
  position: relative;
  z-index: 100;
}
.vision-right:after {
  content: "";
  left: 0;
  top: 0;
  background-color: white;
  width: 100%;
  height: 100%;
  transform: skewX(-3deg);
  position: absolute;
}
.vision-right:before {
  content: "";
  left: 0;
  top: 30%;
  background-color: var(--mad-red);
  width: 2px;
  height: 40%;
  transform: skewX(-3deg);
  position: absolute;
  z-index: 1000;
}

.team-main {
  padding: 3rem 0;
  background-color: black;
  position: relative;
  /* overflow: hidden; */
  clip-path: polygon(0 4%, 100% 0%, 100% 97%, 0% 100%);
  z-index: 100;
}
.top-border-team {
  width: 100%;
  height: 4px;
  background-color: var(--mad-red);
  transform: rotate(-1.3deg);
}

.team-container {
    padding-left: 20px;
}
/*.team-left {*/
/*  width: 35%;*/
/*  display: flex;*/
/*  align-items: center;*/
/*   flex-direction: column; */
  /* justify-content: center; */
/*  border-right: 1px solid var(--white-light-color);*/
/*   gap:15px*/
/*}*/

.team-left-wrapper {
  padding-bottom: 50px;   /* creates visible gap */
}

.team-right {
  width: 65%;
  padding-top: 100px;
}
.team-right-wrapper {
  padding-left: 6rem;
}
.team-rightbox {
  margin: 1.5rem;
  margin-right: 3rem;
  margin-bottom: 3rem;
  position: relative;
}
.team-rightbox:nth-child(even) {
  margin-bottom: 2rem;
}

.team-sliderbox {
}
.team-rightbox-content {
  /* background-color: var(--white-light-color); */
  width: 85% !important;
  position: absolute;
  bottom: -10%;
  left: 10%;
  padding: 0.5rem;
  padding-left: 1rem;
}
.team-rightbox-content:after {
  background-color: var(--white-light-color);
  content: "";
  left: 0;
  top: 0;
  border-radius: 5px;
  position: absolute;
  width: 100%;
  height: 100%;
  transform: skewX(-3deg);
  z-index: 0;
}
/*.team-rightbox h6 {*/
/*  font-size: clamp(0.8rem, 1.5vw, 0.85rem);*/
/*  color: black;*/
/*  margin-bottom: 0.2rem;*/
/*  position: relative;*/
/*  z-index: 100;*/
/*}*/
.team-rightbox h6 {
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  color: #000;
  margin-bottom: 0.3rem;
  line-height: 1.3;
  text-align: center;

  /* ✅ Content fit */
  white-space: normal;      /* allows wrapping */
  word-break: break-word;  /* prevents overflow */
  overflow-wrap: anywhere;
}

.team-rightbox span {
  font-size: clamp(0.8rem, 1.5vw, 0.8rem);
  color: var(--mad-red);
  font-weight: 600;
  position: relative;
  z-index: 100;
}
.team-sliderbox-wrapper {
  display: flex;
  flex-direction: column;
  
}
.team-left h3 {
  font-size: clamp(2rem, 3vw, 2.2rem);
  color: var(--white-light-color);
  margin-bottom: 2rem;
}
.team-left img {
  width: 80%;
padding-top: 10px;
}
.team-left h5 {
  font-size: clamp(1.1rem, 2vw, 1.2em);
  color: white;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.team-left span {
  font-size: clamp(1rem, 2vw, 1.1em);
  color: var(--mad-red);
}
.about-clients-left {
  width: 40%;
}
.about-clients-right {
  width: 60%;
  padding: 4rem 0;
  position: relative;
}
.about-clients-right:after {
  width: 75%;
  height: 100%;
  background-color: #f2d6d6;
  content: "";
  right: -10%;
  position: absolute;
  top: 0;
  z-index: -1;
}
.about-clients-right-wrapper .slick-list {
  padding: 1rem;
}
.about-clients-box {
}
.about-client-logo {
}
.about-clients-box-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 2rem;
}
.about-clients-box-wrapper .about-client-logo {
  width: 40%;
  background-color: white;
  padding: 1rem;
  display: flex;
  align-items: center;
  border-radius: 10px;
  justify-content: center;
  border-radius: 10px;
  background: #fefdfd;
  box-shadow: 0px 0px 30px 10px rgba(216, 213, 213, 0.25);
}
.about-clients-box-wrapper .about-client-logo img {
  width: 80%;
  aspect-ratio: 3/1.3;
}
.about-clients-box {
  /* margin: 0.5rem; */
  outline: none !important;
}
.about-our-clients {
  padding: 2rem 0;
  margin: 3rem 0;
  overflow: hidden;
}
.about-clients-left {
  display: flex;
  align-content: center;
  justify-content: center;
  flex-direction: column;
}
.about-clients-left h4 {
  font-size: clamp(2rem, 2.5vw, 2.6rem);
  -webkit-text-stroke: 0.5px black;
  margin-bottom: 1.5rem;
}
.about-clients-left p {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: #544d4d;
  width: 75%;
  line-height: 1.6;
}
/* about us page css ends here  */

/* web development start here  */
.service-hero {
  width: 100%;
  height: 50vh;
  background-color: var(--white-light-color);
  display: flex;
  align-items: center;
  position: relative;
}
.service-container h1 {
  color: black;
  margin-top: 6rem;
  font-size: clamp(2rem, 3vw, 3.5rem);
  -webkit-text-stroke: 0.4px black;
  line-height: 1.3;
  margin-left: 3rem;
}
.service-container h1 span {
  color: var(--mad-red);
  -webkit-text-stroke: 0.4px var(--mad-red);
}
.service-hero-down {
  width: 70px;
  position: absolute;
  cursor: pointer;
  bottom: -35px;
  right: 8%;
  height: 70px;
  background-color: white;
  display: flex;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  align-items: center;
  filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.03));
}
.service-hero-down:hover {
  background-color: var(--mad-red);
}
.service-hero-down:hover i {
  color: var(--white-light-color);
}
.service-hero-down i {
  font-size: 2.5rem;
  transition: all 0.4s ease-in-out;
}
.star-design {
  position: absolute;
  left: 3%;
  top: 20%;
}
.star-design img {
  width: 65%;
}
.service-1 {
  width: 100%;
  padding: 2rem 0;
  margin: 4rem 0;
}
.service-1-left {
  width: 50%;
  padding-right: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-1-left h2 {
  font-size: clamp(1.7rem, 2vw, 2.2rem);
  font-weight: 900;
  line-height: 1.4;
  -webkit-text-stroke: 0.2px black;
  color: black;
}
.service-1-left h2 span {
  color: var(--mad-red);
  -webkit-text-stroke: 0.2px var(--mad-red);
}
.service-1-left p {
  font-size: clamp(0.95rem, 1.5vw, 1rem);
  line-height: 1.8;
  margin: 1rem 0;
  margin-bottom: 2rem;
  border-radius: 4px;
}

.service-1-right {
  width: 50%;
}
.service-1-left a {
  /* background-color: var(--mad-red); */
  color: var(--white-light-color);
  padding: 0.6rem 1rem;
  font-size: clamp(0.95rem, 1.5vw, 1rem);
  position: relative;
  font-weight: 600;
  border: 0;
  overflow: hidden;
}

.service-1-left a:after {
  content: "";
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--mad-red);
  top: 0;
  position: absolute;
  z-index: -1;
  border-radius: 4px;
  transform: skewX(-10deg);
  transition: all 0.4s ease-in-out;
}
.service-1-left a:hover:after {
  color: var(--white-light-color);
  background-color: black;
}
.service-1-left a span {
  position: relative;
  border-radius: 4px;
  margin-left: 0.2rem;
  clip-path: polygon(8% 0, 100% 0%, 94% 100%, 0% 100%);
}
.service-1-left a span i {
  color: black;
  font-size: 1.2rem;
  color: var(--white-light-color);
  font-weight: 700;
}
.our-technologies {
  background-color: rgba(242, 231, 231, 0.41);
  padding: 4rem 0;
}
.our-technologies-top {
  border-bottom: 1px solid #b6b0b0;
  padding-bottom: 2rem;
}
.our-technologies-top h4 {
  font-size: clamp(1.7rem, 2vw, 2.4rem);
  text-align: center;
  line-height: 1.5;
  color: black;
  -webkit-text-stroke: 0.2px black;
}
.our-technologies-top h4 span {
  color: var(--mad-red);
  -webkit-text-stroke: 0.2px var(--mad-red);
}
.our-technologies-bottom {
  padding: 3rem;
}
.our-technologies-bottom ul {
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
}
.our-technologies-bottom ul li {
  /* width: 12%; */
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  text-align: center;
  padding: 1rem 1.5rem;
  color: black;
  -webkit-text-stroke: 0.2px black;
  border-radius: 10px;
}
.our-technologies-bottom ul li:hover {
  background-color: white;
  box-shadow: 0px 0px 30px 20px rgba(0, 0, 0, 0.05);
  transform: scale(0.9);
}
.our-technologies-bottom ul li {
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
}
.dev-process-main {
  width: 100%;
  padding: 4rem 0;
  margin: 3rem 0;
}
.dev-process-container {
}
.dev-process-left {
  width: 45%;
  position: relative;
  padding-top: 5rem;
}
.dev-process-right {
  width: 55%;
}
.dev-process-left h4 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.4;
  -webkit-text-stroke: 0.2px black;
  color: black;
}
.dev-process-right {
  padding-left: 4rem;
}
.dev-process-right .dev-process-box {
  padding: 1rem;
  position: relative;
  padding-left: 2rem;
  padding-top: 0;
  padding-bottom: 2rem;
}
.dev-process-right .dev-process-box h6 {
  font-size: clamp(1.15rem, 1.8vw, 1.2rem);
  padding: 0.5rem 0;
}
.dev-process-right .dev-process-box p {
  font-size: clamp(0.9rem, 1.5vw, 0.95rem);
  line-height: 1.7;
  width: 85%;
  color: #565050;
}
.dev-process-number {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--mad-red);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: -18px;
  top: 0;
  z-index: 100;
}
.dev-process-number span {
  color: var(--white-light-color);
  font-size: clamp(1.6rem, 2vw, 1.8rem);
  font-weight: 800;
  margin-bottom: -4px;
}
.dev-process-left-line {
  position: absolute;
  left: 0;
  top: 0;
  border-right: 2px dotted var(--mad-red);
  height: 100%;
}
.dev-process-left p {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.7;
  width: 85%;
  color: #565050;
  padding-top: 1rem;
}
.dev-process-left-textwrapper {
  position: sticky;
  top: 30%;
}
.what-we-do-services {
  background-color: black;
  padding: 3rem 0;
  color: white;
}
.what-we-do-servicetop {
  padding: 2rem 0;
  border-bottom: 1px solid var(--mad-red);
  align-items: center;
}
.what-we-do-servicetop h5 {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  margin-right: 5rem;
  line-height: 1.4;
  width: 30%;
}
.what-we-do-servicetop p {
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.4;
  width: 70%;
  opacity: 0.9;
}
.what-we-do-servicesbottom {
  padding: 2rem 0;
  flex-wrap: wrap;
  gap: 1rem 3rem;
}
.what-we-do-servicebox {
  width: 30%;
  padding: 1rem;
  transition: all 0.3s ease-in-out;
}
.what-we-do-servicebox:hover {
  background-color: #201f1f;
  border-radius: 10px;
  cursor: pointer;
}
.what-we-do-servicebox h6 {
  font-size: clamp(1.1rem, 2vw, 1.15rem);
  padding: 0.6rem 0;
  color: var(--white-light-color);
  font-weight: 500;
  -webkit-text-stroke: 0.2px var(--white-light-color);
  line-height: 1.3;
  width: 85%;
}
.what-we-do-servicebox p {
  font-size: clamp(0.85rem, 1.5vw, 0.9rem);
  font-weight: 400;
  line-height: 1.5;
  opacity: 0.8;
  font-weight: 400;
}
.services-clients {
  padding: 2rem 0;
  margin: 2rem 0;
  text-align: center;
}
.services-clients h5 {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  padding: 1.5rem 0;
}
.services-clients p {
    font-size: clamp(1.05rem, 1.5vw, 1.1rem);
    line-height: 1.4;
}
.services-clients-wrapper {
  flex-wrap: wrap;
  margin: 3rem 0;
}
.services-clients-box {
  padding: 1rem;
  border: 1px solid #dbd9d9;
  width: 16.66%;
  display: flex;
  justify-content: center;
  overflow: hidden;
  align-items: center;
  position: relative;
}
.services-clients-box img {
  width: 60%;
  transition: all 0.3s ease-in-out;
  /* aspect-ratio: 4/1.6; */
}
.services-clients-box:hover img {
  transform: scale(1.1);
}
.services-clients-box:after {
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  transform: scale(0);
  transition: all 0.3s ease-in-out;
  position: absolute;
  height: 100%;
  border-radius: 50%;
}
.services-clients-box a {
  font-size: 0.9rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transition: all 0.3s ease-in-out;
  transform: translate(-50%, -50%);
  z-index: 100;
  opacity: 0;
}
.services-clients-box:hover:after {
  transform: scale(1);
  border-radius: 0;
}
.services-clients-box:hover a {
  opacity: 1;
}
.services-clients-box a:after {
  width: 0%;
  height: 1px;
  background-color: black;
  left: 0;
  position: absolute;
  content: "";
  bottom: -20%;
  transition: all 0.3s ease-in-out;
}
.services-clients-box a:hover:after {
  width: 100%;
}
/* web development ends here  */

.digital-maketing-hero {
  background: url("../media/digital-marketing-bg.png");
  background-size: cover;
}
.digital-marketing-herooverlay {
  width: 100%;
  height: 100%;
  background-color: rgba(240, 235, 229, 0.9);
  /* background-color: rgba(0, 0, 0, 0.9); */
  position: absolute;
  left: 0;
  top: 0;
}

.photography-hero {
  /* position: relative; */
  background: url("../media/photography-bg.jpg");
  background-size: cover;
}
.photography-overlay {
  background-color: rgba(0, 0, 0, 0.7);
}
.photography-hero h1 {
  color: white;
  -webkit-text-stroke: 0.4px white;
}
.web-development-hero {
  background: url("../media/web-development-bg.jpg");
  background-size: cover;
}
.web-development-hero-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.web-development-hero h1 {
  color: white;
  -webkit-text-stroke: 0.4px white;
}
