@font-face {
    font-family: "PirulenRg";
    src: url("./fonts/Pirulen%20Rg.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: "PoppinsMedium";
    src: url("./fonts/Poppins-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }
  
  body {
    font-family: "PirulenRg", sans-serif;
    background-color: #121314;
  }
  
  
  

  /* =========================================
     SECTION — WHO WE ARE
  ========================================= */
  
  .about-section {
    position: relative;
  
    padding: 100px 0;
  
    background: #121314;
  
    overflow: hidden;
  }
  
  /* =========================================
     IMAGE WRAPPER
  ========================================= */
  
  .who-image-wrapper {
    position: relative;
  
    max-width: 570px;
  
    margin: auto;
  
    padding: 0 25px 25px 0;
  }
  
  /* =========================================
     MAIN IMAGE
  ========================================= */
  
  .who-main-image {
    position: relative;
  
    height: 500px;
  
    overflow: hidden;
  
    border-radius: 18px;
  
    z-index: 2;
  }
  
  .who-main-image img {
    width: 100%;
    height: 100%;
  
    object-fit: cover;
  
    display: block;
  }
  
  /* =========================================
     IMAGE OVERLAY
  ========================================= */
  
  .who-main-image::after {
    content: "";
  
    position: absolute;
  
    inset: 0;
  
    background: linear-gradient(
      135deg,
      rgba(22, 139, 209, 0.12),
      transparent 60%
    );
  }
  
  /* =========================================
     DECORATIVE SHAPE
  ========================================= */
  
  .image-decoration {
    position: absolute;
  
    left: 0;
    bottom: 0;
  
    width: 90%;
    height: 90%;
  
    background: #e96224;
  
    border-radius: 18px;
  
    z-index: 1;
  }
  
  /* =========================================
     EXPERIENCE CARD
  ========================================= */
  
  .experience-card {
    position: absolute;
  
    right: 0;
    bottom: 45px;
  
    z-index: 5;
  
    min-width: 175px;
  
    padding: 20px 24px;
  
    display: flex;
    align-items: center;
  
    gap: 14px;
  
    background: #121314;
  
    border-radius: 12px;
  
    box-shadow: 0 15px 40px rgba(20, 90, 130, 0.16);
  
    border: 1px solid #e1f0f8;
  }
  
  .experience-card strong {
    color: #e96224;
  
    font-size: 38px;
  
    line-height: 1;
  
    font-weight: 800;
  }
  
  .experience-card span {
    color: #ffffff;
  
    font-size: 12px;
  
    line-height: 1.45;
  
    font-weight: 800;
  }
  
  /* =========================================
     WHO WE ARE CONTENT
  ========================================= */
  
  .who-content {
    padding-left: 20px;
  }
  
  .who-content h2 {
    max-width: 600px;
  
    margin: 0 0 30px;
  
    color: #121314;
  
    font-size: clamp(34px, 4vw, 48px);
  
    line-height: 1.08;
  
    letter-spacing: -1.8px;
  
    font-weight: 800;
  }
  
  .who-content h2 span {
    color: #e96224;
  }
  
  .who-content p {
    max-width: 610px;
  
    margin-bottom: 20px;
  
    color: #ffffff;
  
    font-size: 14px;
  
    line-height: 1.75;
  }
  
  .who-content .lead-text {
    color: #ffffff;
  
    font-size: 17px;
  
    line-height: 1.65;
  
    margin-bottom: 20px;
  }
  
  .orange-text {
    color: #e96224;
    font-weight: 800;
  }
  
  /* =========================================
     TITLE BOX
  ========================================= */
  
  .who-header {
    margin-bottom: 25px;
  }
  
  .who-title-box {
    position: relative;
  
    display: inline-block;
  
    /* padding: 8px 24px; */
  
    /* border-left: 5px solid #e96224;
    border-right: 5px solid #e96224; */
  }
  
  /* =========================================
     OUR MISSION
  ========================================= */
  
  .mission-section {
    width: 100%;
  
    margin: 0;
  
    padding: 0;
  
    background: #121314;
  
    overflow: hidden;
  }
  
  /* =========================================
     MISSION CONTAINER
  ========================================= */
  
  .mission-container {
    display: grid;
  
    grid-template-columns: 2fr 1fr;
  
    width: 100%;
  
    min-height: 500px;
  }
  
  /* =========================================
     MISSION CONTENT
  ========================================= */
  
  .mission-content {
    display: flex;
  
    flex-direction: column;
  
    justify-content: flex-start;
  
    padding: 85px 60px 75px 8%;

    /* left: -75px;
  position: relative;
  width: 535px; */
  }
  
  /* =========================================
     MISSION TITLE
  ========================================= */
  
  .mission-title {
    margin-bottom: 25px;
  }
  
  .mission-title h2 {
    margin: 0;
  
    color: #ffffff;
  
    font-size: clamp(38px, 4vw, 58px);
  
    line-height: 1;
  
    font-weight: 700;
  
    letter-spacing: -1px;
  }
  
  .mission-title h2 span {
    color: #e96224;
  }
  
  /* =========================================
     MISSION TEXT
  ========================================= */
  
  .mission-text {
    max-width: 900px;
  }
  
  .mission-text p {
    margin: 0 0 28px;
  
    color: #e96224;
  
    font-size: 17px;
  
    line-height: 1.6;
  
    font-weight: 500;
  
    letter-spacing: 0.1px;
  }
  
  .mission-text p:last-child {
    margin-bottom: 0;
  }
  
  /* =========================================
     MISSION IMAGE
  ========================================= */
  
  .mission-image {
    position: relative;
  
    min-height: 500px;
  
    background: #f1f1f1;
  
    overflow: hidden;
  }
  
  .mission-image img {
    display: block;
  
    width: 100%;
    height: 100%;
  
    object-fit: cover;
  }
  
  /* =========================================
     TABLET
  ========================================= */
  
  @media (max-width: 991px) {
    /* WHO WE ARE */
  
    .about-section {
      padding: 75px 0;
    }
  
    .who-content {
      padding-left: 0;
    }
  
    /* VISION */
  
    .vision-container {
      grid-template-columns: 1fr;
    }
  
    .vision-content {
      padding: 70px 8%;
    }
  
    .vision-image {
      min-height: 400px;
    }
  
    /* MISSION */
  
    .mission-container {
      grid-template-columns: 1fr;
    }
  
    .mission-content {
      padding: 70px 8%;
    }
  
    .mission-image {
      min-height: 400px;
    }
  }
  
  /* =========================================
     MOBILE
  ========================================= */
  
  @media (max-width: 600px) {
    /* WHO WE ARE */
  
    .about-section {
      padding: 55px 0;
    }
  
    .who-image-wrapper {
      padding-right: 12px;
    }
  
    .who-main-image {
      height: 360px;
    }
  
    .experience-card {
      right: 5px;
  
      bottom: 25px;
  
      min-width: 150px;
  
      padding: 15px;
    }
  
    .experience-card strong {
      font-size: 30px;
    }
  
    .who-content h2 {
      font-size: 34px;
    }
  
    .who-content p {
      font-size: 14px;
    }
  
    .who-content .lead-text {
      font-size: 15px;
    }
  
    /* VISION */
  
    .vision-container {
      display: flex;
  
      flex-direction: column;
    }
  
    .vision-content {
      padding: 55px 25px;
    }
  
    .vision-title {
      margin-bottom: 22px;
    }
  
    .vision-title h2 {
      font-size: 38px;
    }
  
    .vision-text p {
      font-size: 15px;
  
      line-height: 1.65;
  
      margin-bottom: 24px;
    }
  
    .vision-image {
      min-height: 320px;
  
      height: 320px;
    }
  
    /* MISSION */
  
    .mission-container {
      display: flex;
  
      flex-direction: column;
    }
  
    .mission-content {
      padding: 55px 25px;
    }
  
    .mission-title {
      margin-bottom: 22px;
    }
  
    .mission-title h2 {
      font-size: 38px;
    }
  
    .mission-text p {
      font-size: 15px;
  
      line-height: 1.65;
  
      margin-bottom: 24px;
    }
  
    .mission-image {
      min-height: 320px;
  
      height: 320px;
    }
  }
  
  /* =========================================
  PRODUCTS & EQUIPMENT
  ========================================= */
  
  .products-section {
    padding: 105px 0;
  
    background: #121314;
  }
  
  /* HEADER */
  
  .products-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  
    gap: 50px;
  
    margin-bottom: 45px;
  }
  
  .products-heading h2 {
    max-width: 600px;
  
    margin: 12px 0 0;
  
    color: #121314;
  
    font-size: clamp(34px, 4vw, 50px);
  
    line-height: 1.05;
  
    font-weight: 800;
  
    letter-spacing: -2px;
  }
  
  .products-heading h2 span {
    color: #e96224;
  }
  
  .products-heading > p {
    max-width: 440px;
  
    margin: 0;
  
    color: #6a8295;
  
    font-size: 14px;
  
    line-height: 1.75;
  }
  
  /* =========================================
      PRODUCTS GRID
      ========================================= */
  
  .products-grid {
    display: grid;
  
    grid-template-columns: repeat(4, 1fr);
  
    grid-auto-rows: 260px;
  
    gap: 18px;
  }
  
  /* PRODUCT CARD */
  
  .product-card {
    position: relative;
  
    overflow: hidden;
  
    border-radius: 12px;
  
    background: #eaf7ff;
  
    cursor: pointer;
  }
  
  .product-card.product-large {
    grid-column: span 2;
    grid-row: span 2;
  }
  
  .product-card.product-wide {
    grid-column: span 2;
  }
  
  /* IMAGE */
  
  .product-card img {
    width: 100%;
    height: 100%;
  
    display: block;
  
    object-fit: cover;
  
    transition: transform 0.6s ease;
  }
  
  .product-card:hover img {
    transform: scale(1.07);
  }
  
  /* DARK/LIGHT BLUE OVERLAY */
  
  .product-card::after {
    content: "";
  
    position: absolute;
  
    inset: 0;
  
    background: linear-gradient(
      to top,
      rgba(8, 44, 69, 0.88) 0%,
      rgba(8, 44, 69, 0.25) 55%,
      rgba(8, 44, 69, 0) 100%
    );
  }
  
  /* CONTENT */
  
  .product-overlay {
    position: absolute;
  
    left: 0;
    right: 0;
    bottom: 0;
  
    z-index: 2;
  
    padding: 25px;
  }
  
  .product-overlay span {
    display: block;
  
    margin-bottom: 7px;
  
    color: #8ed7ff;
  
    font-size: 11px;
  
    font-weight: 800;
  
    letter-spacing: 1px;
  }
  
  .product-overlay h3 {
    margin: 0 0 5px;
  
    color: #121314;
  
    font-size: 19px;
  
    font-weight: 800;
  }
  
  .product-overlay p {
    margin: 0;
  
    color: rgba(255, 255, 255, 0.78);
  
    font-size: 11px;
  
    line-height: 1.5;
  }
  
  /* =========================================
      CTA
      ========================================= */
  
  .products-cta {
    display: flex;
  
    align-items: center;
  
    justify-content: space-between;
  
    gap: 30px;
  
    margin-top: 30px;
  
    padding: 25px 30px;
  
    border-radius: 12px;
  
    background: #eef9ff;
  
    border: 1px solid #d8edf8;
  }
  
  .products-cta strong {
    display: block;
  
    margin-bottom: 5px;
  
    color: #121314;
  
    font-size: 16px;
  
    font-weight: 800;
  }
  
  .products-cta span {
    color: #71889a;
  
    font-size: 12px;
  }
  
  .products-cta a {
    display: inline-flex;
  
    align-items: center;
  
    gap: 10px;
  
    flex-shrink: 0;
  
    padding: 13px 20px;
  
    border-radius: 7px;
  
    background: #e96224;
  
    color: #121314;
  
    text-decoration: none;
  
    font-size: 12px;
  
    font-weight: 800;
  
    transition: all 0.25s ease;
  }
  
  .products-cta a:hover {
    background: #e96224;
  
    color: #121314;
  
    transform: translateY(-2px);
  }
  
  /* =========================================
      RESPONSIVE
      ========================================= */
  
  @media (max-width: 991px) {
    .products-section {
      padding: 75px 0;
    }
  
    .products-heading {
      flex-direction: column;
  
      align-items: flex-start;
  
      gap: 15px;
    }
  
    .products-grid {
      grid-template-columns: repeat(2, 1fr);
  
      grid-auto-rows: 250px;
    }
  }
  
  @media (max-width: 600px) {
    .products-section {
      padding: 55px 0;
    }
  
    .products-heading h2 {
      font-size: 34px;
    }
  
    .products-grid {
      grid-template-columns: 1fr;
  
      grid-auto-rows: 280px;
    }
  
    .product-card.product-large,
    .product-card.product-wide {
      grid-column: span 1;
  
      grid-row: span 1;
    }
  
    .products-cta {
      flex-direction: column;
  
      align-items: flex-start;
  
      padding: 22px;
    }
  
    .products-cta a {
      width: 100%;
  
      justify-content: center;
    }
  }
  
  /* =========================================
  BOOTSTRAP PRODUCT CARDS
  ========================================= */
  
  .products-section {
    padding: 100px 0;
    background: #121314;
  }
  
  /* HEADER */
  
  .products-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 45px;
  }
  
  .products-heading h2 {
    max-width: 600px;
    margin: 12px 0 0;
  
    color: #121314;
  
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -2px;
  }
  
  .products-heading h2 span {
    color: #e96224;
  }
  
  .products-heading > p {
    max-width: 440px;
    margin: 0;
  
    color: #6a8295;
  
    font-size: 14px;
    line-height: 1.75;
  }
  
  /* =========================================
      CARD
      ========================================= */
  
  .product-bootstrap-card {
    border: 1px solid #dcecf6 !important;
  
    border-radius: 14px !important;
  
    overflow: hidden;
  
    background: #121314;
  
    box-shadow: 0 8px 25px rgba(25, 100, 145, 0.06);
  
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  }
  
  .product-bootstrap-card:hover {
    transform: translateY(-7px);
  
    border-color: #b9def3 !important;
  
    box-shadow: 0 18px 40px rgba(25, 100, 145, 0.13);
  }
  
  /* IMAGE */
  
  .product-bootstrap-card .card-img-top {
    width: 100%;
  
    height: 230px;
  
    object-fit: cover;
  
    transition: transform 0.5s ease;
  }
  
  .product-bootstrap-card:hover .card-img-top {
    transform: scale(1.05);
  }
  
  /* CARD BODY */
  
  .product-bootstrap-card .card-body {
    position: relative;
  
    padding: 25px;
  }
  
  /* NUMBER */
  
  .product-number {
    display: inline-flex;
  
    align-items: center;
    justify-content: center;
  
    width: 34px;
    height: 34px;
  
    margin-bottom: 15px;
  
    border-radius: 8px;
  
    background: #121314;
  
    color: #e96224;
  
    font-size: 11px;
  
    font-weight: 800;
  }
  
  /* TITLE */
  
  .product-bootstrap-card .card-title {
    margin-bottom: 10px;
  
    color: #121314;
  
    font-size: 18px;
  
    font-weight: 800;
  }
  
  /* DESCRIPTION */
  
  .product-bootstrap-card .card-text {
    min-height: 65px;
  
    margin-bottom: 20px;
  
    color: #6b8295;
  
    font-size: 13px;
  
    line-height: 1.65;
  }
  
  /* LINK */
  
  .product-card-link {
    display: inline-flex;
  
    align-items: center;
  
    gap: 8px;
  
    color: #e96224;
  
    font-size: 12px;
  
    font-weight: 800;
  
    text-decoration: none;
  
    transition: gap 0.25s ease;
  }
  
  .product-card-link:hover {
    color: #e96224;
  
    gap: 13px;
  }
  
  .product-card-link span {
    font-size: 17px;
  }
  
  /* =========================================
      RESPONSIVE
      ========================================= */
  
  @media (max-width: 991px) {
    .products-section {
      padding: 75px 0;
    }
  
    .products-heading {
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
    }
  }
  
  @media (max-width: 600px) {
    .products-section {
      padding: 55px 0;
    }
  
    .products-heading h2 {
      font-size: 34px;
    }
  
    .product-bootstrap-card .card-img-top {
      height: 240px;
    }
  }
  
  .products-section {
    margin-bottom: 45px;
  }
  
  .who-title-box h1{
    margin: 0;
    font-family: "Pirulen", sans-serif;
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
    color: #ffffff;
    white-space: nowrap;
  }


  /* =====================================================
     HEADER LINE
  ===================================================== */
.header-line {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.line {
    width: 55px;
    height: 3px;
    background-color: #e96224;
    flex-shrink: 0;
}
.header-line span {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: white;
}

/* =========================
   HERO FEATURES
========================= */

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;

    width: 100%;
    max-width: 500px;

    margin-top: 28px;
    margin-bottom: 30px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    width: 52px;
    height: 52px;
    border: 2px solid #e96224;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #e96224;
    font-size: 20px;

    flex-shrink: 0;
}

.feature-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.feature-text span {
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
}

.feature-text small {
    color: #ffffff;
    font-size: 12px;
    opacity: 0.85;
}


/* =========================
   HERO CTA
========================= */

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    padding: 16px 28px;

    background: #e96224;
    color: #ffffff;

    text-decoration: none;

    border-radius: 8px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;

    transition: all 0.3s ease;
}

