
@font-face {
  font-family: 'mandala-pilar-americancaptain';
  src: url(../assets/font/american_captain/American\ Captain.otf);
}

@font-face {
  font-family: 'mandala-pilar-icon';
  src: url(../assets/font/construction_icons/Construction\ Icons.otf);
}

@font-face {
  font-family: 'inter-mandala-pilar';
  src: url(../assets/font/Inter/static/Inter_18pt-Light.ttf);
}

@font-face {
    font-family: 'urbanist-mandala-pilar';
    src: url(../assets/font/Urbanist/static/Urbanist-Light.ttf);
}

@font-face {
  font-family: 'mandala-pilar-inter';
  src: url(../assets/font/Inter/Inter-Italic-VariableFont_opsz\,wght.ttf);
} 










/* ----------------------------------------------CSS Body Website---------------------------------------------- */
body, html {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: 'inter-mandala-pilar', sans-serif;
  background-color: transparent;
  color: #333;
}
/* -------------------------------------------CSS Batas body Website--------------------------------------------- */



/* -------------------------------------------CSS Menu/Header webite--------------------------------------------- */
header {
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 5rem 0.5rem 5rem; 
    padding-right: 5.625rem; 
    font-size: 0.9375rem;
    position: sticky; 
    top: 0;          
    z-index: 1000;   
}

header img {
    height: 40px;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-name {
    font-family: 'mandala-pilar-americancaptain';
    font-size: 18px;
    color: rgb(78, 78, 78);
}

.brandmpi-icon {
    font-family: 'mandala-pilar-icon';
    align-self: auto;
    font-size: 24px;
    color: rgb(78, 78, 78);
}

.hamburger-menu-icon {
    display: none;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex; 
    gap: 0px; 
}

.main-nav ul li {
    position: relative;
}

.main-nav a {
    font-family: 'inter-mandala-pilar', sans-serif;
    font-size: 14px;
    font-weight: bold;
    color: black;
    text-decoration: none;
    padding: 15px 10px; 
    display: block; 
    transition: background-color 0.3s ease, color 0.3s ease;
    position: relative; 
    overflow: hidden; 
}

.main-nav a::before {
    content: ''; 
    position: absolute; 
    bottom: 0; 
    left: 0;
    width: 100%; 
    height: 1.3px; 
    background-color: black; 
    z-index: 1; 

    transform: scaleX(0);

    transition: transform 0.5s ease-in-out; 
}

.nav-list[data-animation="center"] .main-nav a::before {
    transform-origin: center; 
}

.main-nav a:hover::before,
.main-nav a:focus::before { 
    transform: scaleX(1); 
}

.dropbtn {
    cursor: pointer;
}

.dropdown-content {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    position: absolute;
    background-color: white;
    min-width: 220px; 
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 100; 
    border-radius: 0 0 4px 4px;
    overflow: hidden;
    left: 0;
    top: 100%;
    box-sizing: border-box; 
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
}

.dropbtn .dropdown-arrow-icon {
    margin-left: 5px; 
    fill: currentColor; 
    vertical-align: middle; 
    transition: transform 0.3s ease; 
}

.dropdown.group:hover .dropdown-arrow-icon {
    transform: rotate(180deg); 
}

.main-nav .nav-list li a {
    display: flex; 
    align-items: center; 

}

@media (max-width: 769px) {
    header {

        padding: 1.25rem 1rem; 
        padding-right: 1.25rem; 
    }

    .hamburger-menu-icon {
        display: flex; 
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 25px;
        background: none; 
        border: none; 
        cursor: pointer;
        padding: 0;
        z-index: 101; 
    }

    .hamburger-menu-icon .bar {
        width: 100%;
        height: 3px;
        background-color: black;
        transition: all 0.3s ease-in-out;
    }

    .main-nav {
        display: none; 
        flex-direction: column; 
        position: fixed; 
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.95); 
        padding-top: 80px; 
        padding-left: 20px; 
        padding-right: 20px;
        justify-content: flex-start; 
        align-items: center; 
        z-index: 100; 
        overflow-y: auto; 
        box-sizing: border-box; 

        transform: translateX(100%); 
        transition: transform 0.3s ease-out;
    }

    .main-nav.active {
        display: flex; 
        transform: translateX(0); 
    }

    body.menu-open {
        overflow: hidden;
    }

    .main-nav ul {
        flex-direction: column; 
        width: 100%;
        text-align: center; 
    }

    .main-nav ul li {
        margin-bottom: 20px; 
    }

    .main-nav a {
        font-size: 1.5rem; 
        padding: 15px 0; 
    }

    .dropdown-content {
        position: static; 
        opacity: 1; 
        visibility: visible;
        box-shadow: none; 
        background-color: transparent; 
        min-width: unset; 
        padding: 0; 
    }

    .dropdown-content a {
        font-size: 1.2rem; 
        padding: 8px 0;
        color: #555; 
    }

    .dropdown-group .dropdown-content {
        display: none;
    }

    .dropdown-group.active .dropdown-content {
        display: flex;
        flex-direction: column;
        align-items: center; 
    }

    .hamburger-menu-icon.active .bar:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
    }
    .hamburger-menu-icon.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger-menu-icon.active .bar:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
    }
}

@media (min-width: 770px) and (max-width: 1024px) {
    header {

        padding: 1.25rem 2.5rem; 
        padding-right: 2.5rem; 
    }

    .main-nav {
        display: flex;
    }
    .hamburger-menu-icon {
        display: none;
    }

    .main-nav a {
        padding: 12px 8px;
    }

    .dropdown-content {
        min-width: 180px; 
    }
}









/* ----------------------------------------------Hero Section----------------------------------------------- */


@media (max-width: 768px) {
    #hero-section {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.9375rem;
    padding: 2rem 1.8rem;
    position: relative;
  }
  
  #hero-section::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6.25rem;
    background-image: url("data:image/svg+xml;utf8,%3Csvg%20viewBox%3D%270%200%201440%20110%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cdefs%3E%3Clin%65arGradient%20id%3D%27sw-gradient-0%27%20x1%3D%270%27%20x2%3D%270%27%20y1%3D%271%27%20y2%3D%270%27%3E%3Cstop%20stop-color%3D%27rgba%28236%2C%20175%2C%204%2C%201%29%27%20offset%3D%270%25%27%3E%3C/stop%3E%3Cstop%20stop-color%3D%27rgba%28255%2C%20222.991%2C%20133.259%2C%201%29%27%20offset%3D%27100%25%27%3E%3C/stop%3E%3C/lin%65arGradient%3E%3C/defs%3E%3Cpath%20fill%3D%27url%28%23sw-gradient-0%29%27%20d%3D%27M0%2C66L120%2C67.8C240%2C70%2C480%2C73%2C720%2C66C960%2C59%2C1200%2C40%2C1440%2C31.2C1680%2C22%2C1920%2C22%2C2160%2C22C2400%2C22%2C2640%2C22%2C2880%2C18.3C3120%2C15%2C3360%2C7%2C3600%2C14.7C3840%2C22%2C4080%2C44%2C4320%2C51.3C4560%2C59%2C4800%2C51%2C5040%2C51.3C5280%2C51%2C5520%2C59%2C5760%2C66C6000%2C73%2C6240%2C81%2C6480%2C75.2C6720%2C70%2C6960%2C51%2C7200%2C51.3C7440%2C51%2C7680%2C70%2C7920%2C77C8160%2C84%2C8400%2C81%2C8640%2C69.7C8880%2C59%2C9120%2C40%2C9360%2C44C9600%2C48%2C9840%2C73%2C10080%2C77C10320%2C81%2C10560%2C62%2C10800%2C49.5C11040%2C37%2C11280%2C29%2C11520%2C34.8C11760%2C40%2C12000%2C59%2C12240%2C56.8C12480,55,12720,33,12960,31.2C13200,29,13440,48,13680,51.3C13920,55,14160,44,14400,49.5C14640,55,14880,77,15120,78.8C15360,81,15600,62,15840,58.7C16080,55,16320,66,16560,71.5C16800,77,17040,77,17160,77L17280,77L17280,110L17160,110C17040,110,16800,110,16560,110C16320,110,16080,110,15840,110C15600,110,15360,110,15120,110C14880,110,14640,110,14400,110C14160,110,13920,110,13680,110C13440,110,13200,110,12960,110C12720,110,12480,110,12240,110C12000,110,11760,110,11520,110C11280,110,11040,110,10800,110C10560,110,10320,110,10080,110C9840,110,9600,110,9360,110C9120,110,8880,110,8640,110C8400,110,8160,110,7920,110C7680,110,7440,110,7200,110C6960,110,6720,110,6480,110C6240,110,6000,110,5760,110C5520,110,5280,110,5040,110C4800,110,4560,110,4320,110C4080,110,3840,110,3600,110C3360,110,3120,110,2880,110C2640,110,2400,110,2160,110C1920,110,1680,110,1440,110C1200,110,960,110,720,110C480,110,240,110,120,110L0,110Z%27%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    z-index: -2;
  }
  
  .content-container {
    padding-left: 0;
    width: 100%;
    text-align: left;
    padding-top: 0.1rem;
    flex-wrap: nowrap;
  }
  
  .content {
    padding-left: 0rem;
  }
  
  .content h1 {
    font-size: 1.7rem;
    font-weight: bolder;
    margin-bottom: 0.5rem;
    font-family: 'inter-mandala-pilar', sans-serif;
    line-height: 1;
    width: 100%;
  }
  
  .highlight {
    color: #20570F;
  }
  
  .highlight2 {
    color: #20570F;
    font-weight: bold;
  }
  
  .adsmotto {
    font-size: 1rem;
    font-family: 'inter-mandala-pilar', sans-serif;
    margin-top: 0.625rem;
    margin-bottom: 1.25rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
  }
  .buttons {
    margin-top: 1.25rem;
    margin-right: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.625rem;
  }
  
  .buttons button {
    padding: 0.4rem 0.4rem;
    font-size: 0.9rem;
    font-family: 'inter-mandala-pilar', sans-serif;
    border: none;
    cursor: pointer;
    border-radius: 1.25rem;
    margin-right: 0;
    width: fit-content;
  }
  
  .consult {
    background-color: #20570F;
    color: white;
  }
  
  .consult:hover {
    background-color: #f0c753;
    color: white;
  }
  
  button.consult {
    display: inline-flex;
    align-items: center;
    gap: 0.125rem;
  }
  
  .consult dotlottie-player {
    width: 1.875rem;
    height: 1.875rem;
    margin-right: 0.125rem;
  }
  
  .learn {
    background-color: transparent;
    color: black;
    font-family: sans-serif;
  }
  .learn:hover {
    color: #ECAF04;
  }
  .stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 1.5625rem;
    margin-top: 1.5625rem;
    margin-bottom: 1.25rem;
    font-family: 'inter-mandala-pilar', sans-serif;
  }


  .stat h2 {
    font-size: 1.2rem;
    margin-bottom: 0rem;
    font-family: sans-serif;
    font-weight: bold;
  }
  .stat p {
    margin-top: 0rem;
    font-size: 0.8125rem;
    font-family: 'inter-mandala-pilar', sans-serif;
  }
  .licenses {
    display: flex;
    align-items: center;
    gap: 0.3125rem;
    font-size: 0.6875rem;
    margin-top: 0.3125rem;
  }
  
  .jump-tool-section {
      margin-top: 0.5rem;
      padding-top: 0.625rem;
      border-top: 0.0625rem solid rgba(0, 0, 0, 0.1);
      justify-content: center;
  }
  
  .jump-tool-title {
      font-size: 0.8125rem;
      font-family: 'inter-mandala-pilar', sans-serif;
      font-weight: 600;
      color: #333;
      margin-bottom: 0.625rem;
  }
  
  .jump-tool-buttons {
      display: grid;
      grid-template-columns: repeat(2, 1fr); 
      gap: 2rem; 
      gap: 0.5rem;
      font-family: 'inter-mandala-pilar', sans-serif;
  }
  
  .jump-button {
      background-color: #AA4A44;
      color: white;
      padding: 0.3125rem 0.1rem;
      border: 0.125rem solid #8B3A36;
      border-radius: 0.25rem;
      font-size: 0.75rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow:
          inset 0 0 0.3125rem rgba(0, 0, 0, 0.2),
          0 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
      text-align: center;
      flex-shrink: 0;
      position: relative;
      overflow: hidden;
  
      background-image:
          linear-gradient(rgba(255,255,255,0.1) 0.0625rem, transparent 0.0625rem),
          linear-gradient(90deg, rgba(255,255,255,0.05) 0.0625rem, transparent 0.0625rem);
      background-size: 0.625rem 0.625rem;
  }
  
  .jump-button:hover {
      background-color: #B8524B;
      border-color: #9C403C;
      box-shadow:
          inset 0 0 0.5rem rgba(0, 0, 0, 0.3),
          0 0.375rem 0.75rem rgba(0, 0, 0, 0.3);
      transform: translateY(-0.125rem);
  }
  
  .jump-button:active {
      transform: translateY(0);
      box-shadow:
          inset 0 0 0.625rem rgba(0, 0, 0, 0.4),
          0 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
  }
  
  @keyframes brickPulse {
      0% { transform: scale(1); box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2); }
      50% { transform: scale(1.02); box-shadow: 0 0.375rem 0.75rem rgba(0, 0, 0, 0.3), 0 0 0.9375rem rgba(255, 100, 100, 0.5); }
      100% { transform: scale(1); box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2); }
  }
  
  
  .right-container {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      box-sizing: border-box;
      order: 1;
  }
  
  .visual-stack-wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
      width: 31.25rem;
      justify-content: flex-start;
      overflow: hidden;
  }
  
  .image-stack {
      display: flex;
      flex-direction: row;
      position: static;
      z-index: 1;
      gap: 0.3rem;
      padding-bottom: 1.25rem;
      width: 100%;
      justify-content: center;
  }
  
  .image-stack .image-wrapper {
      width: 7rem;
      height: 4rem;
      border-radius: 0.8rem;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      transform: translateY(0) translateX(0);
      box-shadow: inset 0 0 0 0.0625rem rgba(0, 0, 0, 0.1), 0 0.25rem 0.9375rem rgba(0, 0, 0, 0.1);
      box-shadow: 0 0.3125rem 2.5rem rgba(0, 0, 0, 0.2),
                  0 0 0 0.005rem rgba(0, 0, 0, 0.08);
    }
  
  .image-stack .image-wrapper:first-child {
      margin-top: 0;
      transform: translateY(0rem) translateX(0rem);
  }
  
  .image-stack .image-wrapper:nth-child(2) {
      transform: translateY(0rem) translateX(0rem);
  }
  
  .image-stack .image-wrapper:last-child {
      transform: translateY(0rem) translateX(0rem);
  }
  
  .image-stack img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .image-stack img {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
    #hero-section {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.9375rem;
    padding: 3.125rem 2.5rem;
    position: relative;
  }
  
  #hero-section::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6.25rem;
    background-image: url("data:image/svg+xml;utf8,%3Csvg%20viewBox%3D%270%200%201440%20110%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cdefs%3E%3Clin%65arGradient%20id%3D%27sw-gradient-0%27%20x1%3D%270%27%20x2%3D%270%27%20y1%3D%271%27%20y2%3D%270%27%3E%3Cstop%20stop-color%3D%27rgba%28236%2C%20175%2C%204%2C%201%29%27%20offset%3D%270%25%27%3E%3C/stop%3E%3Cstop%20stop-color%3D%27rgba%28255%2C%20222.991%2C%20133.259%2C%201%29%27%20offset%3D%27100%25%27%3E%3C/stop%3E%3C/lin%65arGradient%3E%3C/defs%3E%3Cpath%20fill%3D%27url%28%23sw-gradient-0%29%27%20d%3D%27M0%2C66L120%2C67.8C240%2C70%2C480%2C73%2C720%2C66C960%2C59%2C1200%2C40%2C1440%2C31.2C1680%2C22%2C1920%2C22%2C2160%2C22C2400%2C22%2C2640%2C22%2C2880%2C18.3C3120%2C15%2C3360%2C7%2C3600%2C14.7C3840%2C22%2C4080%2C44%2C4320%2C51.3C4560%2C59%2C4800%2C51%2C5040%2C51.3C5280%2C51%2C5520%2C59%2C5760%2C66C6000%2C73%2C6240%2C81%2C6480%2C75.2C6720%2C70%2C6960%2C51%2C7200%2C51.3C7440%2C51%2C7680%2C70%2C7920%2C77C8160%2C84%2C8400%2C81%2C8640%2C69.7C8880%2C59%2C9120%2C40%2C9360%2C44C9600%2C48%2C9840%2C73%2C10080%2C77C10320%2C81%2C10560%2C62%2C10800%2C49.5C11040%2C37%2C11280%2C29%2C11520%2C34.8C11760%2C40%2C12000%2C59%2C12240%2C56.8C12480,55,12720,33,12960,31.2C13200,29,13440,48,13680,51.3C13920,55,14160,44,14400,49.5C14640,55,14880,77,15120,78.8C15360,81,15600,62,15840,58.7C16080,55,16320,66,16560,71.5C16800,77,17040,77,17160,77L17280,77L17280,110L17160,110C17040,110,16800,110,16560,110C16320,110,16080,110,15840,110C15600,110,15360,110,15120,110C14880,110,14640,110,14400,110C14160,110,13920,110,13680,110C13440,110,13200,110,12960,110C12720,110,12480,110,12240,110C12000,110,11760,110,11520,110C11280,110,11040,110,10800,110C10560,110,10320,110,10080,110C9840,110,9600,110,9360,110C9120,110,8880,110,8640,110C8400,110,8160,110,7920,110C7680,110,7440,110,7200,110C6960,110,6720,110,6480,110C6240,110,6000,110,5760,110C5520,110,5280,110,5040,110C4800,110,4560,110,4320,110C4080,110,3840,110,3600,110C3360,110,3120,110,2880,110C2640,110,2400,110,2160,110C1920,110,1680,110,1440,110C1200,110,960,110,720,110C480,110,240,110,120,110L0,110Z%27%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    z-index: -2;
  }
  
  .content-container {
    padding: 2rem 3rem;
    width: 100%;
    text-align: center;
    flex-wrap: nowrap;
  }
  
  .content {
    padding-left: 0rem;
  }
  
  .content h1 {
    font-size: 3rem;
    font-weight: bolder;
    margin-bottom: 1.25rem;
    font-family: 'inter-mandala-pilar', sans-serif;
    line-height: 1;
    width: 100%;
    text-align: left;
  }
  
  .highlight {
    color: #20570F;
  }
  
  .highlight2 {
    color: #20570F;
    font-weight: bold;
  }
  
  .adsmotto {
    font-size: 1.4rem;
    text-align: left;
    font-family: 'inter-mandala-pilar', sans-serif;
    margin-top: 0.625rem;
    margin-bottom: 1.25rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
  }
  .buttons {
    margin-top: 1.25rem;
    margin-right: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: left;
    gap: 0.625rem;
  }
  
  .buttons button {
    padding: 0.6rem 1.3rem;
    font-size: 1.4rem;
    font-family: 'inter-mandala-pilar', sans-serif;
    border: none;
    cursor: pointer;
    border-radius: 1.25rem;
    margin-right: 0;
    width: fit-content;
  }
  
  .consult {
    background-color: #20570F;
    color: white;
  }
  
  .consult:hover {
    background-color: #f0c753;
    color: white;
  }
  
  button.consult {
    display: inline-flex;
    align-items: center;
    gap: 0.125rem;
  }
  
  .consult dotlottie-player {
    width: 1.875rem;
    height: 1.875rem;
    margin-right: 0.125rem;
  }
  
  .learn {
    background-color: transparent;
    color: black;
    font-family: sans-serif;
  }
  .learn:hover {
    color: #ECAF04;
  }
  .stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 1.5625rem;
    margin-top: 1.5625rem;
    margin-bottom: 1.25rem;
    font-family: 'inter-mandala-pilar', sans-serif;
  }
  .stat {
    text-align: center;
    
  }
  .stat h2 {
    font-size: 2rem;
    margin-bottom: 0rem;
    font-family: sans-serif;
    font-weight: bold;
  }
  .stat p {
    margin-top: 0rem;
    font-size: 1.3rem;
    font-family: 'inter-mandala-pilar', sans-serif;
  }
  .licenses {
    display: flex;
    align-items: center;
    gap: 0.3125rem;
    font-size: 1rem;
    margin-top: 0.3rem;
    justify-content: left;
  }
  
  .jump-tool-section {
      margin-top: 0.5rem;
      padding-top: 0.625rem;
      border-top: 0.0625rem solid rgba(0, 0, 0, 0.1);
  }
  
  .jump-tool-title {
      font-size: 1.2rem;
      font-family: 'inter-mandala-pilar', sans-serif;
      font-weight: 600;
      color: #333;
      margin-bottom: 0.625rem;
      text-align: left;
  }
  
  .jump-tool-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      font-family: 'inter-mandala-pilar', sans-serif;
      justify-content: left;
  }
  
  .jump-button {
      background-color: #AA4A44;
      color: white;
      padding: 0.6rem 0.8rem;
      border: 0.125rem solid #8B3A36;
      border-radius: 0.25rem;
      font-size: 0.9rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow:
          inset 0 0 0.3125rem rgba(0, 0, 0, 0.2),
          0 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
      text-align: center;
      flex-shrink: 0;
      position: relative;
      overflow: hidden;
  
      background-image:
          linear-gradient(rgba(255,255,255,0.1) 0.0625rem, transparent 0.0625rem),
          linear-gradient(90deg, rgba(255,255,255,0.05) 0.0625rem, transparent 0.0625rem);
      background-size: 0.625rem 0.625rem;
  }
  
  .jump-button:hover {
      background-color: #B8524B;
      border-color: #9C403C;
      box-shadow:
          inset 0 0 0.5rem rgba(0, 0, 0, 0.3),
          0 0.375rem 0.75rem rgba(0, 0, 0, 0.3);
      transform: translateY(-0.125rem);
  }
  
  .jump-button:active {
      transform: translateY(0);
      box-shadow:
          inset 0 0 0.625rem rgba(0, 0, 0, 0.4),
          0 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
  }
  
  @keyframes brickPulse {
      0% { transform: scale(1); box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2); }
      50% { transform: scale(1.02); box-shadow: 0 0.375rem 0.75rem rgba(0, 0, 0, 0.3), 0 0 0.9375rem rgba(255, 100, 100, 0.5); }
      100% { transform: scale(1); box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2); }
  }
  
  
  .right-container {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      box-sizing: border-box;
  }
  
  .visual-stack-wrapper {
      display: flex;
      flex-direction: row;
      align-items: center;
      position: relative;
      width: 60rem;
      justify-content: flex-start;
      overflow: hidden;
  }
  
  .image-stack {
      display: flex;
      flex-direction: row;
      position: static;
      z-index: 1;
      gap: 1rem;
      padding-bottom: 3rem;
      width: 100%;
      align-items: center;
      justify-content: center;
  }
  
  .image-stack .image-wrapper {
      width: 15rem;
      height: 8.75rem;
      border-radius: 0.9375rem;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      transform: translateY(0) translateX(0);
      box-shadow: inset 0 0 0 0.0625rem rgba(0, 0, 0, 0.1), 0 0.25rem 0.9375rem rgba(0, 0, 0, 0.1);
      box-shadow: 0 0.3125rem 2.5rem rgba(0, 0, 0, 0.2),
                  0 0 0 0.005rem rgba(0, 0, 0, 0.08);
    }
  
  .image-stack .image-wrapper:first-child {
      margin-top: 0;
      transform: translateY(0rem) translateX(1rem);
  }
  
  .image-stack .image-wrapper:nth-child(2) {
      transform: translateY(0rem) translateX(1rem);
  }
  
  .image-stack .image-wrapper:last-child {
      transform: translateY(0rem) translateX(1em);
  }
  
  .image-stack img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
}

