

:root {
    --primary-color: #08143c; 
    --secondary-color: #ffcc00; 
    --third-color: #f7f7f7;
--gray-darker:               #444444;
--gray-dark:                 #696969;
--gray:                      #999999;
--gray-light:                #cccccc;
--gray-lighter:              #ececec;
--gray-lightest:             lighten(--gray-lighter,4%);
}
* {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
body{
    background-color: var(--primary-color);

}

.hero{
    display: flex;
    width: 100%;
    height: 100vh;
    justify-content: flex-end;
    align-items: center;
    background: url("herodashboard2.png") center/cover no-repeat;;
    text-align: center;
    color: white;
    position: relative;
}

.break{
    display: flex;
    width: 100%;
    height: 40vh;
    justify-content: center;
    align-items: center;
    background: url("herobreak4.jpeg") center/cover no-repeat;;
    text-align: center;
    color: white;
    position: relative;
}
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: rgba(4, 73, 129, 0.7); /* Dark overlay */
}
.hero-content {
    animation: fadeIn 1.5s ease-out forwards;
    position: relative;
    z-index: 1;
    padding-right: 80px;
}
.hero-content h1{
    font-size: 60px
}
.hero-content p{
    margin-bottom: 20px;
}
.hero-btn{
    text-decoration: none;
    background-color: var(--secondary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: larger;
    text-align: center;
}
.hero-btn:hover{
    background-color: #d1a700;
    color: white;
}

#aboutus{
    min-height: 100vh;
    background: white;
}
.aboutus-right{
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* background-color: #08143c; */
    color: white;
}

.aboutus h1{
    padding: 40px;
    text-align:center;font-size: 36px;padding-bottom: 0px;    
}
#testimonial h1{
    text-align:center;font-size: 36px;padding-bottom: 0px;   
}
.bbs-white{
    border-bottom: 1px solid white;
}
.bbs-prim{
    border-bottom: 1px solid #044981;
    padding-bottom: 40px !important;
}
.aboutus-content{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 3px;
}
.aboutus-left{
    flex: 1;
    overflow: hidden;
    margin: 0;
}

.aboutus-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Right Side Content */
.aboutus-right {
    flex: 0.7;
    padding: 60px;
}
.aboutus-right p{
    font-size: 30px;
    text-align: justify;
}
.aboutus-right button{
    margin-top: 30px;
    border: 0;
    border-radius: 100px;
    padding: 10px 20px;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .hero{
        background: url("herodashboard2.png") left/cover no-repeat;
        background-color: rgba(0, 0, 0, 0.3); 
        background-blend-mode: darken;
        justify-content: center;
    }
    .hero-content{
        padding-right: 0px;
    }
    .hero h1{
        font-size: 28px;
    }
    .hero-btn{
        padding: 10px 5px;
    }
    #testimonial h1,
    .aboutus h1 {
        font-size: 28px; /* Smaller font size */
        padding: 20px; /* Less padding */
        text-align: center; /* Center align */
    }

    .testimonial-text,
    .testimonial-author strong,
    .testimonial-author span{
        font-size: 0.8rem !important;
    }

    .aboutus-content {
        flex-direction: column; /* Stack content in a single column */
        align-items: center;
        text-align: center;
    }

    .aboutus-left {
        flex: none;
        width: 100%;
        border-right: none; /* Remove border */
        border-bottom: 1px solid #0060af; /* Add a border below the image */
    }

    .aboutus-left img {
        width: 100%;
        height: auto; /* Keep image aspect ratio */
    }

    .aboutus-right {
        flex: none;
        width: 100%;
        padding: 30px 20px; /* Adjust padding for smaller screens */
    }

    .aboutus-right p {
        font-size: 18px; /* Smaller text for readability */
    }

    .aboutus-right a {
        width: 100%;
        max-width: 200px;
        font-size: 16px;
        padding: 10px;
        margin: 10px auto;
    }
    .role-card{
        grid-template-columns: 1fr !important;
    }
    .second-grid{
        grid-template-rows:  repeat(1,1fr)!important;
        grid-template-columns: 1fr !important;
    }
    .second-grid .role-card-inside:nth-child(1) {
        grid-column: 1 !important;
        grid-row: 1 !important;
    }

    /* 2) Place the SECOND item in the top-right cell */
    .second-grid .role-card-inside:nth-child(2) {
        grid-column: 1 !important;         /* Second column */
        grid-row: 2 !important;            /* First row */
    }

    /* 3) Place the THIRD item in the bottom-right cell */
    .second-grid .role-card-inside:nth-child(3) {
        grid-column: 1 !important;         /* Second column */
        grid-row: 3 !important;            /* Second row */
        background: white; 
    border-radius: 12px; 
    padding: 1.5rem; 
    text-align: center; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }
}
.joinus-card{
    flex: 1;
    padding: 60px 10px;
    border-right: 1px solid white;
    color: white;
}

