:root {
    --primary-red: #A60C0B;
    --the-blue-one: #0056b3;
    --black-footer: #1F1D1E;
    --merah-footer: #C6252C;
    --white-color: #ffffff;
}

.menu-toggle {
  display: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--black-footer);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 50px;
    font-weight: 700;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
    text-align: center;
    color: var(--the-blue-one);
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    background-color:var(--the-blue-one);
    color: var(--white-color);
    padding: 12px 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 24px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: var(--primary-red);
}

/* Header & Navigation */
header {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent; 
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

.scrolled {
    background-color: rgba(0, 0, 0, 0.7); 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    padding: 10px 0;
}

.scrolled nav ul li a {
    color: var(--white-color) !important; 
}

.scrolled nav ul li a.active,
.scrolled nav ul li a:hover {
    color: var(--the-blue-one) !important; 
    border-bottom: 2px solid var(--primary-red) !important;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 48px;
    width: auto; 
    margin-top: 6px;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 25px;
    position: relative;
}

nav ul li a {
    color: var(--white-color);
    text-decoration: none;
    font-weight: 550;
    padding-bottom: 5px;
    transition: color 0.3s ease, border-bottom 0.3s ease;
}

nav ul li a.active,
nav ul li a:hover {
    color: var(--primary-red);
    border-bottom: 2px solid var(--the-blue-one);
}

.nav-container {
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  width: 100%;
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 0px 30px; 
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-icon {
    font-size: 15px;
    margin-left: 2px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    z-index: 1;
    list-style: none;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, top 0.3s ease;
    padding: 10px 0; 
    text-align: left;
}

.dropdown:hover .dropdown-menu {
    visibility: visible;
    top: 140%;
}

.dropdown-menu li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    color: var(--white-color);
    font-weight: 500;
    text-decoration: none or 0.2s ease;
}

.dropdown-menu li a:hover {
    color: var(--the-blue-one);
    background-color:rgba(165, 165, 165, 0.8);
}

.menu-toggle {
    display: none;
    font-size: 28px;
    color: var(--white-color);
    cursor: pointer;
    z-index: 1100;
}

@media (max-width: 1024px) {
    .dropdown {
        position: relative;
    }

    .dropdown-menu {
        position: absolute !important;
        left: -30px !important; 
        right: -50px !important;
        top: 100% !important;
        min-width: 200px !important;
        transform: none !important;
        display: none;
        visibility: visible;
        opacity: 1;
        z-index: 1001;
    }

    .dropdown:hover .dropdown-menu {
        display: block !important;
    }

    .dropdown-menu li a {
        padding: 12px 20px !important;
        display: block !important;
        width: 100% !important;
        text-align: left;
        box-sizing: border-box;
    }
}

@media (max-width: 768px) {

    header {
        padding: 10px 0;
    }

    .menu-toggle {
        display: block;
        font-size: 26px;
        color: var(--white-color);
        cursor: pointer;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.95);
        display: none;
        padding: 0; 
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        padding: 0;
        margin: 0;
        width: 100%;
    }

    nav ul li {
        margin: 0 !important;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    nav ul li a {
        display: block !important;
        width: 100%;
        padding: 15px 25px !important; 
        box-sizing: border-box;
        text-align: left;
    }

    /* --- DROPDOWN --- */
    .dropdown-menu {
        position: static !important;
        display: none;
        width: 100% !important;
        background-color: rgba(255, 255, 255, 0.05) !important;
        padding: 0 !important;
        margin: 0 !important;
        transform: none !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .dropdown.open .dropdown-menu {
        display: block !important;
    }

    .dropdown-menu li {
        border-bottom: none;
    }

    .dropdown-menu li a {
        padding: 12px 40px !important;
        display: block !important;
        width: 100% !important;
        background-color: transparent;
    }

    .dropdown-menu li a:hover {
        background-color: rgba(165, 165, 165, 0.8);
        color: var(--the-blue-one);
    }

    .dropdown-icon {
        display: inline-block;
        transition: transform 0.3s;
    }

    .dropdown.open .dropdown-icon {
        transform: rotate(180deg);
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 100px; 
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('image/Experience UEE/wilmar/2.JPG') no-repeat center center/cover;
    display: flex;
    justify-content: left;
    align-items: center;
    text-align: left;
    color: var(--white-color);
    padding: 100px 60px 0 60px;
}

.hero-content {
    max-width: 600;
    margin-bottom: 0;
}

.hero-content h1 {
    font-size: 110px;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

/* Hero Strip */
.hero-strip {
    background-color: var(--primary-red);
    padding: 20px 0;
    text-align: center;
    position: relative;
    z-index: 100;
}

.strip-grid {
    display: flex;
    justify-content: center;
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 0px;
}

.strip-item {
    flex: 1;
    display: flex; 
    align-items: center;
    justify-content: flex-start;
    padding: 0 50px;
    gap: 15px;
}

.strip-item img {
    height: 120px;
    width: auto;
}

.strip-item h4 {
    color: var(--white-color);
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: left;
}

.mobile-break {
    display: none;
}

.image-section {
    padding: 0; 
    margin: 0 auto;
    line-height: 0;
}

.image-content-block { 
    padding: 0;
}

.image-content-block img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 650px;
}

.hero_jasakontruksi h1 .mobile-break,
.hero h1 .mobile-break,
nav ul li a .mobile-break,
.footer-col a .mobile-break {
    display: none !important; 
}

/* About Section */
.about {
    padding: 50px 0 20px 0; 
    text-align: left;
}

.about h2 {
    font-size: 30px;
    color: var(--the-blue-one);
    margin-bottom: 15px;
    text-align: center;
    font-weight: 700;
}

.about p {
    margin: 30px auto 30px auto;
    font-size: 24px;
    text-align: justify;
    margin-left: 70px;
    margin-right: 70px;
}

.about .btn {
    display: block;
    width: 250px;
    margin: 10px 70px 30px;
    text-align: center;
}

/* Features Section */
.features-section {
  background-image: linear-gradient(rgba(149, 0, 0, 0.8), rgba(149, 0, 0, 0.8)), url('image/Experience UEE/Civil Works/IMG_1199.JPG');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 60vh;
  padding: 50px 0;
  text-align: center; 
}


.features-grid {
  display: flex; 
  justify-content: center; 
  align-items: flex-start;
  gap: 100px;
  margin-top: 20px;
}

.feature-item {
  flex-basis: 250px; 
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center; 
  text-align: center;
}

.icon-circle {
  width: 120px;
  height: 120px;
  background-color: transparent; 
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.icon-circle img {
  width: 200px;
  height: auto;
}

.feature-item h3 {
  font-size: 20px; 
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 5px;
  color: var(--white-color); 
  text-transform: uppercase;
}

.feature-item p {
  font-size: 18px; 
  color: var(--white-color); 
  line-height: 1.4;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: var(--the-blue-one);
    background-image: linear-gradient(rgba(0, 57, 149, 0.8), rgba(0, 45, 149, 0.8)), url('image/Experience UEE/HDPE/DSC06468.JPG');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 70vh;
}

.services .section-title {
    color: var(--white-color);
    margin-bottom: 60px;
}

.service-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 140px;
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center; 
  text-align: center;
}

.service-icon {
    width: 200px; 
    height: auto;
    margin-bottom: 0;
    margin-top: -60px;
    padding: 20px;
    display: flex;
    justify-content: center;
}


.service-card h4 {
    font-size: 20px;
    color: var(--white-color); 
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
    text-align: center;
}

/* Proyek card*/
.project-feature {
    padding: 100px 0 0 0;
}

.project-feature-grid {
    display: flex;
    justify-content: center;
    gap: 70px;
    margin: 0 90px 0 90px;
}

.project-feature-card {
    position: relative;
    width: 50%;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.content-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.45);
    padding: 25px 30px;
    width: 400px;
    height: 200px;
    display: flex;           
    justify-content: center;  
    align-items: center;    
    text-align: center;       
    z-index: 3;
}

.content-box h2 {
    color: white;
    font-size: 30px;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
    
}

.project-feature-card:hover {
    transform: scale(1.05);
}

.project-feature-card:hover .content-box {
    transform: translate(-50%, -50%) scale(1.05);
    background: rgba(0, 0, 0, 0.6);
}

/* Partners Section */
.partners {
    padding: 100px 0;
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    row-gap: 20px; 
    column-gap: 35px; 
    max-width: 1300px;
    height: auto;
    margin: 10px auto; 
    padding: 0 20px;
}

.partner-logos img {
    max-height: 140px;
    width: auto;
    flex-basis: 150px; 
    object-fit: contain;
}

@media (max-width: 768px) {
    /* Hero */
    .hero { 
        justify-content: center;
        min-height: 100vh; }
    .hero h1 { 
        font-size: 50px !important;
        line-height: 1.3 !important;
    }
    
    /* hero-strip */

    .hero-strip{
        padding: 30px 0 40px !important;
        text-align: center !important;
    }

    .strip-grid {
        flex-direction: column !important; 
        align-items: center !important;
        justify-content: center !important;
        padding-left: 20px;
    }

    .strip-item {
        width: 100%;
        max-width: 400px !important;
        justify-content: flex-start !important;
        min-width: unset !important;
    }

    .strip-item img {
        height: 100px !important;
        width: 100px !important;
    }
    
    .strip-item h4 {
        font-size: 19px !important;
    }

    /* About */
    .about p { 
        font-size: 16px; 
        padding: 0 10px 20px; 
        margin: 20px 0; 
    }
    
    .about .btn {
    display: block;
    width: 230px;
    margin: 10px 70px 30px;
    text-align: center;
    }

    /* Features Section */
    .features-section {
        height: auto;
        padding: 10px 0;
    }

    .features-grid {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .feature-item {
        flex-basis: 100%;
    }

    /* Services Section */
    .services {
        height: auto;
        padding: 40px 40 0;
    }

    .services .section-title {
    font-size: 35px !important;
    margin-bottom: 10px;
    }

    .service-grid {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .service-icon {
        margin-top: 0;
        width: 220px !important;
    }

    /* Project Card */
    .project-feature {
        padding: 50px 0 !important;
    }

    .project-feature-grid {
        flex-direction: column ;
        margin: 0 20px !important;
        gap: 20px;
    }

    .project-feature-card {
        width: 100%;
        height: 250px;
    }

    .content-box {
        width: 90%;
        width: 250px !important;
        height: 150px !important;
        padding: 20px;
    }

    .content-box h2 {
        font-size: 22px;
    }

    /* Partners Section */
    .partners {
        padding: 20px 0 !important;
    }

    .partner-logos {
        gap: 10px !important;
    }

    .partner-logos img {
        max-height: 90px !important;
        flex-basis: 100px !important;
    }

    .section-title{
        font-size: 35px;
    }
}

@media (max-width: 1024px) {
    /* Hero Section */
    .hero {
        padding: 100px 40px 0 40px;
        justify-content: center; 
        text-align: left;
    }

    .hero-content h1 {
        font-size: 100px; 
        line-height: 1.1;
    }

    /* Hero Strip */
    .strip-item {
        padding: 0 20px 0 20px; 
        gap: 10px;
    }

    .strip-item img {
        height: 80px; 
    }

    .strip-item h4 {
        font-size: 16px;
    }

    /* About Section */
    .about p {
        margin-left: 40px;
        margin-right: 40px;
        font-size: 20px; 
    }

    .about .btn {
        margin: 10px auto 30px;
    }

    /* Features Section */
    .features-section {
        height: auto; 
        padding: 60px 20px;
    }

    .features-grid {
        gap: 40px;
        flex-wrap: wrap;
    }

    /* Services Section */
    .services {
        height: auto;
        padding: 60px 20px;
    }

    .service-grid {
        gap: 40px; 
        flex-wrap: wrap;
    }

    .service-icon {
        margin-top: 0;
        width: 250px !important;
    }

    /* Proyek Card */
    .project-feature-grid {
        margin: 0 40px;
        gap: 30px;
    }

    .content-box {
        width: 300px;
        height: 180px;
        padding: 20px;
    }

    .content-box h2 {
        font-size: 24px;
    }

    /* Partners Section */
    .partner-logos {
        column-gap: 20px;
    }

    .partner-logos img {
        max-height: 140px;
        flex-basis: 120px;
    }
}

/* Footer */
footer {
    color: white;
}

.footer-main {
    background-color: var(--black-footer);
    padding: 50px 0;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
}

footer .container {
    display: flex;
    justify-content: space-between; 
    flex-wrap: wrap;
    gap: 20px;
}


.footer-col.about-col {
    flex-basis: 40%;
}
.footer-col.menu-col,
.footer-col.contact-col {
    flex-basis: 25%;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 8px;
}

.footer-logo {
    width: 90px;
    height: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text strong {
    font-size: 18px;
    font-weight: 700;
}

.logo-text span {
    font-size: 16px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--merah-footer);
}

.footer-col.about-col .footer-description {
    color: var(--white-color);
    font-size: 17px;
}

/* Daftar menu */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-col a:hover {
    color:var(--the-blue-one);
    transform: scale(1.08);
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 38px;
    width: 38px;
    background-color: white;
    border-radius: 50%;
    color: var(--merah-footer);
    font-size: 18px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-links .fab.fa-whatsapp {
    text-shadow: 
        0 0 1px currentColor, 
        0 0 1px currentColor,
        0 0 1px currentColor; 
        font-size: 24px;
        justify-content: center;
        align-items: center;
}

.copyright {
    background-color: var(--merah-footer);
    text-align: center;
    padding: 15px 0;
}

.copyright p {
    margin: 0;
    font-size: 14px;
}

@media (max-width: 1024px) {

    .footer-main {
        padding: 40px 20px;
    }

    footer .container {
        gap: 30px;
        justify-content: flex-start;
        margin-left: 20px;
    }

    .footer-col.about-col {
        flex-basis: 100%;
        margin-bottom: -60px;
    }

    .footer-col.menu-col,
    .footer-col.contact-col {
        flex-basis: 45%;
    }

    .footer-col.about-col .footer-description {
        font-size: 16px;
        max-width: 800px;
    }

    .logo-text strong {
        font-size: 17px;
    }

    .logo-text span {
        font-size: 18px;
    }
}

@media (max-width: 768px) {

    .footer-main {
        padding: 40px;
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
    }

    footer .container {
        flex-direction: column;
        align-items:self-start;
        text-align:left;
        gap: 24px;
        margin-left: -30px !important;
    }

    .footer-col {
        flex-basis: 100%;
    }

    .logo-wrapper {
        justify-content: center;
    }

    .footer-logo {
        width: 75px;
    }

    .logo-text strong {
        font-size: 17px;
    }

    .logo-text span {
        font-size: 15px;
    }

    .footer-col h4 {
        margin-bottom: 8px;
    }

    .footer-col ul li {
        margin-bottom: 8px;
    }

    .footer-col.about-col .footer-description{
        margin-bottom: 60px;
    }

    .social-links {
        justify-content: center;
    }
}


/* --- TENTANG KAMI --- */
.hero-about {
    position: relative;
    width: 100%;
    height: 60vh;
    background: url('image/Experience UEE/site fabrikasi/5.JPG') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 80px;
}

.hero-about .overlay {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.50) 50%,
        rgba(0, 0, 0, 0.20) 100%
    );
}

.hero-about h1 {
    position: relative;
    color: #fff;
    font-size: 80px;
    font-weight: 800;
    text-align: left;
    letter-spacing: 2px;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.sejarah-perusahaan {
    width: 100%;
    background-color: #0054A6;
    padding: 60px 0 120px;
    color: white;
}

.sejarah-content {
    width: 70%;
    margin: auto;
}

.sejarah-perusahaan h2 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
}

.sejarah-perusahaan p {
    font-size: 20px;
    line-height: 1.8;
    text-align: justify;
}

.visi-box {
    width: 80%;
    margin: -70px auto 30px;
    background-color: var(--primary-red);
    color: white;
    text-align: center;
    padding: 25px 20px;
}

.visi-box h2 {
    font-size: 32px;
    margin-bottom: 10px;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
}

.visi-box p{
    font-size: 20px;
}

.misi-box {
    width: 80%;
    margin: 0 auto 60px;
    background-color: var(--the-blue-one);
    color: white;
    padding: 30px 40px;
}

.misi-box h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 15px;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
}

.misi-box p{
    font-size: 20px;
}

.misi-box ul {
    padding-left: 60px;
}

.misi-box ul li {
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.data-perusahaan {
    max-width: 1100px;
    margin: 50px auto;
    padding: 10px 0;
    font-family: "Poppins", sans-serif;
}

.data-perusahaan h2 {
    text-align: center;
    font-size: 50px;
    font-weight: 700;
    color: var(--the-blue-one);
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
}

.data-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  border-top: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
  padding: 60px 0;
  column-gap: 30px;
  font-size: 23px;
}

.data-item {
  display: contents; 
}

.data-label {
  font-weight: 700;
  text-align: right;
  padding-right: 2px;
}

.data-value {
  border-left: 2px solid #ccc;
  padding-left: 30px;
}

.struktur-organisasi {
    background-color: #f9f9f9;
    padding: 60px 0;
    text-align: center;
}

.struktur-organisasi h2 {
    font-size: 50px;
    font-weight: 700;
    color: var(--merah-footer);
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
}

.struktur-img img {
    width: 90%;
    max-width: 1300px;
    height: auto;
}

@media (max-width: 1024px) {
    .hero-about {
        height: 40vh;
        padding-left: 50px;
    }

    .hero-about h1 {
        font-size: 70px;
        letter-spacing: 1px;
    }

    .sejarah-content,
    .visi-box,
    .misi-box {
        width: 90%;
    }

    .sejarah-perusahaan h2 {
        font-size: 32px;
    }

    .sejarah-perusahaan p,
    .visi-box p,
    .misi-box p,
    .misi-box ul li {
        font-size: 18px;
    }

    .misi-box ul {
        padding-left: 40px;
    }

    .data-perusahaan {
        margin: 40px 20px;
    }
    .data-perusahaan h2 {
        font-size: 40px;
    }

    .data-container {
        font-size: 20px;
        padding: 40px 0;
        column-gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero-about {
        height: 45vh;
        padding-left: 25px;
    }

    .hero-about h1 {
        font-size: 42px;
        letter-spacing: 1px;
    }

    .sejarah-perusahaan {
        padding: 30px 0 90px;
    }

    .sejarah-content,
    .visi-box,
    .misi-box {
        width: 92%;
    }

    .sejarah-perusahaan h2 {
        font-size: 24px;
        text-align: center;
    }

    .sejarah-perusahaan p {
        font-size: 16px;
        text-align: justify;
        padding: 10px;
    }
    .visi-box p,
    .misi-box p,
    .misi-box ul li {
        font-size: 16px;
        text-align: justify;
    }

    .visi-box {
        margin: -50px auto 20px;
        padding: 20px 15px;
    }

    .misi-box {
        padding: 25px 20px;
    }

    .misi-box ul {
        padding-left: 25px;
    }

    .data-perusahaan {
        padding: 0 10px !important; 
    }

    .data-perusahaan h2 {
        font-size: 24px;
        margin: 0 0 20px;
    }

    .data-container {
        grid-template-columns: 1fr;
        font-size: 15px;
        padding: 15px 10px 0 10px;
        row-gap: 3px;
    }

    .data-label {
        text-align: left;
        padding-right: 0;
        font-weight: 600;
        color: var(--the-blue-one);
    }

    .data-value {
        border-left: none;
        padding-left: 0;
        padding-bottom: 5px;
        border-bottom: 1px solid #ccc;
    }

    .data-item:last-child .data-value {
        border-bottom: none !important;
    }

    .struktur-organisasi {
        padding: 30px 0;
    }

    .struktur-organisasi h2 {
        font-size: 24px;
    }

    .struktur-img img {
        width: 90%;
    }
}


.hero-proyek {
    position: relative;
    width: 100%;
    height: 60vh;
    background: url('image/Experience UEE/Civil Works/6.JPG') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding-left: 80px;
}

.hero-proyek .overlay {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.50) 50%,
        rgba(0, 0, 0, 0.15) 100%
    );
}

.hero-proyek h1 {
    position: relative;
    color: #fff;
    font-size: 80px;
    font-weight: 800;
    text-shadow: 2px 4px 6px rgba(0, 0, 0, 0.25);
    z-index: 2;
}

/* --- JUDUL PROYEK --- */
.judul-proyek {
    text-align: center;
    padding: 60px 0 60px;
}

.judul-proyek h2 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
    color: #C6252C;
}

