

@font-face {
  font-family: 'HelveticaNeueMedium';
  src: url('../font/HelveticaNeueMedium.woff2') format('woff2'),
       url('../font/HelveticaNeueMedium.otf') format('opentype');
  font-weight: 100;
}

@font-face {
  font-family: 'HelveticaNeueLight';
  src: url('../font/HelveticaNeueLight.woff2') format('woff2'),
       url('../font/HelveticaNeueLight.otf') format('opentype');
  font-weight: 300;
}

@font-face {
  font-family: 'HelveticaNeueBold';
  src: url('../font/HelveticaNeueBold.woff2') format('woff2'),
       url('../font/HelveticaNeueBold.otf') format('opentype');
  font-weight: 700;
}

@font-face {
  font-family: 'HelveticaNeueRegular';
  src: url('../font/helveticaneue.woff2') format('woff2'),
       url('../font/helveticaneue.otf') format('opentype');
  font-weight: 400;
}

@font-face {
  font-family: 'HelveticaNeueBlack';
  src: url('../font/HelveticaNeueBlack.woff2') format('woff2'),
       url('../font/HelveticaNeueBlack.otf') format('opentype');
  font-weight: 900;
}
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased; /* Smooth fonts */
    -moz-osx-font-smoothing: grayscale;
    /* outline: 1px solid red; */
  }
    
  html {
    font-size: 16px; /* Base for rem units if needed */
  }
  body {
    margin: 0;
    padding: 0;
    position: relative;
    overflow-x: hidden;
  }

  html, body {
    height: 100%;
  }
  
 /* ////////////////// */
  /* Navigation section */
  /* ////////////////// */
  header {
    /* If you prefer to keep your existing style, that’s fine; 
       just ensure the final is something like: */
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 75vw;
    z-index: 1000;
  }
  .language {
    white-space: nowrap; /* Force all text inside to remain on one line */
  }

  .language-bar {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding: 0.5rem 1rem;
  }
  
  /* Force the text link to the right with justify-content-end or .ml-auto in HTML */
  .language-bar .language {
    white-space: nowrap;
    text-decoration: none;
    font-family: 'HelveticaNeueLight', sans-serif;
    font-weight: 300;
    color: white;
  }
  
  /* The nav beneath the language bar 
     (no absolute positioning, so it stacks below the language bar) */
  .navigation {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 2rem; /* or whatever spacing you want */
    padding: 1rem; /* spacing below the language bar */
    padding-top: 2rem;
    background: transparent; /* no background so hero shows behind if you want an overlay look */
    
  }
  
  
  /* 
    Assuming a 1920px width, -1.1rem (~17.6px) is roughly 0.9vw.
    Adjust the value if needed.
  */
  .header-left img {
    position: relative;
    top: -0.5vw;
    height: 1%;
    width: auto;
    right:0%;
    
  }
  
  .navigation {
    position: relative;
    top: -1vw;  /* -1vw approximates the -1.1rem offset */
    display: flex;
    flex-wrap: nowrap;
    /* 3rem ≈ 48px => about 2.5vw on a 1920px width */
    gap: 2.5vw;
    
  }
  
  .navigation a {
    font-family: 'HelveticaNeueLight', sans-serif; /* Updated font family */
    color: white;
    text-decoration: none;
    font-size: clamp(1rem, 1.2vw, 1.333rem);
    font-weight: normal; /* Use normal weight for the light font */
    position: relative;

  }

  .navigation .home {
    color: #27C83F; /* Green color */
    font-weight: bold;
  }

  /* Wrap both logo and nav in a flex container */
.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  width: 100%;
}

/* Keep logo responsive and aligned to start */
.header-left img {
  max-height: 3rem;
  width: auto !important;
  height: auto;
  object-fit: contain;
  align-self: flex-start !important;
}

