/* ============================================================
           CORE & RESET
        ============================================================ */:root {
            --ink: #0d0f13;
            --paper: #ffffff;
            --paper-glass: rgba(255, 255, 255, 0.85);
            --brand: #ff764d;
            --font-display: "Syne", ui-sans-serif, system-ui, sans-serif;
            --font-body: "DM Sans", ui-sans-serif, system-ui, sans-serif;
            --font-nav: 'Inter', system-ui, sans-serif;
            --nav-height: 80px;
            --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
            --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }/* ============================================================
           LEFT: Navigation Links & Dropdowns
        ============================================================ *//* Unified Dropdown Menu Styling *//* ============================================================
           CENTER: Logo
        ============================================================ *//* ============================================================
           RIGHT: Actions & Interactivity
        ============================================================ *//* Fully Custom Language Dropdown *//* The hidden native select used for the proxy *//* =========================
       HERO SECTION
    ========================= */.brands-hero {
      position: relative;
      width: 100%;
      height: 100vh;
      min-height: 750px;
      /* CHANGE IMAGE PATH HERE */
      background: url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?q=80&w=2000&auto=format&fit=crop') center center/cover no-repeat;
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: hidden;
    }.brands-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(rgba(20, 28, 36, 0.55), rgba(20, 28, 36, 0.55));
      z-index: 1;
    }.hero-content {
      position: relative;
      z-index: 3;
      text-align: center;
      padding: 20px;
      animation: fadeUp 1.2s ease;
    }.hero-content h1 {
      color: #ffffff;
      font-size: clamp(48px, 7vw, 110px);
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: -2px;
      text-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    }.hero-slant {
      position: absolute;
      bottom: -1px;
      left: 0;
      width: 100%;
      height: 180px;
      background: #ffffff;
      clip-path: polygon(0 70%, 100% 20%, 100% 100%, 0 100%);
      z-index: 2;
    }@keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(50px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }@media (max-width: 992px) {
.brands-hero { min-height: 650px; }.hero-slant { height: 140px; }
}@media (max-width: 768px) {
.brands-hero { min-height: 550px; }.hero-content h1 { letter-spacing: -1px; }.hero-slant {
        height: 100px;
        clip-path: polygon(0 75%, 100% 35%, 100% 100%, 0 100%);
      }
}/* =========================================
       ENGINEERING SECTION
    ========================================= */.engineering-section {
      position: relative;
      padding: 120px 8%;
      background: #ffffff;
    }.engineering-container {
      max-width: 1400px;
      margin: auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 90px;
      align-items: center;
    }.engineering-image-wrapper { position: relative; }.engineering-image {
      width: 100%;
      height: 600px;
      object-fit: cover;
      border-radius: 10px;
      box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
      transition: 0.5s ease;
    }.engineering-image:hover { transform: scale(1.02); }.experience-box {
      position: absolute;
      bottom: -30px;
      right: -30px;
      width: 210px;
      height: 130px;
      background: #ee835c;
      color: #ffffff;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 30px;
      border-radius: 16px;
      box-shadow: 0 20px 40px rgba(238, 131, 92, 0.35);
    }.experience-box span {
      font-size: 30px;
      font-weight: 700;
    }.experience-box p {
      margin-top: 5px;
      font-size: 14px;
      letter-spacing: 2px;
      font-weight: 500;
    }.engineering-content h2 {
      font-size: clamp(42px, 4vw, 72px);
      line-height: 1.1;
      font-weight: 800;
      color: #0f172a;
      margin-bottom: 35px;
    }.engineering-text {
      font-size: 18px;
      line-height: 1.9;
      color: #4b5563;
      margin-bottom: 50px;
      max-width: 700px;
    }.engineering-features {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 40px;
    }.feature-item { transition: 0.4s ease; }.feature-item:hover { transform: translateY(-8px); }.feature-icon {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: rgba(37, 99, 235, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }.feature-icon i {
      font-size: 22px;
      color: #2563eb;
    }.feature-item h3 {
      font-size: 28px;
      font-weight: 700;
      color: #111827;
      margin-bottom: 15px;
    }.feature-item p {
      font-size: 16px;
      line-height: 1.8;
      color: #6b7280;
    }@media (max-width: 1100px) {
.engineering-container {
        grid-template-columns: 1fr;
        gap: 80px;
      }.engineering-image { height: 500px; }.engineering-content { text-align: center; }.engineering-text { margin-inline: auto; }.engineering-features { justify-content: center; }
}@media (max-width: 768px) {
.engineering-section { padding: 90px 6%; }.engineering-image { height: 400px; }.experience-box {
        width: 170px;
        height: 110px;
        right: 15px;
        bottom: -20px;
        padding: 20px;
      }.engineering-features {
        grid-template-columns: 1fr;
        gap: 35px;
      }.feature-item h3 { font-size: 24px; }
}/* =========================================
       GROUP COMPANIES SECTION
    ========================================= */.group-companies-section {
      position: relative;
      padding: 120px 8%;
      background: #6c6c6c;
    }.group-header {
      text-align: center;
      max-width: 850px;
      margin: auto auto 70px;
    }.group-header h2 {
      font-size: clamp(40px, 4vw, 68px);
      font-weight: 800;
      color: #ffffff;
      margin-bottom: 18px;
    }.group-header p {
      color: rgba(255, 255, 255, 0.88);
      font-size: 18px;
      line-height: 1.9;
      max-width: 700px;
      margin: auto;
    }.companies-grid {
      max-width: 1400px;
      margin: auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }.company-card {
      background: #ffffff;
      border-radius: 16px;
      padding: 35px;
      min-height: 250px;
      transition: 0.4s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }.company-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 45px rgba(0, 0, 0, 0.16);
    }.card-icon {
      width: 54px;
      height: 54px;
      background: #0f2742;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 28px;
    }.card-icon i {
      color: #ffffff;
      font-size: 20px;
    }.company-card p {
      font-size: 16px;
      line-height: 1.9;
      color: #4b5563;
      margin-bottom: 35px;
    }.company-card a {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      width: fit-content;
      text-decoration: none;
      color: #ff7f50;
      font-weight: 600;
      transition: 0.3s ease;
    }.company-card a:hover { gap: 16px; }@media (max-width: 1100px) {
.companies-grid { grid-template-columns: repeat(2, 1fr); }
}@media (max-width: 768px) {
.group-companies-section { padding: 90px 6%; }.companies-grid { grid-template-columns: 1fr; }.company-card { min-height: auto; }
}/* =========================================
       KEY SUBSIDIARY SECTION
    ========================================= */.subsidiary-section {
      position: relative;
      padding: 120px 8%;
      background: #f5f5f5;
    }.subsidiary-container {
      max-width: 1400px;
      margin: auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 70px;
      align-items: center;
    }.section-tag {
      display: inline-block;
      color: #ff7f50;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 3px;
      margin-bottom: 25px;
    }.subsidiary-content h2 {
      font-size: clamp(42px, 4vw, 70px);
      line-height: 1.1;
      font-weight: 800;
      color: #0f172a;
      margin-bottom: 30px;
      max-width: 650px;
    }.subsidiary-text {
      font-size: 18px;
      line-height: 1.9;
      color: #4b5563;
      margin-bottom: 40px;
      max-width: 620px;
    }.subsidiary-features {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-bottom: 45px;
    }.feature-row {
      display: flex;
      align-items: center;
      gap: 14px;
    }.feature-row i {
      color: #ff7f50;
      font-size: 20px;
    }.feature-row span {
      font-size: 17px;
      font-weight: 500;
      color: #111827;
    }.subsidiary-stats {
      display: flex;
      align-items: center;
      gap: 50px;
      padding-top: 30px;
      border-top: 1px solid #d6d6d6;
    }.stat-box h3 {
      font-size: 28px;
      font-weight: 800;
      color: #111827;
      margin-bottom: 5px;
    }.stat-box p {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1px;
      color: #6b7280;
    }.subsidiary-image-wrapper { position: relative; }.subsidiary-image {
      width: 100%;
      height: 620px;
      object-fit: cover;
      border-radius: 16px;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
      transition: 0.5s ease;
    }.subsidiary-image:hover { transform: scale(1.02); }@media (max-width: 1100px) {
.subsidiary-container {
        grid-template-columns: 1fr;
        gap: 70px;
      }.subsidiary-content { text-align: center; }.subsidiary-text { margin-inline: auto; }.subsidiary-features { align-items: center; }.subsidiary-stats { justify-content: center; }
}@media (max-width: 768px) {
.subsidiary-section { padding: 90px 6%; }.subsidiary-image { height: 420px; }.subsidiary-stats {
        flex-direction: column;
        gap: 25px;
      }.feature-row { align-items: flex-start; }
}/* =========================================
       RENEWABLE SECTION
    ========================================= */.renewable-section {
      position: relative;
      padding: 120px 8%;
      background: #ffffff;
    }.renewable-container {
      max-width: 1400px;
      margin: auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 70px;
      align-items: center;
    }.renewable-image-wrapper { position: relative; }.renewable-image {
      width: 100%;
      height: 620px;
      object-fit: cover;
      border-radius: 16px;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
      transition: 0.5s ease;
    }.renewable-image:hover { transform: scale(1.02); }.renewable-tag {
      display: inline-block;
      color: #ff7f50;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 3px;
      margin-bottom: 25px;
    }.renewable-content h2 {
      font-size: clamp(42px, 4vw, 70px);
      line-height: 1.1;
      font-weight: 800;
      color: #0f172a;
      margin-bottom: 30px;
      max-width: 650px;
    }.renewable-text {
      font-size: 18px;
      line-height: 1.9;
      color: #4b5563;
      margin-bottom: 40px;
      max-width: 620px;
    }.renewable-features {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-bottom: 45px;
    }.renewable-feature {
      display: flex;
      align-items: center;
      gap: 14px;
    }.renewable-feature i {
      color: #ff7f50;
      font-size: 20px;
    }.renewable-feature span {
      font-size: 17px;
      font-weight: 500;
      color: #111827;
    }.renewable-stats {
      display: flex;
      align-items: center;
      gap: 50px;
      padding-top: 30px;
      border-top: 1px solid #dcdcdc;
    }.renewable-stat-box h3 {
      font-size: 28px;
      font-weight: 800;
      color: #111827;
      margin-bottom: 5px;
    }.renewable-stat-box p {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1px;
      color: #6b7280;
    }@media (max-width: 1100px) {
.renewable-container {
        grid-template-columns: 1fr;
        gap: 70px;
      }.renewable-content { text-align: center; }.renewable-text { margin-inline: auto; }.renewable-features { align-items: center; }.renewable-stats { justify-content: center; }
}@media (max-width: 768px) {
.renewable-section { padding: 90px 6%; }.renewable-image { height: 420px; }.renewable-stats {
        flex-direction: column;
        gap: 25px;
      }
}/* =========================================
       CORE SERVICES SECTION
    ========================================= */.core-services-section {
      position: relative;
      padding: 110px 8%;
      background: #6c6c6c;
    }.core-services-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
      margin-bottom: 70px;
    }.core-services-heading h2 {
      font-size: clamp(42px, 4vw, 70px);
      font-weight: 800;
      color: #ffffff;
      margin-bottom: 18px;
    }.core-services-heading p {
      font-size: 18px;
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.82);
      max-width: 600px;
    }.core-services-btn a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 16px 34px;
      background: #f58a63;
      color: #ffffff;
      text-decoration: none;
      border-radius: 14px;
      font-weight: 600;
      transition: 0.4s ease;
    }.core-services-btn a:hover {
      background: #ff7b4f;
      transform: translateY(-4px);
    }.services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 45px;
    }.service-item {
      display: flex;
      align-items: flex-start;
      gap: 22px;
      transition: 0.4s ease;
    }.service-item:hover { transform: translateY(-8px); }.service-icon i {
      font-size: 28px;
      color: #ff8a5c;
    }.service-content h3 {
      font-size: 30px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 12px;
    }.service-content p {
      font-size: 16px;
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.72);
    }@media (max-width: 1100px) {
.services-grid { grid-template-columns: repeat(2, 1fr); }.core-services-top {
        flex-direction: column;
        align-items: flex-start;
      }
}@media (max-width: 768px) {
.core-services-section { padding: 90px 6%; }.services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }.service-content h3 { font-size: 24px; }.core-services-btn { width: 100%; }.core-services-btn a { width: 100%; }
}/* =========================================
       STATS SECTION
    ========================================= */.stats-section {
      position: relative;
      padding: 80px 8%;
      background: #f5f5f5;
    }.stats-container {
      max-width: 1400px;
      margin: auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border-left: 1px solid #dcdcdc;
    }.stat-item {
      position: relative;
      text-align: center;
      padding: 35px 20px;
      border-right: 1px solid #dcdcdc;
      transition: 0.45s ease;
      cursor: pointer;
      overflow: hidden;
    }.stat-item::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, #ff7f50, #ff9a6a);
      transform: scaleY(0);
      transform-origin: bottom;
      transition: 0.45s ease;
      z-index: 0;
    }.stat-item:hover::before { transform: scaleY(1); }.stat-item h2, .stat-item p {
      position: relative;
      z-index: 2;
      transition: 0.4s ease;
    }.stat-item h2 {
      font-size: clamp(50px, 5vw, 85px);
      font-weight: 800;
      color: #0f172a;
      margin-bottom: 10px;
    }.stat-item p {
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 2px;
      color: #4b5563;
    }.stat-item:hover h2, .stat-item:hover p { color: #ffffff; }.stat-item:hover { transform: translateY(-10px); }@media (max-width: 768px) {
.stats-section { padding: 60px 6%; }.stats-container {
        grid-template-columns: 1fr;
        border-left: none;
      }.stat-item {
        border-right: none;
        border-bottom: 1px solid #dcdcdc;
      }
}/* =========================================
       FEATURED PROJECT SECTION
    ========================================= */.featured-project-section {
      position: relative;
      margin: 100px 2%;
      height: 520px;
      border-radius: 16px;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      padding: 60px;
      background: #000;
    }.featured-project-image {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: 0.8s ease;
    }.featured-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.12));
      z-index: 1;
    }.featured-content {
      position: relative;
      z-index: 3;
      max-width: 650px;
      animation: fadeUpProject 1s ease;
    }.featured-tag {
      display: inline-block;
      color: rgba(255, 255, 255, 0.88);
      font-size: 15px;
      margin-bottom: 18px;
    }.featured-content h2 {
      font-size: clamp(34px, 4vw, 60px);
      line-height: 1.15;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 20px;
    }.featured-content p {
      font-size: 18px;
      line-height: 1.9;
      color: rgba(255, 255, 255, 0.82);
    }.featured-btn {
      position: relative;
      z-index: 3;
    }.featured-btn a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 18px 34px;
      background: #ffffff;
      color: #111827;
      text-decoration: none;
      border-radius: 4px;
      font-weight: 600;
      transition: 0.4s ease;
    }.featured-btn a:hover {
      background: #ff7f50;
      color: #ffffff;
      transform: translateY(-5px);
    }.featured-project-section:hover .featured-project-image { transform: scale(1.05); }@keyframes fadeUpProject {
      from { opacity: 0; transform: translateY(40px); }
      to { opacity: 1; transform: translateY(0); }
    }@media (max-width: 992px) {
.featured-project-section {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        gap: 35px;
        height: auto;
        min-height: 550px;
        padding: 50px 35px;
      }
}@media (max-width: 768px) {
.featured-project-section {
        margin: 70px 4%;
        min-height: 500px;
        padding: 40px 25px;
      }.featured-content p { font-size: 16px; }.featured-btn a { width: 100%; }
}/* =========================================
       MX ADVANTAGE SECTION
    ========================================= */.mx-advantage-section {
      position: relative;
      padding: 120px 8%;
      background: #f5f5f5;
    }.mx-advantage-header {
      text-align: center;
      margin-bottom: 90px;
    }.mx-advantage-header h2 {
      font-size: clamp(42px, 4vw, 68px);
      font-weight: 800;
      color: #0f172a;
      margin-bottom: 22px;
    }.mx-line {
      width: 90px;
      height: 4px;
      background: #ff7f50;
      margin: auto;
      border-radius: 50px;
    }.mx-advantage-grid {
      max-width: 1300px;
      margin: auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 60px;
    }.mx-advantage-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 55px 40px;
  text-align: center;
  transition: 0.45s ease;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0,0,0,0.04);
}.mx-advantage-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.12);
}.mx-advantage-card h3 {
  font-size: 32px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 18px;
}.mx-advantage-card p {
  font-size: 16px;
  line-height: 1.9;
  color: #4b5563;
  max-width: 320px;
  margin: auto;
}.mx-icon-box {
      width: 74px;
      height: 74px;
      margin: auto auto 28px;
      background: #e9e9e9;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: 0.4s ease;
    }.mx-icon-box i {
      font-size: 26px;
      color: #ff7f50;
      transition: 0.4s ease;
    }.mx-advantage-card:hover .mx-icon-box {
  background: #ff7f50;
  transform: rotate(6deg) scale(1.08);
}.mx-advantage-card:hover .mx-icon-box i {
  color: #ffffff;
}.mx-advantage-item h3 {
      font-size: 32px;
      font-weight: 700;
      color: #111827;
      margin-bottom: 18px;
    }.mx-advantage-item p {
      font-size: 16px;
      line-height: 1.9;
      color: #4b5563;
      max-width: 320px;
      margin: auto;
    }@media (max-width: 992px) {
.mx-advantage-grid {
        grid-template-columns: 1fr;
        gap: 55px;
      }
}@media (max-width: 768px) {
.mx-advantage-section { padding: 90px 6%; }.mx-advantage-header { margin-bottom: 70px; }.mx-advantage-item h3 { font-size: 26px; }
}