.judul-proyek p {
    font-size: 20px;
    line-height: 1.8;
    width: 70%;
    margin: auto;
    color: var(--black-footer);
}

.projects {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.project {
    position: relative;
    margin-bottom: 70px;
}

.photo-slider {
    position: relative;
    height: 450px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.20);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.photo-slider:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}

.photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.photo.active {
    opacity: 1;
}

.project-text {
    position: absolute;
    bottom: 35px;
    left: 40px;
    max-width: 600px;
    color: #f7f7f7;
    z-index: 2;
    padding: 20px 24px;
}

.project-text h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 8px 8px 10px rgba(0, 0, 0, 1);
}

.project-text p {
    font-size: 18px;
    font-weight: 500;
    text-shadow: 8px 8px 10px rgba(0, 0, 0, 1);
}


.project-text {
    animation: textIn 0.6s ease forwards;
}

@keyframes textIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Nav */
.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.0);
    color: white;
    border: none;
    font-size: 28px;
    padding: 8px 14px;
    cursor: pointer;
}

.nav:hover {
    color:#C6252C;
    transform: translateY(-50%) scale(1.15);

}

.prev { left: 20px; }
.next { right: 20px; }

@media (max-width: 1024px) {

    /* HERO */
    .hero-proyek {
        height: 40vh;
        padding-left: 40px;
    }

    .hero-proyek h1 {
        font-size: 70px;
        letter-spacing: 1px;
    }

    /* JUDUL */
    .judul-proyek h2 {
        font-size: 40px;
    }

    .judul-proyek p {
        width: 85%;
        font-size: 18px;
    }

    /* SLIDER */
    .photo-slider {
        height: 380px;
    }

    .project-text {
        bottom: 25px;
        left: 30px;
        max-width: 500px;
        padding: 16px 20px;
    }

    .project-text h2 {
        font-size: 22px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
    }

    .project-text p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {

    /* HERO */
    .hero-proyek {
        height: 45vh;
        padding: 0 20px;
        justify-content: left;
    }

    .hero-proyek h1 {
        font-size: 42px;
        text-align: center;
    }

    /* JUDUL */
    .judul-proyek {
        padding: 40px 0;
    }

    .judul-proyek h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .judul-proyek p {
        width: 90%;
        font-size: 18px;
        line-height: 1.6;
    }

    /* PROJECT */
    .project {
        margin-bottom: 50px;
    }

    .photo-slider {
        height: 300px;
    }

    .project-text {
        position: static;
        max-width: 100%;
        padding: 16px 18px;
        background: var(--the-blue-one);
        margin-top: -4px;
    }

    .project-text h2 {
        font-size: 20px;
    }

    .project-text p {
        font-size: 15px;
    }

    .nav {
        font-size: 22px;
        padding: 6px 10px;
    }

    .prev { left: 10px; }
    .next { right: 10px; }
}


/* GALLERY */
.hero-galeri {
    position: relative;
    width: 100%;
    height: 60vh;
    background: url('image/Experience UEE/wilmar/3.JPG') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding-left: 80px;
}

.hero-galeri .overlay {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.50) 50%,
        rgba(0, 0, 0, 0.15) 100%
    );
}