/* Keep nav items aligned right */
.navigation {
  display: flex;
  gap: 2.5vw;
  flex-wrap: nowrap;
}


  
  /* .navigation .industriesandpartners {
    position: relative;
    top: -1vw;
  } */
  
  @media (max-width: 600px) {
    .navigation {
      /* 1rem ≈ 16px → roughly 0.8vw on a 1920px design; adjust if needed */
      gap: clamp(0.8rem, 1vw, 1rem);
    }
    
    .navigation a {
      font-size: clamp(0.8rem, 0.9vw, 0.9rem);
    }
  }
  
  /* Hero Section */
.hero-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem; /* extra padding for small screens */
  }
  
  .hero-section .hero-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;  /* better fills container */
    z-index: 0;
  }
  
  .hero-text {
    position: relative;
    z-index: 1;
    color: #27C83F;
    min-width:75vw;
    text-align: left;
  }
  
  .hero-title p {
    font-family: 'HelveticaNeueBold', sans-serif;
    font-weight: 700;
    font-size: clamp(4.5rem, 5.5vw, 5.333rem);
    margin: 0.1rem 0;
    line-height: 1;
  }
  
  .hero-title .white-title {
    color: white;
    width: 100%;

  }
  
  .hero-paragraph p {
    font-family: 'HelveticaNeue', sans-serif;
    font-weight: 400;
    color: white;
    font-size: clamp(1.2rem, 1.5vw, 1.5rem);
    line-height: 1.3;
    margin: 1rem 0 0;
    width: 24.438rem;
  }
  
  /* Optional media query adjustments */
  @media (max-width: 768px) {
    .hero-text {
      max-width: 75vw;
    }
  }

/* ////////// */
/* P1 Section */
/* ////////// */
/* ---------- p1 Section ---------- */
.custom-container {
  max-width: 75vw;
}

.p1container {
  padding-top: 10rem;
}

.image-container {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  margin-bottom: 5rem;
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
}

/* Keep top-left text absolutely positioned */
.top-left-text {
  position: absolute;
  top: 0;
  left: 30px;
  color: #27C83F;
  padding: 1rem;
  border-radius: 1rem;
}

.top-left-text h2 {
  font-family: 'HelveticaNeueBold';
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  line-height: 1;
}

.top-left-text p {
  font-family: 'HelveticaNeueRegular';
  font-weight: 450;
  color: black;
  margin: 0;
  width: 450px;
  font-size: clamp(1rem, 1.4vw, 1.5rem);
  line-height: 0.95;
  letter-spacing: 0.20px;
  word-wrap: break-word;
}

/* Bottom-right text: remove absolute positioning */
.bottom-right-text {
  font-family: 'HelveticaNeueRegular';
  color: white;
  /* You can keep a fixed width if desired, or remove. */
  width: 600px;
  font-weight: 400;
  text-align: left;
}

