@import url("variables.css");

/* ================================
   Fonts
================================ */
@font-face {
  font-family: "TT Firs Neue";
  src: url("../fonts/TT-Firs-Neue-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TT Firs Neue";
  src: url("../fonts/TT-Firs-Neue-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TT Firs Neue";
  src: url("../fonts/TT-Firs-Neue-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ================================
   Global Styles
================================ */
html,
body {
  height: 100%;
  font-size: 14px;
  font-weight: 400;
}

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

body {
  background: var(--color-dark);
  color: var(--color-light);
  font-family: "TT Firs Neue", sans-serif;
  display: flex;
  flex-direction: column;
}

html[dir="rtl"] body{
  font-family: "Cairo", sans-serif;
}

main {
  flex: 1;
  padding-top: 110px;
}

/* Hero Section   */
.hero-section {
  background-image: url("../images/hero.png");
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-section .container {
  gap: 32px;
}

.hero-section .hero-section__title {
  font-size: 57px;
  font-weight: 700;
  line-height: 1;
  padding-top: 120px;
}

.hero-section .hero-section__title span {
  background: linear-gradient(to bottom, #ff6b35 0%, #ffd400 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero-section .hero-section__buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  width: 100%;
}

/* Expert Section  */
.expert-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.expert-section .ellipse-shadow {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.expert-section .container {
  position: relative;
  z-index: 2;
}

.expert-section .expert-section__grid .individual-expert {
  background: white;
  height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  text-align: start;
  gap: 5px;
  border-radius: 30px;
}

.expert-section .expert-section__grid .individual-expert.bg-primary {
  box-shadow:
    0 8px 24px 0 rgba(255, 107, 53, 0.51),
    0 0 40px 0 rgba(255, 107, 53, 0.2);
}

.expert-section .expert-section__grid .individual-expert .individual-expert__title {
  font-size: 40px;
  font-weight: 700;
}

.expert-section .expert-section__grid .individual-expert .individual-expert__subtitle {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
}

/* Services Section  */
.services-section .services-section__grid .individual-service {
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px 16px;
  height: 100%;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}

.services-section .services-section__grid .individual-service .individual-service__bg {
  position: absolute;
  top: -180px;
  right: -120px;
  transition: transform 0.8s ease;
}

.services-section .services-section__grid .individual-service:hover {
  box-shadow:
    0 20px 60px 0 rgba(255, 107, 53, 0.4),
    0 0 80px 0 rgba(255, 107, 53, 0.2),
    0 8px 32px 0 rgba(0, 0, 0, 0.4),
    0 1px 0 0 rgba(255, 255, 255, 0.03) inset;
}

.services-section .services-section__grid .individual-service:hover .individual-service__bg {
  transform: rotate(360deg);
}

.services-section .services-section__grid .individual-service .shared-card__icon {
  margin-top: 20px;
  margin-bottom: 110px;
}

.services-section .services-section__grid .individual-service__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-light);
}

.services-section .services-section__grid .individual-service__subtitle {
  color: var(--color-secondary);
}

/* Tools Section  */
.tools-section .tools-section__grid .individual-tool {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  border-radius: 12px;
  padding: 10px;
}

/* Projects Section  */
.projects-section .shared-card {
  border-radius: 14px;
}

.projects-section .shared-card:hover {
  background: rgba(255, 255, 255, 0.08);
}

.projects-section .shared-card .project-card {
  background: transparent;
}

.projects-section .shared-card .project-card .project-card__content {
  padding-left: 0;
  padding-right: 0;
}

/* Data Scales Section  */
.data-scales-section .data-scales-section__subtitle {
  font-size: 23px;
  font-weight: 700;
}

.data-scales-section .data-scales-section__video-container {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  width: 100%;
}

.data-scales-section .data-scales-section__video-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  opacity: 0.5;
  z-index: 1;
}

.data-scales-section .data-scales-section__video-container video {
  position: relative;
  z-index: 0;
}

.data-scales-section .data-scales-section__video-container .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 40px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  box-shadow:
    0 8px 32px 0 rgba(255, 107, 53, 0.5),
    0 0 60px 0 rgba(255, 107, 53, 0.3);
  z-index: 2;
  transition: 0.3s;
  border: none;
  cursor: pointer;
}

.data-scales-section .data-scales-section__video-container .play-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95px;
  height: 95px;
  border-radius: 50%;
  background: #ff6b35;
  opacity: 0.1773;
  z-index: 1;
}

/* Process Section  */
.process-section .process-section__grid {
  position: relative;
  z-index: 20;
}

.process-section .process-section__grid .ellipse-shadow {
  top: 71px;
  right: 209px;
  z-index: 10;
  width: 30%;
}

.process-section .process-section__grid .process-section__bg {
  position: absolute;
  top: 100px;
  right: -10px;
  z-index: 0;
  width: 400px;
  max-width: 100%;
  max-height: 100%;
}

.process-section .process-section__grid .individual-process {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 30px;
  padding: 20px 20px 26px 20px;
  height: 100%;
}

.process-section .process-section__grid .individual-process .individual-process__number {
  font-size: 48px;
  font-weight: 500;
  color: var(--color-primary);
}

.process-section .process-section__grid .individual-process .individual-process__title {
  font-size: 20px;
  font-weight: 700;
  max-width: 60%;
}

.process-section .process-section__grid .individual-process .individual-process__subtitle {
  max-width: 85%;
}

.process-section .process-section__grid .individual-process.shared-card:hover {
  box-shadow:
    0 20px 60px 0 rgba(255, 107, 53, 0.4),
    0 0 80px 0 rgba(255, 107, 53, 0.2),
    0 8px 32px 0 rgba(0, 0, 0, 0.4),
    0 1px 0 0 rgba(255, 255, 255, 0.03) inset;
}

.process-section .process-section__grid .individual-process.shared-card:hover * {
  color: white !important;
}

/* Trusted Section  */
.trusted-section .trusted-section__title {
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.trusted-section .trusted-section__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 20px;
  column-gap: 16px;
  position: relative;
}

.trusted-section .trusted-section__grid .ellipse-shadow {
  bottom: 0;
  right: 50%;
  transform: translateX(50%);
  width: 30% !important;
}

.trusted-section .trusted-section__grid .individual-trusted {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #ffffff4d;
  font-size: 12px;
  font-weight: 400;
  width: 46%;
  white-space: nowrap;
}

.trusted-section .trusted-section__grid .individual-trusted .individual-trusted__card {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(11.5px);
  color: var(--color-secondary);
  font-size: 18px;
  font-weight: 700;
  padding: 18px 30px;
  width: 100%;
}

/* Questions style  */
.questions-section .questions-section__grid .questions-section-accordion .accordion-item {
  border-radius: 16px;
  overflow: hidden;
}

.questions-section .questions-section__grid .questions-section-accordion .accordion-item:not(:last-child) {
  margin-bottom: 25px;
}

.questions-section .questions-section__grid .questions-section-accordion .accordion-item .accordion-button {
  font-weight: 700;
  justify-content: space-between;
}

.questions-section .questions-section__grid .questions-section-accordion .accordion-item .accordion-button:focus {
  box-shadow: none;
}

.questions-section .questions-section__grid .questions-section-accordion .accordion-item .accordion-button::after {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none'%3E%3Cpath d='M4.16663 10H15.8333' stroke='white' stroke-opacity='0.4' stroke-width='1.66667' stroke-linecap='round'/%3E%3Cpath d='M10 4.16699V15.8337' stroke='white' stroke-opacity='0.4' stroke-width='1.66667' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  margin-inline-start: 10px;
}

.questions-section .questions-section__grid .questions-section-accordion .accordion-item .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none'%3E%3Cpath d='M15.8334 10L4.16671 10' stroke='%23FF6B35' stroke-width='1.66667' stroke-linecap='round'/%3E%3C/svg%3E");
}

.questions-section .questions-section__grid .questions-section-accordion .accordion-item .accordion-body {
  font-weight: 400;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Create style  */
.create-section .create-section__badge {
  padding: 9px 17px;
  gap: 8px;
}

.create-section .create-section__badge .create-section__badge__title {
  background: linear-gradient(180deg, #ff6b35 0%, #ffd400 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  text-transform: uppercase;
}

.create-section .create-section__features .create-section__feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.create-section .create-section__features .create-section__feature img {
  flex-shrink: 0;
}

.create-section .create-section__features .create-section__feature__title {
  color: var(--color-secondary);
}

/* Story Style  */
.our-story-section .our-story-section__logo {
  border-radius: 24px;
  background: #0e0d0d;
  position: relative;
  overflow: hidden;
}

.our-story-section .our-story-section__logo .our-story-section__logo__badge {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(11.5px);
  padding: 10px;
  display: flex;
  gap: 16px;
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
}

.our-story-section .our-story-section__logo .our-story-section__logo__badge .our-story-section__logo__badge__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 14px;
  background: linear-gradient(180deg, #ff6b35 0%, #ffd400 100%);
  width: 48px;
  aspect-ratio: 1/1;
}

.our-story-section .our-story-section__logo .our-story-section__logo__badge .our-story-section__logo__badge__number {
  font-weight: 700;
}

.our-story-section .our-story-section__logo .our-story-section__logo__badge .our-story-section__logo__badge__years {
  font-size: 12px;
  font-weight: 400;
}

.our-story-section .our-story-section__content .our-story-section__content__badge {
  padding: 7px 19px;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-primary);
}

.our-story-section .our-story-section__content .our-story-section__content__title {
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
}

.our-story-section .our-story-section__content .our-story-section__content__description {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.our-story-section .our-story-section__content .our-story-section__content__description * {
  font-size: 18px;
  font-weight: 450;
  color: var(--color-secondary);
}

/* Drive Us Style  */
.drive-us-section .drive-us-section__grid {
  --bs-gutter-x: 0;
}

.drive-us-section .drive-us-section__grid .drive-us-card {
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
}

.drive-us-section .drive-us-section__grid .drive-us-card .shared-card__icon {
  width: 64px;
  height: 64px;
}

.drive-us-section .drive-us-section__grid .drive-us-card .drive-us-card__title {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}

.drive-us-section .drive-us-section__grid .drive-us-card .drive-us-card__description {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-secondary);
}

/* Recognize Style  */
.recognize-section .recognize-section__grid .recognize-card {
  display: flex;
  align-items: center;
  border-radius: 16px;
  gap: 16px;
  padding: 20px;
  height: 100%;
}

.recognize-section .recognize-section__grid .recognize-card .shared-card__icon,
.key-features-section .key-features-section__grid .key-features-card .shared-card__icon {
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.recognize-section .recognize-section__grid .recognize-card .recognize-card__title,
.key-features-section .key-features-section__grid .key-features-card .key-features-card__title {
  font-size: 16px;
  font-weight: 500;
}

/* Header style privacy/terms  */
.header-section .badge-container {
  padding: 13px 25px 13px 13px;
  gap: 12px;
}

.header-section .legal-badge {
  border-radius: 16777200px;
  background: linear-gradient(180deg, #ff6b35 0%, #ffd400 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  width: 48px;
}

.header-section .shared-card {
  backdrop-filter: unset;
  border-radius: 16px;
  padding: 25px;
  max-width: 90%;
}

.header-section .shared-card .shared-card__content {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-secondary);
}

.header-section .shared-card:hover,
.terms-section .shared-card:hover {
  background: rgba(255, 255, 255, 0.08);
}

.terms-section .individual-term {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.terms-section .individual-term .individual-term__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.terms-section .individual-term .individual-term__content .individual-term__title {
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

.terms-section .individual-term .individual-term__content .individual-term__description {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-secondary);
  text-align: center;
}

.terms-section .individual-term .individual-term__content .shared-card,
.terms-section .individual-term .individual-term__content .badge-container {
  border-radius: 16px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.terms-section .individual-term .individual-term__content .badge-container .badge-container__subtitle {
  font-weight: 700;
  color: var(--color-primary);
}

.terms-section .individual-term .individual-term__content ul li {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-secondary);
  margin-bottom: 8px;
}

.terms-section .individual-term .individual-term__content ul li::marker {
  color: var(--color-primary);
}

.terms-section .individual-term .individual-term__content .shared-card-data {
  width: 100%;
}

.terms-section .individual-term .individual-term__content .shared-card-data i {
  font-size: 8px;
}

.terms-section .individual-term .individual-term__content .shared-card-data .title {
  font-weight: 700;
}

.terms-section .individual-term .individual-term__content .shared-card-data .description,
.terms-section .individual-term .individual-term__content .colored-shared-card .description {
  color: var(--color-secondary);
}

/* Blogs Style  */
.blogs-types-section {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  overflow-x: auto;
  max-width: 90%;
}

.blogs-types-section::-webkit-scrollbar {
  display: none;
}

.blogs-types-section .badge-container {
  padding: 10px 24px;
  white-space: nowrap;
}

.blogs-types-section * {
  font-weight: 500;
  color: var(--color-secondary);
}

/* Single Blog Style  */
.blog-details-section .blog-header-section {
  max-width: 800px;
}

.blog-details-section .blog-image-section {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 390px;
  overflow: hidden;
}

.blog-details-section .blog-image-section img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.blog-details-section .blog-content-section .linear-shared-card {
  padding: 32px;
}

.blog-details-section .blog-hashtag-section {
  display: flex;
  overflow-x: auto;
  gap: 12px;
  max-width: 95%;
  padding-top: 10px;
  padding-bottom: 20px;
}

.blog-details-section .blog-hashtag-section::-webkit-scrollbar {
  display: none;
}

.blog-details-section .blog-hashtag-section .badge-container {
  padding: 10px 17px;
  white-space: nowrap;
}

/* Projects Style  */
.filter-projects-section .filter-projects-section__filters {
  display: flex;
  gap: 12px;
  overflow-x: auto;
}

.filter-projects-section .filter-projects-section__filters::-webkit-scrollbar {
  display: none;
}

.filter-projects-section .filter-projects-section__filters .badge-container {
  padding: 12px 24px;
  white-space: nowrap;
  cursor: pointer;
}

.filter-projects-section .filter-projects-section__filters .badge-container.active {
  background: #ff6b35;
  box-shadow: 0 4px 16px 0 rgba(255, 107, 53, 0.4);
}

/* Project Details Style  */
/* Hero  */
.project-hero-section .project-hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.project-hero-section .project-hero__content .linear-badge-container {
  padding: 9px 17px;
}

.project-hero-section .project-hero__content .linear-badge-container .dot {
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
}

.project-hero-section .project-hero__content .linear-badge-container p {
  background: linear-gradient(180deg, #ff6b35 0%, #ffd400 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.project-hero-section .project-hero__content .project-hero__content__info .badge-container {
  align-items: flex-start;
  justify-content: flex-start;
  border-radius: 14px;
  flex: 1;
}

.project-hero-section .project-hero__content .project-hero__content__info .badge-container .project-hero__content__info__title {
  font-size: 12px;
  color: var(--color-secondary);
}

.project-hero-section .project-hero__content .project-hero__content__info .badge-container .project-hero__content__info__subtitle {
  font-size: 18px;
  font-weight: 700;
}

.project-hero-section .project-hero__content .btn {
  border-radius: 16777200px;
  background: linear-gradient(180deg, #ff6b35 0%, #ff8c5a 100%);
  box-shadow: 0 8px 32px 0 rgba(255, 107, 53, 0.5);
}

.project-hero-section .project-hero__image img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 395px;
  border-radius: 16px;
  object-fit: contain;
}

/* Status  */
.project-status-section .project-status-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.project-status-section .project-status-card .project-status-card__number {
  background: linear-gradient(180deg, #ff6b35 0%, #ffd400 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 30px;
  font-weight: 700;
}

/* Overview  */
.project-overview-section .overview-content .overview-content__challenge .shared-card__icon {
  border-radius: 24px;
  box-shadow: 0 8px 32px 0 rgba(255, 107, 53, 0.4);
  width: 80px;
  height: 80px;
}

.project-overview-section .overview-content .overview-content__challenge .btn {
  background: linear-gradient(180deg, #ff6b35 0%, #ff8c5a 100%);
  box-shadow: 0 8px 32px 0 rgba(255, 107, 53, 0.5);
}

.project-overview-section .overview-content .overview-content__steps .overview-step-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  border-radius: 16px;
}

.project-overview-section .overview-content .overview-content__steps .overview-step-card:hover {
  background: rgba(255, 255, 255, 0.08);
}

.project-overview-section .overview-content .overview-content__steps .overview-step-card:hover .shared-card__icon {
  background: var(--color-primary);
}

.project-overview-section .overview-content .overview-content__steps .overview-step-card .shared-card__icon {
  width: 32px;
  height: 32px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
}

/* Our Solution  */
.our-solutions-section .badge-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  padding: 32px;
  border-radius: 24px;
  height: 100%;
}

.our-solutions-section .solution-card .solution-card__steps .solution-card__individual-step {
  display: flex;
  align-items: center;
  gap: 8px;
}

.our-solutions-section .solution-card .solution-card__steps .solution-card__individual-step i {
  color: var(--color-primary);
  font-size: 16px;
}

.our-solutions-section .solution-card .solution-card__steps .solution-card__individual-step p {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-secondary);
}

/* Gallery  */
.gallery-section .shared-card {
  border-radius: 14px;
}

.gallery-section .shared-card:hover {
  background: rgba(255, 255, 255, 0.08);
}

.gallery-section .project-gallery-swiper .gallery-card {
  width: 100%;
  height: 390px;
  overflow: hidden;
  border-radius: 10px;
}

/* Key Features  */
.key-features-section .key-features-section__grid .key-features-card {
  display: flex;
  align-items: center;
  border-radius: 16px;
  gap: 16px;
  padding: 24px;
  height: 100%;
}

.key-features-section .key-features-section__grid .key-features-card .shared-card__icon {
  border-radius: 10px !important;
}

.key-features-section .key-features-section__grid .key-features-card .shared-card__icon i {
  font-size: 20px;
  color: white;
}

/* Service Details Style  */
/* Service Hero  */
.service-hero-section .service-hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.service-hero-section .service-hero__content .badge-container {
  padding: 13px;
  padding-right: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-hero-section .service-hero__content .badge-container .shared-card__icon {
  border-radius: 50%;
}

.service-hero-section .service-hero__image img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 395px;
  border-radius: 16px;
  object-fit: contain;
}

/* Key Benefites Style  */
.key-benefites-section .key-benefit-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px;
  border-radius: 24px;
  height: 100%;
}

.key-benefites-section .key-benefit-card:hover {
  background: rgba(255, 255, 255, 0.08);
}

.key-benefites-section .key-benefit-card .shared-card__icon {
  width: 56px;
  height: 56px;
}

.key-benefites-section .key-benefit-card:hover .shared-card__icon {
  background: var(--color-primary);
}

.key-benefites-section .key-benefit-card .key-benefit-card__title {
  font-size: 20px;
  font-weight: 700;
  color: white;
}

/* Stories Style  */
.stories-section .shared-card {
  border-radius: 14px;
}

.stories-section .shared-card:hover {
  background: rgba(255, 255, 255, 0.08);
}

.stories-section .shared-card .project-card {
  background: transparent;
  border-radius: 0;
}

.stories-section .shared-card .project-card .project-card__content {
  padding-right: 0;
  padding-left: 0;
}

/* Pricing Style  */
/* Packages Style  */
.packages-section .package-card .package-card__price {
  border-radius: 30px 30px 0 0;
  background: rgba(255, 255, 255, 0.08);
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.packages-section .package-card .package-card__price .package-card__price-title {
  font-size: 28px;
  font-weight: 700;
  color: white;
}

.packages-section .package-card .package-card__price .package-card__price-subtitle {
  font-size: 18px;
  font-weight: 400;
}

.packages-section .package-card .package-card__price .package-card__price-number sup {
  font-size: 24px;
  font-weight: 500;
}

.packages-section .package-card .package-card__price .package-card__price-number span {
  font-size: 35px;
  font-weight: 700;
  margin: 0 10px;
}

.packages-section .package-card .package-card__content {
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0) 100%);
  backdrop-filter: blur(11.5px);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 18px;
}

.packages-section .package-card .package-card__content .btn {
  border-radius: 50px;
  border: 2px solid var(--main-color, #ff6320);
}

/* Results Style  */
.results-section .result-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: start;
  gap: 14px;
  padding: 32px;
  border-radius: 24px;
  height: 100%;
}

.results-section .result-card:hover {
  background: rgba(255, 255, 255, 0.08);
}

.results-section .result-card .shared-card__icon {
  box-shadow: 0 8px 24px 0 rgba(255, 107, 53, 0.3);
  width: 64px;
  height: 64px;
}

.results-section .result-card:hover .shared-card__icon {
  background: var(--color-primary);
}

.results-section .result-card .result-card__title {
  font-size: 24px;
  font-weight: 700;
  color: white;
}

.results-section .result-card .result-card__subtitle {
  font-size: 16px;
  color: var(--color-secondary);
}

/* Extras Style  */
.extras-section .extra-card {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: start;
  gap: 8px;
  height: 100%;
}

.extras-section .extra-card .extra-card__title {
  font-size: 16px;
  font-weight: 500;
}

.extras-section .extra-card .extra-card__number {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
}

/* Clients Style  */
.clients-section .client-card {
  position: relative;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  padding: 32px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  overflow: hidden;
}

.clients-section .client-card .collon-image {
  position: absolute;
  right: 0;
  top: 32px;
  width: 64px;
  height: 64px;
  z-index: -1;
  opacity: 0.1;
}

.clients-section .client-card .client-card__rates i {
  color: #ffd400;
  font-size: 16px;
}

.clients-section .client-card .client-card__comment {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 6px;
  text-align: start;
}

.clients-section .client-card .client-card__client .client-card__client-image {
  border-radius: 16777200px;
  border: 2px solid rgba(255, 107, 53, 0.3);
  width: 56px;
  height: 56px;
  overflow: hidden;
}

.clients-section .client-card .client-card__client .client-card__client-name {
  font-size: 16px;
  font-weight: 700;
}

/* Download  */
.download-section .download-wrapper {
  width: 100%;
  margin: auto;
  border-radius: 24px;
  background: linear-gradient(135deg,
      rgba(255, 107, 53, 0.1) 0%,
      rgba(255, 212, 0, 0.1) 100%);
  padding: 25px;
}

.download-section .download-wrapper .download-title {
  font-size: 30px;
  font-weight: 700;
  color: white;
}

/* Contact Us Style  */
/* Contact Cards  */
.contact-cards-section .contact-card {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(11.5px);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  height: 100%;
}

.contact-cards-section .contact-card .shared-card__icon {
  width: 64px;
  height: 64px;
  font-size: 32px;
  margin-bottom: 15px;
}

.contact-cards-section .contact-card .contact-card__title {
  font-size: 20px;
  font-weight: 700;
}

.contact-cards-section .contact-card .contact-card__link {
  color: var(--color-primary);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

/* Contact Form  */
.contact-form-section .why-choose-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 24px;
  border-radius: 24px;
  border: 0 solid rgba(255, 107, 53, 0.3);
  background: linear-gradient(135deg,
      rgba(255, 107, 53, 0.2) 0%,
      rgba(255, 212, 0, 0.2) 100%);
  backdrop-filter: blur(11.5px);
  padding: 32px;
}

.contact-form-section .why-choose-card .shared-card__icon {
  width: 64px;
  height: 64px;
}

.contact-form-section .why-choose-card .why-choose-us__title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 14px;
}

.contact-form-section .business-card,
.contact-form-section .follow-us-card {
  padding: 25px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 24px;
}

.contact-form-section .business-card:hover,
.contact-form-section .follow-us-card:hover {
  background: rgba(255, 255, 255, 0.08);
}

.contact-form-section .follow-us-card .badge-container {
  width: 48px;
  height: 48px;
  border-radius: 14px;
}

.contact-form-section .contact-form-section__buttons {
  display: flex;
  gap: 12px;
}

.contact-form-section .contact-form-section__buttons .badge-container {
  flex: 1;
  padding: 16px;
  border-radius: 14px;
  text-decoration: none;
  color: white;
  display: flex;
  gap: 8px;
  font-weight: 500;
}

.contact-form-section .business-card .work-time-card {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 13px;
}

.contact-form-section .form-container {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(11.5px);
  padding: 24px;
}

.contact-form-section .form-container .form-container__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.contact-form-section .form-container form input,
.contact-form-section .form-container form textarea {
  padding: 16px 20px;
  border-radius: 14px;
}

.find-us-section .find-us-section__map {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.05) 0%,
      rgba(255, 255, 255, 0.02) 100%);
  padding: 40px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.find-us-section .find-us-section__map .map-image {
  width: 100%;
}