.hero-galeri h1 {
    position: relative;
    color: #fff;
    font-size: 80px;
    font-weight: 800;
    text-shadow: 2px 4px 6px rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.gallery-section {
    padding: 60px 12%;
    background: #fff;
}

/* FILTER */
.gallery-filter {
    text-align: center;
    margin-bottom: 40px;
}

.filter-btn {
    background: transparent;
    border: 1.5px solid #ddd;
    padding: 10px 24px;
    margin: 6px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--the-blue-one);
    color: #fff;
    border-color: var(--the-blue-one);
}

/* GRID */
.gallery-grid {
    column-count: 5;
    column-gap: 15px;
}

.gallery-item {
    margin-bottom: 20px;
    overflow: hidden;
    cursor: pointer;
    break-inside: avoid;
    position: relative;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* FILTER ANIMATION */
.gallery-item.hide {
    opacity: 0;
    transform: scale(0.85);
    pointer-events: none;
    height: 0;
    margin-bottom: 0;
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 999;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-img {
    max-width: 70%;
    max-height: 70%;
    transform: scale(0.8);
    transition: transform 0.4s ease;
}

.lightbox.active .lightbox-img {
    transform: scale(1);
}

.lightbox .close {
    position: absolute;
    top: 80px;
    right: 80px;
    font-size: 36px;
    color: #fff;
    cursor: pointer;
}

@media (max-width: 1024px) {

    /* HERO */
    .hero-galeri {
        height: 40vh;
        padding-left: 40px;
    }

    .hero-galeri h1 {
        font-size: 70px;
        letter-spacing: 1px;
    }

    /* GALLERY */
    .gallery-section {
        padding: 45px 6%;
    }

    .gallery-grid {
        column-count: 3;
    }

    /* FILTER */
    .filter-btn {
        padding: 9px 20px;
        font-size: 15px;
    }

    /* LIGHTBOX */
    .lightbox-img {
        max-width: 80%;
        max-height: 80%;
    }

    .lightbox .close {
        top: 150px;
        right: 40px;
    }
}

@media (max-width: 768px) {

    /* HERO */
    .hero-galeri {
        height: 45vh;
        padding: 0 20px;
        justify-content: left;
    }

    .hero-galeri h1 {
        font-size: 42px;
        text-align: left;
    }

    /* GALLERY */
    .gallery-section {
        padding: 40px 20px;
    }

    .gallery-grid {
        column-count: 3;
        column-gap: 12px;
    }

    .gallery-item {
        margin-bottom: 16px;
    }

    /* FILTER */
    .filter-btn {
        padding: 8px 18px;
        font-size: 14px;
        margin: 5px;
    }

    /* LIGHTBOX */
    .lightbox-img {
        max-width: 90%;
        max-height: 75%;
    }

    .lightbox .close {
        top: 20px;
        right: 20px;
        font-size: 30px;
    }
}

/* --- LAYANAN --- */
/* ---- JASA KONTRUKSI ---- */

.hero_jasakontruksi {
    position: relative;
    width: 100%;
    height: 60vh;
    background: url('image/Experience UEE/Civil Works/5.JPG') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 80px;
}

.hero_jasakontruksi .overlay {
     position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.50) 50%,
        rgba(0, 0, 0, 0.20) 100%
    );
}