.hero-cta i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.hero-cta:hover {
    background: #ff7d2a;
    color: #ffffff;
    transform: translateY(-2px);
}

.hero-cta:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {

    .hero-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-top: 25px;
        margin-bottom: 30px;
    }

    .hero-feature {
        gap: 8px;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 17px;
    }

    .feature-text span {
        font-size: 12px;
    }

    .feature-text small {
        font-size: 11px;
    }

    .hero-cta {
        width: 100%;
        padding: 15px 20px;
    }
}

.aluminum-hero {
    width: 100%;
    background: #121314;
    padding: 45px 0px;
    overflow: hidden;
    margin-bottom: 45px;
  }
  
  .aluminum-hero-container {
    width: min(1400px, 92%);
    min-height: 560px;
    margin: auto;
  
    display: grid;
    grid-template-columns: 43% 57%;
  
    background: #121314;
    border-radius: 24px;
    /* overflow: hidden; */
    /* box-shadow: 0 20px 60px rgba(42, 117, 168, 0.1); */
  }
  
  /* =========================================
  LEFT CONTENT
  ========================================= */
  
  .aluminum-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
  
    padding: 70px 55px;
    position: relative;
    z-index: 2;
  }
  
  .aluminum-hero-label {
    display: inline-flex;
    width: fit-content;
  
    padding: 8px 14px;
    margin-bottom: 20px;
  
    border-radius: 50px;
  
    background: #121314;
    color: #e96224;
  
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
  }
  
  .aluminum-hero-content h1 {
    margin: 0;
  
    max-width: 560px;
  
    color: white;
  
    font-size: clamp(40px, 3vw, 64px);
    line-height: 1.05;
  
    /* font-weight: 800; */
    letter-spacing: -2.5px;
  }
  
  .aluminum-hero-content h1 span {
    color: #e96224;
  }
  
  .aluminum-hero-content p {
    max-width: 500px;
  
    margin: 24px 0 0;
  
    color: #ffffff;
  
    font-size: 16px;
    line-height: 1.75;
  }
  
  /* =========================================
  BUTTONS
  ========================================= */
  
  .aluminum-hero-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
  
    margin-top: 32px;
  }
  
  .hero-btn-primary,
  .hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  
    min-height: 50px;
  
    padding: 0 23px;
  
    border-radius: 8px;
  
    font-size: 14px;
    font-weight: 700;
  
    transition: all 0.25s ease;
  }
  
  .hero-btn-primary {
    color: #121314;
    background: #e96224;
  
    box-shadow: 0 10px 25px rgba(22, 139, 209, 0.2);
  }
  
  .hero-btn-primary:hover {
    background: #e96224;
    transform: translateY(-2px);
  }
  
  .hero-btn-secondary {
    color: #e96224;
    background: #121314;
  
    border: 1px solid #cce8f7;
  }
  
  .hero-btn-secondary:hover {
    background: #eef9ff;
    transform: translateY(-2px);
  }
  
  /* =========================================
  SLIDER
  ========================================= */
  
  .aluminum-slider {
    position: relative;
  
    min-height: 560px;
  
    overflow: hidden;
  
    background: #dff2ff;
    border-radius: 3%;
  }
  
  .aluminum-slide {
    position: absolute;
  
    inset: 0;
  
    opacity: 0;
  
    visibility: hidden;
  
    transition: opacity 0.7s ease, visibility 0.7s ease;
  }
  
  .aluminum-slide.active {
    opacity: 1;
    visibility: visible;
  }
  
  .aluminum-slide img {
    width: 100%;
    height: 100%;
  
    display: block;
  
    object-fit: cover;
    /* border: 2px solid #e96224; */
    border-radius: 3%;
  }
  
  /* Light overlay on image */
  
  .aluminum-slider::after {
    content: "";
  
    position: absolute;
  
    inset: 0;
  
    pointer-events: none;
  
    background: linear-gradient(
      90deg,
      rgba(220, 243, 255, 0.15),
      transparent 35%
    );
  }
  
  /* =========================================
  SLIDER ARROWS
  ========================================= */
  
  .aluminum-slider-arrow {
    position: absolute;
  
    top: 50%;
  
    transform: translateY(-50%);
  
    z-index: 5;
  
    width: 46px;
    height: 46px;
  
    border: 0;
  
    border-radius: 50%;
  
    background: #121314;
  
    color: #e96224;
  
    /* font-size: 30px; */
    line-height: 1;
  
    cursor: pointer;
  
    box-shadow: 0 8px 25px rgba(18, 59, 93, 0.16);
  
    transition: all 0.25s ease;
  }
  
  .aluminum-slider-arrow:hover {
    background: #e96224;
    color: #121314;
  }
  
  .aluminum-prev {
    left: 22px;
  }
  
  .aluminum-next {
    right: 22px;
  }
  
  /* =========================================
  DOTS
  ========================================= */
  .aluminum-slider-dots {
    position: absolute;
  
    left: 50%;
    bottom: 22px;
  
    transform: translateX(-50%);
  
    z-index: 6;
  
    display: flex;
  
    gap: 8px;
  }
  
  .aluminum-dot {
    width: 10px;
    height: 10px;
  
    padding: 0;
  
    border: 0;
  
    border-radius: 50%;
  
    background: #121314;
  
    cursor: pointer;
  
    transition: all 0.25s ease;
  }
  
  .aluminum-dot.active {
    width: 28px;
  
    border-radius: 10px;
  
    background: #e96224;
  }
  
  /* =========================================
  RESPONSIVE
  ========================================= */
  
  @media (max-width: 1000px) {
    .aluminum-hero-container {
      grid-template-columns: 1fr;
    }
  
    .aluminum-hero-content {
      padding: 55px 45px;
    }
  
    .aluminum-slider {
      min-height: 450px;
    }
  }
  
  @media (max-width: 600px) {
    .aluminum-hero {
      padding: 15px 0;
    }
  
    .aluminum-hero-container {
      width: 94%;
  
      border-radius: 16px;
    }
  
    .aluminum-hero-content {
      padding: 40px 28px;
    }
  
    .aluminum-hero-content h1 {
      font-size: 38px;
      letter-spacing: -1.5px;
    }
  
    .aluminum-hero-content p {
      font-size: 14px;
    }
  
    .aluminum-hero-buttons {
      flex-direction: column;
      align-items: stretch;
    }
  
    .hero-btn-primary,
    .hero-btn-secondary {
      width: 100%;
    }
  
    .aluminum-slider {
      min-height: 330px;
    }
  
    .aluminum-slider-arrow {
      width: 38px;
      height: 38px;
      font-size: 25px;
    }
  
    .aluminum-prev {
      left: 12px;
    }
  
    .aluminum-next {
      right: 12px;
    }
  }









  /* =========================================================
   ABOUT / WHO WE ARE SECTION
========================================================= */