@media (min-width: 1025px) {
    #hero-section {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
    gap: 0.9375rem;
    padding: 3.125rem 2.5rem;
    position: relative;
  }
  
  #hero-section::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6.25rem;
    background-image: url("data:image/svg+xml;utf8,%3Csvg%20viewBox%3D%270%200%201440%20110%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cdefs%3E%3Clin%65arGradient%20id%3D%27sw-gradient-0%27%20x1%3D%270%27%20x2%3D%270%27%20y1%3D%271%27%20y2%3D%270%27%3E%3Cstop%20stop-color%3D%27rgba%28236%2C%20175%2C%204%2C%201%29%27%20offset%3D%270%25%27%3E%3C/stop%3E%3Cstop%20stop-color%3D%27rgba%28255%2C%20222.991%2C%20133.259%2C%201%29%27%20offset%3D%27100%25%27%3E%3C/stop%3E%3C/lin%65arGradient%3E%3C/defs%3E%3Cpath%20fill%3D%27url%28%23sw-gradient-0%29%27%20d%3D%27M0%2C66L120%2C67.8C240%2C70%2C480%2C73%2C720%2C66C960%2C59%2C1200%2C40%2C1440%2C31.2C1680%2C22%2C1920%2C22%2C2160%2C22C2400%2C22%2C2640%2C22%2C2880%2C18.3C3120%2C15%2C3360%2C7%2C3600%2C14.7C3840%2C22%2C4080%2C44%2C4320%2C51.3C4560%2C59%2C4800%2C51%2C5040%2C51.3C5280%2C51%2C5520%2C59%2C5760%2C66C6000%2C73%2C6240%2C81%2C6480%2C75.2C6720%2C70%2C6960%2C51%2C7200%2C51.3C7440%2C51%2C7680%2C70%2C7920%2C77C8160%2C84%2C8400%2C81%2C8640%2C69.7C8880%2C59%2C9120%2C40%2C9360%2C44C9600%2C48%2C9840%2C73%2C10080%2C77C10320%2C81%2C10560%2C62%2C10800%2C49.5C11040%2C37%2C11280%2C29%2C11520%2C34.8C11760%2C40%2C12000%2C59%2C12240%2C56.8C12480,55,12720,33,12960,31.2C13200,29,13440,48,13680,51.3C13920,55,14160,44,14400,49.5C14640,55,14880,77,15120,78.8C15360,81,15600,62,15840,58.7C16080,55,16320,66,16560,71.5C16800,77,17040,77,17160,77L17280,77L17280,110L17160,110C17040,110,16800,110,16560,110C16320,110,16080,110,15840,110C15600,110,15360,110,15120,110C14880,110,14640,110,14400,110C14160,110,13920,110,13680,110C13440,110,13200,110,12960,110C12720,110,12480,110,12240,110C12000,110,11760,110,11520,110C11280,110,11040,110,10800,110C10560,110,10320,110,10080,110C9840,110,9600,110,9360,110C9120,110,8880,110,8640,110C8400,110,8160,110,7920,110C7680,110,7440,110,7200,110C6960,110,6720,110,6480,110C6240,110,6000,110,5760,110C5520,110,5280,110,5040,110C4800,110,4560,110,4320,110C4080,110,3840,110,3600,110C3360,110,3120,110,2880,110C2640,110,2400,110,2160,110C1920,110,1680,110,1440,110C1200,110,960,110,720,110C480,110,240,110,120,110L0,110Z%27%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    z-index: -2;
  }



  
  .content-container {
    padding-left: clamp(4rem, -5.0471rem + 18.8235vw, 7rem);
    padding-right: 3rem;
    width: 100%;
    text-align: center;
    padding-top: 0.625rem;
    flex-wrap: nowrap;
  }
  
  .content {
    padding-left: 0rem;
  }
  
  .content h1 {
    font-size: 2.375rem;
    font-weight: bolder;
    margin-bottom: 1.25rem;
    font-family: 'inter-mandala-pilar', sans-serif;
    line-height: 1;
    width: 100%;
    text-align: left;
  }
  
  .highlight {
    color: #20570F;
  }
  
  .highlight2 {
    color: #20570F;
    font-weight: bold;
  }
  
  .adsmotto {
    font-size: 1rem;
    font-family: 'inter-mandala-pilar', sans-serif;
    margin-top: 0.625rem;
    margin-bottom: 1.25rem;
    width: 100%;
    margin-left: auto;
    padding-right: 40px;
    line-height: 1.2;
    text-align: left;
  }
  .buttons {
    margin-top: 1.25rem;
    margin-right: 0;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.625rem;
  }
  
  .buttons button {
    padding: 0.4375rem 1.0625rem;
    font-size: 1rem;
    font-family: 'inter-mandala-pilar', sans-serif;
    border: none;
    cursor: pointer;
    border-radius: 1.25rem;
    margin-right: 0;
    width: fit-content;
  }
  
  .consult {
    background-color: #20570F;
    color: white;
  }
  
  .consult:hover {
    background-color: #f0c753;
    color: white;
  }
  
  button.consult {
    display: inline-flex;
    align-items: center;
    gap: 0.125rem;
  }
  
  .consult dotlottie-player {
    width: 1.875rem;
    height: 1.875rem;
    margin-right: 0.125rem;
  }
  
  .learn {
    background-color: transparent;
    color: black;
    font-family: sans-serif;
  }
  .learn:hover {
    color: #ECAF04;
  }
  .stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 1.5625rem;
    margin-top: 1.5625rem;
    margin-bottom: 1.25rem;
    align-items: flex-start;
    text-align: center;
  }

  .stat h2 {
    font-size: 1.5rem;
    margin-bottom: 0rem;
    font-family: sans-serif;
    font-weight: bold;
  }
  .stat p {
    margin-top: 0rem;
    font-size: 0.8125rem;
    font-family: 'inter-mandala-pilar', sans-serif;
  }
  .licenses {
    display: flex;
    align-items: center;
    gap: 0.3125rem;
    font-size: 0.6875rem;
    margin-top: 0.3125rem;
  }
  
  .jump-tool-section {
      margin-top: 0.5rem;
      padding-top: 0.625rem;
      border-top: 0.0625rem solid rgba(0, 0, 0, 0.1);
  }
  
  .jump-tool-title {
      font-size: 0.8125rem;
      font-family: 'inter-mandala-pilar', sans-serif;
      font-weight: 600;
      color: #333;
      margin-bottom: 0.625rem;
      text-align: left;
  }
  
  .jump-tool-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      font-family: 'inter-mandala-pilar', sans-serif;
  }
  
  .jump-button {
      background-color: #AA4A44;
      color: white;
      padding: 0.3125rem 0.5rem;
      border: 0.125rem solid #8B3A36;
      border-radius: 0.25rem;
      font-size: 0.75rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow:
          inset 0 0 0.3125rem rgba(0, 0, 0, 0.2),
          0 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
      text-align: center;
      flex-shrink: 0;
      position: relative;
      overflow: hidden;
  
      background-image:
          linear-gradient(rgba(255,255,255,0.1) 0.0625rem, transparent 0.0625rem),
          linear-gradient(90deg, rgba(255,255,255,0.05) 0.0625rem, transparent 0.0625rem);
      background-size: 0.625rem 0.625rem;
  }
  
  .jump-button:hover {
      background-color: #B8524B;
      border-color: #9C403C;
      box-shadow:
          inset 0 0 0.5rem rgba(0, 0, 0, 0.3),
          0 0.375rem 0.75rem rgba(0, 0, 0, 0.3);
      transform: translateY(-0.125rem);
  }
  
  .jump-button:active {
      transform: translateY(0);
      box-shadow:
          inset 0 0 0.625rem rgba(0, 0, 0, 0.4),
          0 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
  }
  
  @keyframes brickPulse {
      0% { transform: scale(1); box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2); }
      50% { transform: scale(1.02); box-shadow: 0 0.375rem 0.75rem rgba(0, 0, 0, 0.3), 0 0 0.9375rem rgba(255, 100, 100, 0.5); }
      100% { transform: scale(1); box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2); }
  }
  
  
  .right-container {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      box-sizing: border-box;
  }
  
  .visual-stack-wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
      width: 31.25rem;
      justify-content: flex-start;
      overflow: hidden;
  }
  
  .image-stack {
      display: flex;
      flex-direction: column;
      position: relative;
      z-index: 1;
      gap: 0rem;
      padding-bottom: 1.25rem;
      width: 100%;
      align-items: center;
  }
  
  .image-stack .image-wrapper {
      width: 15.625rem;
      height: 8.75rem;
      border-radius: 0.9375rem;
      overflow: hidden;
      background-color: white;
      display: flex;
      justify-content: center;
      align-items: center;
      transform: translateY(0) translateX(0);
      box-shadow: inset 0 0 0 0.0625rem rgba(0, 0, 0, 0.1), 0 0.25rem 0.9375rem rgba(0, 0, 0, 0.1);
      box-shadow: 0 0.3125rem 2.5rem rgba(0, 0, 0, 0.2),
                  0 0 0 0.005rem rgba(0, 0, 0, 0.08);
    }
  
  .image-stack .image-wrapper:first-child {
      margin-top: 0;
      transform: translateY(1.25rem) translateX(-2.5rem);
  }
  
  .image-stack .image-wrapper:nth-child(2) {
      transform: translateY(0rem) translateX(3.75rem);
  }
  
  .image-stack .image-wrapper:last-child {
      transform: translateY(-0.9375rem) translateX(-1.25rem);
  }
  
  .image-stack img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
  
  }
  
  .image-stack img {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
}