.hero_jasakontruksi h1 {
    position: relative;
    color: #fff;
    font-size: 80px;
    font-weight: 800;
    text-align: left;
    letter-spacing: 2px;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.kontruksi-umum {
    background-color: var(--white-color);
    padding: 80px 0;
    text-align: center;
}

.kontruksi-umum .section-title {
    color: var(--the-blue-one);
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 50px;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
}


.kontruksi-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap; 
}

.kontruksi-card {
    width: calc(33.333% - 27px);
    min-width: 250px;
    background-color: #f7f7f7;
    padding: 0;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.kontruksi-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.kontruksi-image-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.kontruksi-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.kontruksi-card:hover .kontruksi-image-wrapper img {
    transform: scale(1.05);
}

.kontruksi-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin: 18px 0 8px;
    padding: 0 15px;
    line-height: 1.3;
    position: relative;
}

.kontruksi-card h4::after {
    content: "";
    width: 180px;
    height: 2.5px;
    background-color: #c62828;
    display: block;
    margin: 20px auto 0;
    border-radius: 1000px;
}

.container .kontruksi-card p {
    font-size: 16px;
    color: #555;
    padding: 10px 18px 24px;
    line-height: 1.6;
}

@media (max-width: 1024px) {    
    .hero_jasakontruksi {
        height: 40vh;
        padding-left: 40px;
    }

    .hero_jasakontruksi h1 {
        font-size: 70px;
        letter-spacing: 1px;
    }

    .kontruksi-umum {
        padding: 60px 0;
    }

    .kontruksi-umum .section-title {
        font-size: 40px;
        margin-bottom: 40px;
    }

    .kontruksi-grid {
        gap: 20px;
        padding: 0 20px;
    }

    .kontruksi-card {
        width: calc(32% - 10px); 
        min-width: unset;
    }

    .container .kontruksi-card p {
        font-size: 14px;
        padding: 10px 15px 20px;
    }
}