.about-section {
    position: relative;
    padding: 110px 0;
    background: #080b0f;
    color: #ffffff;
    overflow: hidden;
}

.about-section .container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   MAIN ROW
========================================================= */

.about-section .row {
    align-items: center;
}


/* =========================================================
   LEFT IMAGE
========================================================= */

.who-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    padding-bottom: 25px;
}


/* Orange decoration behind image */

.image-decoration {
    position: absolute;

    left: 0;
    bottom: 0;

    width: calc(100% - 30px);
    height: 28px;

    background: #e96224;

    border-radius: 0 0 15px 15px;

    z-index: 0;
}


/* Main image */

.who-main-image {
    position: relative;
    z-index: 2;

    width: calc(100% - 25px);
    height: 580px;

    overflow: hidden;

    border-radius: 16px;
}


.who-main-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* =========================================================
   EXPERIENCE CARD
========================================================= */

.experience-card {
    position: absolute;

    right: 0;
    bottom: 45px;

    z-index: 5;

    display: flex;
    align-items: center;

    gap: 15px;

    min-width: 245px;

    padding: 18px 24px;

    background: #080b0f;

    border: 2px solid #e96224;

    border-radius: 14px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}


/* 40+ */

.experience-card strong {
    color: #e96224;

    font-size: 46px;
    font-weight: 800;

    line-height: 1;
}


/* Vertical divider */

.experience-card::before {
    content: "";

    width: 1px;
    height: 45px;

    background: rgba(255, 255, 255, 0.3);
}


/* Experience text */

.experience-card span {
    color: #ffffff;

    font-size: 15px;
    font-weight: 600;

    line-height: 1.35;
}


/* =========================================================
   RIGHT CONTENT
========================================================= */

.who-content {
    max-width: 650px;
    padding-left: 20px;
}


/* =========================================================
   TITLE HEADER
========================================================= */

/* .projects-header {
    margin-bottom: 42px;
} */


.who-title-box {
    position: relative;
}


/* Orange line above title */

.who-title-box::before {
    content: "";

    display: block;

    width: 55px;
    height: 3px;

    background: #e96224;

    margin-bottom: 18px;
}


/* WHO WE ARE */

.who-title-box h1 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(42px, 4vw, 64px);

    font-weight: 800;

    line-height: 1;

    letter-spacing: -1.5px;
}


/* Orange ARE */

.who-title-box h1 span {
    color: #e96224;
}


/* =========================================================
   TEXT
========================================================= */

.who-content p {
    margin: 0 0 28px;

    color: #d4d7db;

    font-size: 16px;

    line-height: 1.8;

    font-weight: 400;
}


/* Last paragraph */

.who-content p:last-child {
    margin-bottom: 0;
}


/* Orange highlighted company names */

.orange-text {
    color: #e96224;
    font-weight: 700;
}


/* Bold text */

.who-content strong {
    color: #ffffff;
    font-weight: 700;
}


/* Second paragraph */

.who-content .lead-text {
    margin-top: 5px;
}


/* =========================================================
   LARGE SCREENS
========================================================= */

@media (min-width: 1200px) {

    .about-section {
        padding: 120px 0;
    }

    .who-main-image {
        height: 610px;
    }

    .who-content {
        padding-left: 35px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .about-section {
        padding: 80px 0;
    }

    .who-image-wrapper {
        max-width: 700px;
        margin-bottom: 50px;
    }

    .who-main-image {
        width: calc(100% - 20px);
        height: 500px;
    }

    .experience-card {
        right: 0;
        bottom: 35px;
    }

    .who-content {
        max-width: 100%;
        padding-left: 0;
    }

    .who-title-box h1 {
        font-size: 50px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .about-section {
        padding: 70px 0;
    }


    /* IMAGE */

    .who-image-wrapper {
        padding-bottom: 20px;
        margin-bottom: 45px;
    }

    .who-main-image {
        width: calc(100% - 10px);
        height: 400px;

        border-radius: 14px;
    }


    /* ORANGE STRIP */

    .image-decoration {
        width: calc(100% - 5px);
        height: 22px;

        border-radius: 0 0 12px 12px;
    }


    /* EXPERIENCE CARD */

    .experience-card {
        right: 0;
        bottom: 30px;

        min-width: auto;

        padding: 14px 18px;

        gap: 12px;

        border-radius: 12px;
    }

    .experience-card strong {
        font-size: 36px;
    }

    .experience-card span {
        font-size: 12px;
    }

    .experience-card::before {
        height: 38px;
    }


    /* TITLE */

    /* .projects-header {
        margin-bottom: 30px;
    } */

    .who-title-box::before {
        width: 50px;
        height: 3px;

        margin-bottom: 15px;
    }

    .who-title-box h1 {
        font-size: 42px;
        letter-spacing: -1px;
    }


    /* TEXT */

    .who-content p {
        font-size: 15px;
        line-height: 1.7;

        margin-bottom: 24px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .about-section {
        padding: 55px 0;
    }

    .who-main-image {
        height: 340px;
    }

    .experience-card {
        padding: 12px 15px;
    }

    .experience-card strong {
        font-size: 32px;
    }

    .experience-card span {
        font-size: 11px;
    }

    .who-title-box h1 {
        font-size: 36px;
    }

}














/* =========================================================
   OUR VISION SECTION
========================================================= */

.vision-section {
    position: relative;

    width: 100%;
    min-height: 700px;

    padding: 110px 0;

    background: #080c11;

    color: #ffffff;

    overflow: hidden;
}


/* =========================================================
   CONTAINER
========================================================= */

.vision-section .container {
    position: relative;

    z-index: 5;
}


/* =========================================================
   BACKGROUND GRID
========================================================= */

.vision-bg-grid {
    position: absolute;

    inset: 0;

    opacity: 0.55;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    pointer-events: none;
}


/* =========================================================
   ORANGE GLOW
========================================================= */

.vision-glow {
    position: absolute;

    width: 500px;
    height: 500px;

    /* right: -220px;
    top: -220px; */

    background: rgba(243, 111, 33, 0.10);

    border-radius: 50%;

    filter: blur(80px);

    pointer-events: none;
}


/* =========================================================
   MAIN LAYOUT
========================================================= */

.vision-container {

    display: grid;

    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(0, 1.15fr);

    align-items: center;

    gap: 80px;

    min-height: 520px;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.vision-content {

    position: relative;

    z-index: 5;

    max-width: 650px;

    padding-left: 20px;
}


/* =========================================================
   LABEL
========================================================= */

.vision-label {

    display: flex;

    align-items: center;

    gap: 18px;

    margin-bottom: 28px;
}


.vision-label span {

    color: #e96224;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 4px;

    text-transform: uppercase;

    white-space: nowrap;
}


.vision-label-line {

    width: 75px;

    height: 3px;

    background: #e96224;
}


/* =========================================================
   TITLE
========================================================= */

.vision-title {

    margin-bottom: 42px;
}


.vision-title h2 {

    display: flex;

    /* flex-direction: column; */

    margin: 0;

    font-size: clamp(42px, 4vw, 64px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1.5px;

    color: #ffffff;
}


.vision-title h2 span {
    margin-left: 15px;
    color: #e96224;

}


/* =========================================================
   TEXT
========================================================= */

.vision-text {

    position: relative;

    max-width: 590px;

    padding-left: 28px;
}


/* Orange vertical line */

.vision-text::before {

    content: "";

    position: absolute;

    left: 0;

    top: 3px;

    width: 3px;

    height: 145px;

    background: linear-gradient(
        to bottom,
        #e96224,
        rgba(243, 111, 33, 0.15)
    );

}


.vision-text p {

    margin: 0 0 30px;

    color: #d7dbe0;

    font-size: 16px;

    font-weight: 400;

    line-height: 1.8;

    letter-spacing: 0.15px;
}


.vision-text p:last-child {

    margin-bottom: 0;

}


/* =========================================================
   RIGHT IMAGE WRAPPER
========================================================= */

.vision-image {
    display: none;
}


/* =========================================================
   IMAGE
========================================================= */

.vision-image {

    position: relative;

    z-index: 3;

    width: 100%;

    max-width: 690px;

    height: 560px;

    overflow: hidden;

    border-radius: 18px;
}


.vision-image img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.8s ease;
}


.vision-image:hover img {

    transform: scale(1.035);

}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.vision-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(8, 12, 17, 0.18),
            transparent 45%
        );

    pointer-events: none;
}


/* =========================================================
   ORANGE IMAGE ACCENT
========================================================= */

.vision-image-accent {

    position: absolute;

    z-index: 4;

    top: 0;

    right: 0;

    width: 18px;

    height: 100%;

    background: #e96224;

}


/* =========================================================
   VISION WATERMARK
========================================================= */

.vision-watermark {

    position: absolute;

    z-index: 1;

    right: -180px;

    top: 50%;

    transform:
        translateY(-50%)
        rotate(90deg);

    transform-origin: center;

    color: #e96224;

    -webkit-text-stroke: 1px rgba(243, 111, 33, 0.35);

    font-size: clamp(100px, 10vw, 170px);

    font-weight: 900;

    line-height: 1;

    letter-spacing: -7px;

    white-space: nowrap;

    pointer-events: none;

}


/* =========================================================
   BOTTOM ACCENT
========================================================= */

.vision-bottom-accent {

    position: absolute;

    left: 0;

    bottom: 0;

    width: 220px;

    height: 5px;

    background: #e96224;
}


/* =========================================================
   DECORATIVE CORNER
========================================================= */

.vision-section::before {

    content: "";

    position: absolute;

    left: -100px;

    bottom: -120px;

    width: 300px;

    height: 300px;

    border: 1px solid rgba(243, 111, 33, 0.12);

    transform: rotate(45deg);

    pointer-events: none;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1400px) {

    .vision-section {

        padding: 130px 0;

    }


    .vision-container {

        gap: 100px;

    }


    .vision-image {

        height: 600px;

    }


    .vision-image-wrapper {

        min-height: 600px;

    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .vision-container {

        grid-template-columns:
            minmax(0, 0.9fr)
            minmax(0, 1.1fr);

        gap: 45px;

    }


    .vision-content {

        padding-left: 0;

    }


    .vision-title h2 {

        font-size: clamp(52px, 6vw, 72px);

    }


    .vision-image {

        height: 480px;

    }


    .vision-image-wrapper {

        min-height: 480px;

    }


    .vision-watermark {
        display: none;
        right: -80px;

        font-size: 110px;

    }

}


/* =========================================================
   TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 991px) {

    .vision-image{
        display: block;
    }

    .vision-image-wrapper {
        position: relative;
    
        min-width: 0;
    
        min-height: 560px;
    
        display: flex;
    
        align-items: center;
    
        justify-content: flex-end;
    }

    .vision-section {

        padding: 90px 0;

    }


    .vision-container {

        grid-template-columns: 1fr;

        gap: 60px;

    }


    .vision-content {

        max-width: 750px;

    }


    .vision-image-wrapper {

        min-height: 450px;

        justify-content: flex-start;

    }


    .vision-image {

        max-width: 100%;

        height: 450px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .vision-section {

        min-height: auto;

        padding: 70px 0 80px;

    }


    .vision-container {

        gap: 45px;

    }


    /* LABEL */

    .vision-label {

        gap: 12px;

        margin-bottom: 22px;

    }


    .vision-label span {

        font-size: 10px;

        letter-spacing: 2.5px;

    }


    .vision-label-line {

        width: 45px;

        height: 2px;

    }


    /* TITLE */

    .vision-title {

        margin-bottom: 32px;

    }


    .vision-title h2 {

        font-size: clamp(48px, 15vw, 68px);

        letter-spacing: -3px;

    }


    /* TEXT */

    .vision-text {

        padding-left: 20px;

    }


    .vision-text::before {

        width: 2px;

        height: 120px;

    }


    .vision-text p {

        font-size: 15px;

        line-height: 1.7;

        margin-bottom: 25px;

    }


    /* IMAGE */

    .vision-image-wrapper {

        min-height: 330px;

    }


    .vision-image {

        height: 330px;

        border-radius: 14px;

    }


    .vision-image-accent {

        width: 10px;

    }


    /* BOTTOM */

    .vision-bottom-accent {

        width: 120px;

        height: 4px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .vision-section {

        padding: 60px 0 70px;

    }


    .vision-title h2 {

        font-size: 46px;

    }


    .vision-text p {

        font-size: 14px;

    }


    .vision-image {

        height: 290px;

    }


    .vision-image-wrapper {

        min-height: 290px;

    }

}


















/* =========================================================
   OUR MISSION
========================================================= */

.mission-section {
    position: relative;

    width: 100%;
    min-height: 720px;

    padding: 120px 0;

    background: #080c11;

    color: #ffffff;

    overflow: hidden;
}


/* =========================================================
   BACKGROUND GRID
========================================================= */

.mission-bg-grid {
    position: absolute;

    inset: 0;

    opacity: 0.45;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    pointer-events: none;
}


/* =========================================================
   ORANGE GLOW
========================================================= */

.mission-glow {
    position: absolute;

    width: 550px;
    height: 550px;

    left: -300px;

    background: rgba(243, 111, 33, 0.08);

    border-radius: 50%;

    filter: blur(90px);

    pointer-events: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.mission-section .container {
    position: relative;

    z-index: 5;
}


/* =========================================================
   MAIN LAYOUT
   IMAGE LEFT / CONTENT RIGHT
========================================================= */

.mission-container {

    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(0, 0.85fr);

    align-items: center;

    gap: 90px;

    min-height: 520px;
}


/* =========================================================
   LEFT VISUAL
========================================================= */

.mission-visual {

    position: relative;

    min-height: 560px;

    display: flex;

    align-items: center;

    justify-content: flex-start;
}


/* =========================================================
   IMAGE
========================================================= */

.mission-image {

    position: relative;

    z-index: 3;

    width: 100%;

    max-width: 700px;

    height: 560px;

    overflow: hidden;

    border-radius: 18px;
}


.mission-image img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.8s ease;
}


.mission-image:hover img {

    transform: scale(1.035);

}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.mission-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(8, 12, 17, 0.30),
            transparent 55%
        );

    pointer-events: none;
}


/* =========================================================
   ORANGE IMAGE ACCENT
========================================================= */

.mission-image-accent {

    position: absolute;

    z-index: 4;

    left: 0;

    top: 0;

    width: 18px;

    height: 100%;

    background: #e96224;
}


/* =========================================================
   FLOATING CARD
========================================================= */

.mission-card {

    position: absolute;

    z-index: 6;

    left: 35px;

    bottom: 35px;

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 17px 25px;

    background: #080c11;

    border: 1px solid rgba(243, 111, 33, 0.8);

    border-radius: 10px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.45);
}