/* ----------------------------------------------Hero Section----------------------------------------------- 



















/* ----------------------------------------------Quotes Section----------------------------------------------- */
@media (max-width: 768px) {
    #quote-section {
      background-color: black;
      color: white;
      padding: 2rem 3rem; 
      text-align: center;
      position: relative;
      overflow: hidden;
  }
  
  #quote-section::before {
      content: "";
      position: absolute;
      top: 0!important;
      left: 0;
      width: 100%;
      height: 4.375rem; 
      background-image: url("data:image/svg+xml;utf8,%3Csvg%20viewBox%3D%270%200%201440%20100%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20style%3D%27transform%3Arotate%28180deg%29%3B%27%3E%3Cdefs%3E%3Clin%65arGradient%20id%3D%27sw-gradient-0%27%20x1%3D%270%27%20x2%3D%270%27%20y1%3D%271%27%20y2%3D%270%27%3E%3Cstop%20stop-color%3D%27rgba%28236%2C%20175%2C%204%2C%201%29%27%20offset%3D%270%25%27%3E%3C/stop%3E%3Cstop%20stop-color%3D%27rgba%28236%2C%20175%2C%204%2C%201%29%27%20offset%3D%27100%25%27%3E%3C/stop%3E%3C/lin%65arGradient%3E%3C/defs%3E%3Cpath%20fill%3D%27url%28%23sw-gradient-0%29%27%20d%3D%27M0%2C20L120%2C28.3C240%2C37%2C480%2C53%2C720%2C51.7C960%2C50%2C1200%2C30%2C1440%2C23.3C1680%2C17%2C1920%2C23%2C2160%2C23.3C2400%2C23%2C2640%2C17%2C2880%2C16.7C3120%2C17%2C3360%2C23%2C3600%2C33.3C3840%2C43%2C4080%2C57%2C4320%2C65C4560%2C73%2C4800%2C77%2C5040%2C75C5280%2C73%2C5520%2C67%2C5760%2C58.3C6000%2C50%2C6240%2C40%2C6480%2C33.3C6720%2C27%2C6960%2C23%2C7200%2C30C7440%2C37%2C7680%2C53%2C7920%2C51.7C8160%2C50%2C8400%2C30%2C8640%2C30C8880%2C30%2C9120%2C50%2C9360%2C61.7C9600%2C73%2C9840%2C77%2C10080%2C73.3C10320%2C70%2C10560%2C60%2C10800%2C51.7C11040%2C43%2C11280%2C37%2C11520%2C41.7C11760%2C47%2C12000%2C63%2C12240%2C60C12480%2C57%2C12720%2C33%2C12960%2C20C13200%2C7%2C13440%2C3%2C13680%2C6.7C13920%2C10%2C14160%2C20%2C14400%2C23.3C14640%2C27%2C14880%2C23%2C15120%2C26.7C15360%2C30%2C15600%2C40%2C15840%2C36.7C16080%2C33%2C16320%2C17%2C16560%2C21.7C16800%2C27%2C17040%2C53%2C17160%2C66.7L17280%2C80L17280%2C100L17160%2C100C17040%2C100%2C16800%2C100%2C16560%2C100C16320%2C100%2C16080%2C100%2C15840%2C100C15600%2C100%2C15360%2C100%2C15120%2C100C14880%2C100%2C14640%2C100%2C14400%2C100C14160%2C100%2C13920%2C100%2C13680%2C100C13440%2C100%2C13200%2C100%2C12960%2C100C12720%2C100%2C12480%2C100%2C12240%2C100C12000%2C100%2C11760%2C100%2C11520%2C100C11280%2C100%2C11040%2C100%2C10800%2C100C10560%2C100%2C10320%2C100%2C10080%2C100C9840%2C100%2C9600%2C100%2C9360%2C100C9120%2C100%2C8880%2C100%2C8640%2C100C8400%2C100%2C8160%2C100%2C7920%2C100C7680%2C100%2C7440%2C100%2C7200%2C100C6960%2C100%2C6720%2C100%2C6480%2C100C6240%2C100%2C6000%2C100%2C5760%2C100C5520%2C100%2C5280%2C100%2C5040%2C100C4800%2C100%2C4560%2C100%2C4320%2C100C4080%2C100%2C3840%2C100%2C3600%2C100C3360%2C100%2C3120%2C100%2C2880%2C100C2640%2C100%2C2400%2C100%2C2160%2C100C1920%2C100%2C1680%2C100%2C1440%2C100C1200%2C100%2C960%2C100%2C720%2C100C480%2C100%2C240%2C100%2C120%2C100L0%2C100Z%27%3E%3C/path%3E%3C/svg%3E");
      background-size: cover;
      background-position: top;
      background-repeat: no-repeat;
  }
  
  #quote-section::after {
    background-color: transparent; 
  }

  #quote-section .quote-container {
  
      margin: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100%;
      flex-direction: column;
      gap: 1.25rem; 
      overflow: hidden;
      position: relative;
  }
  
  #quote-section .quote-text h2 {
      font-family: 'urbanist-mandala-pilar', sans-serif;
      font-size: 1.3rem;
      line-height: 1;
      font-weight: 300;
      margin: 0;
      padding-top: 1.875rem; 
      padding-bottom: 1.25rem; 
      color: inherit;
  }
  
  #quote-section .quote-text h2.animate-in {
      opacity: 1;
      transform: translateY(0);
  }
  
  #quote-section .quote-text .label {
      font-family: 'urbanist-mandala-pilar', sans-serif;
  
      font-size: 0.9375rem; 
  }
  
  .quote-button {
      background-color: black;
      color: white;
  
      padding: 0.625rem 1.25rem; 
      font-family: 'urbanist-mandala-pilar', sans-serif;
      font-size: 0.9rem;
      font-weight: bold;
      cursor: pointer;
      transition: color 0.3s ease;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      white-space: nowrap;
      position: relative;
      overflow: hidden;
  
      border: 0.0625rem solid black; 
  
      border-radius: 0.3125rem; 
  }
  
  .quote-button::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
  
      height: 0.125rem; 
      background-color: white;
      z-index: 1;
      transform: scaleX(0);
      transform-origin: center;
      transition: transform 0.3s ease-in-out;
  }
  
  .quote-button:hover {
      background-color: black;
      color: white;
      border-color: black;
  }
  
  .quote-button:hover::before,
  .quote-button:focus::before {
      transform: scaleX(1);
  }
  
  .quote-button .label {
      font-family: 'urbanist-mandala-pilar', sans-serif;
  
      font-size: 1rem; 
      color: inherit;
      position: relative;
      z-index: 2;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
    #quote-section {
      background-color: black;
      color: white;
  
      padding: 5rem 6.25rem; 
      text-align: center;
      position: relative;
      overflow: hidden;
  }
  
  #quote-section::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
  
      height: 4.375rem; 
      background-image: url("data:image/svg+xml;utf8,%3Csvg%20viewBox%3D%270%200%201440%20100%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20style%3D%27transform%3Arotate%28180deg%29%3B%27%3E%3Cdefs%3E%3Clin%65arGradient%20id%3D%27sw-gradient-0%27%20x1%3D%270%27%20x2%3D%270%27%20y1%3D%271%27%20y2%3D%270%27%3E%3Cstop%20stop-color%3D%27rgba%28236%2C%20175%2C%204%2C%201%29%27%20offset%3D%270%25%27%3E%3C/stop%3E%3Cstop%20stop-color%3D%27rgba%28236%2C%20175%2C%204%2C%201%29%27%20offset%3D%27100%25%27%3E%3C/stop%3E%3C/lin%65arGradient%3E%3C/defs%3E%3Cpath%20fill%3D%27url%28%23sw-gradient-0%29%27%20d%3D%27M0%2C20L120%2C28.3C240%2C37%2C480%2C53%2C720%2C51.7C960%2C50%2C1200%2C30%2C1440%2C23.3C1680%2C17%2C1920%2C23%2C2160%2C23.3C2400%2C23%2C2640%2C17%2C2880%2C16.7C3120%2C17%2C3360%2C23%2C3600%2C33.3C3840%2C43%2C4080%2C57%2C4320%2C65C4560%2C73%2C4800%2C77%2C5040%2C75C5280%2C73%2C5520%2C67%2C5760%2C58.3C6000%2C50%2C6240%2C40%2C6480%2C33.3C6720%2C27%2C6960%2C23%2C7200%2C30C7440%2C37%2C7680%2C53%2C7920%2C51.7C8160%2C50%2C8400%2C30%2C8640%2C30C8880%2C30%2C9120%2C50%2C9360%2C61.7C9600%2C73%2C9840%2C77%2C10080%2C73.3C10320%2C70%2C10560%2C60%2C10800%2C51.7C11040%2C43%2C11280%2C37%2C11520%2C41.7C11760%2C47%2C12000%2C63%2C12240%2C60C12480%2C57%2C12720%2C33%2C12960%2C20C13200%2C7%2C13440%2C3%2C13680%2C6.7C13920%2C10%2C14160%2C20%2C14400%2C23.3C14640%2C27%2C14880%2C23%2C15120%2C26.7C15360%2C30%2C15600%2C40%2C15840%2C36.7C16080%2C33%2C16320%2C17%2C16560%2C21.7C16800%2C27%2C17040%2C53%2C17160%2C66.7L17280%2C80L17280%2C100L17160%2C100C17040%2C100%2C16800%2C100%2C16560%2C100C16320%2C100%2C16080%2C100%2C15840%2C100C15600%2C100%2C15360%2C100%2C15120%2C100C14880%2C100%2C14640%2C100%2C14400%2C100C14160%2C100%2C13920%2C100%2C13680%2C100C13440%2C100%2C13200%2C100%2C12960%2C100C12720%2C100%2C12480%2C100%2C12240%2C100C12000%2C100%2C11760%2C100%2C11520%2C100C11280%2C100%2C11040%2C100%2C10800%2C100C10560%2C100%2C10320%2C100%2C10080%2C100C9840%2C100%2C9600%2C100%2C9360%2C100C9120%2C100%2C8880%2C100%2C8640%2C100C8400%2C100%2C8160%2C100%2C7920%2C100C7680%2C100%2C7440%2C100%2C7200%2C100C6960%2C100%2C6720%2C100%2C6480%2C100C6240%2C100%2C6000%2C100%2C5760%2C100C5520%2C100%2C5280%2C100%2C5040%2C100C4800%2C100%2C4560%2C100%2C4320%2C100C4080%2C100%2C3840%2C100%2C3600%2C100C3360%2C100%2C3120%2C100%2C2880%2C100C2640%2C100%2C2400%2C100%2C2160%2C100C1920%2C100%2C1680%2C100%2C1440%2C100C1200%2C100%2C960%2C100%2C720%2C100C480%2C100%2C240%2C100%2C120%2C100L0%2C100Z%27%3E%3C/path%3E%3C/svg%3E");
      background-size: cover;
      background-position: top;
      background-repeat: no-repeat;
  }
  
  #quote-section .quote-container {
  
      max-width: 42.5rem; 
      margin: 0 auto;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100%;
      flex-direction: column;
  
      gap: 1.25rem; 
  }
  
  #quote-section .quote-text h2 {
      font-family: 'urbanist-mandala-pilar', sans-serif;
      font-size: 2rem;
      line-height: 1;
      font-weight: 300;
      margin: 0;
  
      padding-top: 1.875rem; 
  
      padding-bottom: 1.25rem; 
      color: inherit;
  }
  
  #quote-section .quote-text h2.animate-in {
      opacity: 1;
      transform: translateY(0);
  }
  
  #quote-section .quote-text .label {
      font-family: 'urbanist-mandala-pilar', sans-serif;
  
      font-size: 0.9375rem; 
  }
  
  .quote-button {
      background-color: black;
      color: white;
      padding: 0.625rem 1.25rem; 
      font-family: 'urbanist-mandala-pilar', sans-serif;
      font-weight: bold;
      cursor: pointer;
      transition: color 0.3s ease;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      white-space: nowrap;
      position: relative;
      overflow: hidden;
      border: 0.0625rem solid black; 
      border-radius: 0.3125rem; 
  }
  
  .quote-button::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
  
      height: 0.125rem; 
      background-color: white;
      z-index: 1;
      transform: scaleX(0);
      transform-origin: center;
      transition: transform 0.3s ease-in-out;
  }
  
  .quote-button:hover {
      background-color: black;
      color: white;
      border-color: black;
  }
  
  .quote-button:hover::before,
  .quote-button:focus::before {
      transform: scaleX(1);
  }
  
  .quote-button .label {
      font-family: 'urbanist-mandala-pilar', sans-serif;
      font-size: 1.5rem; 
      color: inherit;
      position: relative;
      z-index: 2;
  }
}