/* dots */
.find-us-section .find-us-section__map .dot {
  width: 12px;
  height: 12px;
  background: var(--color-primary);
  border-radius: 50%;
  position: absolute;
  z-index: 0;
}

.find-us-section .find-us-section__map .dot::before,
.find-us-section .find-us-section__map .dot::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  animation: pulse 3s infinite;
  opacity: 0;
}

.find-us-section .find-us-section__map .dot::after {
  animation-delay: 1.5s;
}

.find-us-section .find-us-section__map .dot1 {
  top: 24%;
  left: 75%;
}

.find-us-section .find-us-section__map .dot2 {
  top: 28%;
  left: 62%;
}

.find-us-section .find-us-section__map .dot3 {
  top: 43%;
  left: 68%;
}

.find-us-section .find-us-section__map .dot4 {
  top: 72%;
  left: 75%;
}

.find-us-section .find-us-section__map .dot5 {
  top: 50%;
  left: 50%;
}

.find-us-section .find-us-section__map .dot6 {
  top: 57%;
  left: 55%;
}

.find-us-section .find-us-section__map .dot7 {
  top: 15%;
  left: 39%;
}

.find-us-section .find-us-section__map .dot8 {
  top: 37%;
  left: 25%;
}

.find-us-section .find-us-section__map .dot9 {
  top: 66%;
  left: 36%;
}