.mission-card-icon {

    width: 45px;

    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #e96224;

    border-radius: 50%;

    color: #e96224;

    font-size: 18px;
}


.mission-card-content {

    display: flex;

    flex-direction: column;

    line-height: 1.2;
}


.mission-card strong {

    color: #ffffff;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1px;
}


.mission-card span {

    color: #e96224;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 1.5px;

    margin-top: 4px;
}


/* =========================================================
   RIGHT CONTENT
========================================================= */

.mission-content {

    position: relative;

    z-index: 5;

    max-width: 650px;

    padding-right: 20px;
}


/* =========================================================
   LABEL
========================================================= */

.mission-label {

    display: flex;

    align-items: center;

    justify-content: flex-start;

    gap: 18px;

    margin-bottom: 28px;
}


.mission-label span {

    color: #e96224;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 4px;

    text-transform: uppercase;

    white-space: nowrap;
}


.mission-label-line {

    width: 75px;

    height: 3px;

    background: #e96224;
}


/* =========================================================
   TITLE
========================================================= */

.mission-title {

    margin-bottom: 42px;
}


.mission-title h2 {
    display: flex;

    /* flex-direction: column; */

    margin: 0;

    font-size: clamp(42px, 4vw, 64px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1.5px;

    color: #ffffff;
}


.mission-title h2 span {
    margin-left: 15px;
    color: #e96224;

}


/* =========================================================
   TEXT
========================================================= */

.mission-text {

    position: relative;

    max-width: 620px;

    padding-left: 28px;
}


/* Orange vertical line */

.mission-text::before {

    content: "";

    position: absolute;

    left: 0;

    top: 4px;

    width: 3px;

    height: 170px;

    background: linear-gradient(
        to bottom,
        #e96224,
        rgba(243, 111, 33, 0.08)
    );
}


.mission-text p {

    margin: 0 0 28px;

    color: #d7dbe0;

    font-size: 16px;

    font-weight: 400;

    line-height: 1.8;

    letter-spacing: 0.1px;
}


.mission-text p:last-child {

    margin-bottom: 0;

}


/* =========================================================
   MISSION VALUES
========================================================= */

.mission-values {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

    max-width: 620px;

    margin-top: 40px;

    padding-top: 28px;

    border-top: 1px solid rgba(255, 255, 255, 0.12);
}


.mission-value {

    display: flex;

    align-items: flex-start;

    gap: 10px;

    color: #ffffff;

    font-size: 12px;

    font-weight: 600;

    line-height: 1.35;
}


.mission-number {

    color: #e96224;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;
}


/* =========================================================
   BOTTOM ACCENT
========================================================= */

.mission-bottom-accent {

    position: absolute;

    right: 0;

    bottom: 0;

    width: 220px;

    height: 5px;

    background: #e96224;
}


/* =========================================================
   DECORATIVE CORNER
========================================================= */

.mission-section::after {

    content: "";

    position: absolute;

    right: -120px;

    bottom: -150px;

    width: 350px;

    height: 350px;

    border: 1px solid rgba(243, 111, 33, 0.12);

    transform: rotate(45deg);

    pointer-events: none;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1400px) {

    .mission-section {

        padding: 140px 0;

    }

    .mission-container {

        gap: 110px;

    }

    .mission-image {

        height: 600px;

    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .mission-container {

        gap: 50px;

    }

    .mission-title h2 {

        font-size: clamp(52px, 6vw, 72px);

    }

    .mission-image {

        height: 480px;

    }
}


/* =========================================================
   TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 991px) {

    .mission-section {

        padding: 90px 0;

    }

    .mission-container {

        grid-template-columns: 1fr;

        gap: 70px;

    }

    .mission-content {

        max-width: 750px;

        padding-right: 0;
    }

    .mission-image {

        max-width: 100%;

        height: 450px;

    }

    .mission-card {

        left: 25px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .mission-section {

        min-height: auto;

        padding: 70px 0 80px;

    }


    .mission-container {

        gap: 45px;

    }


    /* IMAGE */
    .mission-image {

        height: 330px;

        border-radius: 14px;

    }

    .mission-image-accent {

        width: 10px;

    }


    /* CARD */

    .mission-card {

        left: 15px;

        bottom: 20px;

        padding: 12px 16px;

        gap: 10px;

    }

    .mission-card-icon {

        width: 38px;

        height: 38px;

        font-size: 15px;

    }

    .mission-card strong {

        font-size: 11px;

    }

    .mission-card span {

        font-size: 8px;

    }


    /* LABEL */

    .mission-label {

        gap: 12px;

        margin-bottom: 22px;

    }

    .mission-label span {

        font-size: 10px;

        letter-spacing: 2.5px;

    }

    .mission-label-line {

        width: 45px;

        height: 2px;

    }


    /* TITLE */

    .mission-title {

        margin-bottom: 32px;

    }

    .mission-title h2 {

        font-size: clamp(48px, 15vw, 68px);

        letter-spacing: -3px;

    }


    /* TEXT */

    .mission-text {

        padding-left: 20px;

    }

    .mission-text::before {

        width: 2px;

        height: 130px;

    }

    .mission-text p {

        font-size: 15px;

        line-height: 1.7;

        margin-bottom: 25px;

    }


    /* VALUES */

    .mission-values {

        grid-template-columns: 1fr;

        gap: 15px;

        margin-top: 32px;

        padding-top: 22px;

    }


    /* BOTTOM */

    .mission-bottom-accent {

        width: 120px;

        height: 4px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .mission-section {

        padding: 60px 0 70px;

    }

    .mission-title h2 {

        font-size: 46px;

    }

    .mission-text p {

        font-size: 14px;

    }

    .mission-image {

        height: 290px;

    }
}



/* =========================================================
   VISION WATERMARK
========================================================= */

.mission-watermark {

    position: absolute;

    z-index: 1;

    left: -225px;

    top: 50%;

    transform:
        translateY(-50%)
        rotate(-90deg);

    transform-origin: center;

    color: #e96224;

    -webkit-text-stroke: 1px rgba(243, 111, 33, 0.35);

    font-size: clamp(100px, 10vw, 170px);

    font-weight: 900;

    line-height: 1;

    letter-spacing: -7px;

    white-space: nowrap;

    pointer-events: none;

}


@media (max-width: 900px) {
    .mission-visual {
        display: none;
    }
}













/* =========================================================
   SERVICES SECTION
========================================================= */

.services-section {
    position: relative;

    width: 100%;

    padding: 120px 0 130px;

    background: #080c11;

    color: #ffffff;

    overflow: hidden;
}


/* =========================================================
   BACKGROUND EFFECT
========================================================= */

.services-section::before {
    content: "";

    position: absolute;

    top: -250px;
    right: -250px;

    width: 600px;
    height: 600px;

    border: 1px solid rgba(239, 91, 35, 0.08);

    transform: rotate(45deg);

    pointer-events: none;
}


.services-section::after {
    content: "";

    position: absolute;

    left: -250px;
    bottom: -300px;

    width: 600px;
    height: 600px;

    background:
        radial-gradient(
            circle,
            rgba(239, 91, 35, 0.06),
            transparent 65%
        );

    pointer-events: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.services-section .container {
    position: relative;

    z-index: 2;
}


/* =========================================================
   HEADER
========================================================= */

.services-header {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 80px;

    margin-bottom: 70px;

    padding-bottom: 35px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}


/* =========================================================
   HEADER LEFT
========================================================= */

.services-header-left {

    position: relative;

    padding-left: 28px;
}


/* ORANGE VERTICAL LINE */

.services-header-line {

    position: absolute;

    left: 0;
    top: 0;

    width: 4px;
    height: 100%;

    min-height: 85px;

    background: #e96224;

    box-shadow:
        0 0 20px rgba(239, 91, 35, 0.20);
}


/* SMALL LABEL */

.services-header-left > span {

    display: block;

    margin-bottom: 16px;

    color: #e96224;

    font-family: "PoppinsMedium", sans-serif;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 4px;

    text-transform: uppercase;
}


/* TITLE */

.services-header-left h2 {

    margin: 0;

    font-family: "PirulenRg", sans-serif;

    font-size: clamp(45px, 5vw, 68px);

    font-weight: 800;

    line-height: 0.95;

    letter-spacing: -2px;

    color: #ffffff;
}


.services-header-left h2 strong {

    display: block;

    color: #e96224;

    font-weight: inherit;

}


/* =========================================================
   HEADER DESCRIPTION
========================================================= */

.services-header-description {

    max-width: 430px;

    padding-bottom: 5px;
}


.services-header-description p {

    margin: 0;

    color: #9da5ad;

    font-family: "PoppinsMedium", sans-serif;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   SERVICES GRID
========================================================= */

.services-grid {

    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 30px;
}


/* =========================================================
   SERVICE CARD
========================================================= */

.service-item {

    position: relative;

    display: grid;

    grid-template-columns: 210px minmax(0, 1fr);

    min-height: 270px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.015)
        );

    border: 1px solid rgba(255, 255, 255, 0.09);

    border-radius: 14px;

    overflow: hidden;

    transition:
        transform 0.45s ease,
        border-color 0.45s ease,
        box-shadow 0.45s ease,
        background 0.45s ease;
}


/* =========================================================
   CARD HOVER
========================================================= */

.service-item:hover {

    transform: translateY(-7px);

    border-color: rgba(239, 91, 35, 0.50);

    background:
        linear-gradient(
            135deg,
            rgba(239, 91, 35, 0.07),
            rgba(255, 255, 255, 0.02)
        );

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.35);
}


/* =========================================================
   SERVICE NUMBER
========================================================= */

.service-number {

    position: absolute;

    z-index: 10;

    top: 12px;
    right: 18px;

    font-family: "PirulenRg", sans-serif;

    font-size: 55px;

    font-weight: 800;

    line-height: 1;

    color: #e96224;

    pointer-events: none;

    transition:
        color 0.4s ease;
}


.service-item:hover .service-number {

    color: white;
}


/* =========================================================
   IMAGE
========================================================= */

.service-image-wrapper {

    position: relative;

    width: 100%;
    height: 100%;

    min-height: 270px;

    overflow: hidden;

    background: #11161b;
}


/* =========================================================
   IMAGE
========================================================= */

.service-image-wrapper img {

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
        filter 0.5s ease;
}


.service-item:hover .service-image-wrapper img {

    transform: scale(1.08);

    filter: brightness(1.08);
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.service-image-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.05),
            rgba(0, 0, 0, 0.35)
        );

    pointer-events: none;
}