@media (min-width: 1025px) {
    #quote-section {
      background-color: black;
      color: white;
      padding: 5rem 6.25rem; 
      text-align: center;
      position: relative;
      overflow: hidden;
  }
  
  #quote-section::before {
      content: "";
      font-size: 0;
      position: absolute;
      display: inline-block;
      top: 0!important;
      left: 0;
      width: 100%;
      height: 4.375rem; 
      background-image: url("data:image/svg+xml;utf8,%3Csvg%20viewBox%3D%270%200%201440%20100%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20style%3D%27transform%3Arotate%28180deg%29%3B%27%3E%3Cdefs%3E%3Clin%65arGradient%20id%3D%27sw-gradient-0%27%20x1%3D%270%27%20x2%3D%270%27%20y1%3D%271%27%20y2%3D%270%27%3E%3Cstop%20stop-color%3D%27rgba%28236%2C%20175%2C%204%2C%201%29%27%20offset%3D%270%25%27%3E%3C/stop%3E%3Cstop%20stop-color%3D%27rgba%28236%2C%20175%2C%204%2C%201%29%27%20offset%3D%27100%25%27%3E%3C/stop%3E%3C/lin%65arGradient%3E%3C/defs%3E%3Cpath%20fill%3D%27url%28%23sw-gradient-0%29%27%20d%3D%27M0%2C20L120%2C28.3C240%2C37%2C480%2C53%2C720%2C51.7C960%2C50%2C1200%2C30%2C1440%2C23.3C1680%2C17%2C1920%2C23%2C2160%2C23.3C2400%2C23%2C2640%2C17%2C2880%2C16.7C3120%2C17%2C3360%2C23%2C3600%2C33.3C3840%2C43%2C4080%2C57%2C4320%2C65C4560%2C73%2C4800%2C77%2C5040%2C75C5280%2C73%2C5520%2C67%2C5760%2C58.3C6000%2C50%2C6240%2C40%2C6480%2C33.3C6720%2C27%2C6960%2C23%2C7200%2C30C7440%2C37%2C7680%2C53%2C7920%2C51.7C8160%2C50%2C8400%2C30%2C8640%2C30C8880%2C30%2C9120%2C50%2C9360%2C61.7C9600%2C73%2C9840%2C77%2C10080%2C73.3C10320%2C70%2C10560%2C60%2C10800%2C51.7C11040%2C43%2C11280%2C37%2C11520%2C41.7C11760%2C47%2C12000%2C63%2C12240%2C60C12480%2C57%2C12720%2C33%2C12960%2C20C13200%2C7%2C13440%2C3%2C13680%2C6.7C13920%2C10%2C14160%2C20%2C14400%2C23.3C14640%2C27%2C14880%2C23%2C15120%2C26.7C15360%2C30%2C15600%2C40%2C15840%2C36.7C16080%2C33%2C16320%2C17%2C16560%2C21.7C16800%2C27%2C17040%2C53%2C17160%2C66.7L17280%2C80L17280%2C100L17160%2C100C17040%2C100%2C16800%2C100%2C16560%2C100C16320%2C100%2C16080%2C100%2C15840%2C100C15600%2C100%2C15360%2C100%2C15120%2C100C14880%2C100%2C14640%2C100%2C14400%2C100C14160%2C100%2C13920%2C100%2C13680%2C100C13440%2C100%2C13200%2C100%2C12960%2C100C12720%2C100%2C12480%2C100%2C12240%2C100C12000%2C100%2C11760%2C100%2C11520%2C100C11280%2C100%2C11040%2C100%2C10800%2C100C10560%2C100%2C10320%2C100%2C10080%2C100C9840%2C100%2C9600%2C100%2C9360%2C100C9120%2C100%2C8880%2C100%2C8640%2C100C8400%2C100%2C8160%2C100%2C7920%2C100C7680%2C100%2C7440%2C100%2C7200%2C100C6960%2C100%2C6720%2C100%2C6480%2C100C6240%2C100%2C6000%2C100%2C5760%2C100C5520%2C100%2C5280%2C100%2C5040%2C100C4800%2C100%2C4560%2C100%2C4320%2C100C4080%2C100%2C3840%2C100%2C3600%2C100C3360%2C100%2C3120%2C100%2C2880%2C100C2640%2C100%2C2400%2C100%2C2160%2C100C1920%2C100%2C1680%2C100%2C1440%2C100C1200%2C100%2C960%2C100%2C720%2C100C480%2C100%2C240%2C100%2C120%2C100L0%2C100Z%27%3E%3C/path%3E%3C/svg%3E");
      background-size: cover;
      background-position: top;
      background-repeat: no-repeat;
  }
  
  #quote-section::after {
    background-color: transparent; 
  }

  
  #quote-section .quote-container {
  
      max-width: 42.5rem; 
      margin: 0 auto;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100%;
      flex-direction: column;
  
      gap: 1.25rem; 
  }
  
  #quote-section .quote-text h2 {
      font-family: 'urbanist-mandala-pilar', sans-serif;
      font-size: 1.8rem;
      line-height: 1;
      font-weight: 300;
      margin: 0;
  
      padding-top: 1.875rem; 
  
      padding-bottom: 1.25rem; 
      color: inherit;
  }
  
  #quote-section .quote-text h2.animate-in {
      opacity: 1;
      transform: translateY(0);
  }
  
  #quote-section .quote-text .label {
      font-family: 'urbanist-mandala-pilar', sans-serif;
  
      font-size: 0.9375rem; 
  }
  
  .quote-button {
      background-color: black;
      color: white;
  
      padding: 0.625rem 1.25rem; 
      font-family: 'urbanist-mandala-pilar', sans-serif;
      font-size: 0.9rem;
      font-weight: bold;
      cursor: pointer;
      transition: color 0.3s ease;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      white-space: nowrap;
      position: relative;
      overflow: hidden;
  
      border: 0.0625rem solid black; 
  
      border-radius: 0.3125rem; 
  }
  
  .quote-button::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
  
      height: 0.125rem; 
      background-color: white;
      z-index: 1;
      transform: scaleX(0);
      transform-origin: center;
      transition: transform 0.3s ease-in-out;
  }
  
  .quote-button:hover {
      background-color: black;
      color: white;
      border-color: black;
  }
  
  .quote-button:hover::before,
  .quote-button:focus::before {
      transform: scaleX(1);
  }
  
  .quote-button .label {
      font-family: 'urbanist-mandala-pilar', sans-serif;
      font-size: 1rem; 
      color: inherit;
      position: relative;
      z-index: 2;
  }
}

/* ----------------------------------------------Quotes Section----------------------------------------------- */

























/* ----------------------------------------------testimoni Section----------------------------------------------- */
@media (max-width: 768px) {
    #testimoni-section {
      color: white;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 2rem;
      padding: 0rem 3rem;
      background-color: black;
      position: relative;
      overflow: hidden;
      align-items: flex-start; 
  
  }
  
  #testimoni-section::before {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 130px; 
      background-image: url("data:image/svg+xml;utf8,%3Csvg%20id%3D%22wave%22%20style%3D%22transform%3Arotate%280deg%29%3B%20transition%3A%200.3s%22%20viewBox%3D%220%200%201440%20140%22%20version%3D%221.1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cdefs%3E%3ClinearGradient%20id%3D%22sw-gradient-0%22%20x1%3D%220%22%20x2%3D%220%22%20y1%3D%221%22%20y2%3D%220%22%3E%3Cstop%20stop-color%3D%22rgba%28236%2C%20175%2C%204%2C%201%29%22%20offset%3D%220%25%22%3E%3C/stop%3E%3Cstop%20stop-color%3D%22rgba%280%2C%200%2C%200%2C%201%29%22%20offset%3D%22100%25%22%3E%3C/stop%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath%20style%3D%22transform%3Atranslate%280%2C%200px%29%3B%20opacity%3A1%22%20fill%3D%22url%28%23sw-gradient-0%29%22%20d%3D%22M0%2C28L80%2C39.7C160%2C51%2C320%2C75%2C480%2C77C640%2C79%2C800%2C61%2C960%2C46.7C1120%2C33%2C1280%2C23%2C1440%2C16.3C1600%2C9%2C1760%2C5%2C1920%2C2.3C2080%2C0%2C2240%2C0%2C2400%2C14C2560%2C28%2C2720%2C56%2C2880%2C63C3040%2C70%2C3200%2C56%2C3360%2C60.7C3520%2C65%2C3680%2C89%2C3840%2C84C4000%2C79%2C4160%2C47%2C4320%2C32.7C4480%2C19%2C4640%2C23%2C4800%2C32.7C4960%2C42%2C5120%2C56%2C5280%2C67.7C5440%2C79%2C5600%2C89%2C5760%2C88.7C5920%2C89%2C6080%2C79%2C6240%2C67.7C6400%2C56%2C6560%2C42%2C6720%2C51.3C6880%2C61%2C7040%2C93%2C7200%2C100.3C7360%2C107%2C7520%2C89%2C7680%2C72.3C7840%2C56%2C8000%2C42%2C8160%2C30.3C8320%2C19%2C8480%2C9%2C8640%2C7C8800%2C5%2C8960%2C9%2C9120%2C25.7C9280%2C42%2C9440%2C70%2C9600%2C70C9760%2C70%2C9920%2C42%2C10080%2C44.3C10240%2C47%2C10400%2C79%2C10560%2C91C10720%2C103%2C10880%2C93%2C11040%2C88.7C11200%2C84%2C11360%2C84%2C11440%2C84L11520%2C84L11520%2C140L11440%2C140C11360%2C140%2C11200%2C140%2C11040%2C140C10880%2C140%2C10720%2C140%2C10560%2C140C10400%2C140%2C10240%2C140%2C10080%2C140C9920%2C140%2C9760%2C140%2C9600%2C140C9440%2C140%2C9280%2C140%2C9120%2C140C8960%2C140%2C8800%2C140%2C8640%2C140C8480%2C140%2C8320%2C140%2C8160%2C140C8000%2C140%2C7840%2C140%2C7680%2C140C7520%2C140%2C7360%2C140%2C7200%2C140C7040%2C140%2C6880%2C140%2C6720%2C140C6560%2C140%2C6400%2C140%2C6240%2C140C6080%2C140%2C5920%2C140%2C5760%2C140C5600%2C140%2C5440%2C140%2C5280%2C140C5120%2C140%2C4960%2C140%2C4800%2C140C4640%2C140%2C4480%2C140%2C4320%2C140C4160%2C140%2C4000%2C140%2C3840%2C140C3680%2C140%2C3520%2C140%2C3360%2C140C3200%2C140%2C3040%2C140%2C2880%2C140C2720%2C140%2C2560%2C140%2C2400%2C140C2240%2C140%2C2080%2C140%2C1920%2C140C1760%2C140%2C1600%2C140%2C1440%2C140C1280%2C140%2C1120%2C140%2C960%2C140C800%2C140%2C640%2C140%2C480%2C140C320%2C140%2C160%2C140%2C80%2C140L0%2C140Z%22%3E%3C/path%3E%3C/svg%3E");
      background-size: cover;
      background-position: bottom;
      background-repeat: no-repeat;
  }
  
  .testimoni-cta-container {
      background-color: transparent;
      border-radius: 16px;
      justify-content: center; 
      align-items: center; 
      transition: all 0.3s ease;
      box-sizing: border-box;
      overflow: hidden;
  }
  
  .testimoni-cta-container img {
      width: 100%; 
      height: auto;    
      display: block;  
      border-color: black;
      border-radius: 16px; 
  
  }
  
  .testimoni-text-container {
      background-color: transparent;
      justify-content: center;
      border-radius: 16px;
      padding-bottom: 8rem;
      padding-top: 1rem;
      display: flex;
      flex-direction: column; 
      align-items: flex-start;
      transition: all 0.3s ease;
      box-sizing: border-box;
  }
  
  .testimonial-text {
      font-family: 'inter-mandala-pilar', sans-serif;
      font-size: 0.8rem;
      line-height: 1.2; 
      font-weight: 300;
      margin: 0;
      padding-top: 11px;
      color: white;
      font-style: italic;
      display: block;
      white-space: normal; 
      text-align: left;
  }
  
  .testimonial-text span {
      display: block;
      margin-top: 10px;
      font-size: 16px;
      text-align: left;
      font-family: 'urbanist-madala-pilar', sans-serif;
      color: white; 
  }
  
  .testimoni-title {
    font-family: 'urbanist-mandala-pilar', sans-serif;
      font-size: 1.5rem;
      color: white;
      font-weight: 700;
  }
  
  .testimoni-author {
      font-family: 'urbanist-mandala-pilar', sans-serif;
  }
  
  .testimoni-author::before {
      content: ''; 
      width: 50px; 
      height: 2px; 
      background-color: #20570F; 
      display: block;
  }
  
  .testimonial-text .comma,
  .testimonial-text .comma span {
  
      display: inline; 
      white-space: normal;
      color: #20570F; 
      font-family: 'urbanist-mandala-pilar', sans-serif; 
      font-size: 2rem; 
      font-weight: bold; 
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
    #testimoni-section {
      padding: 10px 0;
      color: white;
      padding-bottom: 100px;
      display: flex;
      justify-content: center;
      gap: 50px;
      flex-wrap: wrap;
      background-color: black;
      position: relative;
      overflow: hidden;
  
      align-items: flex-start; 
  
  }
  
  #testimoni-section::before {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 130px; 
      background-image: url("data:image/svg+xml;utf8,%3Csvg%20id%3D%22wave%22%20style%3D%22transform%3Arotate%280deg%29%3B%20transition%3A%200.3s%22%20viewBox%3D%220%200%201440%20140%22%20version%3D%221.1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cdefs%3E%3ClinearGradient%20id%3D%22sw-gradient-0%22%20x1%3D%220%22%20x2%3D%220%22%20y1%3D%221%22%20y2%3D%220%22%3E%3Cstop%20stop-color%3D%22rgba%28236%2C%20175%2C%204%2C%201%29%22%20offset%3D%220%25%22%3E%3C/stop%3E%3Cstop%20stop-color%3D%22rgba%280%2C%200%2C%200%2C%201%29%22%20offset%3D%22100%25%22%3E%3C/stop%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath%20style%3D%22transform%3Atranslate%280%2C%200px%29%3B%20opacity%3A1%22%20fill%3D%22url%28%23sw-gradient-0%29%22%20d%3D%22M0%2C28L80%2C39.7C160%2C51%2C320%2C75%2C480%2C77C640%2C79%2C800%2C61%2C960%2C46.7C1120%2C33%2C1280%2C23%2C1440%2C16.3C1600%2C9%2C1760%2C5%2C1920%2C2.3C2080%2C0%2C2240%2C0%2C2400%2C14C2560%2C28%2C2720%2C56%2C2880%2C63C3040%2C70%2C3200%2C56%2C3360%2C60.7C3520%2C65%2C3680%2C89%2C3840%2C84C4000%2C79%2C4160%2C47%2C4320%2C32.7C4480%2C19%2C4640%2C23%2C4800%2C32.7C4960%2C42%2C5120%2C56%2C5280%2C67.7C5440%2C79%2C5600%2C89%2C5760%2C88.7C5920%2C89%2C6080%2C79%2C6240%2C67.7C6400%2C56%2C6560%2C42%2C6720%2C51.3C6880%2C61%2C7040%2C93%2C7200%2C100.3C7360%2C107%2C7520%2C89%2C7680%2C72.3C7840%2C56%2C8000%2C42%2C8160%2C30.3C8320%2C19%2C8480%2C9%2C8640%2C7C8800%2C5%2C8960%2C9%2C9120%2C25.7C9280%2C42%2C9440%2C70%2C9600%2C70C9760%2C70%2C9920%2C42%2C10080%2C44.3C10240%2C47%2C10400%2C79%2C10560%2C91C10720%2C103%2C10880%2C93%2C11040%2C88.7C11200%2C84%2C11360%2C84%2C11440%2C84L11520%2C84L11520%2C140L11440%2C140C11360%2C140%2C11200%2C140%2C11040%2C140C10880%2C140%2C10720%2C140%2C10560%2C140C10400%2C140%2C10240%2C140%2C10080%2C140C9920%2C140%2C9760%2C140%2C9600%2C140C9440%2C140%2C9280%2C140%2C9120%2C140C8960%2C140%2C8800%2C140%2C8640%2C140C8480%2C140%2C8320%2C140%2C8160%2C140C8000%2C140%2C7840%2C140%2C7680%2C140C7520%2C140%2C7360%2C140%2C7200%2C140C7040%2C140%2C6880%2C140%2C6720%2C140C6560%2C140%2C6400%2C140%2C6240%2C140C6080%2C140%2C5920%2C140%2C5760%2C140C5600%2C140%2C5440%2C140%2C5280%2C140C5120%2C140%2C4960%2C140%2C4800%2C140C4640%2C140%2C4480%2C140%2C4320%2C140C4160%2C140%2C4000%2C140%2C3840%2C140C3680%2C140%2C3520%2C140%2C3360%2C140C3200%2C140%2C3040%2C140%2C2880%2C140C2720%2C140%2C2560%2C140%2C2400%2C140C2240%2C140%2C2080%2C140%2C1920%2C140C1760%2C140%2C1600%2C140%2C1440%2C140C1280%2C140%2C1120%2C140%2C960%2C140C800%2C140%2C640%2C140%2C480%2C140C320%2C140%2C160%2C140%2C80%2C140L0%2C140Z%22%3E%3C/path%3E%3C/svg%3E");
      background-size: cover;
      background-position: bottom;
      background-repeat: no-repeat;
  }
  
  .testimoni-cta-container {
      background-color: transparent;
      border-radius: 16px;
  
      width: 350px; 
      height: 430px;
      display: flex;
      justify-content: center; 
      align-items: center; 
      gap: 30px; 
      transition: all 0.3s ease;
      box-sizing: border-box;
  
      overflow: hidden;
  }
  
  .testimoni-cta-container img {
      width: 100%; 
      height: auto;    
      display: block;  
      border-color: black;
      border-radius: 16px; 
  
  }
  
  .testimoni-text-container {
      background-color: transparent;
      border-radius: 16px;
      padding-bottom: 40px;
      padding-left: 0;
      padding-top: 20px;
      width: 500px; 
      display: flex;
      flex-direction: column; 
      align-items: flex-start;
      gap: 15px; 
      transition: all 0.3s ease;
      box-sizing: border-box;
  }
  
  .testimonial-text {
      font-family: 'inter-mandala-pilar', sans-serif;
      font-size: 1.25rem;
      line-height: 1.3; 
      font-weight: 300;
      margin: 0;
      padding-top: 11px;
      color: white;
      font-style: italic;
      display: block;
      white-space: normal; 
      word-wrap: break-word;
  }
  
  .testimonial-text span {
      display: block;
      margin-top: 10px;
      font-size: 16px;
      text-align: left;
      font-family: 'urbanist-madala-pilar', sans-serif;
      color: white; 
  }
  
  .testimoni-title {
    font-family: 'urbanist-mandala-pilar', sans-serif;
      font-size: 1.6rem;
      padding-top: 30px;
      color: white;
      font-weight: 700;
  }
  
  .testimoni-author {
      font-family: 'urbanist-mandala-pilar', sans-serif;
  }
  
  .testimoni-author::before {
      content: ''; 
      width: 50px; 
      height: 2px; 
      background-color: #20570F; 
      display: block;
  }
  
  .testimonial-text .comma,
  .testimonial-text .comma span {
  
      display: inline; 
      white-space: normal;
      color: #20570F; 
      font-family: 'urbanist-mandala-pilar', sans-serif; 
      font-size: 2rem; 
      font-weight: bold; 
  }
}