@media (max-width: 768px) {
    .hero_jasakontruksi {
        height: 50vh;
        padding: 0 20px;
        justify-content: center;
    }

    .hero_jasakontruksi h1 {
        font-size: 42px !important;
        text-align: left;
        line-height: 1.2;
    }

    .kontruksi-umum {
        padding: 40px 0;
    }

    .kontruksi-umum .section-title {
        font-size: 24px !important;
        margin-bottom: 30px;
        padding: 0 15px;
    }

    /* GRID & CARD */
    .kontruksi-grid {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        padding: 0 20px;
    }

    .kontruksi-card {
        width: 100% !important;
        max-width: 450px;
    }

    .kontruksi-card h4 {
        font-size: 18px;
        margin: 15px 0 5px;
    }

    .kontruksi-card h4::after {
        width: 140px;
        margin-top: 15px;
    }

    .container .kontruksi-card p {
        font-size: 15px;
        padding: 5px 20px 20px;
    }

    /* --- GAMBAR LAYANAN  --- */
    .gambarlayanan-hero-static {
    height: 50vh !important; 
    position: relative;
    }

    .gambarlayanan-overlay {
        padding-left: 20px !important;
        justify-content: center;
        text-align: left;
    }

    .gambarlayanan-overlay-text h2 {
        font-size: 20px !important;
        line-height: 1.2;
    }

    .gambarlayanan-contact-content p {
        font-size: 15px !important;
        margin: 0 -40px 10px -40px !important;
        text-align: justify;
    }

    .whatsapp-btn {
        width: 60%;
        margin-left: -40px !important;
        font-size: 14px !important;
        font-weight: 500px !important;
        text-align: center;
    }
}

