/* start nav */
.tc-navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  background-color: transparent;
  padding: 10px 5vw;
  transition: background-color 0.3s ease;
  /* Added smooth background transition */
}

.tc-navbar .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.tc-navbar .content .navbar-brand {
  max-width: 115px;
  margin-inline-end: 100px;
}

.tc-navbar .content .navbar-brand-color {
  display: none;
  max-width: 115px;
  margin-inline-end: 100px;
}

.tc-navbar .content .navbar-nav {
  display: flex;
  align-items: center;
}

.tc-navbar .content .navbar-nav .nav-link {
  font-size: 14px;
  color: #fff;
  opacity: 1;
  margin: 0 20px;
  transition: color 0.3s ease;
  /* Added smooth color transition */
}

.tc-navbar .content .navbar-nav .text-dark {
  font-size: 14px;
  color: #000000;
  opacity: 1;
}

.tc-navbar .content .navbar-nav .nav-link:hover,
.tc-navbar .content .navbar-nav .nav-link-dark:hover,
.tc-navbar .content .navbar-nav .nav-link.active {
  color: var(--color-orange1);
}

.tc-navbar .content .nav-side .icon {
  font-size: 14px;
  color: #fff;
}

.tc-navbar .dropdown-menu {
  border-radius: 10px;
  overflow: hidden;
  color: #fff !important;
  background-image: linear-gradient(-45deg, #45261F, #20201F, #34301C);
}
.tc-navbar .dropdown-menu .dropdown-item{
  color: #fff;
}
.tc-navbar .dropdown-menu .dropdown-item:hover {
  background-color: #20201F;
}
.tc-navbar .dropdown-menu li:last-of-type .dropdown-item {
  border: 0;
  
}


/* Responsiveness */
@media screen and (max-width: 991px) {

  .tc-navbar .dropdown-menu .dropdown-item {
    position: relative;
    color: #fff;
    background-color: #000000;
  }
  .tc-navbar .dropdown-menu .dropdown-item:hover {
    background-color: #000000;
  }
  .tc-navbar .content {
    border: 0;
    display: flex;
    justify-content: space-between;
    align-items: start;
  }

 
  .tc-navbar {
    position: relative;
    background-color: #000000;
  }



  .tc-navbar .content .navbar-brand {
    display: none;
  }

  .tc-navbar .content .navbar-brand-color {
    display: block;
  }

  .tc-navbar .content .navbar-nav {
    display: flex;
    align-items: start;
    flex-direction: column;
    width: 100%;
    margin: 20px 0;
  }

  .tc-navbar .content .navbar-nav .nav-link {
    text-align: left;
    margin: 5px 0;
    color: #fff;
    width: 100%;
  }
  .tc-navbar .content .navbar-nav .nav-link .text-dark {
    color: #fff !important;
  }
 
  .tc-navbar .dropdown-menu {
    background-color: #000000;
  }
 
  .tc-navbar .dropdown-menu a:hover {
    color: var(--color-orange1);
  }

  .tc-navbar .content .navbar-nav .text-dark {
    font-size: 14px;
    color: #fff !important;
    opacity: 1;
  }


}



/* end nav */

/* start slider */
/* --------------- header style1 --------------- */
.tc-header-style1 .header-slider {
  position: relative;
  overflow: hidden;
}

.tc-header-style1 .header-slider .swiper-slide {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.tc-header-style1 .header-slider .swiper-slide-active {
  position: relative;
  z-index: 20;
}

.tc-header-style1 .header-slider .slider-controls {
  position: absolute;
  right: 40px;
  bottom: 130px;
  z-index: 20;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 20px;
  border-radius: 30px;
  color: #fff;
}

.tc-header-style1 .header-slider .slider-controls .swiper-button-next,
.tc-header-style1 .header-slider .slider-controls .swiper-button-prev {
  position: static;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  -webkit-margin-start: 50px;
  margin-inline-start: 50px;
  font-size: 30px;
}

.tc-header-style1 .header-slider .slider-controls .swiper-button-next::after,
.tc-header-style1 .header-slider .slider-controls .swiper-button-prev::after {
  color: #fff;
  position: relative;
}

.tc-header-style1 .header-slider .swiper-pagination {
  position: absolute;
  left: 4vw;
  bottom: 120px;
  color: #fff;
  z-index: 30;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.tc-header-style1 .header-slider .swiper-pagination>span {
  font-size: 30px;
  font-weight: 100;
  display: block;
  margin: 10px 0;
}

.tc-header-style1 .slider-card {
  position: relative;
}

.tc-header-style1 .slider-card .img {
  height: 650px;
  position: relative;
  min-height: 100vh;
}

.tc-header-style1 .slider-card .img::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 30%;
  pointer-events: none;
}

.tc-header-style1 .slider-card .info {
  position: absolute;
  left: 0;
  bottom: 30px;
  width: 100%;
  z-index: 20;
  color: #fff;
}

.tc-header-style1 .slider-card .info h1 {
  font-size: calc(6vw + 16px) !important;
  font-weight: 500;
  line-height: 1;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 991px) {
  .tc-header-style1 .slider-card .img {
    height: 550px;
  }

  .tc-header-style1 .slider-card .info {
    bottom: 10px;
    padding:40px 15px;
  }

  .tc-header-style1 .slider-card .info h1 {
    font-size: calc(6vw + 30px) !important;
    font-weight: 700;
  }
  .tc-header-style1 .swiper-pagination {
    display: none;
  }

  .tc-header-style1 .header-slider .slider-controls {
    bottom: 165px;
    right: 0;
  }

  .tc-header-style1 .header-slider .slider-controls .swiper-button-prev::after,
  .tc-header-style1 .header-slider .slider-controls .swiper-button-next::after {
    font-size: 21px;
  }
}

/* end slider */

/* start about */
/* --------------- experience style1 --------------- */
.tc-experience-style1 {
  position: relative;
  padding: 150px 0 100px;
  background-color: #F1EEE9;
  border-radius: 40px 40px 0 0;
  overflow: hidden;
  margin-top: -40px;
  z-index: 10;
}

.tc-experience-style1 .c-line {
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100% - 140px);
  z-index: 5;
  pointer-events: none;
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  transition: all 2s linear;
}

.tc-experience-style1 .c-line.animated {
  clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
}

.tc-experience-style1 .exp-num .num {
  font-size: 150px;
  color: var(--color-orange1);
  font-weight: 500;
}

.tc-experience-style1 .img {
  height: 550px;
  border-radius: 20px;
  overflow: hidden;
  transform: rotate(30deg) scale(1.3);
  transition: all 1s ease;
  transition-delay: 0.4s;
  opacity: 0;
}

.tc-experience-style1 .img.animated {
  transform: rotate(-15deg) scale(1);
  opacity: 1;
}

.tc-experience-style1 .rotate-txt {
  font-size: 12px;
  color: #666;
  transform: rotate(90deg) translateX(30px);
  text-transform: uppercase;
  display: flex;
  transform-origin: right;
}

/* Responsive adjustments */
@media screen and (max-width: 991px) {
  .tc-experience-style1 {
    padding: 80px 0;
  }

  .tc-experience-style1 .c-line {
    object-fit: contain;
  }

  .tc-experience-style1 .img {
    transform: rotate(0);
    margin-bottom: 50px;
    opacity:100%;

  }

  .tc-experience-style1 .exp-num .num {
    position: relative;
    margin-bottom: -175px;
    z-index: 10;
  }

  .tc-experience-style1 .c-line {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: calc(100% - 140px);
    z-index: 5;
    pointer-events: none;
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    transition: all 2s linear;
  }
}

/* --------------- team style --------------- */
.tc-team {
  position: relative;
  padding: 50px 0;
  background-color: #fff;
  border-radius: 40px;
  z-index: 10;
}

.tc-team .numbers {
  padding-top: 5px;
}

.tc-team .numbers .number-card {
  display: flex;
  padding-top: 5px;
  margin-top: 20px;
}

.tc-team .numbers .number-card .perc {
  font-size: 55px;
  flex-shrink: 0;
  margin-inline-end: 25px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-orange1);
}