@media (min-width: 1025px) {
    #testimoni-section {
      padding: 20px 70px;
      color: white;
      padding-bottom: 100px;
      display: flex;
      justify-content: center;
      gap: 50px;
      flex-wrap: wrap;
      background-color: black;
      position: relative;
      overflow: hidden;
  
      align-items: flex-start; 
  
  }
  
  #testimoni-section::before {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 130px; 
      background-image: url("data:image/svg+xml;utf8,%3Csvg%20id%3D%22wave%22%20style%3D%22transform%3Arotate%280deg%29%3B%20transition%3A%200.3s%22%20viewBox%3D%220%200%201440%20140%22%20version%3D%221.1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cdefs%3E%3ClinearGradient%20id%3D%22sw-gradient-0%22%20x1%3D%220%22%20x2%3D%220%22%20y1%3D%221%22%20y2%3D%220%22%3E%3Cstop%20stop-color%3D%22rgba%28236%2C%20175%2C%204%2C%201%29%22%20offset%3D%220%25%22%3E%3C/stop%3E%3Cstop%20stop-color%3D%22rgba%280%2C%200%2C%200%2C%201%29%22%20offset%3D%22100%25%22%3E%3C/stop%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath%20style%3D%22transform%3Atranslate%280%2C%200px%29%3B%20opacity%3A1%22%20fill%3D%22url%28%23sw-gradient-0%29%22%20d%3D%22M0%2C28L80%2C39.7C160%2C51%2C320%2C75%2C480%2C77C640%2C79%2C800%2C61%2C960%2C46.7C1120%2C33%2C1280%2C23%2C1440%2C16.3C1600%2C9%2C1760%2C5%2C1920%2C2.3C2080%2C0%2C2240%2C0%2C2400%2C14C2560%2C28%2C2720%2C56%2C2880%2C63C3040%2C70%2C3200%2C56%2C3360%2C60.7C3520%2C65%2C3680%2C89%2C3840%2C84C4000%2C79%2C4160%2C47%2C4320%2C32.7C4480%2C19%2C4640%2C23%2C4800%2C32.7C4960%2C42%2C5120%2C56%2C5280%2C67.7C5440%2C79%2C5600%2C89%2C5760%2C88.7C5920%2C89%2C6080%2C79%2C6240%2C67.7C6400%2C56%2C6560%2C42%2C6720%2C51.3C6880%2C61%2C7040%2C93%2C7200%2C100.3C7360%2C107%2C7520%2C89%2C7680%2C72.3C7840%2C56%2C8000%2C42%2C8160%2C30.3C8320%2C19%2C8480%2C9%2C8640%2C7C8800%2C5%2C8960%2C9%2C9120%2C25.7C9280%2C42%2C9440%2C70%2C9600%2C70C9760%2C70%2C9920%2C42%2C10080%2C44.3C10240%2C47%2C10400%2C79%2C10560%2C91C10720%2C103%2C10880%2C93%2C11040%2C88.7C11200%2C84%2C11360%2C84%2C11440%2C84L11520%2C84L11520%2C140L11440%2C140C11360%2C140%2C11200%2C140%2C11040%2C140C10880%2C140%2C10720%2C140%2C10560%2C140C10400%2C140%2C10240%2C140%2C10080%2C140C9920%2C140%2C9760%2C140%2C9600%2C140C9440%2C140%2C9280%2C140%2C9120%2C140C8960%2C140%2C8800%2C140%2C8640%2C140C8480%2C140%2C8320%2C140%2C8160%2C140C8000%2C140%2C7840%2C140%2C7680%2C140C7520%2C140%2C7360%2C140%2C7200%2C140C7040%2C140%2C6880%2C140%2C6720%2C140C6560%2C140%2C6400%2C140%2C6240%2C140C6080%2C140%2C5920%2C140%2C5760%2C140C5600%2C140%2C5440%2C140%2C5280%2C140C5120%2C140%2C4960%2C140%2C4800%2C140C4640%2C140%2C4480%2C140%2C4320%2C140C4160%2C140%2C4000%2C140%2C3840%2C140C3680%2C140%2C3520%2C140%2C3360%2C140C3200%2C140%2C3040%2C140%2C2880%2C140C2720%2C140%2C2560%2C140%2C2400%2C140C2240%2C140%2C2080%2C140%2C1920%2C140C1760%2C140%2C1600%2C140%2C1440%2C140C1280%2C140%2C1120%2C140%2C960%2C140C800%2C140%2C640%2C140%2C480%2C140C320%2C140%2C160%2C140%2C80%2C140L0%2C140Z%22%3E%3C/path%3E%3C/svg%3E");
      background-size: cover;
      background-position: bottom;
      background-repeat: no-repeat;
  }
  
  .testimoni-cta-container {
      background-color: transparent;
      border-radius: 16px;
  
      width: 350px; 
      height: 430px;
      display: flex;
      justify-content: center; 
      align-items: center; 
      gap: 30px; 
      transition: all 0.3s ease;
      box-sizing: border-box;
  
      overflow: hidden;
  }
  
  .testimoni-cta-container img {
      width: 100%; 
      height: auto;    
      display: block;  
      border-color: black;
      border-radius: 16px; 
  
  }
  
  .testimoni-text-container {
      background-color: transparent;
      border-radius: 16px;
      padding-bottom: 40px;
      padding-left: 0;
      padding-top: 20px;
      width: 500px; 
      display: flex;
      flex-direction: column; 
      align-items: flex-start;
      gap: 15px; 
      transition: all 0.3s ease;
      box-sizing: border-box;
  }
  
  .testimonial-text {
      font-family: 'inter-mandala-pilar', sans-serif;
      font-size: 16px;
      line-height: 1.3; 
      font-weight: 300;
      margin: 0;
      padding-top: 11px;
      color: white;
      font-style: italic;
      display: block;
      white-space: normal; 
      word-wrap: break-word;
  }
  
  .testimonial-text span {
      display: block;
      margin-top: 10px;
      font-size: 16px;
      text-align: left;
      font-family: 'urbanist-madala-pilar', sans-serif;
      color: white; 
  }
  
  .testimoni-title {
    font-family: 'urbanist-mandala-pilar', sans-serif;
      font-size: 30px;
      padding-top: 30px;
      color: white;
      font-weight: 700;
  }
  
  .testimoni-author {
      font-family: 'urbanist-mandala-pilar', sans-serif;
  }
  
  .testimoni-author::before {
      content: ''; 
      width: 50px; 
      height: 2px; 
      background-color: #20570F; 
      display: block;
  }
  
  .testimonial-text .comma,
  .testimonial-text .comma span {
  
      display: inline; 
      white-space: normal;
      color: #20570F; 
      font-family: 'urbanist-mandala-pilar', sans-serif; 
      font-size: 2rem; 
      font-weight: bold; 
  }
}
/* ----------------------------------------------Testimonial Section----------------------------------------------- */





















/* -----------------------------------------Product & Service Section----------------------------------------------- */
.service-card {
    position: relative;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff; 
}

.service-card[data-bg-image] {
    background-image: var(--bg-image);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    opacity: 0.15; 
    border-radius: 15px; 
    z-index: 1;
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 20px; 
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    height: 100%; 
}

.card-title-button {
    display: inline-block;
    background-color: black;
    opacity: 0.9;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);

    margin-top: auto; 
}

.card-title-button:hover {
    background-color: #f0c753;
    transform: translateY(-2px);
}

.card-title {
    font-weight: 800;
    margin: 0;
    color: inherit;
    font-family: 'inter-mandala-pilar', sans-serif;
    line-height: 1.2;
}

@media (max-width: 768px) {
 #product-services {
        padding: 50px 0px; 
        flex-direction: column;
        align-items: center;
    }

  .main-layout-container {
        flex-wrap: wrap; 
        gap: 20px; 
        width: 100%;
        justify-content: center;
        align-items: center;
    }

  .left-content-area {
        min-width: unset; 
        max-width: 100%; 
        padding: 0 10px; 
        text-align: center;
        order: unset; 
    }

  .service-title {

      font-size: 1.2rem;
      font-weight: 700;
      color: #333;
      margin-bottom: 20px;
      line-height: 1;
      font-family: 'Segoe UI', sans-serif;
  }

  .service-description {

      font-size: 0.875rem;
      color: black;
      line-height: 1.2;
      margin-bottom: -14px; 
      font-family: 'inter-mandala-pilar', sans-serif;
  }

  .service-button-container {
      position: relative;
      display: inline-block;
  }

  .service-button-container {
      position: relative;
      display: inline-block;
  }

  .service-tag-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 5px;
      align-self: center;
      align-items: center;
      justify-content: center;
      padding-top: 30px;
  }

  .service-blend-button {
      background-color: #fff;
      color: #000;
      padding: 10px 15px;
      font-size: 0.9rem;
      border-radius: 99px;
      cursor: pointer;
      position: relative;
      z-index: 1;

    transition: color 0.3s ease; 

    border: 1px solid transparent; 
  }

  .service-blend-button::before {
    content: ''; 
    position: absolute;
    bottom: 0; 
    left: 0;
    width: 100%; 
    height: 2px; 
    background-color: black; 
    z-index: 1; 
    transform: scaleX(0); 
    transform-origin: center; 
    transition: transform 0.3s ease-in-out; 
}

.service-blend-button:hover {
    background-color: #fff; 
    color: black; 

}

.service-blend-button:hover::before,
.service-blend-button:focus::before { 
    transform: scaleX(1); 
}

  .service-tag-tooltip {
      visibility: hidden;
      opacity: 0;
      background-color: #333;
      color: #fff;
      text-align: center;
      border-radius: 6px;
      padding: 10px;
      position: absolute;
      z-index: 10;
      bottom: calc(100% + 10px);
      left: 50%;
      transform: translateX(-50%);
      white-space: normal;
      width: 250px; 
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
      transition: opacity 0.3s ease, visibility 0.3s ease;
      font-size: clamp(0.6875rem, 1vw, 0.75rem);
      line-height: 1;
      pointer-events: none;
  }

  .service-button-container:hover .service-tag-tooltip {
      visibility: visible;
      opacity: 1;
  }

  .service-tag-tooltip::after {
      content: "";
      position: absolute;
      top: 100%;
      left: 50%;
      margin-left: -5px;
      border-width: 5px;
      border-style: solid;
      border-color: #333 transparent transparent transparent;
  }

    .right-cards-area {
        display: flex;
        flex-wrap: nowrap; 
        overflow-x: auto; 
        -webkit-overflow-scrolling: touch; 
        scroll-snap-type: x mandatory; 
        justify-content: flex-start; 
        align-items: stretch;
        gap: 15px;
        padding: 0 20px; 
        width: 100%;
        margin-top: 20px;
        min-height: 200px; 
    }

    .right-cards-area::-webkit-scrollbar {
        display: none; 
    }

    .service-card {

        background-color: transparent; 
        width: 85vw; 
        max-width: 280px; 
        min-width: 230px; 
        flex-shrink: 0; 
        scroll-snap-align: center; 
        height: 200px; 
        padding: 15px; 

        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        color: #fff; 
    }

    .card-content {
        padding: 15px; 
        justify-content: flex-end; 
    }

    .card-title-button {
        padding: 8px 15px; 
        font-size: clamp(0.9rem, 3vw, 1.1rem); 
        margin-top: auto; 
        margin-bottom: 0; 
    }

    .card-title {
        font-size: inherit; 
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    #product-services {
      padding: 30px 0px; 
      background-color: white;
      display: flex;
      flex-direction: column;
      align-items: center;
  }

  .main-layout-container {
      display: flex;
      flex-wrap: wrap; 
      gap: 10px; 
      width: 100%; 
      align-items: center; 
      justify-content: center; 
  }

  .left-content-area {
    min-width: unset; 
        max-width: 100%; 
        padding: 0 20px; 
        text-align: center;
        order: unset;
    }

  .service-title {

      font-size: clamp(1.5rem, 4vw, 2.25rem);
      font-weight: 700;
      color: #333;
      margin-bottom: 20px;
      line-height: 1;
      font-family: 'Segoe UI', sans-serif;
  }

  .service-description {

      font-size: 1.2rem;
      color: black;
      line-height: 1.2;
      margin-bottom: -14px; 
      font-family: 'inter-mandala-pilar', sans-serif;
  }

  .service-button-container {
      position: relative;
      display: inline-block;
  }

  .service-button-container {
      position: relative;
      display: inline-block;
  }

  .service-tag-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 5px;
      align-self: center;
      align-items: center;
      justify-content: center;
      padding-top: 30px;
  }

  .service-blend-button {
      background-color: #fff;
      color: #000;
      padding: 10px 15px;
      font-size: 1.2rem;
      border-radius: 99px;
      cursor: pointer;
      position: relative;
      z-index: 1;

    transition: color 0.3s ease; 

    border: 1px solid transparent; 
  }

  .service-blend-button::before {
    content: ''; 
    position: absolute;
    bottom: 0; 
    left: 0;
    width: 100%; 
    height: 2px; 
    background-color: black; 
    z-index: 1; 
    transform: scaleX(0); 
    transform-origin: center; 
    transition: transform 0.3s ease-in-out; 
}

.service-blend-button:hover {
    background-color: #fff; 
    color: black; 

}

.service-blend-button:hover::before,
.service-blend-button:focus::before { 
    transform: scaleX(1); 
}

  .service-tag-tooltip {
      visibility: hidden;
      opacity: 0;
      background-color: #333;
      color: #fff;
      text-align: center;
      border-radius: 6px;
      padding: 10px;
      position: absolute;
      z-index: 10;
      bottom: calc(100% + 10px);
      left: 50%;
      transform: translateX(-50%);
      white-space: normal;
      width: 250px; 
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
      transition: opacity 0.3s ease, visibility 0.3s ease;
      font-size: clamp(0.6875rem, 1vw, 0.75rem);
      line-height: 1;
      pointer-events: none;
  }

  .service-button-container:hover .service-tag-tooltip {
      visibility: visible;
      opacity: 1;
  }

  .service-tag-tooltip::after {
      content: "";
      position: absolute;
      top: 100%;
      left: 50%;
      margin-left: -5px;
      border-width: 5px;
      border-style: solid;
      border-color: #333 transparent transparent transparent;
  }

  .right-cards-area {
      min-width: 400px; 
      display: flex;
      flex-wrap: nowrap; 
      overflow-x: auto; 
      -webkit-overflow-scrolling: touch; 
      scroll-snap-type: x mandatory;
      justify-content: flex-start;
      align-items: stretch;
      gap: 15px;
      padding: 0px 25px;
  }

    .right-cards-area::-webkit-scrollbar {
        display: none; 
    }

  .service-card {
      background-color: transparent;
      border-radius: 15px;
      padding: 20px;
      text-align: center;
      max-width: 350px; 
      min-width: 280px; 
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
      height: 300px; 

      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      color: #fff;
  }

    .card-content {
        padding: 15px; 
        justify-content: flex-end; 
    }

      .card-title-button {
        padding: 8px 10px; 
        font-size: clamp(0.9rem, 3vw, 1.1rem); 
        margin-top: auto; 
        margin-bottom: 0; 
    }

        .card-title {
        font-size: inherit; 
    }
}

@media (min-width: 1025px) {
    #product-services {
      padding: 80px 80px; 
      background-color: white;
      display: flex;
      flex-direction: column;
      align-items: center;
  }

  .main-layout-container {
      display: flex;
      flex-wrap: wrap; 
      gap: 30px; 
      width: 100%; 
      box-sizing: border-box;
      align-items: center; 
      justify-content: center; 
  }

  .left-content-area {
      flex: 1; 
      min-width: 400px; 
      max-width: 500px; 
      padding: 0px;
      box-sizing: border-box;
      text-align: center; 
      order: 2; 
  }

  .service-title {

      font-size: clamp(1.5rem, 4vw, 2.25rem);
      font-weight: 800;
      color: #333;
      margin-bottom: 20px;
      line-height: 1;
      font-family: 'inter-mandala-pilar', sans-serif;
  }

  .service-description {

      font-size: clamp(0.7rem, 1.5vw, 1rem);
      color: black;
      line-height: 1.2;
      margin-bottom: -20px; 
      font-family: 'inter-mandala-pilar', sans-serif;
  }

  .service-button-container {
      position: relative;
      display: inline-block;
  }

  .service-tag-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 5px;
      align-self: center;
      align-items: center;
      justify-content: center;
      padding-top: 30px;
  }

  .service-blend-button {
      background-color: #fff;
      color: #000;
      padding: 10px 15px;
      font-size: clamp(0.7rem, 1.2vw, 0.875rem);
      border-radius: 99px;
      cursor: pointer;
      position: relative;
      z-index: 1;

    transition: color 0.3s ease; 

    border: 1px solid transparent; 
  }

  .service-blend-button::before {
    content: ''; 
    position: absolute;
    bottom: 0; 
    left: 0;
    width: 100%; 
    height: 2px; 
    background-color: black; 
    z-index: 1; 
    transform: scaleX(0); 
    transform-origin: center; 
    transition: transform 0.3s ease-in-out; 
}