.bottom-right-text p {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.2;
  letter-spacing: 0.20px;
  word-wrap: break-word;
}
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 601px) {
  
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (max-width: 768px) {
 
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (max-width: 992px) {
  
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  
} 



/* ---------- p2 Section ---------- */
.custom-container {
  max-width: 75vw;
}

.green-line-text {
  position: relative;
  padding-left: 1.5rem; /* space for the green line */
}

.p2 .green-line-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 75%;
  background-color: #27C83F;
  border-radius: 1px;
}

.p2 .green-line-text .title {
  font-family: 'HelveticaNeueBold';
  color: #27C83F;
  font-size: 4.583rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.p2 .green-line-text .desc {
  font-family: 'HelveticaNeueRegular';
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  color: black;
  margin: 0;
  margin-bottom: 7rem;
}

@media only screen and (max-width: 600px) {
  
}

 /* Small devices (portrait tablets and large phones, 600px and up) */
 @media only screen and (min-width: 601px) {

 }

 /* Medium devices (landscape tablets, 768px and up) */
 @media only screen and (min-width: 768px) {
 
 }

 /* Large devices (laptops/desktops, 992px and up) */
 @media only screen and (min-width: 992px) {
   
 }

 /* Extra large devices (large laptops and desktops, 1200px and up) */
 @media only screen and (min-width: 1200px) {
   
 } 


/* ////////// */
/* P3 Section */
/* ////////// */
/* ---------- P3 Section ---------- */
/* ---------- P3 Section ---------- */
.p3 {
  background-color: #27C83F;
}

.p3-title {
  font-family: 'HelveticaNeueBold', sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  line-height: 1.1;
  color: white;
  letter-spacing: 0.55px;
}

.main-card {
  border-radius: 42px;
  border: 1.68px solid #27C83F;
  color: white;
  /* same baseline as feature-card: */
  min-height: 600px;  
  overflow: hidden;
  position: relative;
}

.main-card img {
  width: 100%;
  height: 100%;        /* let it fill that min-height */
  object-fit: cover;   /* so it crops without distorting */
  position: absolute;  /* if you want text absolutely overlaid */
  top: 0; 
  left: 0;
}

/* Feature card styling with fixed size */
.feature-card {
  background: white;
  border: 1.68px solid #27C83F;
  border-radius: 42px;
  width: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.icon-placeholder {
  width: 36px;
  height: 36px;
  background-color: black;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.feature-title {
  font-family: 'HelveticaNeueBold', sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.833rem);
  font-weight: 700;
  letter-spacing: 0.2px;
  margin-bottom: 0.5rem;
  color: #27C83F;
}

.feature-text {
  font-family: 'HelveticaNeueRegular', sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  font-weight: 400;
  line-height: 1;
  color: black;
  letter-spacing: 0.15px;
  margin-bottom: 0;
}

.p3 .top-left-text{
  font-family: 'HelveticaNeueRegular', sans-serif;
  position: absolute;
  top: 3.5rem;
  left: 30px;
  color: #27C83F;
  padding: 1rem;
  border-radius: 1rem;
}

.p3 .top-left-text h4{
  font-size: clamp(1.2rem, 2vw, 1.833rem);
}

.p3 .top-left-text p {
  font-size: clamp(1rem, 1.5vw, 1.5rem);
}
.gap-3 {
  gap: 1rem;
}


/* ////////// */
/* P4 Section */
/* ////////// */
.top-right-text{
  position: absolute;
  top: 0rem;
  right: 0;
  color: #27C83F;
  padding: 1rem;
  border-radius: 1rem;
}

.top-right-text h2 {
  font-family: 'HelveticaNeueBold';
  font-size: 4.583rem;
  margin-bottom: 10px;
}

.p4 .bottom-left-text {
  font-family: 'HelveticaNeueRegular';
  position: absolute;
  bottom: 3rem;
  left: 40px;
  color: white;
  padding: 1rem;
  border-radius: 1rem;
  max-width: 30%;
  text-align: left;
  
}

.p4 .bottom-left-text p {
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  margin: 0;
}

.p4 .bottom-left-text a{
  font-size: 1.5rem;
  margin: 0;
  text-decoration: underline;
  color: white;
}

/* //////////// */
/* P5 container */
/* //////////// */

.p5{
  background-color: #27C83F;

}

.custom-p5-container {
  max-width: 75vw;
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.p5-card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 40.92px;
  overflow: hidden;
  transition: background 0.3s ease;
}

.p5-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  border-radius: 40.92px;
  transition: opacity 0.3s ease;
}

.p5-card-content {
  position: relative;
  z-index: 2;
  color: white;
  padding: 1.5rem;
  height: 100%;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start;
}

.p5-title {
  position: relative;
  font-family: 'HelveticaNeueBold', sans-serif;
  font-size: 1.6vw;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02vw;
  transition: color 0.3s ease;
  top: 1rem !important;
  left: 2rem;
  width: 100%;
  justify-self: start !important;
}

.p5-title2{
  top: 1rem !important;
}

.p5-title3{
  top: 1rem !important;
}

.p5-title::before {
  content: "";
  position: absolute;
  left: -1.5rem;
  top: 0;
  width: 4px;
  height: 81.84px;
  background: white;
  transition: background 0.3s ease;
}

.p5-link {
  font-family: 'HelveticaNeueRegular', sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  font-weight: 400;
  text-decoration: underline;
  line-height: 1.5;
  color: white;
  margin-top: 0.5rem;
  transition: color 0.3s ease;
  top: -2rem;
  margin-top: auto;
  position: relative;
  left: 1rem;
  width: 80%;
  justify-self: flex-end;
}

.p5-card:hover {
  background: white;
}

.p5-card:hover .p5-card-img {
  opacity: 0;
}

.p5-card:hover .p5-title::before {
  background: black;
}

.p5-card:hover .p5-title,
.p5-card:hover .p5-link {
  color: black;
}
/* ////////////// */
/* Footer Section */
/* ////////////// */

/* ---------- Footer ---------- */
.footer {
  background-color: white;
}
.footer .container{
  width: 75vw;
}
.footer img{
  margin-top:2.6rem;
  margin-left: 0rem;
  margin-bottom: 0;
}

.footer-column img{
  width: 65%;
}

.footer a {
  color: black;
  text-decoration: none;
  font-family: 'HelveticaNeueRegular', sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.5rem);

  letter-spacing: 0.4px;
}

.footer a:hover {
  text-decoration: underline;
}

.footer h3 {
  font-family: 'HelveticaNeueRegular', sans-serif;
  font-size: 1.25rem;
  color: black;
  margin-top: 3rem;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.footer p {
  font-family: 'HelveticaNeueRegular', sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  color: black;
  margin-bottom: 0.8rem;
  letter-spacing: 0.3px;
}

.footer-logo p {
  margin-top: -3.9rem;
}

.footer-divider {
  width: 60px;
  height: 0;
  border-top: 2px solid #27C83F;
  margin-bottom: 1.5rem;
}

.footer-bottom p {
    color: #27C83F;
  margin-top: 3rem;
  font-size: clamp(1rem, 1.5vw, 1.5rem);

  letter-spacing: 0.2px;
}



/* --------------------------------- */
/* For SMALL DEVICES (e.g., <= 768px) */
/* --------------------------------- */
@media only screen and (max-width: 768px) {
  /* Decrease base font-size for smaller screens if desired */
  html {
    font-size: 14px;
  }

  /* ---------------- */
  /*  P1 adjustments  */
  /* ---------------- */
  /* Title above image, paragraph below image */
  .p1 .image-container {
    position: static; /* Removes absolute positioning */
    padding-top: 1rem; 
    padding-bottom: 1rem;
    margin-bottom: 2rem; /* Adjust as needed */
    text-align: center;  /* Center content if you like */
  }
  .p1 .top-left-text,
  .p1 .bottom-right-text {
    position: static; /* Make them flow in normal document order */
    margin: 1rem 0;
    max-width: 100%;
  }
  /* You can reorder the markup in HTML so .top-left-text
     appears above .image-container in the source if you want
     the heading to literally come before the <img> on mobile. */
  
  /*  Force the row to become a single column in smaller devices (optional) */
  .p1 .row {
    flex-direction: column;
  }

  /* ---------------- */
  /*  P3 adjustments  */
  /* ---------------- */
  /* Stack the main card & feature cards in a single column */
  .p3 .row {
    display: block; /* or flex-direction: column */
  }
  .p3 .col-md-5, 
  .p3 .col-md-7 {
    max-width: 100% !important;
    flex: 0 0 100% !important;
    margin-bottom: 1rem; /* Spacing between stacked columns */
    padding-right: 0 !important;
  }
  /* This ensures the large main card is full-width on small screens,
     and the 4 feature cards also become full-width stacked below. */

  /* ---------------- */
  /*  P4 adjustments  */
  /* ---------------- */
  /* Same approach as P1: title on top, paragraph below image */
  .p4 .image-container {
    position: static;
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-bottom: -23rem;
    text-align: center; /* optional */
  }
  .p4 .top-right-text,
  .p4 .bottom-left-text {
    position: static;
    margin: 1rem 0;
    max-width: 100%;
  }

  /* For demonstration, force .row in P4 to be single-column as well */
  .p4 .row {
    flex-direction: column;
  }
}

/* ---------------------------------------- */
/* MEDIA QUERIES for Mobile vs Desktop      */
/* ---------------------------------------- */
@media (max-width: 768px) {
  /* Show burger menu on mobile */
  .menu-toggle {
    display: block;
 
  }

  /* Hide your normal desktop nav layout on small screens 
     if you want only the overlay approach. */
  header .navigation {
    display: none !important;
  }

  /* But when inside the .navigation-overlay, your .navigation reappears 
     in "overlay form". So we can make a separate rule or rely on nesting. */
  .navigation-overlay .navigation {
    display: flex !important;
  }

  
/* ---------------------------------------- */
/* OVERLAY for Mobile Navigation            */
/* ---------------------------------------- */
.navigation-overlay {
  position: fixed;      /* covers entire viewport */
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.774);
  display: none;        /* hidden by default */
  z-index: 1000;        /* on top of other elements */
  overflow: hidden;     /* no scrolling behind */
}

/* When toggled, the overlay is visible */
.navigation-overlay.show {
  display: block;
}

.navigation {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex;             /* override desktop to stack vertically on mobile? */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  padding-top: 4rem;         /* spacing at top if you like */
}

/* Slide in from top when toggled */
.navigation.slide-in {
  transform: translateY(0);
}

.menu-toggle {
  display: none;       /* shown only on mobile */
  position: absolute;  /* or fixed, if you want it to remain in view on scroll */
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  z-index: 2000;       /* must be higher than .navigation-overlay's 1000 */
}


/* ---------------------------------------- */
/* NAV LINKS in the overlay                 */
/* ---------------------------------------- */
.navigation a {
  font-family: 'HelveticaNeueLight', sans-serif;
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
  margin: 1rem 0;
  display: block;
  text-align: center;
}

.overlay-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  z-index: 2001; /* ensure it's clickable above the nav links */
}
}