.role-card{
    flex: 1;
    color: #044981;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
}

.role-card-inside{
    flex: 1;
    padding: 0;
    color: white;
    box-sizing: border-box;
    border-radius: 20px; 
}

.details-style{
    padding: 20px;
    width: auto;
    height: 40vh;
    background-color: #08143c;
    color: white;

}

.details-style strong{
    font-size: 30px;
}



/* Second grid (3 cards), we want the 3rd to span 2 rows */
.second-grid {
    /* We also define 2 columns x 2 rows here */
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: 1fr;
}

/* 1) Make the FIRST item span two rows in the second grid */
.second-grid .role-card-inside:nth-child(1) {
    grid-column: 1;         /* Place in the first column */
    grid-row: 1 / span 2;   /* Spans rows 1 and 2 */
}

/* 2) Place the SECOND item in the top-right cell */
.second-grid .role-card-inside:nth-child(2) {
    grid-column: 2;         /* Second column */
    grid-row: 1;            /* First row */
}

/* 3) Place the THIRD item in the bottom-right cell */
.second-grid .role-card-inside:nth-child(3) {
    grid-column: 2;         /* Second column */
    grid-row: 2;            /* Second row */
}


.pad-10-30{
    padding: 10px 30px;
}
.white-bg{
    background-color: white;
}
.third-bg{
    background-color: var(--third-color);
}

.logo-img{
    display: flex;
    justify-content: center;
}

.logo-img img{
    width: 90%;
    height: 80px;
    margin-top: 100px;
}

.building-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.workculture-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.prim-color{
    color: var(--primary-color)
}
.sec-color{
    color: var(--secondary-color);
}
.white-color{
    color: white;
}

.list{
    max-height: 100%; /* adjust height as needed */
    overflow-y: auto;
}

/* List Card */
.list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list li {
    cursor: default;
    padding: 8px 0;
    color: #044981;
    border-bottom: 1px solid #ddd;
}

.list li:hover{
    text-decoration: none;
}

.list li:last-child {
    border-bottom: none;
}

.flex-col{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.flex-general{
    display: flex;
    justify-content: center;
    padding: 50px;
}
.btn-roles{
    border-radius: 10px;
    padding: 15px 30px;
    background-color: #0060af;
    color:white;
    border: 0;
    cursor:pointer;
    text-decoration: none;
}
.btn-roles:hover{
    background-color: #044981;
}
.icon-href{
    text-decoration: none;
    font-size: 30px;
    color: white;
}

.sosmed-details-icon{
    color: #08143c;
    text-decoration: none;
    font-size: 24px;
}

.why-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 2rem; 
    margin: 3rem 0;
}