.service-blend-button:hover {
    background-color: #fff; 
    color: black; 

}

.service-blend-button:hover::before,
.service-blend-button:focus::before { 
    transform: scaleX(1); 
}

  .service-tag-tooltip {
      visibility: hidden;
      opacity: 0;
      background-color: white;
      color: #333;
      text-align: center;
      border-radius: 6px;
      padding: 10px;
      position: absolute;
      z-index: 10;
      bottom: calc(100% + 10px);
      left: 50%;
      transform: translateX(-50%);
      white-space: normal;
      width: 250px; 
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
      transition: opacity 0.3s ease, visibility 0.3s ease;

      font-size: clamp(0.6875rem, 1vw, 0.75rem);
      line-height: 1;
      pointer-events: none;
  }

  .service-button-container:hover .service-tag-tooltip {
      visibility: visible;
      opacity: 1;
  }

  .service-tag-tooltip::after {
      content: "";
      position: absolute;
      top: 100%;
      left: 50%;
      margin-left: -5px;
      border-width: 5px;
      border-style: solid;
      border-color: #333 transparent transparent transparent;
  }

.right-cards-area {
    flex: 2;
    min-width: 400px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px; 
    padding: 20px;
    box-sizing: border-box;
}

.service-card {
    position: relative; 
    background-color: #fff; 
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden; 
    max-width: 280px; 
    min-width: 250px; 
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
    height: 320px;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff; 
}

.service-card[data-bg-image] {
    background-image: var(--bg-image);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    opacity: 0.15;
    border-radius: 15px; 
    z-index: 1;
}

.card-content {
    position: relative;
    z-index: 2; 
    padding: 20px; 
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.card-title-button {
    display: inline-block;
    background-color: black;
    opacity: 0.9;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 15px; 
    margin-top: auto; 
}

.card-title-button:hover {
    background-color: #f0c753; 
    transform: translateY(-2px); 
}

.card-title {
    font-size: 1rem; 
    font-weight: 800;
    margin: 0; 
    color: inherit; 
    font-family: 'inter-mandala-pilar', sans-serif;
    line-height: 1.2;
}

}
/* ----------------------------------------------Product Service Section----------------------------------------------- */




























  
/* ----------------------------------------------CSS Keunggulan Kami ----------------------------------------------- */
@media (max-width: 768px) {
    @font-face {
    font-family: 'mandala-pilar-inter';
    src: url(../assets/font/Inter/Inter-Italic-VariableFont_opsz\,wght.ttf);
  }
  
  #keunggulan-kami {
    padding: 15px 20px; 
    background-color: #F5F5F5;
  }
  
  #keunggulan-kami .max-w-7xl {
    margin-left: 0;
    margin-right: 0;
    display: flex;
    flex-direction: column; 
    gap: 3rem; 
    align-items: center; 
  }
  
  #keunggulan-kami .text-container {
    flex: 1;
  
    text-align: center; 
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  #keunggulan-kami .text-container h2 {
  
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.25rem; 
    line-height: 1.1; 
    font-family: 'Segoe UI', sans-serif;
  }
  
  #keunggulan-kami .keunggulan-kami-description {
  
    font-size: 0.875rem;
    color: black;
    line-height: 1.3; 
    font-family: 'inter-mandala-pilar', sans-serif;
    max-width: 90%; 
  }
  
  #keunggulan-kami .text-container .main-image {
    max-width: 100%; 
    height: clamp(200px, 40vw, 400px); 
    object-fit: contain; 
    display: block; 
    margin-top: 2rem; 
  }
  
  #keunggulan-kami .cards-container {
    display: flex;
    flex-direction: column;
    gap: 0.7rem; 
    width: 100%; 
    padding: 0;
  }
  
  .accordion-item {
    background-color: #ffffff;
    border-radius: 0.75rem; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease-in-out;
  }
  
  .accordion-header {
    padding: 0.8rem 0.8rem; 
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    font-size: 0.8rem; 
    color: #333;
    transition: background-color 0.3s ease;
  }
  
  .accordion-header:hover {
    background-color: #f9fafb;
  }
  
  .accordion-header-content {
    display: flex;
    align-items: center;
    gap: 0.75rem; 
  }
  
  .accordion-icon {
    transition: transform 0.3s ease;
  }
  
  .accordion-item.is-active .accordion-icon {
    transform: rotate(90deg);
  }
  
  .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
    padding: 0 1.5rem; 
    color: #555;
  }
  
  .accordion-item.is-active .accordion-content {
    max-height: 200px; 
    padding-bottom: 1.25rem; 
  }
  
  .accordion-content p {
    padding-top: 0.5rem; 
    line-height: 1.6; 
    font-size: 0.7rem; 
  }
  
  .accordion-header-content svg {
    color: currentColor;
  
    width: clamp(18px, 2.5vw, 24px); 
    height: clamp(18px, 2.5vw, 24px);
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
    @font-face {
    font-family: 'mandala-pilar-inter';
    src: url(../assets/font/Inter/Inter-Italic-VariableFont_opsz\,wght.ttf);
  }
  
  #keunggulan-kami {
    padding: 40px 100px; 
    background-color: #F5F5F5;
  }
  
  #keunggulan-kami .max-w-7xl {
    margin-left: auto;
    margin-right: auto;
    max-width: 1280px; 
    display: flex;
    flex-direction: column; 
    gap: 3rem; 
    align-items: center; 
  }
  
  #keunggulan-kami .text-container {
    flex: 1;
  
    text-align: center; 
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  #keunggulan-kami .text-container h2 {
  
    font-size: 2.25rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.25rem; 
    line-height: 1.1; 
    font-family: 'Segoe UI', sans-serif;
  }
  
  #keunggulan-kami .keunggulan-kami-description {
  
    font-size: 1.2rem;
    color: black;
    line-height: 1.2; 
    font-family: 'inter-mandala-pilar', sans-serif;
    max-width: 90%; 
  }
  
  #keunggulan-kami .text-container .main-image {
    max-width: 100%; 
        height: clamp(200px, 40vw, 400px); 
        object-fit: contain; 
        display: block; 
        margin-top: 2rem; 
  }
  
  #keunggulan-kami .cards-container {
    display: flex;
    flex-direction: column;
    gap: 0.9rem; 
    width: 100%; 
  }
  
  .accordion-item {
    background-color: #ffffff;
    border-radius: 0.75rem; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease-in-out;
  }
  
  .accordion-header {
    padding: 1.25rem 1.5rem; 
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    font-size: 1.2rem; 
    color: #333;
    transition: background-color 0.3s ease;
  }
  
  .accordion-header:hover {
    background-color: #f9fafb;
  }
  
  .accordion-header-content {
    display: flex;
    align-items: center;
    gap: 0.75rem; 
  }
  
  .accordion-icon {
    transition: transform 0.3s ease;
  }
  
  .accordion-item.is-active .accordion-icon {
    transform: rotate(90deg);
  }
  
  .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
    padding: 0 1.5rem; 
    color: #555;
  }
  
  .accordion-item.is-active .accordion-content {
    max-height: 200px; 
    padding-bottom: 1.25rem; 
  }
  
  .accordion-content p {
    padding-top: 0.5rem; 
    line-height: 1.3; 
    font-size: 1.2rem; 
  }
  
  .accordion-header-content svg {
    color: currentColor;
  
    width: clamp(18px, 2.5vw, 24px); 
    height: clamp(18px, 2.5vw, 24px);
  }
}

@media (min-width: 1025px) {
    @font-face {
    font-family: 'mandala-pilar-inter';
    src: url(../assets/font/Inter/Inter-Italic-VariableFont_opsz\,wght.ttf);
  }
  
  #keunggulan-kami {
    padding: 40px 100px; 
    background-color: #F5F5F5;
  }
  
  #keunggulan-kami .max-w-7xl {
    margin-left: auto;
    margin-right: auto;
    max-width: 1280px; 
    display: flex;
    flex-direction: row; 
    gap: 3rem; 
    align-items: flex-start; 
  }
  
  #keunggulan-kami .text-container {
    flex: 1;
    text-align: center; 
    min-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  #keunggulan-kami .text-container h2 {
  
    font-size: clamp(1.875rem, 4vw, 2.25rem);
    font-weight: 700;
    color: #333;
    margin-bottom: 1.25rem; 
    line-height: 1.1; 
    font-family: 'inter-mandala-pilar', sans-serif;
  }
  
  #keunggulan-kami .keunggulan-kami-description {
  
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    color: black;
    line-height: 1.5; 
    font-family: 'inter-mandala-pilar', sans-serif;
    max-width: 90%; 
  }
  
  #keunggulan-kami .text-container .main-image {
    max-width: 100%; 
    height: clamp(200px, 40vw, 400px); 
    object-fit: contain; 
    display: block; 
    margin-top: 2rem; 
  }
  
  #keunggulan-kami .cards-container {
    display: flex;
    flex-direction: column;
    gap: 1rem; 
    width: 100%; 
  }
  
  .accordion-item {
    background-color: #ffffff;
    border-radius: 0.75rem; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease-in-out;
  }
  
  .accordion-header {
    padding: 1rem 1rem; 
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'inter-mandala-pilar', sans-serif;;
    font-weight: 800;
    font-size: clamp(0.9rem, 2vw, 1rem); 
    color: #333;
    transition: background-color 0.3s ease;
  }
  
  .accordion-header:hover {
    background-color: #f9fafb;
  }
  
  .accordion-header-content {
    display: flex;
    align-items: center;
    gap: 0.75rem; 
  }
  
  .accordion-icon {
    transition: transform 0.3s ease;
  }
  
  .accordion-item.is-active .accordion-icon {
    transform: rotate(90deg);
  }
  
  .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
    padding: 0 1.5rem; 
    color: #555;
  }
  
  .accordion-item.is-active .accordion-content {
    max-height: 200px; 
    padding-bottom: 1.25rem; 
  }
  
  .accordion-content p {
    padding-top: 0.5rem; 
    line-height: 1.2; 
    font-size: clamp(0.875rem, 1.5vw, 1rem); 
    font-family: 'inter-mandala-pilar', sans-serif;;
    font-size: 14px;
  }
  
  .accordion-header-content svg {
    color: currentColor;
  
    width: clamp(18px, 2.5vw, 24px); 
    height: clamp(18px, 2.5vw, 24px);
  }
}

/* ----------------------------------------------CSS Keunggulan Kami----------------------------------------------- */

























/* ----------------------------------------------CSS FLICKITY PORTOFOLIO FRONTPAGE----------------------------------------------- */

@media (max-width: 768px) {
  .flickity-viewport {
    overflow: hidden;
    position: relative;
    background-color: black;
    height: 100%;
  }

  .carousel {
    background: black;
  }

  .carousel img {
    display: block;
    margin-right: 5px;
    height: clamp(8rem, 10vw, 18rem); 
  }
  
}

@media (min-width: 769px) and (max-width: 1024px) {

  .flickity-viewport {
    overflow: hidden;
    position: relative;
    background-color: black;
    height: 100%;
  }

  .carousel {
    background: black;
  }

  .carousel img {
    display: block;
  
    height: clamp(10rem, 25vw, 17.5rem); 
  }
}