@media (max-width: 1200px) {
  html {
    font-size: 15px;
  }
}

@media (max-width: 992px) {
  html {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 13px;
  }
}

@media (max-width: 600px) {
  html {
    font-size: 11px;
  }

  body {
    overflow-x: hidden;
  }

  /* NAVIGATION: Convert to side menu */
  .navigation {
    position: fixed;
    top: 0;
    left: 0;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.068);
    width: 100vw;
    height: 100vh;
    justify-content: center;
    align-items: center;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
  }

  .navigation.show {
    transform: translateX(0);
  }

  .navigation a {
    font-size: 1.5rem;
    color: white;
    padding: 1rem 0;
  }

  header .menu-toggle {
    display: block;
    position: absolute;
    right: 1rem;
    top: 4rem;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    z-index: 1000;
  }

  .header-left img {
    position: relative;
    top: -1vw;
    height: 50%;
    width: 100%;
    right: 0%;
}


}

/* P1 & P4 Responsive Layout */
@media (max-width: 768px) {

  .hero-paragraph p{
    font-size: 1.5rem;
  }
  .p1 .image-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .p4 .image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20rem;
    padding-bottom: 20rem;
  }

  .p1 .top-left-text,
  .p4 .top-right-text {
    position: static;
    text-align: left;
    color: #27C83F;
  }

  .p1 .bottom-right-text,
  .p4 .bottom-left-text {
    position: static;
    max-width: 90%;
    text-align: left;
    margin-top: 2rem;
    color: white;
  }

  .p4 .bottom-left-text a {
    color: white;
  }

  .p1 .top-left-text h2 {
    font-family: 'HelveticaNeueBold';
    font-size: 3rem;
    margin-bottom: 0.5rem;
    line-height: 0.95;
  }
  .p1 .bottom-right-text p {
    font-family: 'HelveticaNeueRegular';
    font-weight: 400;
    color: black;
    margin: 0;
    width: 500px;
    font-size:1.5rem;
    line-height: 1; letter-spacing: 0.20px; word-wrap: break-word;
  }

  .p1 .bottom-right-text {
    font-family: 'HelveticaNeueRegular';
    position: absolute;
    bottom: -38rem;
    left: 01rem;
    padding: 1rem;
    border-radius: 1rem;
    text-align: left;
    font-size: 2rem;
    font-weight: 400;
  
  }

  .p1 .bottom-right-text p{
    margin-top: 0.5rem;
    width:100% !important;
  }

  .p1{
    padding-top: 0rem;
  }

  .p1 .image-container{
    padding-bottom: 20rem;
    padding-top: 10rem;
  }

  .p1 .top-left-text{
    position: absolute;
    top: -2rem;
    left: -1rem;
  }

  .p3-title{
    font-size: 3rem;
  }

  .p3 .top-left-text{
    font-family: 'HelveticaNeueRegular', sans-serif;
    position: absolute;
    top: 3.5rem;
    left: 0;
    color: #27C83F;
    padding: 1rem;
    border-radius: 1rem;
  }

  .p3 .top-left-text h4{
    font-size:1.7rem;
  }
  
  .p3 .top-left-text p {
    font-size: 1.5rem;
    width: 100%;
  }

  .feature-title{
    font-size: 1.7rem;
  }

  .feature-text{
    font-size: 1.5rem;
  }

  .p4 .top-right-text{
    left:-1rem;
    right: 0;
    top: -28rem;
    position: relative;
  }

  .p4 .bottom-left-text{
    left:-1rem;
    right: 0;
    top: -12rem;
    position: relative;
  }

  .p4 .top-right-text h2{
    font-size: 3rem;
  }
  
  .black-top-right{
    margin-top: -1rem;
  }
  
  .p4 .bottom-left-text p {
    font-family: 'HelveticaNeueRegular';
    font-weight: 400;
    color: black;
    margin: 0;
    width: 255px;
    font-size:1.5rem;
    line-height: 1; letter-spacing: 0.20px; word-wrap: break-word;
    position: relative;
    left:-1.5rem;
    top: -4rem
  }
  
  .p4 .bottom-left-text a{
    font-size: 1.5rem;
    margin: 0;
    text-decoration: underline;
    color: black;
  }
  
  .p5-title{
    font-size: 2.573rem;
    /* top: -17rem; */
    bottom: 0rem !important;
    width:80% !important;
  }

  .p5-title::before{
    height: 100%;
  }
  
  .p5-title3{
    /* top: -11rem !important; */
    bottom: 0rem !important;
  }
  
  .p5-link{
    font-size: 1.5rem;
  }

  .p5 .row.g-4 > div {
    margin-bottom: 2rem;  /* Or whatever spacing you like */
  }

  .footer-column,
  .footer-logo {
    text-align: center !important;
  }

  /* Optionally, center them horizontally within the row */
  .footer .row {
    justify-content: center;
  }

  .footer-divider {
    width: 60px;
    height: 0;
    border-top: 2px solid #27C83F;
    margin-bottom: 1.5rem;
    left: 10.5rem;
    position: relative;
}
}