/* =========================================================
   ORANGE IMAGE BAR
========================================================= */

.service-image-orange {

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;

    height: 6px;

    background:
        linear-gradient(
            90deg,
            #d94b20,
            #e96224,
            #ff8a3d
        );

    z-index: 5;
}


/* =========================================================
   CONTENT
========================================================= */

.service-content {

    position: relative;

    display: flex;

    flex-direction: column;

    justify-content: center;

    min-width: 0;

    padding: 35px 30px;
}


/* =========================================================
   SMALL TITLE
========================================================= */

.service-small-title {

    display: block;

    margin-bottom: 12px;

    color: #e96224;

    font-family: "PoppinsMedium", sans-serif;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}


/* =========================================================
   SERVICE TITLE
========================================================= */

.service-content h3 {

    margin: 0;

    font-family: "PirulenRg", sans-serif;

    font-size: 22px;

    font-weight: 800;

    line-height: 1.15;

    letter-spacing: 0.2px;

    color: #ffffff;
}


.service-content h3 span {

    display: block;

    color: #e96224;
}


/* =========================================================
   ORANGE LINE
========================================================= */

.service-orange-line {

    width: 42px;

    height: 3px;

    margin: 17px 0 20px;

    background: #e96224;

    transition:
        width 0.4s ease;
}


.service-item:hover .service-orange-line {

    width: 70px;
}


/* =========================================================
   LIST
========================================================= */

.service-content ul {

    list-style: none;

    padding: 0;

    margin: 0;
}


.service-content li {

    position: relative;

    padding-left: 16px;

    margin-bottom: 8px;

    color: #bfc5cb;

    font-family: "PoppinsMedium", sans-serif;

    font-size: 12px;

    line-height: 1.5;
}


.service-content li:last-child {

    margin-bottom: 0;
}


/* BULLETS */

.service-content li::before {

    content: "";

    position: absolute;

    left: 0;
    top: 8px;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #e96224;

    box-shadow:
        0 0 8px rgba(239, 91, 35, 0.35);
}


/* =========================================================
   PARAGRAPH
========================================================= */

.service-content p {

    max-width: 330px;

    margin: 0;

    color: #bfc5cb;

    font-family: "PoppinsMedium", sans-serif;

    font-size: 13px;

    line-height: 1.75;
}


/* =========================================================
   CORNER DETAIL
========================================================= */

.service-content::after {

    content: "";

    position: absolute;

    right: 0;
    bottom: 0;

    width: 30px;
    height: 30px;

    border-right: 2px solid rgba(239, 91, 35, 0.6);

    border-bottom: 2px solid rgba(239, 91, 35, 0.6);

    opacity: 0.6;

    transition:
        width 0.4s ease,
        height 0.4s ease;
}


.service-item:hover .service-content::after {

    width: 50px;

    height: 50px;

}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1400px) {

    .services-section {

        padding: 140px 0 150px;

    }


    .services-grid {

        gap: 35px;

    }


    .service-item {

        grid-template-columns: 240px minmax(0, 1fr);

        min-height: 300px;

    }


    .service-image-wrapper {

        min-height: 300px;

    }


    .service-content {

        padding: 40px 35px;

    }


    .service-content h3 {

        font-size: 25px;

    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .services-header {

        gap: 40px;

    }


    .services-grid {

        gap: 22px;

    }


    .service-item {

        grid-template-columns: 160px minmax(0, 1fr);

        min-height: 250px;

    }


    .service-image-wrapper {

        min-height: 250px;

    }


    .service-content {

        padding: 25px 22px;

    }


    .service-content h3 {

        font-size: 18px;

    }


    .service-content li {

        font-size: 11px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .services-section {

        padding: 80px 0;

    }


    /* HEADER */

    .services-header {

        display: block;

        margin-bottom: 45px;

        padding-bottom: 25px;

    }


    .services-header-description {

        max-width: 500px;

        margin-top: 25px;

        padding-left: 23px;

    }


    .services-header-left h2 {

        font-size: 42px;

    }


    .services-header-line {

        width: 3px;

    }


    /* GRID */

    .services-grid {

        grid-template-columns: 1fr;

        gap: 20px;

    }


    /* CARD */

    .service-item {

        grid-template-columns: 145px minmax(0, 1fr);

        min-height: 210px;

    }


    .service-image-wrapper {

        min-height: 210px;

    }


    .service-content {

        padding: 22px 18px;

    }


    .service-small-title {

        font-size: 7px;

        letter-spacing: 1.8px;

    }


    .service-content h3 {

        font-size: 16px;

    }


    .service-orange-line {

        width: 35px;

        margin: 12px 0 14px;

    }


    .service-content li {

        padding-left: 13px;

        margin-bottom: 6px;

        font-size: 11px;

    }


    .service-content p {

        font-size: 11px;

        line-height: 1.6;

    }


    .service-number {

        font-size: 38px;

        right: 10px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .services-section {

        padding: 65px 0;

    }


    .services-header-left h2 {

        font-size: 35px;

    }


    .services-header-description {

        font-size: 12px;

    }


    .service-item {

        grid-template-columns: 110px minmax(0, 1fr);

        min-height: 180px;

    }


    .service-image-wrapper {

        min-height: 180px;

    }


    .service-content {

        padding: 18px 15px;

    }


    .service-small-title {

        font-size: 6px;

        letter-spacing: 1.3px;

    }


    .service-content h3 {

        font-size: 13px;

        line-height: 1.2;

    }


    .service-orange-line {

        width: 30px;

        height: 2px;

        margin: 10px 0 11px;

    }


    .service-content li {

        font-size: 10px;

        line-height: 1.4;

        padding-left: 11px;

        margin-bottom: 4px;

    }


    .service-content li::before {

        width: 4px;

        height: 4px;

        top: 7px;

    }


    .service-content p {

        font-size: 10px;

    }


    .service-number {

        font-size: 30px;

    }

}

.services-title h2 {
    margin: 0;
  
    color: #ffffff;
  
    font-size: clamp(38px, 4vw, 58px);
  
    line-height: 1;
  
    font-weight: 700;
  
    letter-spacing: -1px;
  }
  
  .services-title h2 span {
    color: #e96224;
  }













  /* =========================================================
   SELECTED PROJECTS
========================================================= */

.projects-section {
    position: relative;

    width: 100%;

    padding: 120px 0 140px;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(239, 91, 35, 0.07),
            transparent 30%
        ),
        #080c11;

    color: #ffffff;

    overflow: hidden;
}


/* =========================================================
   ARCHITECTURAL BACKGROUND DETAIL
========================================================= */

.projects-section::before {
    content: "";

    position: absolute;

    top: -250px;
    right: -250px;

    width: 600px;
    height: 600px;

    border: 1px solid rgba(239, 91, 35, 0.08);

    transform: rotate(45deg);

    pointer-events: none;
}


.projects-section::after {
    content: "";

    position: absolute;

    left: -300px;
    bottom: -300px;

    width: 650px;
    height: 650px;

    background:
        radial-gradient(
            circle,
            rgba(239, 91, 35, 0.05),
            transparent 65%
        );

    pointer-events: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.projects-section .container {
    position: relative;

    z-index: 2;
}


/* =========================================================
   HEADER
========================================================= */

.projects-header {

    display: flex;

    align-items: center;

    width: 100%;

    margin-bottom: 55px;

    padding-bottom: 30px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}


/* =========================================================
   TITLE BOX
========================================================= */

.projects-title-box {

    position: relative;

    padding-left: 28px;

    background: transparent;
}


/* ORANGE VERTICAL LINE */

.projects-title-box::before {

    content: "";

    position: absolute;

    left: 0;
    top: 2px;

    width: 4px;
    height: 85%;

    background: #ef5b23;

    box-shadow:
        0 0 18px rgba(239, 91, 35, 0.25);
}


/* =========================================================
   TITLE
========================================================= */

.projects-title-box h2 {

    margin: 0;

    font-family: "PirulenRg", sans-serif;

    font-size: clamp(38px, 4vw, 58px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -1px;

    color: #ffffff;

    white-space: nowrap;
}


.projects-title-box h2 span {

    color: #ef5b23;
}


/* =========================================================
   FEATURED IMAGE
========================================================= */

.projects-feature {

    position: relative;

    width: 100%;

    height: 480px;

    margin-bottom: 65px;

    overflow: hidden;

    border-radius: 14px;

    background: #11161b;

    border: 1px solid rgba(255, 255, 255, 0.10);

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.35);
}


/* =========================================================
   FEATURE IMAGE
========================================================= */

.projects-feature img {

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    transition:
        transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
        filter 0.6s ease;
}


.projects-feature:hover img {

    transform: scale(1.035);

    filter: brightness(1.08);
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.projects-feature-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5, 8, 11, 0.45),
            rgba(5, 8, 11, 0.05) 55%,
            rgba(5, 8, 11, 0.20)
        );

    pointer-events: none;
}


/* =========================================================
   ORANGE BOTTOM ACCENT
========================================================= */

.projects-feature::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;

    height: 7px;

    background:
        linear-gradient(
            90deg,
            #d94b20,
            #ef5b23,
            #ff8738
        );

    z-index: 5;
}