@media (min-width: 1025px) {
    .flickity-enabled {
    position: relative;
  }
  
  .flickity-enabled:focus {
    outline: none;
  }
  
  .flickity-viewport {
    overflow: hidden;
    position: relative;
    background-color: black;
    height: 100%;
  }
  
  .flickity-slider {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  
  .flickity-enabled.is-draggable {
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  .flickity-enabled.is-draggable .flickity-viewport {
    cursor: move;
    cursor: -webkit-grab;
    cursor: grab;
  }
  
  .flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
    cursor: -webkit-grabbing;
    cursor: grabbing;
  }
  
  .flickity-button {
    position: absolute;
    background: hsla(0, 0%, 100%, 0.75);
    border: none;
    color: #333;
  }
  
  .flickity-button:hover {
    background: white;
    cursor: pointer;
  }
  
  .flickity-button:focus {
    outline: none;
  
    box-shadow: 0 0 0 clamp(0.2rem, 0.8vw, 0.3125rem) #19F;
  }
  
  .flickity-button:active {
    opacity: 0.6;
  }
  
  .flickity-button:disabled {
    opacity: 0.3;
    cursor: auto;
    pointer-events: none;
  }
  
  .flickity-button-icon {
    fill: currentColor;
  }
  
  .flickity-prev-next-button {
    top: 50%;
  
    width: clamp(2rem, 6vw, 2.75rem);
  
    height: clamp(2rem, 6vw, 2.75rem);
    border-radius: 50%;
    transform: translateY(-50%);
  }
  
  .flickity-prev-next-button.previous {
  
    left: clamp(0.5rem, 2vw, 0.625rem);
  }
  
  .flickity-prev-next-button.next {
  
    right: clamp(0.5rem, 2vw, 0.625rem);
  }
  
  .flickity-rtl .flickity-prev-next-button.previous {
    left: auto;
    right: clamp(0.5rem, 2vw, 0.625rem);
  }
  
  .flickity-rtl .flickity-prev-next-button.next {
    right: auto;
    left: clamp(0.5rem, 2vw, 0.625rem);
  }
  
  .flickity-prev-next-button .flickity-button-icon {
    position: absolute;
    left: 20%;
    top: 20%;
    width: 60%;
    height: 60%;
  }
  
  .flickity-page-dots {
    position: absolute;
    width: 100%;
  
    bottom: clamp(-1rem, -4vw, -1.5625rem);
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    line-height: 1;
  }
  
  * {
    box-sizing: border-box;
  }
  
  body {
    font-family: sans-serif;
  }
  
  .carousel {
    background: black;
  }
  
  .carousel img {
    display: block;
  
    height: clamp(18rem, 40vw, 25rem); 
  }
}
/* ----------------------------------------------CSS FLICKITY FRONTPAGE ----------------------------------------------- */

























/* ----------------------------------------------Building Type Section----------------------------------------------- */

@media (max-width: 768px) {
    .buildingtype-section {
      padding: 3rem 3rem; 
      display: flex;
      justify-content: center;
      gap: 1.25rem; 
      flex-wrap: wrap;
      background-color: black;
  }
  
  .building-card1,
  .building-card2 {
      background-color: transparent;
      border: 0.125rem solid #333; 
      border-radius: 1rem; 
      padding-bottom: 2.5rem; 
      padding-left: 0;
      padding-top: 1.2rem; 
      width: 31.25rem; 
      display: flex;
      align-items: flex-start;
      gap: 1.875rem; 
      transition: all 0.3s ease;
      cursor: pointer;
      box-sizing: border-box;
  }
  
  .building-card1:hover,
  .building-card2:hover {
      border-color: #fff;
      transform: scale(1.03);
  }
  
  .building-icon1 img,
  .building-icon2 img {
      width: clamp(3.125rem, 8vw, 7.5rem); 
      height: clamp(3.125rem, 8vw, 7.5rem); 
      object-fit: contain;
      margin-left: 1.25rem; 
      margin-right: 0px;
  }
  
  .building-content1,
  .building-content2 {
      margin: 0;
  }
  
  .building-title1,
  .building-title2 {
      font-size: 0.8rem; 
      font-family: 'urbanist-mandala-pilar', sans-serif;
      color: white;
      font-weight: 900;
  }
  
  .building-description1,
  .building-description2 {
      font-size: 0.7rem; 
      margin-top: 0.625rem; 
      color: white;
      font-family: 'urbanist-mandala-pilar', sans-serif;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .buildingtype-section {
      padding: 3.125rem 6.25rem; 
      padding-top: 6.25rem; 
      padding-bottom: 3.75rem; 
      display: flex;
      justify-content: center;
      gap: 1.25rem; 
      flex-wrap: wrap;
      background-color: black;
  }
  
  .building-card1,
  .building-card2 {
      background-color: transparent;
      border: 0.125rem solid #333; 
      border-radius: 1rem; 
      padding-bottom: 2.5rem; 
      padding-left: 0;
      padding-top: 2.5rem; 
      width: 31.25rem; 
      display: flex;
      align-items: flex-start;
      gap: 1.875rem; 
      transition: all 0.3s ease;
      cursor: pointer;
      box-sizing: border-box;
  }
  
  .building-card1:hover,
  .building-card2:hover {
      border-color: #fff;
      transform: scale(1.03);
  }
  
  .building-icon1 img,
  .building-icon2 img {
      width: 15rem; 
      object-fit: contain;
      margin-left: 0; 
      margin-right: 0;
    }
  
  
  .building-content1,
  .building-content2 {
      margin: 0;
  }
  
  .building-title1,
  .building-title2 {
      font-size: 1.4rem; 
      font-family: 'urbanist-mandala-pilar', sans-serif;
      color: white;
      font-weight: 900;
  }
  
  .building-description1,
  .building-description2 {
      font-size: 1.25rem; 
      margin-top: 0.625rem; 
      color: white;
      font-family: 'urbanist-mandala-pilar', sans-serif;
  }

      .buildingtype-section {
        padding: 80px 20px; 
        gap: 30px; 
    }

    .building-card1,
    .building-card2 {
        width: 100%; 
        flex-direction: column; 
        align-items: center; 
        text-align: center; 
        padding: 30px 20px; 
        gap: 15px; 
    }
}

@media (min-width: 1025px) {
    .buildingtype-section {
      padding: 3.125rem 6.25rem; 
      padding-top: 6.25rem; 
      padding-bottom: 3.75rem; 
      display: flex;
      justify-content: center;
      gap: 1.25rem; 
      flex-wrap: wrap;
      background-color: black;
  }
  
  .building-card1,
  .building-card2 {
      background-color: transparent;
      border: 0.125rem solid #333; 
      border-radius: 1rem; 
      padding-bottom: 2.5rem; 
      padding-left: 0;
      padding-top: 2.5rem; 
      width: 31.25rem; 
      display: flex;
      align-items: flex-start;
      gap: 1.875rem; 
      transition: all 0.3s ease;
      cursor: pointer;
      box-sizing: border-box;
  }
  
  .building-card1:hover,
  .building-card2:hover {
      border-color: #fff;
      transform: scale(1.03);
  }
  
  .building-icon1 img,
  .building-icon2 img {
      width: clamp(3.125rem, 8vw, 7.5rem); 
      height: clamp(3.125rem, 8vw, 7.5rem); 
      object-fit: contain;
      margin-left: 1.25rem; 
      margin-right: 0px;
  }
  
  .building-content1,
  .building-content2 {
      margin: 0;
  }
  
  .building-title1,
  .building-title2 {
      font-size: clamp(0.9rem, 2.5vw, 1.10rem); 
      font-family: 'urbanist-mandala-pilar', sans-serif;
      color: white;
      font-weight: 900;
  }
  
  .building-description1,
  .building-description2 {
      font-size: clamp(0.7rem, 1.5vw, 0.9rem); 
      margin-top: 0.625rem; 
      color: white;
      font-family: 'urbanist-mandala-pilar', sans-serif;
  }
}























@media (min-width: 769px) and (max-width: 1024px) {
    .buildingtype-section {
        padding: 100px 50px; 
        gap: 30px; 
    }

    .building-card1,
    .building-card2 {

        width: calc(50% - 15px); 
        flex-direction: row;
        align-items: flex-start; 
        text-align: left; 
        padding: 40px 20px; 
        gap: 20px; 
    }

    .building-icon1 img,
    .building-icon2 img {
        margin-left: 0; 
        margin-right: 0;

    }

}


/* ----------------------------------------------Batas Building Type Section----------------------------------------------- */



























/* ----------------------------------------------Brand Section----------------------------------------------- */

@media (max-width: 768px) {
    #brand-customer {
    background-color: white;
    padding: clamp(3rem, 5vw, 3.75rem) clamp(1rem, 3vw, 1.25rem);
    text-align: center;
    color: white; 
    justify-content: center;
  }
  
  .brand-title {
  
    font-size: clamp(1.2rem, 4vw, 2rem);
    font-weight: 700;
  
    margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
    color: #333;
    font-family: 'Segoe UI', sans-serif;
    text-align: center;
    justify-content: center;
  }
  
  .logo-wrapper {
    max-width: clamp(50rem, 90vw, 75rem);
    margin: 0 auto;
  }
  
  .logo-row {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: clamp(0.5rem, 1.5vw, 0.625rem);
    margin-bottom: clamp(1rem, 3vw, 1.875rem);
  }
  
  .logo-box1 {
    background-color: transparent;
    padding: clamp(0.4rem, 1vw, 0.5rem);
    border-radius: 3.125rem; 
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(5rem, 12vw, 6.25rem);
    height: clamp(4rem, 10vw, 5rem);
  }
  
  .logo-box2 {
    background-color: transparent;
    padding: clamp(0.4rem, 1vw, 0.5rem); 
    border-radius: 3.125rem; 
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(6rem, 15vw, 8.125rem);
    height: clamp(3.5rem, 9vw, 4.375rem);
  }
  
  .logo-box:hover {
    transform: scale(1.05);
  
    box-shadow: 0 clamp(0.25rem, 0.5vw, 0.375rem) clamp(0.8rem, 2vw, 1rem) rgba(0, 0, 0, 0.2);
  }
  
  .logo-box1 img {
    max-width: 100%;
  
    max-height: clamp(3rem, 8vw, 3.75rem);
    object-fit: contain;
  }
  
  .logo-box2 img {
    max-width: 100%;
  
    max-height: clamp(2.5rem, 7vw, 3.125rem);
    object-fit: contain;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
    #brand-customer {
    background-color: white;
  
    padding: clamp(3rem, 5vw, 3.75rem) clamp(1rem, 3vw, 1.25rem);
    text-align: center;
    color: white; 
    justify-content: center;
  }
  
  .brand-title {
    font-size: clamp(1.2rem, 6vw, 1.9rem);
    font-weight: 700;
    margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
    color: #333;
    font-family: 'Segoe UI', sans-serif;
    text-align: center;
    justify-content: center;
  }
  
  .logo-wrapper {
    max-width: clamp(50rem, 90vw, 75rem);
    margin: 0 auto;
  }
  
  .logo-row {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: clamp(0.5rem, 1.5vw, 0.625rem);
    margin-bottom: clamp(1rem, 3vw, 1.875rem);
  }
  
  .logo-box1 {
    background-color: transparent;
    padding: clamp(0.4rem, 1vw, 0.5rem);
    border-radius: 3.125rem; 
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(5rem, 12vw, 6.25rem);
    height: clamp(4rem, 10vw, 5rem);
  }
  
  .logo-box2 {
    background-color: transparent;
    padding: clamp(0.4rem, 1vw, 0.5rem); 
    border-radius: 3.125rem; 
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(6rem, 15vw, 8.125rem);
    height: clamp(3.5rem, 9vw, 4.375rem);
  }
  
  .logo-box:hover {
    transform: scale(1.05);
    box-shadow: 0 clamp(0.25rem, 0.5vw, 0.375rem) clamp(0.8rem, 2vw, 1rem) rgba(0, 0, 0, 0.2);
  }
  
  .logo-box1 img {
    max-width: 100%;
    max-height: clamp(3rem, 8vw, 3.75rem);
    object-fit: contain;
  }
  
  .logo-box2 img {
    max-width: 100%;
  
    max-height: clamp(2.5rem, 7vw, 3.125rem);
    object-fit: contain;
  }
}

@media (min-width: 1025px) {
    #brand-customer {
    background-color: white;
  
    padding: clamp(2rem, 5vw, 3.75rem) clamp(1rem, 3vw, 1.25rem);
    text-align: center;
    color: white; 
    justify-content: center;
  }
  
  .brand-title {
    font-size: clamp(1.8rem, 6vw, 2.25rem);
    font-weight: 700;
    margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
    color: #333;
    font-family: 'inter-mandala-pilar', sans-serif;
    text-align: center;
    justify-content: center;
  }
  
  .logo-wrapper {
    max-width: clamp(50rem, 90vw, 75rem);
    margin: 0 auto;
  }
  
  .logo-row {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: clamp(0.5rem, 1.5vw, 0.625rem);
    margin-bottom: clamp(1rem, 3vw, 1.875rem);
  }
  
  .logo-box1 {
    background-color: transparent;
    padding: clamp(0.4rem, 1vw, 0.5rem);
    border-radius: 3.125rem; 
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(5rem, 12vw, 6.25rem);
    height: clamp(4rem, 10vw, 5rem);
  }
  
  .logo-box2 {
    background-color: transparent;
    padding: clamp(0.4rem, 1vw, 0.5rem); 
    border-radius: 3.125rem; 
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(6rem, 15vw, 8.125rem);
    height: clamp(3.5rem, 9vw, 4.375rem);
  }
  
  .logo-box:hover {
    transform: scale(1.05);
    box-shadow: 0 clamp(0.25rem, 0.5vw, 0.375rem) clamp(0.8rem, 2vw, 1rem) rgba(0, 0, 0, 0.2);
  }
  
  .logo-box1 img {
    max-width: 100%;
    max-height: clamp(3rem, 8vw, 3.75rem);
    object-fit: contain;
  }
  
  .logo-box2 img {
    max-width: 100%;
    max-height: clamp(2.5rem, 7vw, 3.125rem);
    object-fit: contain;
  }
}
/*-------------------------------------------------- Brand Section ---------------------------*/
































/* ----------------------------------------------CSS Responsive Adjustments----------------------------------------------- */
/* Responsive Adjustments */
@media (max-width: 1200px) {
    .service-item {
        flex: 1 1 calc(50% - 45px);
        max-width: calc(50% - 45px);
    }
    #promotion .main-title,
    .promotion-columns-wrapper {
        padding: 0 40px;
    }
    .promo-column {
        flex: 1 1 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
    .carousel-item {
        flex: 0 0 calc(33.333% - 13.333px); /* 3 items per view */
    }
}

@media (max-width: 768px) {
    #services, #promotion {
        padding: 30px 20px;
    }
    .service-item {
        flex: 1 1 100%;
        max-width: 100%;
    }
    #promotion .main-title {
        text-align: center;
    }
    .promo-column {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .container {
        padding: 40px 20px;
    }
  }


/* Responsive fallback for the main container */
@media (max-width: 900px) {
  .container {
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
  }
  .content, .slider {
    max-width: 100%;
    padding-left: 0;
    margin-left: 0;
  }
  .slider {
      height: 300px;
  }
}
/* ----------------------------------------------CSS Responsive Adjustments----------------------------------------------- */

































/* ----------------------------------------------Latest News Section----------------------------------------------- */
@media (max-width: 768px) {
    .latest-news-section {
      padding-top: 3rem; 
      padding-bottom: 3rem; 
      background-color: #f9fafb; 
  }
  
  .latest-news-container {
      width: 100%;
      margin-left: auto; 
      margin-right: auto; 
      padding-left: 1rem; 
      padding-right: 1rem; 
      max-width: 1280px; 
  }
  
  .latest-news-main-grid {
      display: grid; 
      grid-template-columns: 1fr; 
      gap: 2rem; 
  }
  
  
  .latest-news-column-header {
      display: flex; 
      justify-content: space-between; 
      align-items: center; 
      margin-bottom: 1.5rem; 
  }
  
  .latest-news-column-header.no-bottom-margin {
      margin-bottom: 0; 
  }
  
  .latest-news-heading {
  
      font-size: clamp(0.9rem, 0.9rem + 0.625vw, 1.1rem);
      line-height: 2.25rem; 
      font-weight: 700; 
      color: #1f2937; 
      display: flex; 
      align-items: center; 
  }
  
  .latest-news-heading .fas {
      color: #20570F; 
      margin-right: 0.75rem; 
  }
  
  .latest-news-more-link {
      color: #20570F; 
      font-size: clamp(0.7rem, 0.7rem + 0.4167vw, 0.9rem);
      text-decoration: none; 
      display: flex; 
      align-items: center; 
  }
  
  .latest-news-more-link:hover {
      text-decoration: underline; 
  }
  
  .latest-news-more-link .fas {
      margin-left: 0.5rem; 
  }
  
  .latest-articles-grid {
      display: grid; 
      grid-template-columns: 1fr; 
      gap: 0.5rem; 
  }
  
  @media (min-width: 768px) { 
      .latest-articles-grid {
          grid-template-columns: repeat(2, minmax(0, 1fr)); 
      }
  }
  
  .article-card {
      position: relative; 
      border-radius: 0.5rem; 
      overflow: hidden; 
      box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); 
      transition: box-shadow 300ms ease; 
  }
  
  .article-card:hover {
      box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); 
  }
  
  .article-card > a {
      text-decoration: none; 
      display: block; 
  }
  
  .article-card img {
      width: 100%; 
      height: clamp(5rem, 5rem + 4.1667vw, 7rem);
      object-fit: cover; 
      transition: transform 300ms ease; 
  }
  
  .article-card:hover img {
      transform: scale(1.05); 
  }
  
  .article-card .gradient-overlay {
      position: absolute; 
      top: 0; right: 0; bottom: 0; left: 0; 
      background-image: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0)); 
  }
  
  .article-card .content-bottom {
      position: absolute; 
      bottom: 0; 
      left: 0; 
      padding: 1rem; 
      color: white; 
      width: 100%; 
      box-sizing: border-box; 
  }
  
  .article-card .content-bottom h3 {
  
      font-size: clamp(0.8rem, 0.8rem + 1.0417vw, 1.3rem);
      font-weight: 600; 
      margin-bottom: 0.25rem; 
      line-height: 1.25; 
      transition: color 300ms ease; 
  }
  
  .article-card:hover .content-bottom h3 {
      color: #ECAF04; 
  }
  
  .article-card .content-bottom p {
  
      font-size: clamp(0.75rem, 0.875rem + 0.2vw, 1rem); 
      color: #d1d5db; 
  }
  
  .article-card .content-bottom p .far {
      margin-right: 0.25rem; 
  }
  
  .editor-choice-list {
      margin-top: 0;
  }
  
  .editor-choice-item {
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
      padding: 0.75rem;
      border-radius: 0.5rem;
      text-decoration: none;
      color: inherit;
      transition: background-color 200ms ease, color 200ms ease;
  }
  
  .editor-choice-item:hover {
      background-color: #f3f4f6;
  }
  
  .editor-choice-item .rank-number {
  
      font-size: clamp(1.25rem, 1.25rem + 0.3125vw, 1.4rem); 
      line-height: 1.4rem; 
      font-weight: 800; 
      color: #6b7280;
      flex-shrink: 0;
      transition: color 200ms ease;
      
  }
  
  .editor-choice-item:hover .rank-number {
      color: #ECAF04;
  }
  
  .editor-choice-item .content-body {
      flex-grow: 1;
  }
  
  .editor-choice-item .content-body h3 {
  
      font-size: clamp(0.6rem, 1rem + 0.7813vw, 0.8rem);; 
      line-height: 1.375; 
      font-weight: 600; 
      color: #1f2937;
      text-align: left;
      transition: color 200ms ease;
  }
  
  .editor-choice-item:hover .content-body h3 {
      color: #ECAF04;
  }
  
  .editor-choice-item .content-body p {
  
      font-size: clamp(0.6rem, 0.875rem + 0.2vw, 0.8rem); 
      color: #6b7280;
      text-align: left;
      margin-top: 0.25rem;
  }
  
  .editor-choice-item .content-body p .far {
      margin-right: 0.25rem;
  }
  
  .no-articles-message {
      grid-column: span 2 / span 2;
      color: #4b5563;
      text-align: center;
  }
  
  .text-gray-600 {
      color: #4b5563;
  }
  .text-center {
      text-align: center;
  }
  .col-span-2 {
      grid-column: span 2 / span 2;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .latest-news-section {
      padding-top: 3rem; 
      padding-bottom: 3rem; 
      background-color: #f9fafb; 
  }
  
  .latest-news-container {
      width: 100%;
      margin-left: auto; 
      margin-right: auto; 
      padding-left: 1rem; 
      padding-right: 1rem; 
      max-width: 1280px; 
  }
  
  .latest-news-main-grid {
      display: grid; 
      grid-template-columns: 1fr; 
      gap: 2rem; 
  }
  
  
  .latest-news-column-header {
      display: flex; 
      justify-content: space-between; 
      align-items: center; 
      margin-bottom: 1.5rem; 
  }
  
  .latest-news-column-header.no-bottom-margin {
      margin-bottom: 0; 
  }
  
  .latest-news-heading {
  
      font-size: clamp(1.5rem, 1.875rem + 1vw, 2.25rem); 
      line-height: 2.25rem; 
      font-weight: 700; 
      color: #1f2937; 
      display: flex; 
      align-items: center; 
  }
  
  .latest-news-heading .fas {
      color: #20570F; 
      margin-right: 0.75rem; 
  }
  
  .latest-news-more-link {
      color: #20570F; 
      text-decoration: none; 
      display: flex; 
      align-items: center; 
  }
  
  .latest-news-more-link:hover {
      text-decoration: underline; 
  }
  
  .latest-news-more-link .fas {
      margin-left: 0.5rem; 
  }
  
  .latest-articles-grid {
      display: grid; 
      grid-template-columns: 1fr; 
      gap: 1.5rem; 
  }
  
  @media (min-width: 768px) { 
      .latest-articles-grid {
          grid-template-columns: repeat(2, minmax(0, 1fr)); 
      }
  }
  
  .article-card {
      position: relative; 
      border-radius: 0.5rem; 
      overflow: hidden; 
      box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); 
      transition: box-shadow 300ms ease; 
  }
  
  .article-card:hover {
      box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); 
  }
  
  .article-card > a {
      text-decoration: none; 
      display: block; 
  }
  
  .article-card img {
      width: 100%; 
      height: 12rem; 
      object-fit: cover; 
      transition: transform 300ms ease; 
  }
  
  .article-card:hover img {
      transform: scale(1.05); 
  }
  
  .article-card .gradient-overlay {
      position: absolute; 
      top: 0; right: 0; bottom: 0; left: 0; 
      background-image: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0)); 
  }
  
  .article-card .content-bottom {
      position: absolute; 
      bottom: 0; 
      left: 0; 
      padding: 1rem; 
      color: white; 
      width: 100%; 
      box-sizing: border-box; 
  }
  
  .article-card .content-bottom h3 {
  
      font-size: clamp(0.8rem, -0.7078rem + 3.1373vw, 1.3rem);; 
      font-weight: 600; 
      margin-bottom: 0.25rem; 
      line-height: 1.25; 
      transition: color 300ms ease; 
  }
  
  .article-card:hover .content-bottom h3 {
      color: #ECAF04; 
  }
  
  .article-card .content-bottom p {
  
      font-size: clamp(0.75rem, 0.875rem + 0.2vw, 1rem); 
      color: #d1d5db; 
  }
  
  .article-card .content-bottom p .far {
      margin-right: 0.25rem; 
  }
  
  .editor-choice-list {
      margin-top: 0;
  }
  
  .editor-choice-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 0.75rem;
      border-radius: 0.5rem;
      text-decoration: none;
      color: inherit;
      transition: background-color 200ms ease, color 200ms ease;
  }
  
  .editor-choice-item:hover {
      background-color: #f3f4f6;
  }
  
  .editor-choice-item .rank-number {
  
      font-size: clamp(1.875rem, 2.25rem + 1.5vw, 3rem); 
      line-height: 2.5rem; 
      font-weight: 800; 
      color: #6b7280;
      flex-shrink: 0;
      margin-top: 0.25rem;
      transition: color 200ms ease;
  }
  
  .editor-choice-item:hover .rank-number {
      color: #ECAF04;
  }
  
  .editor-choice-item .content-body {
      flex-grow: 1;
  }
  
  .editor-choice-item .content-body h3 {
  
      font-size: clamp(1rem, -0.1309rem + 2.3529vw, 1.375rem);; 
      line-height: 1.375; 
      font-weight: 600; 
      color: #1f2937;
      text-align: left;
      transition: color 200ms ease;
  }
  
  .editor-choice-item:hover .content-body h3 {
      color: #ECAF04;
  }
  
  .editor-choice-item .content-body p {
  
      font-size: clamp(0.75rem, 0.875rem + 0.2vw, 1rem); 
      color: #6b7280;
      text-align: left;
      margin-top: 0.25rem;
  }
  
  .editor-choice-item .content-body p .far {
      margin-right: 0.25rem;
  }
  
  .no-articles-message {
      grid-column: span 2 / span 2;
      color: #4b5563;
      text-align: center;
  }
  
  .text-gray-600 {
      color: #4b5563;
  }
  .text-center {
      text-align: center;
  }
  .col-span-2 {
      grid-column: span 2 / span 2;
  }
}