.tc-team .numbers .number-card p {
  font-size: 17px;
  color: #666;
  text-transform: capitalize;
  line-height: 1.5;
}

/* Responsive adjustments for smaller screens */
@media screen and (max-width: 991px) {
  .tc-team {
    padding: 30px 0;
  }

  .tc-team .numbers .number-card {
    flex-direction: row;
  }

  .tc-team .numbers .number-card .perc {
    font-size: 40px;
    margin-bottom: 10px;
  }

  .tc-team .numbers .number-card p {
    font-size: 15px;
  }
  .tc-experience-style1 .img {
    height: 400px;
    opacity:100%;

  }
}

@media screen and (max-width: 575px) {
  .tc-experience-style1 {
    padding: 60px 0;
  }

  .tc-experience-style1 .img {
    height: 400px;
    opacity:100%;

  }

  .tc-experience-style1 .exp-num .num {
    font-size: 100px;
  }

  .tc-team .numbers .number-card .perc {
    font-size: 50px;
  }

  .tc-team .numbers .number-card p {
    font-size: 14px;
  }
}


:root {
  --bg-color: #000000;
  --text-color: #fff;
  --border-color: #ccc;
  --hover-opacity: 0.5;
  --hover-opacity-active: 1;
  --color-orange: var(--color-orange1);
}

.tc-testimonials-style2 {
  padding: 100px 0;
  background-color: var(--bg-color);
  z-index: 99;
}

.tc-testimonials-style2 .logos {
  display: flex;
  flex-wrap: wrap;

}

.tc-testimonials-style2 .logos a {
  height: 35px;
  opacity: var(--hover-opacity);
  transition: opacity 0.3s;
}

.tc-testimonials-style2 .logos a:hover {
  opacity: var(--hover-opacity-active);
}

.tc-testimonials-style2 .logos a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media screen and (max-width: 991px) {
  .tc-testimonials-style2 .logos {
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .tc-testimonials-style2 .logos a {
    width: 30%;
    margin: 10px;
  }
}

.tc-testimonials-style1 {
  position: relative;
  padding: 150px 0;
}

.tc-testimonials-style1 .c-line {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 25%;
  z-index: 5;
  pointer-events: none;
}

.tc-testimonials-style1 .lg-icon {
  font-size: 170px;
  margin-inline-start: -15px;
  display: block;
}

.tc-testimonials-style1 .tc-clients-style1 {
  position: relative;
  overflow: hidden;
}

.tc-testimonials-style1 .tc-clients-style1 .author {
  display: flex;
  align-items: center;
  padding-top: 50px;
  margin-top: 80px;
  border-top: 1px solid var(--border-color);
}

.tc-testimonials-style1 .tc-clients-style1 .author .au-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  margin-inline-end: 20px;
}

.tc-testimonials-style1 .tc-clients-style1 .slider-controls {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid var(--border-color);
  position: absolute;
  bottom: 0;
  background: #fff;
  z-index: 10;
}


.tc-testimonials-style1 .tc-clients-style1 .slider-controls .swiper-button-next::after,
.tc-testimonials-style1 .tc-clients-style1 .slider-controls .swiper-button-prev::after {
  color: #000;
  font-size: 12px;
}

.tc-testimonials-style1 .tc-clients-style1 .slider-controls .swiper-pagination {
  position: static;
  margin: 0 10px;
}

.tc-testimonials-style1 .marq-slider {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

.tc-testimonials-style1 .marq-slider a {
  font-size: 150px;
  font-weight: 500;
  color: transparent;
  -webkit-text-stroke: 1px #000;
  transition: color 0.3s;
}

.tc-testimonials-style1 .marq-slider a:hover {
  color: #000;
}

@media screen and (max-width: 991px) {
  .tc-testimonials-style1 {
    padding: 50px 0;
  }

  .tc-testimonials-style1 .lg-icon {
    font-size: 120px;
  }

  .tc-testimonials-style1 .marq-slider a {
    font-size: 50px;
  }
}

.tc-team-style1 {
  position: relative;
  padding: 150px 0;
  background-color: #fff;
  border-radius: 40px 40px 0 0;
  z-index: 10;
  margin-top: -40px;
}

.tc-team-style1 .team-card {
  position: relative;
  margin-bottom: 40px;
  display: block;
  transition: all 0.5s ease;
  /* إضافة تأثير انتقالي */
}

.tc-team-style1 .team-card:hover .img {
  transform: scale(0.95);
}

.tc-team-style1 .team-card:hover .img img {
  transform: scale(1.2);
}

.tc-team-style1 .team-card:hover .title {
  opacity: 1;
  top: 50%;
}

.tc-team-style1 .team-card .img {
  position: relative;
  width: 100%;
  border-radius: 50%;
  overflow: hidden;
  display: block;
  margin: auto;
  transition: all 0.3s ease;
}

.tc-team-style1 .team-card .img::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0;
  z-index: 1;
  transition: all 0.3s ease;
}

