@font-face {
  font-family: "Calibre";
  src:
    url("../fonts/Calibre-Black.woff2") format("woff2"),
    url("../fonts/Calibre-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Calibre";
  src:
    url("../fonts/Calibre-BlackItalic.woff2") format("woff2"),
    url("../fonts/Calibre-BlackItalic.woff") format("woff");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Calibre";
  src:
    url("../fonts/Calibre-BoldItalic.woff2") format("woff2"),
    url("../fonts/Calibre-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Calibre";
  src:
    url("../fonts/Calibre-Bold.woff2") format("woff2"),
    url("../fonts/Calibre-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Calibre";
  src:
    url("../fonts/Calibre-Light.woff2") format("woff2"),
    url("../fonts/Calibre-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Calibre";
  src:
    url("../fonts/Calibre-LightItalic.woff2") format("woff2"),
    url("../fonts/Calibre-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Calibre";
  src:
    url("../fonts/Calibre-Medium.woff2") format("woff2"),
    url("../fonts/Calibre-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Calibre";
  src:
    url("../fonts/Calibre-MediumItalic.woff2") format("woff2"),
    url("../fonts/Calibre-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Calibre";
  src:
    url("../fonts/Calibre-Regular.woff2") format("woff2"),
    url("../fonts/Calibre-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Calibre";
  src:
    url("../fonts/Calibre-RegularItalic.woff2") format("woff2"),
    url("../fonts/Calibre-RegularItalic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Calibre";
  src:
    url("../fonts/Calibre-Semibold.woff2") format("woff2"),
    url("../fonts/Calibre-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Calibre";
  src:
    url("../fonts/Calibre-SemiboldItalic.woff2") format("woff2"),
    url("../fonts/Calibre-SemiboldItalic.woff") format("woff");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Calibre";
  src:
    url("../fonts/Calibre-Thin.woff2") format("woff2"),
    url("../fonts/Calibre-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Calibre";
  src:
    url("../fonts/Calibre-ThinItalic.woff2") format("woff2"),
    url("../fonts/Calibre-ThinItalic.woff") format("woff");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}

/* ===== ROOT CSS VARIABLES ===== */
:root {
  --primary-color: #007bff;
  --secondary-color: #6c757d;
  --success-color: #28a745;
  --danger-color: #dc3545;
  --warning-color: #ffc107;
  --info-color: #17a2b8;
  --light-color: #f8f9fa;
  --dark-color: #343a40;

  --heading-color: #2f2f2f;
  --text-color: #4c4c4c;
  --text-light: #666666;
  --bg-color: #ffffff;
  --border-color: #00000033;

  --font-family: "Calibre", Arial, sans-serif;
  --font-size-base: 18px;
  --line-height-base: 1.5;

  --border-radius: 0.375rem;
  --transition: all 0.3s ease;
}

/* ===== GLOBAL STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--text-color);
  background-color: var(--bg-color);
}

/* ===== HEADINGS ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.fs-1 {
  font-size: 60px !important;
}

.fs-2 {
  font-size: 50px !important;
}

.fs-3 {
  font-size: 32px;
}

.fs-4 {
  font-size: 1.5rem;
}

.fs-5 {
  font-size: 1.25rem;
}

.fs-6 {
  font-size: 1rem;
}

/* ===== PARAGRAPH ===== */
p {
  margin-bottom: 1rem;
  line-height: var(--line-height-base);
}

/* ===== LINKS ===== */
a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: #0056b3;
  text-decoration: none;
}

/* ===== LISTS ===== */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

li {
  list-style: none;
}

/* ===== FORM ELEMENTS ===== */

label {
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
  color: #000000;
}
input,
select,
textarea,
button {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="url"],
input[type="date"],
input[type="time"],
input[type="search"],
textarea,
select {
  width: 100%;
  border-radius: 0px;
  border: none;
  padding: 0rem 0rem;
  border-bottom: 1px solid var(--border-color);
  background-color: var(--bg-color);
  color: var(--text-color);
  transition: var(--transition);
  -webkit-appearance: none;
  appearance: none;
  min-height: 35px;
  resize: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="date"]:focus,
input[type="time"]:focus,
input[type="search"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #000;
  box-shadow: none;
}

input:disabled,
select:disabled,
textarea:disabled {
  background-color: var(--light-color);
  color: var(--text-light);
  cursor: not-allowed;
}

/* ===== SELECT ===== */
select {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  padding-right: 2.5rem;
}

/* ===== TEXTAREA ===== */
textarea {
  resize: vertical;
  min-height: 120px;
}

/* ===== BUTTONS ===== */
button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
  padding: 0.625rem 1.25rem;
  border: 1px solid transparent;
  border-radius: var(--border-radius);
  background-color: var(--primary-color);
  color: #ffffff;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

button:active,
input[type="button"]:active,
input[type="submit"]:active,
input[type="reset"]:active {
  transform: translateY(0);
}

button:disabled,
input[type="button"]:disabled,
input[type="submit"]:disabled,
input[type="reset"]:disabled {
  background-color: var(--secondary-color);
  cursor: not-allowed;
  opacity: 0.65;
}

/* ===== CHECKBOXES & RADIO BUTTONS ===== */
input[type="checkbox"],
input[type="radio"] {
  width: auto;
  margin-right: 0.5rem;
  cursor: pointer;
}

/* ===== TABLES ===== */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}

thead {
  background-color: var(--light-color);
}

th,
td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

tbody tr:hover {
  background-color: rgba(0, 123, 255, 0.05);
}

/* ===== CODE ===== */
code,
pre {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  font-family: "Courier New", monospace;
  font-size: 0.875rem;
}

code {
  padding: 0.2rem 0.4rem;
  color: #d63384;
}

pre {
  padding: 1rem;
  overflow-x: auto;
  margin-bottom: 1rem;
}

pre code {
  padding: 0;
  color: inherit;
  background-color: transparent;
}

/* ===== BLOCKQUOTE ===== */
blockquote {
  border-left: 4px solid var(--primary-color);
  padding-left: 1rem;
  margin-bottom: 1rem;
  color: var(--text-light);
  font-style: italic;
}

/* ===== IMAGES ===== */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== HR ===== */
hr {
  border: none;
  border-top: 1px solid var(--border-color);
  margin: 2rem 0;
}

/* ===== SMALL TEXT ===== */
small {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* ===== STRONG & EMPHASIS ===== */
strong,
b {
  font-weight: 600;
}

em,
i {
  font-style: italic;
}

/* ===== MARK ===== */
mark {
  background-color: #fff3cd;
  padding: 0.2rem 0.4rem;
  border-radius: 0.2rem;
}

.btn {
  padding: 14px 50px;
  border-radius: 40px;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}
.btn-main {
  background-color: #4c4c4c;
  color: #fff;
}
.btn-main:hover {
  background-color: #353535;
  color: #fff;
}
/* HEader Css Start */
.header__logo a {
  font-size: 27px;
  font-weight: 600;
  color: #434343;
  text-transform: uppercase;
  display: block;
  line-height: 1;
}

nav.header__nav ul {
  display: flex;
  align-items: center;
}

nav.header__nav ul li a {
  text-transform: uppercase;
  color: #434343;
  font-size: 17px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0px 20px;
  position: relative;
}

nav.header__nav ul li a:hover {
  color: #000;
}

.header__content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__lang ul {
  display: flex;
  align-items: center;
}

.header__lang ul li a {
  display: block;
  padding: 0px 6px;
  position: relative;
  font-size: 17px;
  color: #434343;
  transition: all 0.3s ease;
}
.header__lang ul li a:hover {
  color: #007bff;
}
.header__nav ul li a:hover {
  color: #007bff;
  text-decoration: none;
}

.header__lang ul li a::after {
  position: absolute;
  right: 0;
  top: 50%;
  content: "|";
  font-size: 12px;
  transform: translateY(-50%);
}

.header__lang ul li:last-child a::after {
  display: none;
}

header.header {
  padding: 23px 0px;
  border-bottom: 1px solid #00000023;
}

/* Banner Section Css Start */
section.banner__section {
  height: calc(100vh - 140px);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.banner__content h1 {
  color: #ffffff;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 27px;
}

.banner__content {
  text-align: center;
}

.banner__content p {
  color: #ffffff;
  font-size: 23px;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 58px;
}

a.banner__next {
  display: inline-block;
}

.banner__content {
  padding: 30px 0px;
}
.banner__next img {
  animation: moveDown 1.5s infinite ease-in-out;
}

@keyframes moveDown {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(10px);
    opacity: 0.6;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Footer Css start */

footer.footer p {
  color: #000000;
  font-size: 17px;
  line-height: 26px;
  margin-bottom: 0px;
}

footer.footer {
  padding: 24px 0px 14px;
}

/* work-page css */
.section__title h2 {
  margin-bottom: 14px;
  line-height: 1;
  text-transform: uppercase;
}

.section__title p {
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
  color: #4c4c4c;
}

.title-area {
  padding: 75px 0px 80px;
}

a.work__item {
  display: block;
  height: 369px;
  position: relative;
  margin-bottom: 24px;
  overflow: hidden;
}

span.work__item-content {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  padding: 50px 60px;
  color: #fff;
}

.work__item::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(81.86deg, #000000 8.79%, rgba(0, 0, 0, 0) 39.72%);
}

span.work__item-content h3 {
  color: #fff;
  margin-bottom: 7px;
  text-transform: uppercase;
  font-weight: 500;
}

span.work__item-content p {
  font-size: 22px;
  margin-bottom: 0px;
}

img.work__item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 3s ease;
}
.work__item:hover img.work__item-img {
  transform: scale(1.1);
}

a.work__item.work__item-float::after {
  background: linear-gradient(289deg, #000000 8.79%, rgba(0, 0, 0, 0) 39.72%);
}

a.work__item.work__item-float .work__item-content {
  left: auto;
  right: 0;
}
/* work-page css--end */

/* Field Section Css */
span.filed__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 1s ease;
}

.field__item {
  display: block;
  font-size: 18px;
  color: #2f2f2f !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 60px;
  text-decoration: none !important;
}

.filed__item-img {
  overflow: hidden;
  height: 320px;
  display: block;
  margin-bottom: 4px;
}

.field__item:hover .filed__item-img img {
  transform: scale(1.1);
}
.link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  text-transform: uppercase;
  color: #000000;
  letter-spacing: 0.15em;
  text-decoration: none !important;
}
.link:hover {
  color: #0056b3 !important;
}
/* Field Section Css-end */

/* details-page-css */
.breadcrumb-root {
  padding: 30px 0px;
}

.breadcrumb-item a {
  color: #808080 !important;
}

.breadcrumb-item {
  color: #000000 !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 13px;
  position: relative;
}

.breadcrumb-root .breadcrumb-item + .breadcrumb-item::before {
  width: 6px;
  height: 9px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  background-image: url("../imgs/arrow-right.svg");
  background-size: contain;
  background-position: left;
  background-repeat: no-repeat;
  position: relative;
  padding-right: 14px;
}
.details__content-title h2 {
  line-height: 1.2;
  margin-bottom: 10px;
}

.details__content-title h3 {
  font-weight: normal;
}

ul.details__checkList li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0px;
  border-top: 1px solid #00000021;
  font-size: 18px;
  color: #4c4c4c;
}
ul.details__checkList li:last-child {
  border-bottom: 1px solid #00000021;
}
.details__thumbnail img {
  max-width: 100%;
}

/* contact section */
.contact__content p {
  font-size: 18px;
  line-height: 27px;
  margin-bottom: 29px;
}

.contact__content {
  max-width: 420px;
}

ul.contact__social li a span.icon {
  width: 46px;
  height: 46px;
  border: 1px solid #cdcdcd;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

ul.contact__social li a {
  display: flex;
  align-items: center;
  gap: 14px;
}

ul.contact__social li a {
  margin-bottom: 20px;
  font-size: 18px;
  color: #4c4c4c;
}
.input__wrap {
  margin-bottom: 30px;
}

/* Offcanvas-menu */
.offcanvas-menuBtn {
  background-color: transparent;
  padding: 0px;
}
.offcanvas-menuBtn img {
  width: 26px;
}

.offcanvas-menu ul li a {
  font-size: 20px;
  text-transform: uppercase;
  padding: 8px 0px;
  text-align: center;
  display: block;
  color: #4c4c4c;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}
.offcanvas-menu ul li a:hover {
  color: #007bff;
  letter-spacing: 3px;
}