/* Rental Alat */
.hero_rental {
    position: relative;
    width: 100%;
    height: 60vh;
    background: url('image/Experience UEE/wilmar/6.JPG') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 80px;
}

.hero_rental .overlay {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.50) 50%,
        rgba(0, 0, 0, 0.15) 100%
    );
}

.hero_rental h1 {
    position: relative;
    color: #fff;
    font-size: 80px;
    font-weight: 800;
    text-align: center;
    letter-spacing: 2px;
    text-shadow: 4px 6px 8px rgba(0, 0, 0, 0.25);
}

.container p {
    margin-bottom: 60px;
    font-size: 15px;
    color: var(--white-color);
    line-height: 1.6;
}

.rentalalat-service {
    background-color: var(--white-color);
    padding: 80px 0;
    text-align: center;
}

.rentalalat-title {
    color: var(--the-blue-one);
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
}

.rentalalat-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap; 
}

.rentalalat-card {
    width: 100%;
    height: 600px;
    background-color: var(--light-blue);
    padding: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
    overflow: hidden; 
}

.rentalalat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.rentalalat-card:hover .rentalalat-image-wrapper img {
    transform: scale(1.05);
}

.rentalalat-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-blue);
    margin: 15px 0 10px 0;
    padding: 5px 15px; 
    line-height: 1.2;
}