@media (min-width: 1025px) {
  
  .latest-news-main-grid {
      display: grid; 
      grid-template-columns: repeat(2, minmax(0, 1fr)); 
      gap: 2rem; 
  }

  .latest-news-section {
      padding-top: 3rem; 
      padding-bottom: 3rem; 
      background-color: #f9fafb; 
  }
  
  .latest-news-container {
      width: 100%;
      margin-left: auto; 
      margin-right: auto; 
      padding-left: 1rem; 
      padding-right: 1rem; 
      max-width: 1280px; 
  }
  
  
  .latest-news-column-header {
      display: flex; 
      justify-content: space-between; 
      align-items: center; 
      margin-bottom: 1.5rem; 
  }
  
  .latest-news-column-header.no-bottom-margin {
      margin-bottom: 0; 
  }
  
  .latest-news-heading {
  
      font-size: clamp(1.1rem, 1.875rem + 1vw, 1.8rem); 
      font-family: 'inter-mandala-pilar', sans-serif;
      line-height: 2.25rem; 
      font-weight: bolder; 
      color: #1f2937; 
      display: flex; 
      align-items: center; 
  }
  
  .latest-news-heading .fas {
      color: #20570F; 
      margin-right: 0.75rem; 
  }
  
  .latest-news-more-link {
      color: #20570F; 
      text-decoration: none; 
      display: flex; 
      align-items: center; 
  }
  
  .latest-news-more-link:hover {
      text-decoration: underline; 
  }
  
  .latest-news-more-link .fas {
      margin-left: 0.5rem; 
  }
  
  .latest-articles-grid {
      display: grid; 
      grid-template-columns: 1fr; 
      gap: 1.5rem;
  }



  
  @media (min-width: 768px) { 
      .latest-articles-grid {
          grid-template-columns: repeat(2, minmax(0, 1fr)); 
      }
  }
  
  .article-card {
      position: relative; 
      border-radius: 0.5rem; 
      overflow: hidden; 
      box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); 
      transition: box-shadow 300ms ease; 
  }
  
  .article-card:hover {
      box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); 
  }
  
  .article-card > a {
      text-decoration: none; 
      display: block; 
  }
  
  .article-card img {
      width: 100%; 
      height: clamp(9rem, 12rem + 2vw, 15rem);
      object-fit: cover; 
      transition: transform 300ms ease; 
  }
  
  .article-card:hover img {
      transform: scale(1.05); 
  }
  
  .article-card .gradient-overlay {
      position: absolute; 
      top: 0; right: 0; bottom: 0; left: 0; 
      background-image: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0)); 
  }
  
  .article-card .content-bottom {
      position: absolute; 
      bottom: 0; 
      left: 0; 
      padding: 1rem; 
      color: white; 
      width: 100%; 
      box-sizing: border-box; 
  }
  
  .article-card .content-bottom h3 {
      font-size: clamp(0.9rem, 1.2rem + 0.5vw, 1.3rem); 
      font-weight: bolder; 
      margin-bottom: 0.25rem; 
      line-height: 1.1; 
      transition: color 300ms ease; 
      font-family: 'inter-mandala-pilar', sans-serif;
  }
  
  .article-card:hover .content-bottom h3 {
      color: #ECAF04; 
  }
  
  .article-card .content-bottom p {
  
      font-size: clamp(0.75rem, 0.875rem + 0.2vw, 1rem); 
      color: #d1d5db; 
      font-family: 'inter-mandala-pilar', sans-serif;
  }
  
  .article-card .content-bottom p .far {
      margin-right: 0.25rem; 
  }
  
  .editor-choice-list {
      margin-top: 40px;
  }
  
  .editor-choice-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 0.75rem;
      border-radius: 0.5rem;
      text-decoration: none;
      color: inherit;
      transition: background-color 200ms ease, color 200ms ease;
  }
  
  .editor-choice-item:hover {
      background-color: #f3f4f6;
  }
  
  .editor-choice-item .rank-number {
  
      font-size: clamp(1.6rem, 2.25rem + 1.5vw, 2rem); 
      line-height: 2.5rem; 
      font-weight: 800; 
      color: #6b7280;
      flex-shrink: 0;
      margin-top: 0rem;
      transition: color 200ms ease;
  }
  
  .editor-choice-item:hover .rank-number {
      color: #ECAF04;
  }
  
  .editor-choice-item .content-body {
      flex-grow: 1;
  }
  
  .editor-choice-item .content-body h3 {
  
      font-size: clamp(0.8rem, 1.25rem + 0.5vw, 1.1rem); 
      line-height: 1.2; 
      font-weight: bolder; 
      color: #1f2937;
      text-align: left;
      transition: color 200ms ease;
      font-family: 'inter-mandala-pilar', sans-serif;
  }
  
  .editor-choice-item:hover .content-body h3 {
      color: #ECAF04;
  }
  
  .editor-choice-item .content-body p {
  
      font-size: clamp(0.5rem, 0.875rem + 0.2vw, 0.8rem); 
      color: #6b7280;
      text-align: left;
      margin-top: 0.25rem;
  }
  
  .editor-choice-item .content-body p .far {
      margin-right: 0.25rem;
  }
  
  .no-articles-message {
      grid-column: span 2 / span 2;
      color: #4b5563;
      text-align: center;
  }
  
  .text-gray-600 {
      color: #4b5563;
  }
  .text-center {
      text-align: center;
  }
  .col-span-2 {
      grid-column: span 2 / span 2;
  }
}


























/* ------------------------------------------CSS Floating WA Button--------------------------------------------- */
.whatsapp-float-button {
    position: fixed; 
    bottom: 20px; 
    right: 20px; 
    background-color: white; 
    color: black;
    height: 35px; 
    border-radius: 25px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25); 
    cursor: pointer;
    z-index: 999; 
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    text-decoration: none; 
    padding: 0 10px; 
    gap: 8px; 
}

.whatsapp-float-button:hover {
    transform: scale(1.05); 
    background-color: #1DA851; 
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35); 
}

.whatsapp-float-button .whatsapp-button-content {
    display: flex;
    align-items: center;
    gap: 4px; 
}

.whatsapp-float-button .whatsapp-float-lottie-icon {
    width: 30px; 
    height: 30px; 
    flex-shrink: 0; 
}

.whatsapp-float-button .whatsapp-button-text {
    font-family: 'inter-mandala-pilar', sans-serif; 
    font-size: 12px; 
    font-weight: 600; 
    white-space: nowrap; 
    color: black; 
}






























/*-------------------------------------------------------ad-PopUp---------------------------------------------*/
@media (max-width: 768px) {
    .ad-popup-overlay {
      display: none; 
      position: fixed; 
      z-index: 9999; 
      left: 0;
      top: 0;
      width: 100%; 
      height: 100%; 
      overflow: auto; 
      background-color: rgba(0,0,0,0.7); 
      display: flex; 
      justify-content: center; 
      align-items: center; 
  }
  
  .ad-popup-content {
      background-color: transparent; 
      padding: 20px; 
      border-radius: 8px; 
      position: relative; 
      max-width: 70%; 
      max-height: auto; 
      overflow: auto; 
  }
  
  .ad-image {
      max-width: 100%; 
      height: auto; 
      display: content; 
  }
  
  .close-button {
      color: #aaa;
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 28px;
      font-weight: bold;
      cursor: pointer;
      transition: color 0.3s ease;
  }
  
  .close-button:hover,
  .close-button:focus {
      color: #333;
      text-decoration: none;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .ad-popup-overlay {
      display: none; 
      position: fixed; 
      z-index: 9999; 
      left: 0;
      top: 0;
      width: 100%; 
      height: 100%; 
      overflow: auto; 
      background-color: rgba(0,0,0,0.7); 
      display: flex; 
      justify-content: center; 
      align-items: center; 
  }
  
  .ad-popup-content {
      background-color: transparent; 
      padding: 20px; 
      border-radius: 8px; 
      position: relative; 
      max-width: 45%; 
      max-height: auto; 
      overflow: auto; 
  }
  
  .ad-image {
      max-width: 100%; 
      height: auto; 
      display: content; 
  }
  
  .close-button {
      color: #aaa;
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 28px;
      font-weight: bold;
      cursor: pointer;
      transition: color 0.3s ease;
  }
  
  .close-button:hover,
  .close-button:focus {
      color: #333;
      text-decoration: none;
  }
}

@media (min-width: 1025px) {
    .ad-popup-overlay {
      display: none; 
      position: fixed; 
      z-index: 9999; 
      left: 0;
      top: 0;
      width: 100%; 
      height: 100%; 
      overflow: auto; 
      background-color: rgba(0,0,0,0.7); 
      display: flex; 
      justify-content: center; 
      align-items: center; 
  }
  
  .ad-popup-content {
      background-color: transparent; 
      padding: 20px; 
      border-radius: 8px; 
      position: relative; 
      max-width: 30%; 
      max-height: auto; 
      overflow: auto; 
  }
  
  .ad-image {
      max-width: 100%; 
      height: auto; 
      display: content; 
  }
  
  .close-button {
      color: #aaa;
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 28px;
      font-weight: bold;
      cursor: pointer;
      transition: color 0.3s ease;
  }
  
  .close-button:hover,
  .close-button:focus {
      color: #333;
      text-decoration: none;
  }
}






















/* -----------------------------------------------Footer Section---------------------------------------------------- */

footer {
    background-color: #20570F; 
    color: white;
    padding: 3rem; 
    font-family: Arial, sans-serif;
    width: 100%;
}

.footer-main-content {
    display: flex;
    flex-wrap: wrap; 
    justify-content: space-between; 
    margin-bottom: 40px; 
    line-height: 1;
}

.footer-column {
    flex: 1 1 150px; 
    min-width: 170px; 
    box-sizing: border-box;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 15px;
    color: #ECAF04; 
    text-transform: uppercase; 
}

.footer-column ul {
    list-style: none; 
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 4px; 
}

.footer-column ul li a,
.footer-column p {
    color: rgba(255, 255, 255, 0.8); 
    text-decoration: none;
    font-size: 14px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ECAF04; 
}

.footer-cta .social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    margin-bottom: 25px; 
}

.footer-cta .social-icons img {
    width: 30px; 
    height: 30px;
    transition: transform 0.3s ease;
}

.footer-cta .social-icons img:hover {
    transform: translateY(-3px); 
}

.footer-cta .newsletter-button {
    background-color: #ECAF04; 
    color: #20570F; 
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    align-self: flex-start; 
}

.footer-cta .newsletter-button:hover {
    background-color: #f0c753; 
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.2); 
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap; 
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-copyright p {
    margin: 0; 
}

.footer-utility-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-left: 20px; 
    transition: color 0.3s ease;
}

.footer-utility-links a:hover {
    color: #ECAF04;
}

@media (max-width: 1000px) {
    footer {
        padding: 40px 50px 20px; 
    }
    .footer-column {
        flex: 1 1 calc(50% - 20px); 
    }
    .footer-cta {
        flex: 1 1 100%; 
        text-align: left;
        align-items: left; 
    }
    .footer-cta .social-icons {
        justify-content: left; 
    }
}

@media (max-width: 600px) {
    footer {
        padding: 30px 20px 15px; 
    }
    .footer-column {
        flex: 1 1 100%; 
        margin-bottom: 20px; 
    }
    .footer-column:last-of-type {
        margin-bottom: 0; 
    }
    .footer-main-content {
        gap: 20px; 
    }
    .footer-bottom-bar {
        flex-direction: column; 
        text-align: center;
        gap: 10px; 
    }
    .footer-utility-links a {
        margin: 0 10px; 
    }
}
/* ---------------------------------------------Footer Section-------------------------------------------------- */