/* =========================================================
   FEATURE LABEL
========================================================= */

.projects-feature-label {

    position: absolute;

    left: 35px;
    bottom: 30px;

    display: flex;

    align-items: center;

    gap: 14px;

    z-index: 4;

    color: #ffffff;

    font-family: "PoppinsMedium", sans-serif;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;
}


.feature-line {

    width: 42px;

    height: 3px;

    background: #ef5b23;
}


/* =========================================================
   CORNER DETAIL
========================================================= */

.projects-feature-corner {

    position: absolute;

    top: 22px;
    right: 22px;

    width: 55px;
    height: 55px;

    border-top: 2px solid rgba(239, 91, 35, 0.9);

    border-right: 2px solid rgba(239, 91, 35, 0.9);

    z-index: 5;
}


/* =========================================================
   PROJECT LIST
========================================================= */

.projects-list {

    display: flex;

    flex-direction: column;

    gap: 12px;

    width: 100%;
}


/* =========================================================
   PROJECT ROW
========================================================= */

.project-row {

    position: relative;

    display: grid;

    grid-template-columns: minmax(0, 1.8fr) minmax(280px, 1fr);

    align-items: stretch;

    min-height: 82px;

    background:
        linear-gradient(
            110deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.015)
        );

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 10px;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}


/* =========================================================
   LEFT ORANGE ACCENT
========================================================= */

.project-row::before {

    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 3px;
    height: 100%;

    background: #ef5b23;

    transform: scaleY(0);

    transform-origin: bottom;

    transition:
        transform 0.35s ease;
}


.project-row:hover::before {

    transform: scaleY(1);
}


/* =========================================================
   HOVER
========================================================= */

.project-row:hover {

    transform: translateX(6px);

    border-color: rgba(239, 91, 35, 0.35);

    background:
        linear-gradient(
            110deg,
            rgba(239, 91, 35, 0.07),
            rgba(255, 255, 255, 0.025)
        );

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.25);
}


/* =========================================================
   PROJECT NAME
========================================================= */

.project-name {

    position: relative;

    display: flex;

    align-items: center;

    min-height: 82px;

    padding: 20px 35px;

    color: #121314;
    background-color: #ef5b23;
    font-family: "Poppins", sans-serif;

    font-size: 16px;

    font-weight: 600;

    line-height: 1.4;
}

.project-name:hover {
    color: #ef5b23;
    background-color: #121314;
}
/* =========================================================
   PROJECT NUMBER
========================================================= */

.project-name::before {

    content: "";

    margin-right: 22px;

    font-family: "PirulenRg", sans-serif;

    color: #121314;
}


/* =========================================================
   LOCATION
========================================================= */

.project-location {

    display: flex;

    align-items: center;

    gap: 14px;

    min-height: 82px;

    padding: 20px 30px;

    border-left: 2px solid #121314;

    color: #121314;
    background-color: #ef5b23;

    font-family: "PoppinsMedium", sans-serif;

    font-size: 13px;

    font-weight: 500;

    line-height: 1.4;
}

.project-location:hover{
    color: #ef5b23;
    background-color: #121314;
}

/* =========================================================
   LOCATION ICON
========================================================= */

.location-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    flex: 0 0 36px;

    width: 36px;
    height: 36px;

    border: 1px solid rgba(239, 91, 35, 0.35);

    border-radius: 50%;

    color: #121314;

    background: #ffffff;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}


.location-icon svg {

    display: block;

    width: 25px;
    height: 20px;
}




/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .projects-section {

        padding: 90px 0 100px;
    }


    .projects-header {

        margin-bottom: 45px;
    }


    .projects-title-box h2 {

        font-size: 42px;
    }


    .projects-feature {

        height: 390px;

        margin-bottom: 50px;
    }


    .project-row {

        grid-template-columns:
            minmax(0, 1.5fr)
            minmax(220px, 1fr);
    }


    .project-name {

        padding: 18px 25px;

        font-size: 14px;
    }


    .project-location {

        padding: 18px 22px;

        font-size: 12px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .projects-section {

        padding: 75px 0 85px;
    }


    .projects-header {

        margin-bottom: 35px;

        padding-bottom: 25px;
    }


    .projects-title-box {

        padding-left: 20px;
    }


    .projects-title-box::before {

        width: 3px;
    }


    .projects-title-box h2 {

        font-size: 32px;

        letter-spacing: -0.5px;

        white-space: normal;
    }


    /* FEATURE */

    .projects-feature {

        height: 280px;

        margin-bottom: 40px;

        border-radius: 10px;
    }


    .projects-feature-label {

        left: 20px;

        bottom: 22px;

        gap: 10px;

        font-size: 8px;

        letter-spacing: 2px;
    }


    .feature-line {

        width: 30px;

        height: 2px;
    }


    .projects-feature-corner {

        top: 15px;
        right: 15px;

        width: 35px;
        height: 35px;
    }


    /* PROJECT ROW */

    .project-row {

        display: flex;

        flex-direction: column;

        min-height: auto;

        border-radius: 8px;
    }


    .project-name {

        min-height: 58px;

        padding: 16px 18px;

        font-size: 13px;

        line-height: 1.45;
    }


    .project-location {

        min-height: 52px;

        padding: 12px 18px;

        border-left: 0;

        border-top: 1px solid rgba(255, 255, 255, 0.07);

        font-size: 11px;
    }


    .location-icon {

        flex-basis: 30px;

        width: 30px;
        height: 30px;
    }


    .location-icon svg {

        width: 16px;
        height: 16px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .projects-section {

        padding: 60px 0 70px;
    }


    .projects-title-box h2 {

        font-size: 26px;
    }


    .projects-feature {

        height: 220px;

        margin-bottom: 30px;
    }


    .projects-feature-label {

        font-size: 7px;

        letter-spacing: 1.5px;
    }


    .project-name {

        min-height: 52px;

        padding: 14px 15px;

        font-size: 12px;
    }


    .project-location {

        min-height: 48px;

        padding: 10px 15px;

        font-size: 10px;
    }


    .location-icon {

        flex-basis: 27px;

        width: 27px;
        height: 27px;
    }

}






















/* =====================================================
    PARTNERS SECTION
===================================================== */

.partners_section{
    margin-top: 60px;
}

.partners-section {
    position: relative;

    width: 100%;

    padding: 110px 0 120px;
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(239, 102, 52, 0.08),
            transparent 32%
        ),
        #121314;

    color: #ffffff;

    overflow: hidden;
}


/* =====================================================
   SUBTLE BACKGROUND DETAILS
===================================================== */

.partners-section::before {
    content: "";

    position: absolute;

    top: 0;
    right: 0;

    width: 420px;
    height: 420px;

    background:
        linear-gradient(
            135deg,
            transparent 48%,
            rgba(239, 102, 52, 0.16) 49%,
            rgba(239, 102, 52, 0.16) 50%,
            transparent 51%
        );

    opacity: 0.35;

    pointer-events: none;
}


.partners-section::after {
    content: "";

    position: absolute;

    left: -180px;
    bottom: -220px;

    width: 500px;
    height: 500px;

    border: 1px solid rgba(255, 255, 255, 0.04);

    border-radius: 50%;

    pointer-events: none;
}


/* =====================================================
   HEADER
===================================================== */

.partners-header {
    position: relative;

    display: grid;

    grid-template-columns: 1.2fr 0.8fr;

    align-items: end;

    gap: 80px;

    margin-bottom: 70px;

    z-index: 2;
}


/* =====================================================
   EYEBROW
===================================================== */

.partners-eyebrow {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 18px;

    font-family: "Poppins", sans-serif;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 3px;

    color: #ffffff;

    text-transform: uppercase;
}


.partners-line {
    width: 55px;

    height: 4px;

    display: block;

    background: #ef6634;
}


/* =====================================================
   TITLE
===================================================== */

.partners-heading h2 {
    margin: 0;

    font-family: "PirulenRg", "Poppins", sans-serif;

    font-size: clamp(42px, 5vw, 70px);

    font-weight: 800;

    line-height: 0.95;

    letter-spacing: -2px;

    color: #ffffff;
}


.partners-heading h2 span {
    color: #ef6634;
}


/* =====================================================
   INTRO
===================================================== */

.partners-intro {
    position: relative;

    padding-left: 30px;

    border-left: 1px solid rgba(255, 255, 255, 0.25);
}