/* P3: Make grid responsive by stacking */
@media (max-width: 992px) {
  .p3 .main-card,
  .p3 .feature-card {
    width: 100% !important;
    max-width: 100% !important;
  }

  .main-card {
    min-height: 280px; /* same as your feature cards */
  }

  .p3 .row > div {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .p3 .col-md-7.d-flex {
    flex-direction: column;
  }

  .p3 .feature-card {
    margin-bottom: 1.5rem;
  }
}

/* ========== Desktop (min-width: 769px) ========== */
@media (min-width: 769px) {
  /* Show the nav in the header */
  header .navigation {
    display: flex; /* or whatever your layout is */
  }
  /* Hide the burger */
  .menu-toggle {
    display: none;
  }
  /* Hide the overlay entirely */
  .navigation-overlay {
    display: none !important; /* never show on desktop */
  }
}

/* ========== Mobile (350px to 767px) ========== */
@media (min-width: 350px) and (max-width: 767px)  {
  .container{
    max-width: 75vw;
  }

  html{
    font-size: 9px;
  }

  .navigation-overlay .header-left{
    height: 20rem !important;

  }

  .language-bar a{
    font-size: 1.5rem !important;
  }

  .hero-section .hero-title{
    width: 75vw !important;
    word-wrap: break-word;
  }

  .top-left-text{
    position: relative;
    top: 5rem;
  }


}
/* ========== Mobile (max-width: 768px) ========== */
@media (max-width: 768px) {
  /* Hide the desktop nav in the header */
  header .navigation {
    display: none !important;
  }

  /* Show the burger */
  .menu-toggle {
    display: block; 
    position: absolute; /* or wherever you prefer */
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    color: white;
    z-index: 1000;
    cursor: pointer;
  }

  /* The overlay nav is shown only if toggled .show in JS */
  .navigation-overlay {
    display: none; /* hidden by default */
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.8);
    z-index: 999;
    overflow: hidden;
  }
  .navigation-overlay.show {
    display: block;
  }

  /* The nav inside the overlay becomes vertical */
  .navigation-overlay .navigation {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    width: 100%;
    height: 100%;
  }
  .navigation-overlay .navigation.slide-in {
    transform: translateY(0);
  }

  /* Overlay close button if you like */
  .overlay-close {
    position: absolute;
    top: 4rem;
    right: 6.5rem;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    z-index: 1001;
  }

  .footer-column, .footer-logo {
    text-align: left !important;
  }

  .footer-divider{
    left:0 !important;
  }

  .footer-column img{
    width: 50%;
  }

  .footer p, .footer a{
    font-size: 1.5rem !important;
    text-align: left;
  }
}

