@font-face {
  font-family: "SomarSans";
  src: url("../fonts/SomarSans-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: "SomarSans";
  src: url("../fonts/SomarSans-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: "SomarSans";
  src: url("../fonts/SomarSans-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "SomarSans";
  src: url("../fonts/SomarSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "SomarSans";
  src: url("../fonts/SomarSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "SomarSans";
  src: url("../fonts/SomarSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "SomarSans";
  src: url("../fonts/SomarSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "SomarSans";
  src: url("../fonts/SomarSans-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "SomarSans", sans-serif;
}
:root {
  --primary: #3478a2;
  --primary-900: #141b34;
  --black: #030404;
  --white: #ffffff;
  --gray-100: #d9d9d9;
  --gray-500: #ababab;
  --gray-800: #666869;
  --gray-900: #2f3232;
  --subttile: #606161;
  --main-bg-gradient: linear-gradient(
    73.29deg,
    #79a3bc 0%,
    #508bb0 37.57%,
    #3478a2 100%
  );
  --secondary-bg-gradient: linear-gradient(
    251.54deg,
    #4096cb 14.45%,
    #3478a2 103.17%
  );

  --dark-overlay: #0f1925e5;

  --large-radius: 140px;
  --main-radius: 40px;
  --medium-radius: 32px;
}

/* Generic Container Class */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}

/* Navbar Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  z-index: 1000;
  padding: 1rem 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-logo img {
  height: 50px;
  width: auto;
}

.navbar-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.navbar-links li a {
  text-decoration: none;
  color: var(--black);
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.navbar-links li a:hover {
  color: var(--primary);
}

.navbar-contact {
  display: flex;
  align-items: center;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 5px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background-color: var(--primary);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Sidebar */
.mobile-sidebar {
  position: fixed;
  top: 76px;
  right: -100%;
  width: 100%;
  height: calc(100vh - 76px);
  background-color: var(--white);
  transition: right 0.3s ease;
  z-index: 999;
  overflow-y: auto;
}

.mobile-sidebar.active {
  right: 0;
}

.mobile-links {
  list-style: none;
  padding: 2rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-links li a {
  text-decoration: none;
  color: var(--black);
  font-weight: 500;
  font-size: 1.1rem;
  display: block;
  padding: 0.75rem 0;
  transition: color 0.3s ease;
  border-bottom: 1px solid var(--gray-100);
}

.mobile-links li a:hover {
  color: var(--primary);
}

.mobile-links li a.mobile-contact-btn {
  background-color: var(--primary);
  color: var(--white) !important;
  padding: 0.75rem 1.5rem;
  border-radius: 1px;
  text-align: center;
  margin-top: 1rem;
  border-bottom: none;
}

.mobile-links li a.mobile-contact-btn:hover {
  background-color: var(--primary-900);
  color: var(--white) !important;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .navbar-links,
  .navbar-contact {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .navbar-logo img {
    height: 40px;
  }
}
/* start-hero  */
.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/hero-bg.webp");
}
.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  height: 100%;
  min-height: 800px;
  color: #fdfdfd;
}
.hero h1 {
  max-width: 30ch;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
  @media (min-width: 991px) {
    text-align: start;
    font-size: 44px;
  }
}
.hero p {
  max-width: 60ch;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #fdfdfd;
  text-align: center;
  @media (min-width: 991px) {
    text-align: start;
    font-size: 24px;
  }
}
.hero a {
  border: #fdfdfd solid 1px;
  padding: 12px 20px;
  color: #fdfdfd;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 300px;
  max-width: 100%;
  text-align: center;
  margin: 40px auto 0;
  height: 52px;
  align-content: center;
  &:hover {
    background-color: var(--white);
    color: var(--primary);
  }
  @media (min-width: 991px) {
    margin: 40px 0 0 0;
  }
}
/* end-hero  */
/* start-about  */
.about {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 80px 0;
  @media (min-width: 1024px) {
    grid-template-columns: 300px 1fr 300px;
  }
}
.about > img {
  max-width: 100%;
  display: none;
  object-fit: cover;
  @media (min-width: 1024px) {
    display: block;
  }
}
.about > img:first-of-type {
  border-radius: var(--large-radius) 0 0 0;
}
.about > img:last-of-type {
  border-radius: 0 var(--large-radius) 0 0;
}
.about .about__content {
}
.about .about__content h2 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 20px;
  @media (min-width: 991px) {
    text-align: start;
    font-size: 28px;
  }
}
.about .about__content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--subttile);
  margin-bottom: 20px;
  text-align: center;
  @media (min-width: 991px) {
    text-align: start;
  }
}
.about .about__content_cards {
  display: flex;
  gap: 24px;
  flex-direction: column;
  @media (min-width: 991px) {
    flex-direction: row;
  }
}
.about .about__content_cards div {
  display: flex;
  align-items: start;
  gap: 10px;
  background: #f0f7fc;
  padding: 24px;
  flex: 1;
}
/* end-about  */
/* start-products  */
.products,
.soon {
  background-color: #f8f8f8;
  padding: 80px 0;
}
.products h2,
.soon h2 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 20px;
  @media (min-width: 991px) {
    text-align: start;
    font-size: 28px;
  }
}
.products .container > p,
.soon .container > p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--subttile);
  margin-bottom: 20px;
  text-align: center;
  max-width: 68ch;
  @media (min-width: 991px) {
    text-align: start;
  }
}
.products .products__cards,
.soon .soon__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  @media (min-width: 991px) {
    grid-template-columns: repeat(3, 1fr);
  }
}