.tc-team-style1 .team-card .title {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  color: var(--text-color);
  opacity: 0;
  text-align: center;
  width: 100%;
  transition: all 0.3s ease;
  line-height: 1.5;
  text-transform: capitalize;
}

.tc-team-style1 .numbers {
  padding-top: 50px;
}

.tc-team-style1 .numbers .number-card {
  display: flex;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
  margin-top: 50px;
}

.tc-team-style1 .numbers .number-card .perc {
  font-size: 55px;
  flex-shrink: 0;
  margin-inline-end: 25px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-orange);
}

.tc-team-style1 .numbers .number-card p {
  font-size: 17px;
  color: #666;
  text-transform: capitalize;
}

/* end products */

/* start mail */

.tc-chat-style1 {
  position: relative;
  padding: 150px 0;
  background-color: #F1EEE9;
}

.tc-chat-style1 .c-line {
  position: absolute;
  right: 0;
  bottom: 70px;
  width: 100%;
  pointer-events: none;
  height: 450px;
  pointer-events: none;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  -webkit-transition: all 2s linear;
  -o-transition: all 2s linear;
  transition: all 2s linear;
}

.tc-chat-style1 .c-line.animated {
  -webkit-clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
  clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
}


.tc-chat-style1 .xl-text {
  font-size: 80px;
  font-weight: 500;
  position: relative;
  z-index: 10;
  line-height: 1;
  color: var(--color-orange1);
  margin-bottom: 20px;
}
.tc-chat-style1 .lg-text {
  font-size: 74px;
  font-weight: 500;
  position: relative;
  z-index: 10;
  line-height: 1;
  color: var(--color-orange1);
  margin-bottom: 20px;
  display: block;
}

@media screen and (max-width: 991px) {
  .tc-chat-style1 .xl-text {
    font-size: 35px;
    font-weight: 700;
  }

  .tc-chat-style1 .lg-text {
    font-size: 32px;
    font-weight: 700;
  }
}



/* end mail */



/* contact */
.tc-inner-header-style1 {
  position: relative;
  padding: 50px 0;
}

.tc-inner-header-style1 h1 {
  font-size: 200px;
  font-weight: 500;
  line-height: 300px;
  letter-spacing: -0.05em;
  color: #000;
}

.tc-contact-form-style1 {
  position: relative;
  padding: 150px 0;
  background-color: #F1EEE9;
  overflow: hidden;
}

.tc-contact-form-style1 .form {
  display: block;
}

.tc-contact-form-style1 .form label {
  display: block;
  font-size: 10px;
  color: #000;
  text-transform: uppercase;
}

.tc-contact-form-style1 .form .form-control {
  border: 0;
  background-color: transparent;
  border-radius: 0;
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
  font-size: 14px;
}

.tc-contact-form-style1 .form .form-control:hover,
.tc-contact-form-style1 .form .form-control:focus {
  border-color: #000;
}

.tc-contact-form-style1 .shap {
  position: absolute;
  bottom: -10px;
  left: 0;
  height: 55%;
}

.tc-map-style1 {
  position: relative;
  padding: 90px 4vw 120px;
  border-radius: 0 0 30px 30px;
  background-color: #000;
  z-index: 10;
}

.tc-map-style1 .map-card {
  border-radius: 25px;
  overflow: hidden;
  height: 500px;
}

.tc-map-style1 .map-card #map {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  margin-bottom: -6px;

}

/* --------------- s-project-pg-style2 --------------- */
:root {
  --color-primary: #F1EEE9;
  --color-secondary: #000;
  --color-orange: var(--color-orange1);
}

/* --------------- s-project-pg-style2 --------------- */
.s-project-pg-style2 .smooth-scroll-content {
  position: relative;
  height: 900px;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding: 100px 0;
  color: #fff;
  border-radius: 30px 30px 0 0;
  overflow: hidden;
}