/* ========== THIS IS FOR LAPTOP 1024 SIZE ========== */
@media (min-width: 1024px) and (max-width: 1439px) {
  /* Example: Adjust font size or grid behavior */
  html {
    font-size: 15px;
    overflow-x: hidden;
  }

  .contact-subtext {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .contact-subtext p {
    margin-bottom: 0;
  }

  .header-left img {
    position: relative;
    top: -1vw;
    height: 50%;
    width: 12rem;
    right: -13%;
}

  .navigation {
    position: relative;
    align-items: flex-end;
    display: flex
;
    flex-wrap: nowrap;
    gap: 2.5vw;
    top: -1.8rem;
    left: 0rem;
  }

  .p1 .top-left-text{
    left: 0rem;
  }

  .top-left-text h2 {
    font-family: 'HelveticaNeueBold';
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    margin-bottom: 0.5rem;
    line-height: 0.95;
  }

  .bottom-right-text {
    position: relative;
    align-items: flex-end;
  }
  
  .bottom-right-text p{
    font-size: clamp(1rem, 1.5vw, 1.5rem);

  }

  .main-card {
    border-radius: 42px;
    border: 1.68px solid #27C83F;
    color: white;
    min-height: 643px;
    overflow: hidden;
    position: relative;
  }

  .p3 .top-left-text{
    left: 0rem;
  }

  .p3 .top-left-text p{
    width: 100%;
  }

  .p4 .top-right-text h2{
    font-size: clamp(2.5rem, 4vw, 4.5rem);
  }

  .p4 .bottom-left-text p{
    width: 140%;
  }

  .p5-title{
    top: -11rem;
    left: 2rem;
    font-size: clamp(1.65rem, 2vw, 2.5rem);
  }

  .p5-title::before {
    content: "";
    position: absolute;
    left: -1.5rem;
    top: 0;
    width: 4px;
    height: 60px;
    background: white;
    transition: background 0.3s ease;
  }

  .p5-title2{
  }

  .p5-title3{
    width: 90%;
  }

  .footer img {
    margin-top: 2.5rem;
  
  }
  
  .footer-column img{
    width: 75%;
  }
.footer-logo p{
  margin-top: -1.9rem;
  margin-left: -1rem;
}


}

/* ========== THIS IS FOR LAPTOP L SIZE ========== */
@media (min-width: 1440px) and (max-width: 1919px) {
  html {
    font-size: 16px;
  }

  .contact-subtext {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* if you want 3 blocks horizontally */
    gap: 2rem;
  }

  .contact-subtext p {
    margin-bottom: 0;
  }

  .header-left img {
    position: relative;
    top: -1vw;
    height: 50%;
    width: 13rem;
    right: -15%;
  }
  
  .navigation {
    position: relative;
    align-items: flex-end;
    display: flex
;
    flex-wrap: nowrap;
    gap: 2.5vw;
    top: -2rem;
  }

  .p1 .top-left-text{
    left: 0rem;
  }

  .top-left-text h2 {
    font-family: 'HelveticaNeueBold';
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    margin-bottom: 0.5rem;
    line-height: 0.95;
  }

  .bottom-right-text{
    /* position: relative;
    bottom: 23rem;
    left: 42rem; */
    width: 500px
  }
  .bottom-right-text p{
    font-size: clamp(1rem, 1.5vw, 1.5rem);
  }

  .p3-title h2{
    font-size: clamp(2.5rem, 4vw, 4.5rem);
  }

  .main-card {
    border-radius: 42px;
    border: 1.68px solid #27C83F;
    color: white;
    min-height: 643px;
    overflow: hidden;
    position: relative;
  }

  .p3 .top-left-text{
    left: 0rem;
  }

  .p3 .top-left-text p{
    width: 100%;
  }

  .p4 .top-right-text h2{
    font-size: 3.5rem;
  }

  .p4 .bottom-left-text p{
    width: 100%;
  }

  .p5-title{
    top: -19rem;
    left: 2rem;
    font-size: clamp(1.65rem, 2vw, 2.5rem);
  }

  .p5-title::before {
    content: "";
    position: absolute;
    left: -1.5rem;
    top: 0;
    width: 4px;
    height: 60px;
    background: white;
    transition: background 0.3s ease;
  }

  .p5-title2{
  }

  .p5-title3{
  }

  .footer-column img{
    width: 70%;
  }

  .footer img {
    margin-top: 2.5rem;
    margin-left: 0rem;
    margin-bottom: 0;
  }

  .footer-logo p{
    margin-top: -3.9rem;
    margin-left: 0rem;
  }



}

@media (min-width: 1920px) {
  html {
    font-size: 16px;
  }
}

/* ///////////////////////////////////////////// */
/* ///////////////////////////////////////////// */
/* ///////////////////////////////////////////// */

@media (min-width: 321px) and (max-width: 376px) {
  html{
    font-size: 9px;
  }

  .p1 .top-left-text h2{
    font-size: 3rem;
  }

  .p3 .top-left-text p {
    font-size: 1.5rem;
    width: 100%;
}

.p5-title{
  top: -18rem;
  width: 100%;
}

.p5-title2{
  top:-16rem;
}

.p5-title3 {
  top: -9rem !important;
  width: 90%;
}
  
}

@media (min-width: 377px) and (max-width: 450px) {
  html{
    font-size: 9px;
  }

  .p1 .top-left-text h2{
    font-size: 3rem;
  }

  .p1 .bottom-right-text{
    top: 30rem;
  }

  .p4 .top-right-text{
    top: -30rem;
  }

  .p5-title{
    /* top: -25rem; */
    width: 100%;
  }

  .p5-title3 {

    width: 95%;
}

  .footer-divider{
    left: 12.5rem;
  }
  
}