.products .products__card img,
.soon .soon__card img {
  width: 100%;
  display: block;
}
.products .products__card,
.soon .soon__card {
  background-color: var(--white);
  overflow: hidden;
}
.products .products__card > div,
.soon .soon__card > div {
  padding: 16px;
  transition: background 0.3s ease;
  position: relative;
  overflow: hidden;
}
.products .products__card:hover > div,
.soon .soon__card:hover > div {
  background-image: linear-gradient(251.54deg, #4096cb 14.45%, #3478a2 103.17%);
  animation: cardHoverBg 0.3s ease;
}
.products .products__card:hover > div::before,
.soon .soon__card:hover > div::before {
  content: "";
  position: absolute;
  top: 0;
  left: -90px;
  right: 0;
  bottom: 0;
  background-image: url("../images/card-content-hover-bg.webp");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.16;
  pointer-events: none;
  z-index: 0;
}
.products .products__card:hover > div h6,
.products .products__card:hover > div > div p,
.soon .soon__card:hover > div h6,
.soon .soon__card:hover > div > div p {
  color: var(--white);
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}
.products .products__card:hover > div > div,
.soon .soon__card:hover > div > div {
  position: relative;
  z-index: 1;
}
.products .products__card:hover > div > div p::before,
.soon .soon__card:hover > div > div p::before {
  border-color: var(--white);
  transition: border-color 0.3s ease;
}
@keyframes cardHoverBg {
  from {
    opacity: 0;
    transform: scale(1.05);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.products .products__card > div h6,
.soon .soon__card > div h6 {
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  font-size: 18px;
  margin: 0;
  margin-bottom: 16px;
}
.products .products__card > div > div,
.soon .soon__card > div > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.products .products__card > div > div p,
.soon .soon__card > div > div p {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}
.products .products__card > div > div p::before,
.soon .soon__card > div > div p::before {
  content: "";
  width: 14px;
  height: 4px;
  opacity: 1;
  border-width: 2px;
  border-radius: 8px;
  display: block;
  border: 3px solid var(--primary);
}
/* end-products  */
/* start-why-us  */
.why-us {
  padding: 72px 0;
}
.why-us .container > h2 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 20px;
  @media (min-width: 991px) {
    text-align: start;
    font-size: 28px;
  }
}
.why-us .container > p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--subttile);
  margin-bottom: 20px;
  text-align: center;
  @media (min-width: 991px) {
    text-align: start;
  }
}
.why-us .why-us__cards {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  margin-top: 40px;
  gap: 24px;
  @media (min-width: 768px) {
    grid-template-columns: repeat(2, 1fr);
  }
  @media (min-width: 991px) {
    grid-template-columns: repeat(4, 1fr);
  }
}
.why-us .why-us__card {
  padding-top: 0;
  padding-bottom: 0;
  @media (min-width: 768px) {
    padding-bottom: 54px;
  }
}
.why-us .why-us__card:nth-child(2n) {
  padding-top: 0;
  padding-bottom: 0;
  @media (min-width: 768px) {
    padding-top: 54px;
  }
}
.why-us .why-us__card > div {
  background: #f0f7fc;
  border-radius: 0 var(--main-radius) 0 var(--main-radius);
  padding: 16px;
}
.why-us .why-us__card > div img {
  background-color: #fff;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 0 16px 0 0;
  margin-bottom: 16px;
}
.why-us .why-us__card > div h6 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 10px;
  @media (min-width: 991px) {
    font-size: 18px;
    line-height: 26px;
  }
}
.why-us .why-us__card > div p {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}
/* end-why-us  */
/* start-order  */
.order {
  padding: 72px 0;
  overflow: hidden;
  position: relative;
}
.order::before {
  content: "";
  position: absolute;
  background: linear-gradient(#ffffff90, #ffffff90),
    url("/images/side-stone.webp");
  background-repeat: no-repeat;
  background-position: bottom right;
  transform: scaleX(-1);
  border: 0;
  z-index: -1;
  right: -62%;
  height: 100%;
  width: 100%;
  top: 340px;
}
.order .container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-direction: column;
  @media (min-width: 991px) {
    flex-direction: row;
  }
}
.order__content {
  width: 100%;
  max-width: 500px;
}
.order__content > h2 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 20px;

  @media (min-width: 991px) {
    text-align: start;
    font-size: 28px;
  }
}
.order__content > p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--subttile);
  margin-bottom: 20px;
  text-align: center;
  max-width: 40ch;

  @media (min-width: 991px) {
    text-align: start;
  }
}
.order__content ul {
  /* padding-inline-start: 30px; */
  list-style-type: none;
}
.order__content li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #2f3232;
}
.order__content li::before {
  content: "";
  width: 22px;
  height: 20px;
  background: url("/icons/check.svg");
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

.order__steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
}