.partners-intro p {
    max-width: 500px;

    margin: 0;

    font-family: "Poppins", sans-serif;

    font-size: 16px;

    line-height: 1.8;

    font-weight: 400;

    color: rgba(255, 255, 255, 0.68);
}


/* =====================================================
   PARTNERS GRID
===================================================== */

.partners-grid {
    position: relative;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;

    z-index: 2;
}


/* =====================================================
   PARTNER CARD
===================================================== */

.partner-card {
    position: relative;

    min-height: 430px;

    display: flex;

    flex-direction: column;

    padding: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.015)
        );

    border: 1px solid rgba(255, 255, 255, 0.11);

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;

    text-decoration: none;
    color: inherit;
    cursor: pointer;
}


/* TOP ORANGE LINE */

.partner-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 0;
    height: 3px;

    background: #ef6634;

    transition: width 0.4s ease;
}


/* CORNER DETAIL */

/* .partner-card::after {
    content: "";

    position: absolute;

    right: -35px;
    bottom: -35px;

    width: 100px;
    height: 100px;

    border: 1px solid rgba(239, 102, 52, 0.15);

    transform: rotate(45deg);

    transition: 0.4s ease;
} */


/* HOVER */

.partner-card:hover {
    transform: translateY(-8px);

    border-color: rgba(239, 102, 52, 0.45);

    background:
        linear-gradient(
            145deg,
            rgba(239, 102, 52, 0.08),
            rgba(255, 255, 255, 0.025)
        );

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.35);
}


.partner-card:hover::before {
    width: 100%;
}


.partner-card:hover::after {
    transform:
        rotate(45deg)
        translate(-10px, -10px);
}


/* =====================================================
   NUMBER
===================================================== */

.partner-number {
    position: absolute;

    top: 25px;
    right: 28px;

    font-family: "Poppins", sans-serif;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 2px;

    color: #ef6634;

    opacity: 0.9;
}


/* =====================================================
   LOGO AREA
===================================================== */

.partner-logo-wrapper {
    display: flex;

    align-items: center;
    justify-content: center;

    height: 165px;

    margin-bottom: 35px;

    background: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.1);

    overflow: hidden;
}


.partner-logo {
    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 30px;
}


.partner-logo img {
    display: block;

    max-width: 100%;
    /* max-height: 105px; */

    /* width: auto; */
    height: auto;

    object-fit: contain;

    transition:
        transform 0.4s ease,
        filter 0.4s ease;
}

.partner1 {
    margin-top: -20px;
}

.partner-card:hover .partner-logo img {
    transform: scale(1.06);
}


/* =====================================================
   PARTNER CONTENT
===================================================== */

.partner-content {
    position: relative;

    z-index: 2;
}


/* CATEGORY */

.partner-category {
    display: block;

    margin-bottom: 10px;

    font-family: "Poppins", sans-serif;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 2px;

    color: rgba(255, 255, 255, 0.45);

    text-transform: uppercase;
}


/* NAME */

.partner-content h3 {
    margin: 0;

    font-family: "PirulenRg", "Poppins", sans-serif;

    font-size: 25px;

    font-weight: 800;

    line-height: 1.2;

    letter-spacing: 0.5px;

    color: #ffffff;
}


/* ORANGE LINE */

.partner-orange-line {
    width: 45px;

    height: 4px;

    margin: 15px 0 16px;

    background: #ef6634;

    transition: width 0.35s ease;
}


.partner-card:hover .partner-orange-line {
    width: 70px;
}


/* DESCRIPTION */

.partner-content p {
    max-width: 340px;

    margin: 0;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    line-height: 1.7;

    color: rgba(255, 255, 255, 0.62);
}


/* =====================================================
   ARROW
===================================================== */