.rentalalat-card p {
    font-size: 20px;
    color: var(--text-color);
    padding: 30px 15px 10px 15px;
}

.rentalalat-service .container p {
  margin-bottom: 60px;
  margin-right: 30px;
  margin-left: 30px;
  font-size: 20px; 
  color: var(--black-footer);
  line-height: 1.6;
  text-align: center;
}

.slider-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.rentalalat-grid {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

@media (max-width: 1024px) {
    .hero_rental {
    height: 40vh;
    padding-left: 30px;
    }

    .rentalalat-grid {
        padding: 0 40px !important;
    }
    
    .rentalalat-card {
        width: calc(100% - 10px) !important;
        height: auto !important; 
    }
}

@media (max-width: 768px) {
    .hero_rental {
    height: 45vh;
    width: 100%;
    padding-left: 30px;
    }

    .hero_rental h1 {
    font-size: 40px;
    font-weight: 800;
    text-shadow: 4px 6px 8px rgba(0, 0, 0, 0.25);
    }

    .rentalalat-service .container > p {
        margin-bottom: 40px !important;
        font-size: 16px !important;
        margin-left: 10px !important;
        margin-right: 10px !important;
        color: #333 !important;
        text-align: center !important;
    }

    .rentalalat-grid {
        padding: 0 10px !important;
    }

    .rentalalat-card {
        width: 100% !important;
        max-width: 500px;
        height: auto !important;
    }

    .slider-container, .slider-slide {
        width: 100% !important;
        height: 250px !important;
        overflow: hidden;
    }

    .slider-slide img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important; 
        display: block;
    }
}