.find-us-section .find-us-section__map .location-info-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 24px;
  z-index: 1;
  width: max-content;
}

.find-us-section .find-us-section__map .location-info-card .location-info-card__icon {
  width: 64px;
  height: 64px;
}

.find-us-section .find-us-section__map .location-info-card .location-info-card__title {
  font-size: 20px;
  font-weight: 700;
}

/* Shared style  */
.title-section {
  font-size: 30px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.1;
}

.subtitle-section {
  font-size: 20px;
  font-weight: 400;
  max-width: 630px;
  color: var(--color-secondary);
}

.shared-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(11.5px);
  transition: all 0.8s ease;
  cursor: pointer;
}

.shared-card:hover {
  background: var(--color-primary);
}

.shared-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-primary);
  border-radius: 12px;
  flex-shrink: 0;
  z-index: 2;
}

.shared-card:hover .shared-card__icon {
  background: rgba(255, 255, 255, 0.1);
}

.ellipse-shadow {
  position: absolute;
  width: 39%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: linear-gradient(135deg,
      rgba(255, 107, 53, 0.45) 0%,
      rgba(255, 212, 0, 0.45) 100%);
  filter: blur(122.5px);
  pointer-events: none;
  z-index: 1;
  max-height: 100%;
}

.badge-container {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 16777200px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.linear-badge-container {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 16777200px;
  border: 1px solid rgba(255, 107, 53, 0.3);
  background: linear-gradient(90deg,
      rgba(255, 107, 53, 0.2) 0%,
      rgba(255, 212, 0, 0.2) 100%);
}

.colored-shared-card {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(90deg,
      rgba(255, 107, 53, 0.05) 0%,
      rgba(255, 212, 0, 0.05) 100%);
}

.red-shared-card {
  border-radius: 16px;
  border: 1px solid rgba(255, 107, 53, 0.3);
  background: linear-gradient(90deg,
      rgba(255, 107, 53, 0.05) 0%,
      rgba(255, 212, 0, 0.05) 100%);
}

.linear-shared-card {
  border-radius: 16px;
  border: 1px solid rgba(255, 107, 53, 0.3);
  background: linear-gradient(135deg,
      rgba(255, 107, 53, 0.1) 0%,
      rgba(255, 212, 0, 0.1) 100%);
}

.linear-shared-card .linear-shared-card__title {
  font-size: 24px;
  font-weight: 700;
}

input,
textarea {
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  background-color: rgba(255, 255, 255, 0.05) !important;
}

input::placeholder,
textarea::placeholder {
  color: #ffffff66 !important;
}

.form-control:focus {
  background-color: rgba(255, 255, 255, 0.05) !important;
  box-shadow: none !important;
}

.search-input {
  width: 90%;
}

.search-input .search-icon {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff66;
  font-size: 20px;
}

.search-input input {
  padding: 16px 24px 16px 56px;
  border-radius: 16777200px !important;
}

.search-input input::placeholder {
  color: #ffffff66 !important;
  font-weight: 700;
}

.back-button {
  font-weight: 500;
  color: var(--color-secondary);
  text-decoration: none;
}

.divider-section {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
}

.blog-card {
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  text-decoration: none;
}

.blog-card__image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transform-origin: top center;
  transition: transform 0.6s ease;
}