.why-card { 
    background: white; 
    border-radius: 12px; 
    padding: 1.5rem; 
    text-align: center; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.icon-circle { 
    width: 60px; height: 60px; 
    background: var(--primary-color); 
    color: white; 
    border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; 
    font-size: 24px; 
    margin: 0 auto 1rem;
}

.card-img { 
    width: 100%; 
    height: 150px; 
    object-fit: cover; 
    border-radius: 8px; 
    margin-top: 1rem; 
}

.social-icons a { 
    font-size: 24px; 
    margin: 0 8px; 
    color: var(--primary-color); 
}

/*LOWONGAN SECTION ONLY*/
#lowongan {
    background: white;
    /* min-height: 100vh; */
}
#lowongan .header__lowongan{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap:0; 
    margin-bottom: 56px;
}

#lowongan img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

#lowongan .btn {
  background-color: white;
  border: 1px solid var(--gray-light);
  border-radius: 1rem;
  color: var(--gray-dark);
  padding: 0.5rem;
  text-transform: lowercase;
}

#lowongan .btn--block {
  display: block;
}
 
#lowongan .cards {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0 3rem;
}

#lowongan .cards__item {
  display: flex;
  padding: 1rem;
}

@media(min-width: 40rem) {
	#lowongan .cards__item{
		width: 50%;
	}
  }
  @media(min-width: 56rem) {
	  #lowongan .cards__item{
		width: 33.3333%;
	  }
  }

#lowongan .card {
  background-color: white;
  border-radius: 0.25rem;
  box-shadow: 0 20px 40px -14px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  &:hover {
    .card__image {
      filter: contrast(100%);
    }
  }
}

#lowongan .card__content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 1rem;
  padding-right: 3rem;
}

#lowongan .card__image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  filter: contrast(70%);
  filter: saturate(180%);
  overflow: hidden;
  position: relative;
  transition: filter 0.5s cubic-bezier(.43,.41,.22,.91);
}
#lowongan .card__image:before{
	 content: "";
	  display: block;
    padding-top: 56.25%; 
}
@media(min-width: 40rem) {
	#lowongan .card__image:before{
	padding-top: 66.6%;
}
}

#lowongan {
    padding-bottom: 50px;
}
/* 
#lowongan .card__image--flowers {
  
} */

#lowongan .card__image--river {
  background-image: url("herodashboard.png");
}

#lowongan .card__image--record {
  background-image: url("herobreak4.jpeg");
}

#lowongan .card__image--fence {
  background-image: url("herobreak2.png");
}

#lowongan .card__title {
  /* //color: var(--gray-dark); */
  font-size: 1.25rem;
  /* font-weight: 300; */
  /* letter-spacing: 1px; */
  text-transform: uppercase;
}

#lowongan .card__text {
  flex: 1 1 auto;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}


/* TESTIMONIAL */

/* * {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}*/

#testimonial {
    background: white;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	/* background-color: #f5f5f5; */
	overflow: hidden;
    padding-bottom: 24px;
}

#testimonial .header__lowongan{
     display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap:0; 
}


#testimonial .carousel-container {
	width: 100%;
	max-width: 1200px;
	height: 450px;
	position: relative;
	perspective: 1000px;
	margin-top: 56px;
}

#testimonial .carousel-track {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	transform-style: preserve-3d;
	transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#testimonial .card__testi {
	position: absolute;
	width: 280px;
	height: 380px;
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	cursor: pointer;
}

#testimonial .card__testi img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#testimonial .card__testi.center {
	z-index: 10;
	transform: scale(1.1) translateZ(0);
}

#testimonial .card__testi.center img {
	filter: none;
}

#testimonial .card__testi.left-2 {
	z-index: 1;
	transform: translateX(-400px) scale(0.8) translateZ(-300px);
	opacity: 0.7;
}

#testimonial .card__testi.left-2 img {
	filter: grayscale(100%);
}

#testimonial .card__testi.left-1 {
	z-index: 5;
	transform: translateX(-200px) scale(0.9) translateZ(-100px);
	opacity: 0.9;
}

#testimonial .card__testi.left-1 img {
	filter: grayscale(100%);
}