/*Gambarlayanan Section*/
.gambarlayanan-section {
    padding: 0; 
    margin: 0;
    margin-bottom: 60px; 
}

.gambarlayanan-hero-static {
    background: url('image/Home Office.jpg') no-repeat center center/cover;
    height: 600px; 
    position: relative;
}

.gambarlayanan-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(166, 3, 3, 0.5) 0%, rgba(0, 33, 83, 0) 100%);
    padding: 20px 60px;
    height: 60%;
    display: flex;
    align-items: flex-end;
}

.gambarlayanan-overlay-text h2 {
    font-size: 50px;
    font-weight: 700;
    margin: 0;
    padding-bottom: 20px;
    color: var(--white-color);
    line-height: 1.3;
}

.gambarlayanan-contact-content {
    background-color: var(--white-color); 
    padding: 30px 60px;
}

.gambarlayanan-contact-content p {
    font-size: 20px;
    color: var(--black-footer);
    margin-right: 10px;
    margin-left: 20px;
    margin-bottom: 25px;
}

.whatsapp-btn {
    background-color: var(--primary-red); 
    color: var(--white-color);
    padding: 12px 30px;
    font-weight: 600;
    font-size: 20px;
    margin-left: 20px;
}

.whatsapp-btn:hover {
    background-color: var(--the-blue-one);
}

.whatsapp-btn i {
    margin-right: 8px;
}

/* --- KONTAK --- */

.hero_kontak {
    position: relative;
    width: 100%;
    height: 60vh;
    background: url('image/projek UEE/2. Modify and Installation Temporary Jumper Spool 24 & 6 x 10 - PT CHIYODA INTERNATIONAL INDONESIA/12.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 80px;
}

.hero_kontak .overlay {
     position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.50) 50%,
        rgba(0, 0, 0, 0.15) 100%
    );
}

.hero_kontak h1 {
    position: relative;
    color: #fff;
    font-size: 80px;
    font-weight: 800;
    text-align: center;
    letter-spacing: 2px;
    text-shadow: 4px 6px 8px rgba(0, 0, 0, 0.25);
}

.contact-card h2 {
    color: var(--merah-footer);
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 40px;
    border-bottom: 2px solid #ccc;
    padding-bottom: 10px;
}

.contact-info {
    padding: 80px 0;
    background-color: var(--white-color);
}

.contact-grid {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.primary-contact {
    flex: 1;
    padding: 32px;
    background-color: #f7f7f7;
    border-top: 5px solid var(--the-blue-one);
}


.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px;
}

.contact-item i {
    font-size: 20px;
    color: var(--the-blue-one);
    margin-top: 3px;
    width: 25px;
    text-align: center;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.5;
    color: var(--black-footer);
    margin: 0;
}

.contact-card {
    flex: 1;
}

.contact-map {
    flex: 1;
}

@media (max-width: 1024px) {

    .hero_kontak {
        padding-left: 40px;
        height: 40vh;
    }

    .hero_kontak h1 {
        font-size: 70px;
        letter-spacing: 1px;
    }

    .contact-map iframe {
        height: 500px;
        width: 100%;

    }

    .contact-info {
        padding: 70px 0;
    }

    .contact-grid {
        gap: 30px;
    }

    .contact-card h2 {
        font-size: 34px;
    }

    .contact-grid {
        flex-direction: column;
    }

    .contact-map {
        order: -1;
        flex: none;
        width: 100%;
    }
    
    .primary-contact {
        width: 100%;
        padding: 20px;
    }
}

@media (max-width: 768px) {

    /* HERO */
    .hero_kontak {
        height: 45vh;
        padding: 0 20px;
        justify-content: left;
    }

    .hero_kontak h1 {
        font-size: 42px;
        text-align: center;
        letter-spacing: 1px;
    }

    .contact-map iframe {
        height: 300px;
        width: 100%;

    }

    .contact-map {
        background: #f7f7f7;
        padding: 14px;
        border-top: 5px solid var(--the-blue-one);
    }

    /* CONTACT */
    .contact-info {
        padding: 50px 0;
    }

    .primary-contact {
        padding: 26px 22px;
    }

    .contact-card h2 {
        font-size: 28px;
    }

    .contact-item {
        gap: 12px;
    }

    .contact-item i {
        font-size: 18px;
    }

    .contact-item p {
        font-size: 13px;
    }
}