.blog-card:hover img {
  transform: scale(1.3);
}

.blog-card .blog-card__content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog-card .blog-card__content .blog-card__data {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.blog-card .blog-card__content .blog-card__data *:not(i) {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-secondary);
}

.blog-card .blog-card__content .blog-card__title {
  font-size: 20px;
  font-weight: 700;
  color: white;
}

.blog-card .blog-card__content .blog-card__description {
  font-weight: 700;
  color: var(--color-secondary);
}

.project-card {
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  text-decoration: none;
}

.project-card__image {
  border-radius: 30px;
  width: 100%;
  height: 287px;
  overflow: hidden;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.6s ease;
}

.project-card:hover img {
  transform: scale(1.3);
}

.project-card .project-card__content {
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.project-card .project-card__content .project-card__title {
  font-size: 30px;
  font-weight: 700;
  color: white;
}

.project-card .project-card__content .project-card__types {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.project-card .project-card__content .project-card__types .badge-container {
  white-space: nowrap;
  padding: 7px 17px;
  color: white;
}

.mb-7 {
  margin-bottom: 50px;
}

.py-8 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.pb-6 {
  padding-bottom: 50px;
}

/* Navbar Style  */
.navbar {
  width: 90%;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  top: 30px;
  z-index: 10;
  padding: 0;
  transition: all 0.8s ease;
}

.navbar .navbar-logo {
  flex-shrink: 0;
  width: 66px;
}

.navbar .navbar-toggler:focus {
  box-shadow: unset;
}

.navbar .navbar-nav {
  gap: 27px;
}

.navbar .navbar-nav .nav-item .nav-link {
  font-size: 14px;
  font-weight: 500;
  color: white;
  padding: 0;
}

.navbar .navbar-nav .nav-item .nav-link.active {
  background: linear-gradient(180deg, #ff6b35 0%, #ffd400 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.navbar.navbar-scrolled {
  border-radius: 200px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(18px) saturate(180%) contrast(110%);
  -webkit-backdrop-filter: blur(18px) saturate(180%) contrast(110%);
  padding: 16px 30px;
}

.offcanvas {
  width: 320px !important;
}

.offcanvas .offcanvas-body ul {
  padding: 0 !important;
}

.offcanvas .offcanvas-body .main-menu .nav-item .nav-link {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 18px;
  font-weight: 500;
  color: white;
  position: relative;
  overflow: hidden;
}

.offcanvas .offcanvas-body .main-menu .nav-item .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.35s ease;
}

.offcanvas .offcanvas-body .main-menu .nav-item .nav-link:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}

.offcanvas .offcanvas-body .main-menu .nav-item .nav-link:hover {
  color: var(--color-primary);
}

.offcanvas .offcanvas-body .main-menu .nav-item .nav-link.active {
  color: var(--color-primary);
  font-weight: 700;
  border-color: var(--color-primary);
}

/* Footer Style  */
.top-footer {
  border-radius: 30px;
  background: linear-gradient(91deg, #ff6b35 38.94%, #ffd400 100%);
  padding: 16px;
  margin: auto;
  width: 100%;
}

.top-footer .top-footer__title {
  font-size: 26px;
  font-weight: 700;
}

.top-footer .top-footer__subtitle {
  margin-top: 14px;
}

.bottom-footer {
  background: url("/assets/images/footer-bg.png") no-repeat center center;
  background-size: cover;
  padding: 42px 0;
  width: 100%;
}

.bottom-footer .bottom-footer__grid .bottom-footer__about {
  color: #6b7280;
  margin: 16px 0;
}

.bottom-footer .bottom-footer__grid .bottom-footer__links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bottom-footer .bottom-footer__grid .bottom-footer__links .bottom-footer__links-title {
  font-size: 24px;
  font-weight: 700;
}

.bottom-footer .bottom-footer__grid .bottom-footer__links .bottom-footer__link {
  color: var(--color-secondary);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.8s ease;
}

.bottom-footer .bottom-footer__grid .bottom-footer__links .bottom-footer__link:hover {
  color: var(--color-secondary-dark);
}

.bottom-footer .bottom-footer__grid .bottom-footer__links .bottom-footer__social-link-container {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-secondary);
}

.bottom-footer .bottom-footer__grid .bottom-footer__links .bottom-footer__social-link-container .bottom-footer__social-link {
  width: 32px;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
}

.bottom-footer .bottom-footer__grid .bottom-footer__links .bottom-footer__social-link-container .bottom-footer__link {
  word-break: break-all;
}

.bottom-footer .bottom-footer__social-container {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  gap: 12px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bottom-footer .bottom-footer__social-container .bottom-footer__social-container__socials {
  display: flex;
  gap: 12px;
}

.bottom-footer .bottom-footer__social-container .bottom-footer__social-container__socials .badge-container {
  width: 40px;
  height: 40px;
}

.bottom-footer .bottom-footer__social-container .bottom-footer__social-container__socials .badge-container img {
  opacity: 0.6;
}

/* ================================
   Responsive
================================ */
@media (min-width: 576px) {

  /* hero style  */
  .hero-section .hero-section__buttons {
    width: 500px;
  }

  /* expert style  */
  .expert-section .expert-section__grid .individual-expert {
    gap: 14px;
    padding: 50px 24px;
  }

  .expert-section .expert-section__grid .individual-expert .individual-expert__title {
    font-size: 50px;
  }

  .expert-section .expert-section__grid .individual-expert .individual-expert__subtitle {
    font-size: 35px;
  }

  /* process style  */
  .process-section .process-section__grid .process-section__bg {
    right: -28px;
  }

  /* trusted style  */
  .trusted-section .trusted-section__grid {
    row-gap: 30px;
    column-gap: 8px;
  }

  .trusted-section .trusted-section__grid .individual-trusted {
    flex: 1;
    width: 100%;
  }

  /* our story style  */
  .our-story-section .our-story-section__logo .our-story-section__logo__badge {
    padding: 24px;
    left: 34px;
    right: 34px;
    bottom: 34px;
  }

  /* drive us style  */
  .drive-us-section .drive-us-section__grid {
    --bs-gutter-x: 32px;
  }

  /* Header style privacy/terms  */
  .header-section .shared-card {
    max-width: 80%;
  }

  /* .header-section .shared-card .shared-card__content {
    max-width: 80%;
  } */

  .terms-section .individual-term {
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .terms-section .individual-term .individual-term__content .individual-term__title {
    text-align: start;
  }

  .terms-section .individual-term .individual-term__content .individual-term__description {
    max-width: 80%;
    text-align: start;
  }

  .terms-section .individual-term .individual-term__content .shared-card-data {
    width: 49%;
  }

  /* project status style */
  .project-status-section .project-status-card .project-status-card__number {
    font-size: 45px;
  }

  /* navbar style  */
  .navbar {
    top: 30px;
    padding: 16px 30px;
  }

  /* footer style  */
  .top-footer {
    padding: 20px;
  }

  .top-footer .top-footer__title {
    font-size: 32px;
  }

  .top-footer .top-footer__subtitle {
    font-size: 16px;
  }

  /* shared style  */
  .search-input {
    width: 60%;
  }
}

@media (min-width: 768px) {
  .filter-projects-section .filter-projects-section__filters {
    max-width: 80%;
  }

  .packages-section .package-card .package-card__price .package-card__price-number span {
    font-size: 72px;
  }

  /* Download  */
  .download-section .download-wrapper .download-title {
    font-size: 43px;
  }

  .contact-form-section .form-container {
    padding: 40px;
  }
}

@media (min-width: 992px) {
  .navbar {
    border-radius: 200px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(18px) saturate(180%) contrast(110%);
    -webkit-backdrop-filter: blur(18px) saturate(180%) contrast(110%);
  }

  /* hero style  */
  .hero-section .hero-section__title {
    font-size: 100px;
    max-width: 870px;
  }

  /* data scales style  */
  .data-scales-section .data-scales-section__subtitle {
    font-size: 30px;
  }

  /* process style  */
  .process-section .process-section__grid .individual-process .individual-process__title {
    max-width: 40%;
  }

  /* create style  */
  .create-section .subtitle-section {
    max-width: 850px;
  }

  /* our story style  */
  .our-story-section .our-story-section__content .our-story-section__content__title {
    font-size: 60px;
  }

  /* recognize style  */
  /* key features style  */
  .recognize-section .recognize-section__grid .recognize-card {
    padding: 30px 38px;
  }

  /* Download  */
  .download-section .download-wrapper {
    width: 80%;
  }

  /* find us  */
  .find-us-section .find-us-section__map {
    padding: 40px 160px;
  }

  .find-us-section .find-us-section__map .location-info-card .location-info-card__icon {
    width: 96px;
    height: 96px;
  }

  /* shared title  */
  .title-section {
    font-size: 64px;
    max-width: 870px;
  }

  .mb-7 {
    margin-bottom: 70px;
  }

  .py-8 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .bottom-footer .bottom-footer__grid .bottom-footer__about {
    max-width: 80%;
  }

  .bottom-footer .bottom-footer__social-container {
    flex-direction: row;
    justify-content: space-between;
    padding: 30px 0;
  }
}

@media (min-width: 1200px) {

  /* expert style  */
  .expert-section .expert-section__grid .individual-expert.first-one {
    border-top-left-radius: 95px;
  }

  .expert-section .expert-section__grid .individual-expert.last-one {
    border-top-right-radius: 95px;
  }

  .services-section .services-section__grid .individual-service {
    padding: 24px 47px 24px 32px;
  }

  /* data scales style  */
  .data-scales-section .data-scales-section__subtitle {
    max-width: 35%;
  }

  /* process style  */
  .process-section .process-section__grid .process-section__bg {
    right: -69px;
  }

  /* footer style  */
  .top-footer {
    width: 900px;
    padding: 40px 30px;
  }

  html[dir="rtl"] {
    .expert-section .expert-section__grid .individual-expert.first-one {
      border-top-right-radius: 95px;
      border-top-left-radius: 0;
    }

    .expert-section .expert-section__grid .individual-expert.last-one {
      border-top-left-radius: 95px;
      border-top-right-radius: 0;
    }
  }
}

/* .icon {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 40px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  box-shadow:
    0 8px 32px rgba(255, 107, 53, 0.5),
    0 0 60px rgba(255, 107, 53, 0.3);

  display: flex;
  align-items: center;
  justify-content: center;
}
 */

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  70% {
    transform: translate(-50%, -50%) scale(4);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

/* ================================
   RTL
================================ */
html[dir="rtl"] {
  .offcanvas-header .btn-close {
    margin-right: auto;
    margin-left: unset;
  }

  .fa-arrow-right,
  .fa-arrow-left {
    rotate: 180deg;
  }

  .fa-tag {
    transform: scaleX(-1);
  }

  .services-section .services-section__grid .individual-service .individual-service__bg {
    left: -120px;
    right: unset;
  }

  .questions-section .questions-section__grid .questions-section-accordion .accordion-item .accordion-button {
    text-align: right;
  }

  .questions-section .questions-section__grid .questions-section-accordion .accordion-item .accordion-button::after {
    margin-left: unset;
  }

  .-scale-1 {
    transform: scaleX(-1);
  }

  .clients-section .client-card .collon-image {
    right: unset;
    left: 0;
    transform: scaleX(-1);
  }

  .header-section .badge-container {
    padding: 13px 13px 13px 25px;
  }

  .service-hero-section .service-hero__content .badge-container {
    padding-left: 24px;
    padding-right: 13px;
  }
}



/* CUSTOM CSS */
.cats {
  a {
    text-decoration: none;
  }
}

.badge-container.blog-filter-btn.active {
  background-color: #ff6b35;
  color: #fff;
}

/* Contact Form 7 Enhancements */
.wpcf7-form-control-wrap {
  display: block;
}

.wpcf7 .wpcf7-spinner {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.wpcf7 .wpcf7-response-output {
  margin: 24px 0 0 !important;
  padding: 16px 24px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  color: var(--color-light) !important;
  text-align: center;
}

.wpcf7-not-valid-tip {
  color: #ff4d4d !important;
  font-size: 13px !important;
  margin-top: 5px !important;
}