#testimonial .card__testi.right-1 {
	z-index: 5;
	transform: translateX(200px) scale(0.9) translateZ(-100px);
	opacity: 0.9;
}

#testimonial .card__testi.right-1 img {
	filter: grayscale(100%);
}

#testimonial .card__testi.right-2 {
	z-index: 1;
	transform: translateX(400px) scale(0.8) translateZ(-300px);
	opacity: 0.7;
}

#testimonial .card__testi.right-2 img {
	filter: grayscale(100%);
}

#testimonial .card__testi.hidden {
	opacity: 0;
	pointer-events: none;
}

#testimonial .member-info {
	text-align: center;
	margin-top: 20px;
	transition: all 0.5s ease-out;
}

#testimonial .member-name {
	color:var(--primary-color);
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 10px;
	position: relative;
	display: inline-block;
}

#testimonial .member-name::before,
#testimonial .member-name::after {
	content: "";
	position: absolute;
	top: 100%;
	width: 100px;
	height: 2px;
	background: var(--primary-color);
}

#testimonial .member-name::before {
	left: -120px;
}

#testimonial .member-name::after {
	right: -120px;
}

#testimonial .member-role {
	color: #848696;
	font-size: 1rem;
	font-weight: 500;
	opacity: 0.8;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 10px 0;
	margin-top: -15px;
	position: relative;
}
#testimonial .dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 30px;
}

#testimonial .dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(8, 42, 123, 0.2);
	cursor: pointer;
	transition: all 0.3s ease;
}

#testimonial .dot.active {
	background: rgb(8, 42, 123);
	transform: scale(1.2);
}

#testimonial .nav-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: var(--primary-color);
	color: white;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 20;
	transition: all 0.3s ease;
	font-size: 1.5rem;
	border: none;
	outline: none;
	padding-bottom: 4px;
}

#testimonial .nav-arrow:hover {
	background: rgba(0, 0, 0, 0.8);
	transform: translateY(-50%) scale(1.1);
}

#testimonial .nav-arrow.left {
	left: 20px;
	padding-right: 3px;
}

#testimonial .nav-arrow.right {
	right: 20px;
	padding-left: 3px;
}

@media (max-width: 768px) {
	#testimonial .about-title {
		font-size: 4.5rem;
	}

	#testimonial .card__testi {
		width: 200px;
		height: 280px;
	}

	#testimonial .card__testi.left-2 {
		transform: translateX(-250px) scale(0.8) translateZ(-300px);
	}

	#testimonial .card__testi.left-1 {
		transform: translateX(-120px) scale(0.9) translateZ(-100px);
	}

	#testimonial .card__testi.right-1 {
		transform: translateX(120px) scale(0.9) translateZ(-100px);
	}

	#testimonial .card__testi.right-2 {
		transform: translateX(250px) scale(0.8) translateZ(-300px);
	}

	#testimonial .member-name {
		font-size: 2rem;
	}

	#testimonial .member-role {
		font-size: 1.2rem;
	}

	#testimonial .member-name::before,
	#testimonial .member-name::after {
		width: 50px;
	}

	#testimonial .member-name::before {
		left: -70px;
	}

	#testimonial .member-name::after {
		right: -70px;
	}
}

#testimonial .card__testi.flipped {
    transform: rotateY(180deg);
}

#testimonial .card-front,
#testimonial .card__testi-back {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 20px;
    overflow: hidden;
    backface-visibility: hidden;
}

.backface-visible{
    backface-visibility: unset !important;
}

#testimonial .card__testi-back {
    background: rgba(0, 0, 0, 0.3);        /* Dark overlay – adjust opacity here */
    color: #ffffff;                          /* White text for good contrast */
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transform: rotateY(180deg);
    
    /* Optional: adds a very subtle inner glow */
    box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.4);
    
    /* Ensures content is readable even if front image shows through a bit */
    backdrop-filter: blur(4px);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.testimonial-author strong {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    font-size: 0.95rem;
    opacity: 0.8;
}