.partner-arrow {
    position: absolute;

    right: 27px;
    bottom: 27px;

    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(239, 102, 52, 0.35);

    color: #ef6634;

    font-size: 13px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.partner-card:hover .partner-arrow {
    background: #ef6634;

    color: #121314;

    transform: translate(3px, -3px);
}


/* =====================================================
   FOOTER STATEMENT
===================================================== */

.partners-footer {
    position: relative;

    display: flex;

    align-items: center;

    gap: 25px;

    margin-top: 60px;
    margin-bottom: 30px;
    padding-top: 28px;

    border-top: 1px solid rgba(255, 255, 255, 0.09);

    z-index: 2;
}


.partners-footer-line {
    width: 45px;

    height: 4px;

    flex-shrink: 0;

    background: #ef6634;
}


.partners-footer p {
    margin: 0;

    font-family: "Poppins", sans-serif;

    font-size: 13px;

    font-weight: 500;

    letter-spacing: 2px;

    color: rgba(255, 255, 255, 0.45);
}


.partners-footer p span {
    color: #ffffff;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991.98px) {

    .partners-section {
        padding: 80px 0 90px;
    }


    .partners-header {
        grid-template-columns: 1fr;

        gap: 30px;

        margin-bottom: 50px;
    }


    .partners-intro {
        max-width: 650px;
    }


    .partners-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 20px;
    }


    .partner-card {
        min-height: 410px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767.98px) {

    .partners-section {
        padding: 65px 0 75px;
    }


    .partners-header {
        margin-bottom: 40px;

        gap: 25px;
    }


    .partners-eyebrow {
        font-size: 10px;

        letter-spacing: 2px;
    }


    .partners-line {
        width: 40px;

        height: 3px;
    }


    .partners-heading h2 {
        font-size: 38px;

        letter-spacing: -1px;
    }


    .partners-intro {
        padding-left: 20px;
    }


    .partners-intro p {
        font-size: 14px;

        line-height: 1.7;
    }


    .partners-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    .partner-card {
        min-height: 390px;

        padding: 22px;
    }


    .partner-logo-wrapper {
        height: 150px;

        margin-bottom: 28px;
    }


    .partner-content h3 {
        font-size: 22px;
    }


    .partner-content p {
        font-size: 13px;
    }


    .partners-footer {
        margin-top: 45px;
        margin-bottom: 30px;
        gap: 15px;
    }


    .partners-footer p {
        font-size: 10px;

        letter-spacing: 1.2px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .partners-section {
        padding: 55px 0 65px;
    }


    .partners-heading h2 {
        font-size: 31px;
    }


    .partner-card {
        min-height: 365px;

        padding: 20px;
    }


    .partner-logo-wrapper {
        height: 135px;
    }


    .partner-logo {
        padding: 20px;
    }


    .partner-logo img {
        /* max-height: 85px; */
    }


    .partner-category {
        font-size: 9px;
    }


    .partner-content h3 {
        font-size: 19px;
    }


    .partner-content p {
        font-size: 12px;

        line-height: 1.6;
    }


    .partner-arrow {
        width: 35px;
        height: 35px;

        right: 20px;
        bottom: 20px;
    }

}


.partners-header {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 80px;

    margin-bottom: 70px;

    padding-bottom: 35px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}


/* =========================================================
   HEADER LEFT
========================================================= */

.partners-header-left {

    position: relative;

    padding-left: 28px;
}


/* ORANGE VERTICAL LINE */

.partners-header-line {

    position: absolute;

    left: 0;
    top: 0;

    width: 4px;
    height: 100%;

    min-height: 85px;

    background: #e96224;

    box-shadow:
        0 0 20px rgba(239, 91, 35, 0.20);
}


/* SMALL LABEL */

.partners-header-left > span {

    display: block;

    margin-bottom: 16px;

    color: #e96224;

    font-family: "PoppinsMedium", sans-serif;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 4px;

    text-transform: uppercase;
}


/* TITLE */

.partners-header-left h2 {

    margin: 0;

    font-family: "PirulenRg", sans-serif;

    font-size: clamp(38px, 4vw, 58px);
    line-height: 1;
    font-weight: 700;
    letter-spacing: -1px;

    color: #ffffff;
}


.partners-title h2 span{
    color: #e96224;
}

/* =====================================================
   FOOTER MAIN LAYOUT
===================================================== */

.simple-footer-content {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1fr 2.5fr;

    align-items: start;
    /* gap: 70px; */

    padding-bottom: 15px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}


/* =====================================================
   COMPANY
===================================================== */

.footer-company {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


.footer-company-name {
    position: relative;

    color: #ffffff;

    font-family: "Pirulen", sans-serif;

    font-size: 31px;
    font-weight: 800;

    line-height: 1.05;

    letter-spacing: 4px;

    white-space: nowrap;
}


/* Orange company accent */

.footer-company-name::before {
    content: "";

    display: block;

    width: 48px;
    height: 4px;

    margin-bottom: 16px;

    background: #e96224;
}


/* =====================================================
   COPYRIGHT
===================================================== */

.footer-copyright {
    margin-top: 14px;

    padding: 0;
    border: 0;

    color: rgba(255, 255, 255, 0.45);

    font-family: "Poppins", sans-serif;

    font-size: 10px;
    font-weight: 400;

    letter-spacing: 0.5px;

    line-height: 1.5;
}


/* =====================================================
   CONTACT INFORMATION CONTAINER
===================================================== */

.footer-contact-info {
    display: flex;
    flex-direction: column;

    width: 100%;
}


/* =====================================================
   CONTACT DETAILS
===================================================== */

.footer-contact-details {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 14px;

    width: 100%;
}


/* =====================================================
   CONTACT ITEM
===================================================== */

.footer-contact-item {
    display: flex;

    align-items: center;

    gap: 12px;

    min-height: 64px;

    padding: 10px 14px;

    color: #ffffff;

    text-decoration: none;

    background: rgba(255, 255, 255, 0.025);

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 8px;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}


.footer-contact-item:hover {
    transform: translateY(-3px);

    border-color: rgba(233, 98, 36, 0.55);

    background: rgba(233, 98, 36, 0.06);

    color: #ffffff;
}


/* =====================================================
   CONTACT ICON
===================================================== */

.footer-contact-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 38px;

    width: 38px;
    height: 38px;

    border: 1px solid rgba(233, 98, 36, 0.55);

    border-radius: 50%;

    color: #e96224;

    font-size: 15px;

    background: rgba(233, 98, 36, 0.05);

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.footer-contact-item:hover .footer-contact-icon {
    background: #e96224;

    color: #121314;

    transform: scale(1.05);
}


/* =====================================================
   CONTACT TEXT
===================================================== */

.footer-contact-item > span:last-child {
    font-family: "Poppins", sans-serif;

    font-size: 12px;

    font-weight: 500;

    line-height: 1.4;

    color: rgba(255, 255, 255, 0.82);
}


/* =====================================================
   SOCIAL MEDIA
===================================================== */

.footer-socials {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 12px;

    width: 100%;

    margin-top: 25px;
}


/* =====================================================
   SOCIAL BUTTON
===================================================== */

.footer-social {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    color: #e96224;

    text-decoration: none;

    border: 1px solid rgba(255, 255, 255, 0.16);

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.025);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease;
}


/* =====================================================
   SOCIAL HOVER
===================================================== */

.footer-social:hover {
    transform: translateY(-5px);

    background: #e96224;

    border-color: #e96224;

    color: #121314;

    box-shadow:
        0 8px 25px rgba(233, 98, 36, 0.25);
}


/* =====================================================
   BOTTOM FOOTER TEXT
===================================================== */

.simple-footer-content::after {
    content: "BUILDING BETTER SPACES";

    position: absolute;

    left: 0;

    bottom: -35px;

    color: rgba(255, 255, 255, 0.20);

    font-family: "Poppins", sans-serif;

    font-size: 8px;

    font-weight: 500;

    letter-spacing: 3px;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {

    .simple-footer {
        padding: 60px 0 25px;
    }


    .simple-footer-content {
        grid-template-columns: 1fr;

        gap: 35px;

        text-align: center;
    }


    .footer-company {
        align-items: center;
    }


    .footer-company-name {
        white-space: normal;
    }


    .footer-company-name::before {
        margin-left: auto;
        margin-right: auto;
    }


    .footer-contact-details {
        grid-template-columns: repeat(3, 1fr);
    }


    .footer-socials {
        justify-content: center;
    }


    .simple-footer-content::after {
        left: 50%;

        transform: translateX(-50%);
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767.98px) {

    .simple-footer {
        padding: 55px 20px 25px;
    }


    .simple-footer-content {
        gap: 30px;

        padding-bottom: 45px;
    }


    .footer-company-name {
        font-size: 27px;

        letter-spacing: 3px;
    }


    .footer-contact-details {
        grid-template-columns: 1fr;

        gap: 10px;
    }


    .footer-contact-item {
        min-height: 58px;

        justify-content: flex-start;

        text-align: left;
    }


    .footer-contact-icon {
        width: 36px;

        height: 36px;

        flex-basis: 36px;
    }


    .footer-socials {
        gap: 8px;

        margin-top: 20px;
    }


    .footer-social {
        width: 39px;

        height: 39px;
    }


    .footer-copyright {
        font-size: 9px;

        text-align: center;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .simple-footer {
        padding: 45px 15px 22px;
    }


    .footer-company-name {
        font-size: 24px;
    }


    .footer-contact-item {
        padding: 9px 12px;
    }


    .footer-contact-item > span:last-child {
        font-size: 11px;
    }


    .footer-social {
        width: 36px;

        height: 36px;
    }

}
























/* =========================================================
   ALLIANCE —  NAVBAR
========================================================= */

:root {
    --alliance-orange: #ef6634;
    --alliance-dark: #101214;
    --alliance-dark-2: #121314;
    --alliance-white: #ffffff;
    --alliance-text: rgba(255, 255, 255, 0.90);
}


/* =========================================================
   NAVBAR
========================================================= */

.aluminum-navbar {
    position: sticky;
    top: 0;
    z-index: 9999;

    width: 100%;
    min-height: 92px;

    background: linear-gradient(
        180deg,
        #101214 0%,
        #121314 100%
    );

    border-top: 1px solid rgba(239, 102, 52, 0.20);
    border-bottom: 1px solid rgba(239, 102, 52, 0.45);

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.35);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}


/* =========================================================
   TOP ORANGE ACCENT
========================================================= */

.aluminum-navbar::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 2px;

    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(239, 102, 52, 0.45) 25%,
        #ef6634 50%,
        rgba(239, 102, 52, 0.45) 75%,
        transparent 100%
    );
}


/* =========================================================
   NAVBAR CONTAINER
========================================================= */

.aluminum-nav-wrapper {
    position: relative;

    min-height: 92px;

    display: flex;
    align-items: center;

    padding-left: 20px;
    padding-right: 35px;
}


/* =========================================================
   LOGO
========================================================= */

.aluminum-logo {
    display: flex;
    align-items: center;

    width: 255px;
    height: 82px;

    padding: 0 !important;
    margin: 0;

    flex-shrink: 0;

    overflow: hidden;

    text-decoration: none;
}


/*
   IMPORTANT:
   Your AllianceLogo-01.png is a square image.

   We intentionally give it a wide container and
   use object-fit: cover so the actual logo appears
   much larger.
*/

.aluminum-logo img {
    width: 180px;
    height: auto;
    display: block;

    max-width: none;

    object-fit: cover;
    object-position: center;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}


/* Logo hover */

.aluminum-logo:hover img {
    transform: scale(1.02);

    opacity: 0.94;
}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.aluminum-navbar .navbar-collapse {
    flex-grow: 0;

    margin-left: auto;
}


/* Navigation list */

.aluminum-nav-links {
    display: flex;

    align-items: center;

    gap: 14px;

    margin: 0;
    padding: 0;

    list-style: none;
}


/* =========================================================
   NAV LINKS
========================================================= */

.aluminum-navbar .nav-link {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    height: 92px;

    padding: 0 17px;

    color:
        rgba(255, 255, 255, 0.88) !important;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 15px;
    font-weight: 500;

    letter-spacing: 0.2px;

    line-height: 1;

    white-space: nowrap;

    text-decoration: none;

    transition:
        color 0.3s ease,
        background-color 0.3s ease;
}


/* =========================================================
   DESKTOP ACTIVE LINE
========================================================= */

.aluminum-navbar .nav-link::after {
    content: "";

    position: absolute;

    left: 17px;
    right: 17px;

    bottom: 22px;

    height: 2px;

    background: #ef6634;

    transform: scaleX(0);

    transform-origin: center;

    transition:
        transform 0.3s ease;
}


/* Hover */

.aluminum-navbar .nav-link:hover {
    color: #ef6634 !important;
}


.aluminum-navbar .nav-link:hover::after {
    transform: scaleX(1);
}


/* Active */

.aluminum-navbar .nav-link.active {
    color: #ef6634 !important;
}


.aluminum-navbar .nav-link.active::after {
    transform: scaleX(1);
}


/* =========================================================
   MOBILE / TABLET TOGGLER
   HIDDEN BY DEFAULT
========================================================= */

.aluminum-navbar .navbar-toggler {
    display: none;

    width: 46px;
    height: 42px;

    padding: 0;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border:
        1px solid rgba(239, 102, 52, 0.65);

    border-radius: 5px;

    background:
        rgba(239, 102, 52, 0.04);

    outline: none;

    box-shadow: none !important;

    transition:
        background-color 0.3s ease,
        border-color 0.3s ease;
}


/* Toggler hover */

.aluminum-navbar .navbar-toggler:hover {
    background:
        rgba(239, 102, 52, 0.10);

    border-color:
        #ef6634;
}


/* Toggler focus */

.aluminum-navbar .navbar-toggler:focus {
    box-shadow:
        0 0 0 3px rgba(239, 102, 52, 0.12) !important;
}


/* =========================================================
   CUSTOM HAMBURGER
========================================================= */

.aluminum-navbar-toggler-icon {
    position: relative;

    display: block;

    width: 21px;
    height: 16px;

    border-top:
        2px solid #ef6634;

    border-bottom:
        2px solid #ef6634;
}


.aluminum-navbar-toggler-icon::after {
    content: "";

    position: absolute;

    left: 0;
    top: 5px;

    width: 21px;
    height: 2px;

    background:
        #ef6634;
}


/* =========================================================
   TABLET + IPAD + MOBILE
   BELOW 992px
========================================================= */

@media (max-width: 991.98px) {

    /* Navbar */

    .aluminum-navbar {
        min-height: 78px;
    }


    .aluminum-nav-wrapper {
        min-height: 78px;

        padding-left: 15px;
        padding-right: 15px;
    }


    /* -----------------------------------------------------
       LOGO
    ----------------------------------------------------- */

    .aluminum-logo {
        width: 200px;
        height: 68px;
    }


    .aluminum-logo img {
        width: 10px;
        height: 70px;
    }


    /* -----------------------------------------------------
       SHOW TOGGLER
    ----------------------------------------------------- */

    .aluminum-navbar .navbar-toggler {
        display: flex;
    }


    /* -----------------------------------------------------
       COLLAPSE
    ----------------------------------------------------- */

    .aluminum-navbar .navbar-collapse {
        width: 100%;

        margin-left: 0;
        margin-top: 12px;

        padding:
            10px 0 18px;
    }


    /* -----------------------------------------------------
       NAVIGATION
    ----------------------------------------------------- */

    .aluminum-nav-links {
        width: 100%;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        margin: 0;
        padding: 0;

        border-top:
            1px solid rgba(255, 255, 255, 0.07);
    }


    /* -----------------------------------------------------
       MOBILE / TABLET LINKS
    ----------------------------------------------------- */

    .aluminum-navbar .nav-link {
        width: 100%;

        height: 52px;
        min-height: 52px;

        justify-content: flex-start;

        padding: 0 18px;

        border-bottom:
            1px solid rgba(255, 255, 255, 0.06);

        color:
            rgba(255, 255, 255, 0.85) !important;

        background:
            transparent;

        font-size: 14px;
    }


    /* Remove desktop underline */

    .aluminum-navbar .nav-link::after {
        display: none;
    }


    /* Hover */

    .aluminum-navbar .nav-link:hover {
        color:
            #ef6634 !important;

        background:
            rgba(239, 102, 52, 0.05);
    }


    /* Active */

    .aluminum-navbar .nav-link.active {
        color:
            #ef6634 !important;

        background:
            rgba(239, 102, 52, 0.08);

        border-left:
            2px solid #ef6634;
    }

}


/* =========================================================
   TABLET / IPAD
========================================================= */

@media (min-width: 576px) and (max-width: 991.98px) {

    .aluminum-logo {
        width: 210px;
        height: 70px;
    }


    .aluminum-logo img {
        width: 140px;
        height: 70px;
    }


    .aluminum-navbar .nav-link {
        height: 54px;
        min-height: 54px;

        font-size: 15px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .aluminum-navbar {
        min-height: 70px;
    }


    .aluminum-nav-wrapper {
        min-height: 70px;

        padding-left: 12px;
        padding-right: 12px;
    }


    /* Logo */

    .aluminum-logo {
        width: 165px;
        height: 58px;
    }


    .aluminum-logo img {
        width: 118px;
        height: 58px;
    }


    /* Toggler */

    .aluminum-navbar .navbar-toggler {
        width: 43px;
        height: 40px;
    }


    /* Menu */

    .aluminum-navbar .navbar-collapse {
        margin-top: 10px;

        padding:
            8px 0 15px;
    }


    /* Links */

    .aluminum-navbar .nav-link {
        height: 50px;
        min-height: 50px;

        padding: 0 15px;

        font-size: 14px;
    }

}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 380px) {

    .aluminum-logo {
        width: 145px;
        height: 52px;
    }


    .aluminum-logo img {
        width: 105px;
        height: 52px;
    }


    .aluminum-navbar .navbar-toggler {
        width: 41px;
        height: 38px;
    }


    .aluminum-navbar .nav-link {
        font-size: 13px;

        padding-left: 14px;
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.aluminum-navbar .nav-link:focus-visible,
.aluminum-navbar .navbar-toggler:focus-visible {
    outline:
        2px solid #ef6634;

    outline-offset:
        3px;
}


/* =========================================================
   BOOTSTRAP CONFLICT PREVENTION
========================================================= */

.aluminum-navbar .navbar-toggler-icon {
    background-image: none !important;
}


.aluminum-navbar .navbar-toggler:not(:disabled) {
    cursor: pointer;
}