.s-project-pg-style2 .smooth-scroll-content::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#000000c8), color-stop(#0005), to(transparent));
  background-image: -webkit-linear-gradient(bottom, #000000c8, #0005, transparent);
  background-image: -o-linear-gradient(bottom, #000000c8, #0005, transparent);
  background-image: linear-gradient(to top, #000000c8, #0005, transparent);
}

.s-project-pg-style2 .smooth-scroll-content .bg {
  position: absolute;
  left: 0;
  top: 0;
  max-height: unset;
  height: 200%;
  -o-object-position: top;
  object-position: top;
  margin-top: -25%;
  -webkit-transition: all linear;
  -o-transition: all linear;
  transition: all linear;
}

.s-project-pg-style2 .smooth-scroll-content .tags a {
  font-size: 12px;
  font-weight: 500;
  padding: 7px 25px;
  border: 1px solid #ccc;
  border-radius: 30px;
  -webkit-margin-end: 5px;
  margin-inline-end: 5px;
}

.s-project-pg-style2 .smooth-scroll-content .title {
  font-size: 150px;
  font-weight: 500;
  line-height: 150px;
  letter-spacing: -0.05em;
  margin-top: 30px;
}

.s-project-pg-style2 .tc-main-info-style2 {
  position: relative;
  z-index: 10;
  background-color: #F1EEE9;
  border-radius: 30px 30px 0 0;
  margin-top: -30px;
  padding: 150px 0 180px;
}

.s-project-pg-style2 .tc-main-info-style2 .imgs {
  margin-top: 100px;
}

.s-project-pg-style2 .tc-main-info-style2 .imgs .sm-img {
  position: relative;
  width: 330px;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 50px;
}

.s-project-pg-style2 .tc-main-info-style2 .imgs .sm-img img {
  position: absolute;
  left: 0;
  top: -100%;
  height: 300%;
  width: 100%;
  max-height: none;
  -webkit-transition: all linear;
  -o-transition: all linear;
  transition: all linear;
}

.s-project-pg-style2 .tc-main-info-style2 .imgs .lg-img {
  position: relative;
  height: 630px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 50px;
}

.s-project-pg-style2 .tc-main-info-style2 .imgs .lg-img img {
  position: absolute;
  left: 0;
  top: -100%;
  height: 300%;
  width: 100%;
  max-height: none;
  -webkit-transition: all linear;
  -o-transition: all linear;
  transition: all linear;
}

.s-project-pg-style2 .tc-challenge-style2 {
  position: relative;
  padding: 150px 0;
  z-index: 20;
  background-color: #fff;
  margin-top: -30px;
  border-radius: 30px 30px 0 0;
}

.s-project-pg-style2 .tc-challenge-style2 .content {
  position: relative;
  overflow: hidden;
}

@media screen and (min-width: 1200px) {
  .s-project-pg-style2 .tc-challenge-style2 .content {
    -webkit-margin-start: calc((100vw - 1320px) / 2);
    margin-inline-start: calc((100vw - 1320px) / 2);
  }
}

.s-project-pg-style2 .tc-challenge-style2 .content * {
  cursor: none;
}

.s-project-pg-style2 .tc-challenge-style2 .content .float-cursor {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  width: 160px;
  height: 160px;
  background-color: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 16px;
  z-index: 10;
  -webkit-transition: all 0.02 linear;
  -o-transition: all 0.02 linear;
  transition: all 0.02 linear;
  pointer-events: none;
  -webkit-box-shadow: 0 0 30px #0001;
  box-shadow: 0 0 30px #0001;
}

.s-project-pg-style2 .tc-challenge-style2 .content .float-cursor.show {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

.s-project-pg-style2 .tc-challenge-style2 .content .cases-slider {
  position: relative;
  overflow: hidden;
}

.s-project-pg-style2 .tc-challenge-style2 .content .case-card .img {
  display: block;
  height: 600px;
  border-radius: 15px;
  overflow: hidden;
}

.s-project-pg-style2 .tc-testimonials-style2 .content {
  padding: 150px 0;
  border-top: 1px solid #ccc;
}

.s-project-pg-style2 .tc-testimonials-style2 .content .testi-slider {
  position: relative;
  overflow: hidden;
}

.s-project-pg-style2 .tc-testimonials-style2 .content .testi-slider .testi-card {
  text-align: center;
}

.s-project-pg-style2 .tc-testimonials-style2 .content .testi-slider .testi-card .text {
  font-size: 70px;
  font-family: "Inter", sans-serif;

  line-height: 1.1;
}

.s-project-pg-style2 .main-video {
  height: 900px;
  border-radius: 30px 30px 0 0;
  overflow: hidden;
}

.s-project-pg-style2 .main-video video {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.s-project-pg-style2 .tc-contact-style2 {
  position: relative;
  padding: 150px 0 0;
  background-color: #F1EEE9;
  z-index: 30;
  margin-top: -30px;
  border-radius: 30px 30px 0 0;
}

.s-project-pg-style2 .tc-contact-style2 .form {
  display: block;
}

.s-project-pg-style2 .tc-contact-style2 .form label {
  display: block;
  font-size: 10px;
  color: #000;
  text-transform: uppercase;
}

.s-project-pg-style2 .tc-contact-style2 .form .form-control {
  border: 0;
  background-color: transparent;
  border-radius: 0;
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
  font-size: 14px;
}

.s-project-pg-style2 .tc-contact-style2 .form .form-control:hover,
.s-project-pg-style2 .tc-contact-style2 .form .form-control:focus {
  border-color: #000;
}

.s-project-pg-style2 .tc-contact-style2 .marq-content {
  position: relative;
  cursor: none;
}

.s-project-pg-style2 .tc-contact-style2 .marq-content * {
  cursor: none;
}

.s-project-pg-style2 .tc-contact-style2 .marq-content .float-cursor {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  width: 160px;
  height: 160px;
  background-color: var(--color-orange1);
  color: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 16px;
  z-index: 10;
  -webkit-transition: opacity 0.5s linear, -webkit-transform 0.1s ease;
  transition: opacity 0.5s linear, -webkit-transform 0.1s ease;
  -o-transition: opacity 0.5s linear, transform 0.1s ease;
  transition: opacity 0.5s linear, transform 0.1s ease;
  transition: opacity 0.5s linear, transform 0.1s ease, -webkit-transform 0.1s ease;
  pointer-events: none;
  -webkit-box-shadow: 0 0 30px #0001;
  box-shadow: 0 0 30px #0001;
}

.s-project-pg-style2 .tc-contact-style2 .marq-content .float-cursor .icon {
  font-size: 70px;
}

.s-project-pg-style2 .tc-contact-style2 .marq-content .float-cursor.show {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

.s-project-pg-style2 .tc-contact-style2 .marq-content .marq-slider {
  position: relative;
  overflow: hidden;
  padding: 200px 0 150px;
}

.s-project-pg-style2 .tc-contact-style2 .marq-content .marq-slider .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  -o-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
  position: relative;
}

.s-project-pg-style2 .tc-contact-style2 .marq-content .marq-slider .swiper-wrapper .swiper-slide {
  width: -webkit-max-content !important;
  width: -moz-max-content !important;
  width: max-content !important;
}

.s-project-pg-style2 .tc-contact-style2 .marq-content .marq-slider a {
  font-size: 150px;
  line-height: 150px;
  font-weight: 500;
  -webkit-text-stroke: 1px #000;
  color: transparent;
}

.s-project-pg-style2 .tc-contact-style2 .marq-content .marq-slider a:hover {
  color: #000;
}

@media screen and (min-width: 1200px) {
  .s-project-pg-style2 .tc-challenge-style2 .content {
    margin-inline-start: calc((100vw - 1320px) / 2);
  }
}

.s-project-pg-style2 .tc-challenge-style2 .content * {
  cursor: none;
}

.s-project-pg-style2 .tc-challenge-style2 .content .float-cursor {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  width: 160px;
  height: 160px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 16px;
  z-index: 10;
  transition: all 0.02s linear;
  pointer-events: none;
  box-shadow: 0 0 30px #0001;
}

.s-project-pg-style2 .tc-challenge-style2 .content .float-cursor.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.s-project-pg-style2 .tc-challenge-style2 .content .cases-slider {
  position: relative;
  overflow: hidden;
}

.s-project-pg-style2 .tc-testimonials-style2 .content {
  padding: 150px 0;
  border-top: 1px solid #ccc;
}

.s-project-pg-style2 .tc-testimonials-style2 .content .testi-slider {
  position: relative;
  overflow: hidden;
}

.s-project-pg-style2 .tc-testimonials-style2 .content .testi-slider .testi-card {
  text-align: center;
}

.s-project-pg-style2 .tc-testimonials-style2 .content .testi-slider .testi-card .text {
  font-size: 70px;
  font-family: "Inter", sans-serif;

  line-height: 1.1;
}

.s-project-pg-style2 .main-video {
  height: 900px;
  border-radius: 30px 30px 0 0;
  overflow: hidden;
}

.s-project-pg-style2 .main-video video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.s-project-pg-style2 .tc-contact-style2 {
  position: relative;
  padding: 150px 0 0;
  background-color: var(--color-primary);
  z-index: 30;
  margin-top: -30px;
  border-radius: 30px 30px 0 0;
}

.s-project-pg-style2 .tc-contact-style2 .form {
  display: block;
}

.s-project-pg-style2 .tc-contact-style2 .form label {
  display: block;
  font-size: 10px;
  color: #000;
  text-transform: uppercase;
}

.s-project-pg-style2 .tc-contact-style2 .form .form-control {
  border: 0;
  background-color: transparent;
  border-radius: 0;
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
  font-size: 14px;
}

.s-project-pg-style2 .tc-contact-style2 .form .form-control:hover,
.s-project-pg-style2 .tc-contact-style2 .form .form-control:focus {
  border-color: #000;
}

.s-project-pg-style2 .tc-contact-style2 .marq-content {
  position: relative;
  cursor: none;
}

.s-project-pg-style2 .tc-contact-style2 .marq-content * {
  cursor: none;
}

.s-project-pg-style2 .tc-contact-style2 .marq-content .float-cursor {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  width: 160px;
  height: 160px;
  background-color: var(--color-orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 16px;
  z-index: 10;
  transition: opacity 0.5s linear, transform 0.1s ease;
  pointer-events: none;
  box-shadow: 0 0 30px #0001;
}

.s-project-pg-style2 .tc-contact-style2 .marq-content .float-cursor .icon {
  font-size: 70px;
}

.s-project-pg-style2 .tc-contact-style2 .marq-content .float-cursor.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.s-project-pg-style2 .tc-contact-style2 .marq-content .marq-slider {
  position: relative;
  overflow: hidden;
  padding: 200px 0 150px;
}

.s-project-pg-style2 .tc-contact-style2 .marq-content .marq-slider .swiper-wrapper {
  transition-timing-function: linear !important;
  position: relative;
}

.s-project-pg-style2 .tc-contact-style2 .marq-content .marq-slider .swiper-wrapper .swiper-slide {
  width: max-content !important;
}

.s-project-pg-style2 .tc-contact-style2 .marq-content .marq-slider a {
  font-size: 150px;
  line-height: 150px;
  font-weight: 500;
  -webkit-text-stroke: 1px #000;
  color: transparent;
}

.s-project-pg-style2 .tc-contact-style2 .marq-content .marq-slider a:hover {
  color: #000;
  transition: color 0.3s;
}

/* Responsive Styles */
@media screen and (max-width: 1199px) {
  .s-project-pg-style2 .smooth-scroll-content .title {
    font-size: 100px;
    line-height: 100px;
  }
}

@media screen and (max-width: 991px) {
  .s-project-pg-style2 .smooth-scroll-content .title {
    font-size: 80px;
    line-height: 80px;
  }

  .tc-map-style1 .map-card {
    height: 400px;
  }
}

@media screen and (max-width: 767px) {
  .s-project-pg-style2 .smooth-scroll-content .title {
    font-size: 60px;
    line-height: 60px;
  }
}

@media screen and (max-width: 575px) {
  .s-project-pg-style2 .smooth-scroll-content .title {
    font-size: 40px;
    line-height: 40px;
  }

  .s-project-pg-style2 .tc-contact-style2 .form .form-control {
    padding: 5px 0;
    font-size: 12px;
  }
}



/* --------------- process style2 --------------- */
.tc-process-style2 {
  position: relative;
  padding: 150px 0;
  overflow: hidden;
}

.tc-process-style2 .container {
  position: relative;
  z-index: 10;
}

.tc-process-style2 .bg {
  position: absolute;
  left: 0;
  top: -15%;
  width: 100%;
  height: 130%;
  -o-object-fit: cover;
  object-fit: cover;
  background-image: url(../img/prc_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  max-height: inherit;
}

.tc-process-style2 .accordion-item {
  border: 0;
  border-radius: 20px;
  margin-bottom: 5px;
}

.tc-process-style2 .accordion-item .accordion-button {
  color: #000;
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
  padding: 30px;
  border: 0;
}

.tc-process-style2 .accordion-item .accordion-button:not(.collapsed) h3 {
  color: var(--color-orange1);
}

.tc-process-style2 .accordion-item .accordion-button:not(.collapsed)::after {
  background-image: none;
  content: "\f068";
  font-family: "Font Awesome 5 Pro";
  -webkit-transform: rotate(0) !important;
  -ms-transform: rotate(0) !important;
  transform: rotate(0) !important;
}

.tc-process-style2 .accordion-item .accordion-button h3 {
  font-size: 24px;
}

.tc-process-style2 .accordion-item .accordion-button .num {
  font-size: 24px;
  color: #999;
  font-weight: 200;
  -webkit-margin-end: 30px;
  margin-inline-end: 30px;
  font-family: "Inter", sans-serif;

}

.tc-process-style2 .accordion-item .accordion-button::after {
  background-image: none;
  content: "\f067";
  font-family: "Font Awesome 5 Pro";
  -webkit-transform: rotate(0) !important;
  -ms-transform: rotate(0) !important;
  transform: rotate(0) !important;
}

.tc-process-style2 .accordion-item .accordion-body {
  -webkit-padding-start: 85px;
  padding-inline-start: 85px;
  -webkit-padding-end: 50px;
  padding-inline-end: 50px;
  padding-top: 0;
  padding-bottom: 30px;
}

.tc-process-style2 .accordion-item .accordion-body .text {
  font-size: 18px;
  color: #303030;
}

.tc-process-style2 .imgs {
  position: relative;
  background-image: url(../img/bubbles.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tc-process-style2 .imgs .img {
  position: relative;
  margin: 0 auto;
}

.tc-process-style2 .imgs .img img {
  border-radius: 25px;
}

.tc-process-style2 .imgs .img:nth-of-type(1) {
  width: 75%;
  height: 360px;
  border-radius: 25px;
  -webkit-transform: translateX(50px);
  -ms-transform: translateX(50px);
  transform: translateX(50px);
}

.tc-process-style2 .imgs .img:nth-of-type(1) .txt {
  font-size: 35px;
  position: absolute;
  top: 65px;
  right: -65px;
  z-index: 10;
  border: 1px solid #ccc;
  background-color: #F1EEE9;
  border-radius: 15px;
  padding: 0 30px;
  text-transform: capitalize;
}

.tc-process-style2 .imgs .img:nth-of-type(2) {
  position: absolute;
  right: -50px;
  top: 150px;
  width: 75%;
  height: 160px;
  border-radius: 25px;
}

.tc-process-style2 .imgs .img:nth-of-type(2)::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#000000c5), to(transparent));
  background-image: -webkit-linear-gradient(bottom, #000000c5, transparent);
  background-image: -o-linear-gradient(bottom, #000000c5, transparent);
  background-image: linear-gradient(to top, #000000c5, transparent);
  border-radius: 25px;
}

.tc-process-style2 .imgs .img:nth-of-type(2) .txt {
  font-size: 25px;
  position: absolute;
  bottom: 15px;
  right: 0;
  z-index: 10;
  color: #fff;
  text-transform: capitalize;
}

.tc-process-style2 .imgs .img:nth-of-type(3) {
  position: absolute;
  left: 4px;
  top: 300px;
  width: 75%;
  height: 220px;
  border-radius: 25px;
}

.tc-process-style2 .imgs .img:nth-of-type(3)::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 75%;
  height: 100%;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#000000c5), to(transparent));
  background-image: -webkit-linear-gradient(bottom, #000000c5, transparent);
  background-image: -o-linear-gradient(bottom, #000000c5, transparent);
  background-image: linear-gradient(to top, #000000c5, transparent);
  border-radius: 25px;
}

.tc-process-style2 .imgs .img:nth-of-type(3) .txt {
  font-size: 30px;
  position: absolute;
  bottom: 15px;
  right: 50%;
  -webkit-transform: translateX(50%);
  -ms-transform: translateX(50%);
  transform: translateX(50%);
  z-index: 10;
  color: #fff;
  text-transform: capitalize;
}

.tc-process-style2 .imgs .img:nth-of-type(4) {
  width: 75%;
  height: 240px;
  border-radius: 25px;
  margin-top: 40px;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}

.tc-process-style2 .imgs .img:nth-of-type(4) .txt {
  font-size: 30px;
  position: absolute;
  top: 65px;
  left: -65px;
  z-index: 10;
  background-color: #000;
  color: #fff;
  border-radius: 15px;
  padding: 5px 30px;
  text-transform: capitalize;
}

@media screen and (max-width: 991px) {
  .tc-process-style2 {
    padding: 80px 0;
  }
  .tc-inner-header-style1 h1{
      font-size: 95px;
    }

  .tc-process-style2 .imgs {
    margin-top: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .tc-process-style2 .imgs .img {
    width: 100% !important;
    height: 350px !important;
    border-radius: 30px !important;
    margin: 1% !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    -webkit-transform: translate(0) !important;
    -ms-transform: translate(0) !important;
    transform: translate(0) !important;
  }

  .tc-process-style2 .imgs .img::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: -webkit-gradient(linear, left bottom, left top, from(#000000c5), to(transparent));
    background-image: -webkit-linear-gradient(bottom, #000000c5, transparent);
    background-image: -o-linear-gradient(bottom, #000000c5, transparent);
    background-image: linear-gradient(to top, #000000c5, transparent);
    border-radius: 30px !important;
  }

  .tc-process-style2 .imgs .img img {
    border-radius: 30px !important;
  }

  .tc-process-style2 .imgs .img .txt {
    font-size: 30px !important;
    position: absolute !important;
    top: auto !important;
    bottom: 15px !important;
    right: 50% !important;
    -webkit-transform: translateX(50%) !important;
    -ms-transform: translateX(50%) !important;
    transform: translateX(50%) !important;
    z-index: 10 !important;
    color: #fff !important;
    text-transform: capitalize !important;
    background-color: transparent !important;
    border: 0 !important;
  }
}

/* --------------- portfolio pg style1 --------------- */
.portfolio-pg-style1 {
  position: relative;
}

.portfolio-pg-style1 .tc-featured-cases-style1 {
  padding: 120px 0;
}

.portfolio-pg-style1 .tc-featured-cases-style1 .tab-content {
  position: relative;
}

.portfolio-pg-style1 .tc-featured-cases-style1 .tab-content * {
  cursor: none;
}

.portfolio-pg-style1 .tc-featured-cases-style1 .tab-content .float-cursor {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  width: 160px;
  height: 160px;
  background-color: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 16px;
  z-index: 10;
  -webkit-transition: all 0.02 linear;
  -o-transition: all 0.02 linear;
  transition: all 0.02 linear;
  pointer-events: none;
  -webkit-box-shadow: 0 0 30px #0001;
  box-shadow: 0 0 30px #0001;
}

.portfolio-pg-style1 .tc-featured-cases-style1 .tab-content .float-cursor.show {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

@media screen and (min-width: 1200px) {
  .portfolio-pg-style1 .tc-featured-cases-style1 .content {
    -webkit-margin-start: calc((100vw - 1320px) / 2);
    margin-inline-start: calc((100vw - 1320px) / 2);
  }
}

.portfolio-pg-style1 .tc-featured-cases-style1 .content .nav-pills .nav-link {
  font-size: 18px;
  line-height: 24px;
  color: #666;
  background-color: transparent;
  padding: 0;
  -webkit-margin-end: 50px;
  margin-inline-end: 50px;
  text-transform: capitalize;
}

.portfolio-pg-style1 .tc-featured-cases-style1 .content .nav-pills .nav-link.active {
  color: var(--color-orange1);
}

.portfolio-pg-style1 .tc-featured-cases-style1 .content .cases-slider {
  position: relative;
  overflow: hidden;
}

.portfolio-pg-style1 .tc-featured-cases-style1 .content .case-card .img {
  display: block;
  height: 600px;
  border-radius: 15px;
  overflow: hidden;
}

.portfolio-pg-style1 .tc-featured-cases-style1 .content .case-card .info {
  padding-top: 30px;
}

.portfolio-pg-style1 .tc-featured-cases-style1 .content .case-card .info .tags a {
  font-size: 12px;
  font-weight: 500;
  padding: 7px 25px;
  border: 1px solid #ccc;
  border-radius: 30px;
  -webkit-margin-end: 5px;
  margin-inline-end: 5px;
}

.portfolio-pg-style1 .tc-latest-cases-style1 .filter .links a {
  font-size: 18px;
  line-height: 24px;
  color: #666;
  background-color: transparent;
  padding: 0;
  -webkit-margin-end: 50px;
  margin-inline-end: 50px;
  text-transform: capitalize;
}

.portfolio-pg-style1 .tc-latest-cases-style1 .filter .links a.active {
  color: var(--color-orange1);
}

.portfolio-pg-style1 .tc-latest-cases-style1 .content {
  padding: 150px 0;
  border-top: 1px solid #ccc;
}

.portfolio-pg-style1 .tc-latest-cases-style1 .content .case-card {
  position: relative;
  margin-bottom: 100px;
}

.portfolio-pg-style1 .tc-latest-cases-style1 .content .case-card .img {
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  display: block;
}

.portfolio-pg-style1 .tc-latest-cases-style1 .content .case-card .info {
  padding-top: 30px;
}

.portfolio-pg-style1 .tc-latest-cases-style1 .content .case-card .info .tags a {
  font-size: 12px;
  font-weight: 500;
  padding: 7px 25px;
  border: 1px solid #ccc;
  border-radius: 30px;
  -webkit-margin-end: 5px;
  margin-inline-end: 5px;
}

@media screen and (max-width: 991px) {
  .portfolio-pg-style1 .tc-featured-cases-style1 {
    padding: 80px 0;
  }

  .portfolio-pg-style1 .tc-featured-cases-style1 .content {
    padding: 0 15px;
  }

  .portfolio-pg-style1 .tc-featured-cases-style1 .content .nav-pills .nav-link {
    margin-bottom: 10px;
    font-size: 13px;
    -webkit-margin-end: 15px;
    margin-inline-end: 15px;
    font-weight: bold;
  }

  .portfolio-pg-style1 .tc-featured-cases-style1 .content .case-card .img {
    height: 300px;
  }

  .portfolio-pg-style1 .tc-latest-cases-style1 .filter .links a {
    margin-bottom: 10px;
    font-size: 13px;
    -webkit-margin-end: 15px;
    margin-inline-end: 15px;
    font-weight: bold;
  }

  .portfolio-pg-style1 .tc-latest-cases-style1 .content {
    padding: 80px 0;
  }

  .portfolio-pg-style1 .tc-latest-cases-style1 .content .case-card {
    margin-bottom: 50px;
  }

  .portfolio-pg-style1 .tc-latest-cases-style1 .content .case-card .img {
    height: 250px;
  }
}

.portfolio-pg-style1 .tc-latest-cases-style1 .filter .links a {
  font-size: 18px;
  line-height: 24px;
  color: #666;
  background-color: transparent;
  padding: 0;
  -webkit-margin-end: 50px;
  margin-inline-end: 50px;
  text-transform: capitalize;
}

.portfolio-pg-style1 .tc-latest-cases-style1 .filter .links a.active {
  color: var(--color-orange1);
}

.portfolio-pg-style1 .tc-latest-cases-style1 .content {
  padding: 150px 0;
  border-top: 1px solid #ccc;
}

.portfolio-pg-style1 .tc-latest-cases-style1 .content .case-card {
  position: relative;
  margin-bottom: 100px;
}

.portfolio-pg-style1 .tc-latest-cases-style1 .content .case-card .img {
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  display: block;
}

.portfolio-pg-style1 .tc-latest-cases-style1 .content .case-card .info {
  padding-top: 30px;
}

.portfolio-pg-style1 .tc-latest-cases-style1 .content .case-card .info .tags a {
  font-size: 12px;
  font-weight: 500;
  padding: 7px 25px;
  border: 1px solid #ccc;
  border-radius: 30px;
  -webkit-margin-end: 5px;
  margin-inline-end: 5px;
}

@media screen and (max-width: 991px) {
  .portfolio-pg-style1 .tc-featured-cases-style1 {
    padding: 80px 0;
  }

  .portfolio-pg-style1 .tc-featured-cases-style1 .content {
    padding: 0 15px;
  }

  .portfolio-pg-style1 .tc-featured-cases-style1 .content .nav-pills .nav-link {
    margin-bottom: 10px;
    font-size: 13px;
    -webkit-margin-end: 15px;
    margin-inline-end: 15px;
    font-weight: bold;
  }

  .portfolio-pg-style1 .tc-featured-cases-style1 .content .case-card .img {
    height: 300px;
  }

  .portfolio-pg-style1 .tc-latest-cases-style1 .filter .links a {
    margin-bottom: 10px;
    font-size: 13px;
    -webkit-margin-end: 15px;
    margin-inline-end: 15px;
    font-weight: bold;
  }

  .portfolio-pg-style1 .tc-latest-cases-style1 .content {
    padding: 80px 0;
  }

  .portfolio-pg-style1 .tc-latest-cases-style1 .content .case-card {
    margin-bottom: 50px;
  }

  .portfolio-pg-style1 .tc-latest-cases-style1 .content .case-card .img {
    height: 250px;
  }
}

/* contact */

/* start footer */
:root {
  --footer-bg-color: #fff;
  --footer-border-color: #ccc;
  --footer-text-color: #666;
}

.tc-footer {
  position: relative;
  background-color: var(--footer-bg-color);
  /* إضافة خلفية */
}

.tc-footer .shap {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  object-fit: contain;
  object-position: left bottom;
}

.tc-footer .foot-main-content {
  position: relative;
  padding: 100px 20px;
}

.tc-footer .foot-main-content .links-group ul li a {
  color: var(--footer-text-color);
  margin: 5px 0;
  transition: color 0.3s;
  /* إضافة تأثير انتقالي */
}

.tc-footer .foot-main-content .links-group ul li a:hover {
  color: var(--color-orange1);
}

.tc-footer .foot {
  padding: 50px 0;
  border-top: 1px solid var(--footer-border-color);
}

.tc-footer .foot .logo img {
  height: 35px;
  object-fit: contain;
}

.tc-footer .foot .social-links a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--footer-border-color);
  margin: 5px;
  font-size: 12px;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
  /* إضافة تأثير انتقالي */
}

.tc-footer .foot .social-links a:hover {
  background-color: var(--color-orange1);
  border-color: var(--color-orange1);
  color: #fff;
}

/* end footer */

.tc-post-content-style1 {
  position: relative;
  padding: 110px 0;
  background-color: #fff;
  border-radius: 30px 30px 0 0;
  margin-top: -30px;
  z-index: 20;
}

.tc-post-content-style1 .breadcromb {
  padding: 5px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-transform: capitalize;
  margin-bottom: 90px;
}

.tc-post-content-style1 .breadcromb .icon {
  margin: 0 5px;
}

.tc-post-content-style1 .breadcromb a:last-of-type {
  opacity: 0.7;
}

.tc-post-content-style1 .lg-letter {
  font-size: 90px;
  line-height: 55px;
  letter-spacing: -0.03em;
  color: #000;
  float: left;
  -webkit-margin-end: 30px;
  margin-inline-end: 30px;
}

.tc-post-content-style1 .share-content .tags a {
  font-size: 12px;
  color: #000;
  background-color: #EBEBF3;
  padding: 5px 10px;
  border-radius: 30px;
  -webkit-margin-end: 10px;
  margin-inline-end: 10px;
  font-weight: 500;
}

.tc-post-content-style1 .share-content .tags a:hover {
  background-color: var(--color-orange1);
  color: #fff;
}

.tc-post-content-style1 .share-content .share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.tc-post-content-style1 .share-content .share .links a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  -webkit-margin-start: 10px;
  margin-inline-start: 10px;
  border-radius: 50%;
  border: 1px solid #ccc;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 13px;
}

.tc-post-content-style1 .share-content .share .links a:hover {
  border-color: var(--color-orange1);
  background-color: var(--color-orange1);
  color: #fff;
}

.tc-post-content-style1 .editor {
  margin-top: 110px;
  position: relative;
  padding: 80px 0;
  border-top: 1px solid #ccc;
}

.tc-post-content-style1 .editor .img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
}

.tc-post-content-style1 .editor .social-links {
  position: relative;
  margin-top: 30px;
}

.tc-post-content-style1 .editor .social-links a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  -webkit-margin-end: 10px;
  margin-inline-end: 10px;
  border-radius: 50%;
  border: 1px solid #ccc;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 13px;
}

.tc-post-content-style1 .editor .social-links a:hover {
  border-color: var(--color-orange1);
  background-color: var(--color-orange1);
  color: #fff;
}

.tc-post-content-style1 .related-posts {
  position: relative;
  padding: 110px 0 30px;
  border-top: 1px solid #ccc;
}

.tc-post-content-style1 .related-posts .arrows {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.tc-post-content-style1 .related-posts .arrows .swiper-button-prev,
.tc-post-content-style1 .related-posts .arrows .swiper-button-next {
  position: static;
  margin: 0;
  -webkit-margin-start: 40px;
  margin-inline-start: 40px;
}

.tc-post-content-style1 .related-posts .arrows .swiper-button-prev::after,
.tc-post-content-style1 .related-posts .arrows .swiper-button-next::after {
  font-size: 18px;
  color: #000;
}

.tc-post-content-style1 .related-posts .related-slider {
  position: relative;
  overflow: hidden;
}

.tc-comments-style1 {
  position: relative;
  background-color: #F1EEE9;
  border-radius: 30px 30px 0 0;
  margin-top: -30px;
  z-index: 40;
  padding: 110px 0;
}

.tc-comments-style1 .form-control {
  border: 0;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
  background-color: transparent;
  padding: 10px 0;
}

.tc-comments-style1 .form-control:hover,
.tc-comments-style1 .form-control:focus {
  border-color: #000;
}

@media screen and (max-width: 991px) {
  .th-450 {
    height: 300px !important;
  }

  .fsz-45 {
    font-size: 40px !important;
  }

  .tc-main-img-style1 .main-img {
    height: 400px;
  }

  .tc-main-img-style1 .content .title {
    font-size: 40px;
    line-height: 80px;
    padding-bottom: 20px;
  }

  .tc-post-content-style1 .breadcromb {
    display: block;
  }

  .tc-post-content-style1 .share-content .tags a {
    margin-bottom: 10px;
  }

  .tc-post-content-style1 .related-posts .arrows .swiper-button-prev,
  .tc-post-content-style1 .related-posts .arrows .swiper-button-next {
    -webkit-margin-start: 0;
    margin-inline-start: 0;
    -webkit-margin-end: 30px;
    margin-inline-end: 30px;
  }

  .comment-replay-cont .d-flex {
    display: block !important;
  }

  .comment-replay-cont .ms-90 {
    -webkit-margin-start: 30px !important;
    margin-inline-start: 30px !important;
  }
}


.tc-main-img-style1 {
  position: relative;
}

.tc-main-img-style1 .main-img {
  height: 650px;
  overflow: hidden;
}

.tc-main-img-style1 .main-img::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#000000c8), color-stop(#00000079), to(transparent));
  background-image: -webkit-linear-gradient(bottom, #000000c8, #00000079, transparent);
  background-image: -o-linear-gradient(bottom, #000000c8, #00000079, transparent);
  background-image: linear-gradient(to top, #000000c8, #00000079, transparent);
}

.tc-main-img-style1 .main-img img {
  max-height: unset;
  height: 200%;
  -o-object-position: top;
  object-position: top;
  margin-top: -25%;
  -webkit-transition: all linear;
  -o-transition: all linear;
  transition: all linear;
}

.tc-main-img-style1 .content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  color: #fff;
  z-index: 5;
  padding: 120px 0;
  text-align: center;
}

.tc-main-img-style1 .content .title {
  font-size: 90px;
  font-weight: 500;
  line-height: 100px;
  letter-spacing: -0.03em;
  padding-bottom: 20px;
}

@media screen and (max-width: 991px) {
  .th-450 {
    height: 300px !important;
  }

  .fsz-45 {
    font-size: 30px !important;
  }

  .tc-main-img-style1 .main-img {
    height: 400px;
  }

  .tc-main-img-style1 .content .title {
    font-size: 40px;
    line-height: 60px;
  }

  .tc-post-content-style1 .breadcromb {
    display: block;
  }

  .tc-post-content-style1 .share-content .tags a {
    margin-bottom: 10px;
  }

  .tc-post-content-style1 .related-posts .arrows .swiper-button-prev,
  .tc-post-content-style1 .related-posts .arrows .swiper-button-next {
    -webkit-margin-start: 0;
    margin-inline-start: 0;
    -webkit-margin-end: 30px;
    margin-inline-end: 30px;
  }

  .comment-replay-cont .d-flex {
    display: block !important;
  }

  .comment-replay-cont .ms-90 {
    -webkit-margin-start: 30px !important;
    margin-inline-start: 30px !important;
  }
}


.cases-content .content .case-card .img {
  display: block;
  height: 300px !important;
  border-radius: 15px !important;
  overflow: hidden;
}
.cases-content .content .case-card .img img{

  width: 100%;
  height: 100%;
}

.cases-content .content .case-card .info {
  padding-top: 30px;
}

.cases-content .content .case-card .info .tags a {
  font-size: 12px;
  font-weight: 500;
  padding: 7px 25px;
  border: 1px solid #ccc;
  border-radius: 30px;
  -webkit-margin-end: 5px;
  margin-inline-end: 5px;
}
@media screen and (max-width: 991px) {



  .cases-content .content .case-card {
    margin-bottom: 50px;
  }

  .cases-content .content .case-card .img {
    height: 250px !important;
  }
  .cases-content .content .case-card .img img{
    width: 100%;
    height: 100%;
  }
  }