/* Vertical dashed line - Mobile first */
.order__steps::before {
  content: "";
  position: absolute;
  right: 22.5px;
  left: 0;
  top: 35px;
  height: calc(100% - 70px);
  width: 2px;
  background-image: linear-gradient(to bottom, #dde6ec 50%, transparent 50%);
  background-size: 2px 20px;
  background-repeat: repeat-y;
  z-index: 1;
  @media (min-width: 768px) {
    right: 50%;
    left: 0;
    top: 50px;
    height: calc(100% - 100px);
    transform: translateX(-50%);
  }
  @media (min-width: 992px) {
    gap: 4rem;
  }
}

/* Step container - Mobile first */
.order__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  position: relative;
  @media (min-width: 768px) {
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
  }
}

/* Step number circle - Mobile first */
.order__step-number {
  grid-column: 1;
  grid-row: 1;
  width: 38px;
  height: 38px;
  background: #f0f7fc;
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  z-index: 2;
  position: relative;

  @media (min-width: 768px) {
    grid-column: 2;
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  @media (min-width: 992px) {
    width: 60px;
    height: 60px;
  }
}

/* Card styling - Mobile first */
.order__step-content {
  grid-column: 2;
  grid-row: 1;
  background: #f0f7fc;
  padding: 1rem;
  border-radius: 0 var(--main-radius) 0 var(--main-radius);
  direction: rtl;
  @media (min-width: 768px) {
    padding: 1.5rem;
  }
}

.order__step-content h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.order__step-content h3 img {
  width: 24px;
  height: 24px;
}

.order__step-content p {
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  color: var(--subttile);
}

/* Empty space for desktop layout */
.order__step-empty {
  display: none;
  @media (min-width: 768px) {
    display: block;
  }
}

/* Steps 1 and 3 on the RIGHT (in RTL, this is grid-column: 1) */
@media (min-width: 768px) {
  .order__step:nth-child(odd) .order__step-content {
    grid-column: 1;
  }

  .order__step:nth-child(odd) .order__step-empty {
    grid-column: 3;
  }
}

/* Steps 2 and 4 on the LEFT (in RTL, this is grid-column: 3) */
@media (min-width: 768px) {
  .order__step:nth-child(even) .order__step-content {
    grid-column: 3;
  }

  .order__step:nth-child(even) .order__step-empty {
    grid-column: 1;
  }
}
/* end-order  */
/* start-targets  */
.targets {
  padding: 80px 0;
}
.targets .container > h2 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 20px;

  @media (min-width: 991px) {
    text-align: start;
    font-size: 28px;
  }
}
.targets .container > p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--subttile);
  margin-bottom: 20px;
  text-align: center;

  @media (min-width: 991px) {
    text-align: start;
  }
}
.targets .targets__cards {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}
.targets .targets__card {
  flex-basis: 100%;
  @media (min-width: 768px) {
    flex-basis: 45%;
  }
  @media (min-width: 991px) {
    flex-basis: 30%;
  }
}
.targets .targets__card img {
  display: block;
  margin-inline-start: auto;
  border-radius: var(--main-radius) 0 0 0;
  object-fit: cover;
  width: calc(100% - 40px);
}
.targets .targets__card div {
  padding: 16px;
  border-radius: 0 0 var(--main-radius) 0;
  background: var(--primary);
  width: calc(100% - 40px);
  transform: translateY(-20px);
  color: var(--white);
}
.targets .targets__card div h6 {
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  @media (min-width: 768px) {
    font-size: 18px;
  }
}
.targets .targets__card div p {
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  @media (min-width: 768px) {
    font-size: 16px;
  }
}
/* end-targets  */
/* start-footer */
.footer {
  padding: 80px 0 40px;
  background: linear-gradient(#0f1925e5, #0f1925e5), url("/images/wall-bg.webp");
  color: var(--white);
}
.footer img {
  object-fit: cover;
}
.footer .container:first-of-type {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  @media (min-width: 991px) {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.footer .container ul {
  list-style-type: none;
}
.footer .container ul li a {
  color: var(--white);
  text-decoration: none;
}
.footer .container ul li a:hover {
  text-decoration: underline;
}
.footer .footer__title {
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  margin-bottom: 16px;
}
.footer .container div:nth-of-type(2) p {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  max-width: 30ch;
}
.footer .container div:nth-of-type(3) div {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
}
.footer .container div:nth-of-type(3) div ul li,
.footer .container div:nth-of-type(4) ul li {
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
}

.footer .copy-rights {
  display:flex;
  justify-content: center;
  align-items:center;
  padding-top:40px;
  margin-top:40px;
  border-top:1px solid #ffffff20;

}
/* end-footer  */

