/* ============================================
   1. Reset & Global Styles
   ============================================ */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {

  --color-white: #ffffff;
  --color-black: #000000;
  --color-primary-blue: #1A4F8F;
  --color-accent-orange: #ED7D31;
  --color-gray: #8E8E8E;
  --color-gradient-blue: linear-gradient(242deg, #0082c6 0%, #005291 100%);

  /* Font Weights (Work Sans) */
  --weight-regular: 400;
  --weight-bold: 700;
  --weight-black: 900;

  /* Font Sizes */
  --size-hero: 85px;
  --size-section-title: 55px;
  --size-header: 45px;
  --size-card-title: 27px;
  --size-body-large: 32px;
  --size-body: 16px;
  --size-small: 14px;

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 32px;
  --space-lg: 64px;
  --space-xl: 96px;
  --space-section: 120px;
}

body {
  font-family: 'Work Sans', sans-serif;
  background-color: var(--color-white);
  color: var(--color-black);
}
.section-title-blue {
  color: var(--color-primary-blue);
  font-weight: var(--weight-black);
  line-height: 1.1;
  text-transform: uppercase;
}

.rounded-40 {
  border-radius: 30px; 
  object-fit: cover;
  width: 100%;
}

.btn-orange-hexagon {
  display: inline-flex !important;
  align-items: center !important;
  gap: 3px;
  height: 47px !important;
  padding: 3px 4px;
  box-sizing: border-box;
  text-decoration: none;
  flex-shrink: 0 !important;
  width: auto;
  align-self: center !important;
  border-radius: 0 !important;
  overflow: visible;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  background: none;
}
.btn-orange-hexagon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../../public/assets/Icons/SVG/button1.svg") no-repeat center;
  background-size: 100% 100%;
  z-index: -1;
  transition: transform .5s cubic-bezier(0.4,0,0.2,1);
  transform-origin: left center;
}
.btn-orange-hexagon:hover::after {
  transform: scaleX(1.06);
  background-position: left center;
}

.hexagon-wrapper {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 43px !important;
  width: 37px !important;
  height: 37px !important;
  position: relative !important;
  transition: transform 0.4s cubic-bezier(.25, .8, .25, 1) !important;
}

.btn-orange-hexagon:hover .hexagon-wrapper {
  transform: scale(1.04) !important;
}

.btn-text {
  color: #ffffff;
  font-weight: 700;
  font-size: 15px !important;
  padding-right: 5px;
  line-height: 1;
  text-transform: uppercase;
  display: inline-block;
  white-space: nowrap;
  vertical-align: middle;
}

.btn-orange-hexagon.adjust-padding-left {
  padding-left: 12px;
}

.hex-arrow {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 32px !important;
  height: 32px !important;
  fill: #ffffff !important;
  transform: translate(-45%, -50%) !important;
  pointer-events: none !important;
}
.news-btn .hexagon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
a[href],
button,
input[type="submit"],
input[type="button"],
input[type="reset"],
.clickable,
[role="button"] {
  cursor: pointer;
}
.swiper-button-next,
.swiper-button-prev,
.swiper-button-next-custom,
.swiper-button-prev-custom {
  cursor: pointer;
}