@charset "utf-8";
/* CSS Document */

/* =======================================================
	Animation Base 
========================================================*/
.fade-up, .fade-right, .fade-left,
.fly-left, .fly-right, .fly-up, .fly-down {
    opacity: 0;
    transition: all 0.8s ease-out;
}

/* Fade Animations */
.fade-up {
    transform: translateY(30px);
}

.fade-right {
    transform: translateX(50px);
}

.fade-left {
    transform: translateX(-50px);
}

/* Fly Animations (straight slide in from edges) */
.fly-left {
    transform: translateX(-200px);   /* from left */
}

.fly-right {
    transform: translateX(200px);    /* from right */
}

.fly-up {
    transform: translateY(-200px);   /* from top */
}

.fly-down {
    transform: translateY(200px);    /* from bottom */
}

/* When element becomes visible */
.show {
    opacity: 1;
    transform: translate(0, 0);  /* reset to normal */
}

/* បន្ថែម delay រៀងៗ */
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }
.delay-4 { transition-delay: 0.8s; }


/* =======================================================
	Scroll Indicator (first page)
========================================================*/

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    border-color: rgba(255, 255, 255, 0.9);
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(20px); opacity: 0; }
}

/* =======================================================
	Declare Font (Every devices show the same font) 
========================================================*/
@font-face {
  font-family: "Aparajita";
  src: url("../font/Aparajita.woff2") format("woff2"),
       url("../font/Aparajita.woff") format("woff"),
       url("../font/Aparajita.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "headplane";
  src: url("../font/headplane.woff2") format("woff2"),
       url("../font/headplane.woff") format("woff"),
       url("../font/headplane.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}


/* =======================================================
	RESET STYLES 
========================================================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Aparajita;
}


/* =======================================================
	Menu Section 
========================================================*/

.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
	background: radial-gradient(circle, rgba(102,204,255,1), rgba(0,0,153,1));
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 9999;
}

/* ====== LOGO ====== */
.menu .logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu .logo img {
    width: auto;
	height: 60px;
}

/* ====== MENU LISTS ====== */
.menu .list {
    flex: 1;
}

.menu .list.left {
    display: flex;
    justify-content: center;
}

.menu .list.right {
    display: flex;
    justify-content: center;
}

.menu ul {
    list-style: none;
    display: flex;
    gap: 50px;
}

.menu ul li {
    position: relative;
}

.menu ul li a {
    text-decoration: none;
    padding: 10px 15px;
    color: white;
	font-size: 18px;
    font-weight: bolder;
    transition: color 0.3s ease;
}

.menu ul li a:hover {
    color: blue;
}

/* ====== SUB-MENU ====== */
.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0,0,153,0.5);
    min-width: 280px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
	border-radius: 5px 5px;
    z-index: 9999;
}

.sub-menu ul {
    flex-direction: column;
    gap: 0;
}

.sub-menu ul li a {
    padding: 10px 15px;
    display: block;
    color: white;
	font-weight: normal;
}

.sub-menu ul li a:hover {
    background: #f5f5f5;
	font-weight: bold;
}

/* Show submenu on hover */
.menu ul li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}




/* =======================================================
	Welcome Page Heading 
======================================================= */
.welcome-section{
	width: 100%;
	height: 720px;
	background-image: url("../img/Home_background_01.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}

.welcome-text{
	position: absolute;
	font-family: headplane;
	color: white;
	width: 100%;
	height: auto;
	text-align: center;
	top: 40%;
	z-index: 999;
}
.welcome-text h1{
	font-size: 450%;
	font-weight: normal;
}
.welcome-text p{
	font-family: Aparajita;
	font-size: 250%;
	padding-top: 30px;
	padding-bottom: 100px;
}
.welcome-text a{
	font-family: Aparajita;
	color: darkblue;
	text-decoration: none;
	background-color: white;
	padding: 10px 50px;
	font-size: 30px;
	font-weight: bolder;
	border-radius: 30px;
}
.welcome-text a:hover{
	text-decoration: underline;
	box-shadow: 0 0 5px 3px grey;
}

.meet-our-team {
	width: 1300px;
	height: 650px;
	margin: auto;
	position: relative;

}
.meet-our-team a{
	color: white;
	font-size: 30px;
	text-decoration: underline;
	text-underline-offset: 10px;
	font-weight: bolder;
	font-style: italic;
	position: absolute; /* ប្ដូរទៅ absolute */
	bottom: 20px; /* ចុះក្រោម */
	left: 20px;   /* ទៅឆ្វេង */
}
.meet-our-team a:hover{
	color: orange;
}



/* =======================================================
	Overview Section
======================================================= */
.overview-section {
	width: 100%;
	height: 720px;
	background-image: url("../img/Home_background_02.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}
.overview-title {
	text-align: center;
	padding-top: 100px;
}
.overview-title h2 {
    font-size: 35px;
    margin-top: 20px;
	font-family: Aparajita;
	font-weight: bold;
    position: relative;
    display: inline-block;
	color: white;
	text-transform: uppercase;
}
.overview-title h2::before,
.overview-title h2::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 80px;
    height: 5px;
    background: white;
}
.overview-title h2::before {
    left: -100px;
}
.overview-title h2::after {
    right: -100px;
}
.overview-text {
	width: 1300px;
	height: 500px;
	margin: auto;
	text-align: justify;
	position: relative;
	padding: 20px 200px;

}
.overview-text p {
	font-size: 28px;
	font-family: Aparajita;
	font-weight: bold;
	color: white;
	padding-bottom: 100px;
	padding-top: 30px;
}
.overview-text a{
	font-family: Aparajita;
	color: darkblue;
	text-decoration: none;
	background-color: white;
	padding: 10px 50px;
	font-size: 30px;
	font-weight: bolder;
	border-radius: 30px;
	margin-left: 38%;
}
.overview-text a:hover{
	text-decoration: underline;
	box-shadow: 0 0 5px 3px grey;
}


/* =======================================================
	Service Section Page 1
======================================================= */
.service-section {
	width: 100%;
	height: 720px;
	background-image: url("../img/Home_background_01.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}
.service-title {
	text-align: center;
	padding-top: 117px;
	padding-bottom: 30px;	
}
.service-title h2 {
    font-size: 35px;
    margin-top: 20px;
	font-family: Aparajita;
	font-weight: bold;
    position: relative;
    display: inline-block;
	color: white;
	text-transform: uppercase;
}

.service-title h2::before,
.service-title h2::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 80px;
    height: 5px;
    background: white;
}

.service-title h2::before {
    left: -100px;
}

.service-title h2::after {
    right: -100px;
}

.service-container{
	width: 1150px;
	height: 500px;
	position: absolute;
	padding: 0 5px;
	left: 50%;
	transform: translateX(-50%);
}

.service-container .service-img{
	width: 260px;
	height: 178px;
	float: left;
	margin: 20px 5% 30px;
	position: relative;
}
.service-container .service-img img{
	width: 100%;
	height: 100%;
	transition: transform 0.4s ease, box-shadow 0.4s ease; /* smooth animation */
}
.service-container .service-img:hover img{
	box-shadow: 0 4px 10px 5px grey;
	transform: translateY(-5px);
}



/* =======================================================
	Our Client Logo Slide Section Page 1
======================================================= */
.clientlogo-section1 {
	width: 100%;
	height: 720px;
	background-image: url("../img/Home_background_02.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}
.clientlogo-title {
	text-align: center;
	padding-top: 50px;
	padding-bottom: 30px;	
}
.clientlogo-title h2 {
    font-size: 35px;
    margin-top: 60px;
	font-family: Aparajita;
	font-weight: bold;
    position: relative;
    display: inline-block;
	color: white;
	text-transform: uppercase;
}

.clientlogo-title h2::before,
.clientlogo-title h2::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 80px;
    height: 5px;
    background: white;
}

.clientlogo-title h2::before {
    left: -100px;
}

.clientlogo-title h2::after {
    right: -100px;
}


/* =======================================================
	Slide Logo Section 
======================================================= */
.logo-slider {
    position: relative;
    width: auto;       /* កែទំហំប្រអប់តាមចិត្ត */
    margin: auto;
    overflow: hidden;
    background: white;
    padding: 10px 0;
}

#logo-slider-box1{
	margin-top: 0;
}

#logo-slider-box2{
	margin-top: 70px;
}


/* បង្កើត fade ជ្រុង */
.logo-slider::before,
.logo-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;         /* កំណត់ទំហំ fade */
    height: 100%;
    z-index: 2;
    pointer-events: none; /* មិនប៉ះពាល់ click */
}

.logo-slider::before {
    left: 0;
    background: linear-gradient(to right, white 0%, transparent 50%);
}

.logo-slider::after {
    right: 0;
    background: linear-gradient(to left, white 0%, transparent 50%);
}


/* Subtitle style */
.logo-subtitle {
    text-align: center;
    margin: auto;
}

.logo-subtitle h3 {
    font-size: 30px;
    font-weight: bolder;
	font-family: Aparajita;
	color: orange;
	padding: 1px;
	border-bottom: dotted 1px darkblue;
}

/* Each row */
.logo-row {
    overflow: hidden;
    white-space: nowrap;
    margin: 0 2%; /* Optional: inner margin for row */
}

/* Track style */
.logo-track {
    display: inline-flex;
    gap: 40px; /* កំណត់គម្លាតរបស់ logo នីមួយៗ */
}

/* Logo images */
.logo-track img {
    height: 60px;
    object-fit: contain;
}

/* Row 1 animation - Left to Right */
.row1 .logo-track {
    animation: scrollRight 120s linear infinite; /* កំណត់ល្បឿនរបស់ logo នៅជួរទី 1 */
}

/* Row 2 animation - Right to Left */
.row2 .logo-track {
    animation: scrollLeft 120s linear infinite;  /* កំណត់ល្បឿនរបស់ logo នៅជួរទី 2 */
}

/* Row 3 animation - Left to Right */
.row3 .logo-track {
    animation: scrollRight 120s linear infinite; /* កំណត់ល្បឿនរបស់ logo នៅជួរទី 3 */
}

/* Keyframes */
@keyframes scrollLeft {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); } 
}

@keyframes scrollRight {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

.clientlogo-section2{
	width: 100%;
	height: 720px;
	background-image: url("../img/Home_background_01.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}

#logo-slider-box3{
	top: 55px;
}



/* =======================================================
	About Us Heading Page 
========================================================*/

.aboutus-section{
	width: 100%;
	height: 720px;
	background-image: url("../img/Home_background_01.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	justify-content: center; /* កណ្ដាលផ្ដេក */
	align-items: center;     /* កណ្ដាលបញ្ឈរ */
	position: relative;
}
.aboutus-text{
	width: 1300px;
	height: 30%;
	margin: auto;
	padding: 100px 60px;
	text-align: center;
}
.aboutus-text h1{
	font-family: Aparajita;
	font-size: 100px;
	color: white;
	font-weight: bold;
}
.aboutus-text .div-dec {
  width: 80px;
  height: 6px;
  border-radius: 3px;
  background-color: #fff;
  margin: 3px auto 0 auto;
}


/* =======================================================
	Who We Are Section 
========================================================*/
.whoweare-section{
	width: 100%;
	height: 720px;
	background-image: url("../img/Home_background_02.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;	
}
.whoweare-title{
	width: 1300px;
	height: 150px;
	margin: auto;
	position: relative;
}
.whoweare-title h3{
	width: 67%;
	height: 100%;
	position: absolute;
	font-size: 50px;
	color: white;
	right: 0;
	padding: 7% 0 0;
	text-align: center;
}
.whoweare-container{
	width: 1300px;
	height: 570px;
	margin: auto;
	position: relative;
}
.whoweare-left{
	width: 33%;
	height: 500px;
	position: absolute;
	padding: 2% 1%;
	
}
.whoweare-left img{
	width: 415px;
	height: 415px;
	margin-top: 5%;
}
.whoweare-right{
	width: 67%;
	height: 100%;
	position: absolute;
	color: white;
	right: 0;
	padding: 2% 1%;
}
.whoweare-right p{
	font-family: Aparajita;
	font-size: 23px;
	text-align: justify;
}


/* =======================================================
	Our Journey Section 
========================================================*/
.ourjourney-section{
	width: 100%;
	height: 720px;
	background-image: url("../img/Home_background_01.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;	
}
.ourjourney-title{
	width: 1300px;
	height: 120px;
	margin: auto;
	/* Flexbox អនុញ្ញាតអោយអត្ថបទតម្រៀបងាយ */
	display: flex;          	/* use flexbox */
    align-items: flex-end;		/* អត្ថបទចំកណ្ដាលបញ្ឈរ */
    justify-content: center;	/* អត្ថបទចំកណ្ដាលផ្ដេក */
    padding: 0 30px;        /* some space inside */	
}
.ourjourney-title h3 {
    font-size: 50px;
    color: white;
    margin: 0;
    width: 100%;
    text-align: end;  /* អាចផ្លាស់ប្តូរទៅ left / right / center */
	font-family: Aparajita;
}
.ourjourney-img{
	width: 1300px;
	height: 450px;
	margin: auto;
	display: flex;
	justify-content: center;
	
}
.ourjourney-img img{
	width: 88%;
	height: auto;
	
}
.ourjourney-text{
	width: 1100px;
	height: 100px;
	margin: auto;
	/* Flexbox អនុញ្ញាតអោយអត្ថបទតម្រៀបងាយ */
	display: flex;          	/* use flexbox */
    align-items: flex-end;		/* អត្ថបទចំកណ្ដាលបញ្ឈរ */
    justify-content: center;	/* អត្ថបទចំកណ្ដាលផ្ដេក */
    padding: 0 30px;        /* some space inside */	
	
}
.ourjourney-text p{
	color: white;
	font-family: Aparajita;
	font-size: 23px;
	text-align: center;
}


/* =======================================================
	Vision and Mission Section 
========================================================*/
.vision-section{
	width: 100%;
	height: 720px;
	background-image: url("../img/Home_background_02.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;		
}
.vision-container{
	width: 1200px;
	height: 720px;
	margin: auto;
	/* ដាក់ flex អោយកូននៅកណ្តាល */
	display: flex;
	justify-content: flex-start;   /* តំរូវទៅកណ្តាលផ្ដេក */
	align-items: center;       /* តំរូវទៅកណ្តាលបញ្ឈរ */
}
.vision-left{
	width: 50%;
	height: 70%;
	margin-top: 130px; /* ចុះក្រោម */
	padding-right: 1%;
	padding-left: 2%;
	
}
.vision-left h2 {
 	font-size: 50px;
 	font-weight: bolder;
 	color: white;   /* អ្នកអាចប្តូរពណ៌បាន */
	text-align: center;
	font-family: Aparajita;
}

.vision-left .underline {
 	text-decoration: underline;
 	text-decoration-thickness: 3px; /* កម្រាស់បន្ទាត់ */
 	text-underline-offset: 6px;     /* ចន្លោះពីអក្សរ */
 	color: white;                    /* អាចដាក់ពណ៌ខុស */
}

.vision-left p {
 	font-size: 23px;
  	color: white;   /* អ្នកអាចប្តូរពណ៌បាន */
	text-align: justify;
	font-family: Aparajita;
}
.vision-right{
	width: 50%;
	height: 55%;
	margin-top: 70px; /* ចុះក្រោម */
	padding-right: 2%;
	padding-left: 1%;
}
.vision-right img{
	width: 85%;
	height: 95%;
	padding-top: 5px;
	margin-left: 25px;
}


/* =======================================================
	Value Section 
========================================================*/
.value-section{
	width: 100%;
	height: 720px;
	background-image: url("../img/Home_background_01.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;		
}
.value-container{
	width: 1200px;
	height: 720px;
	margin: auto;
	/* ដាក់ flex អោយកូននៅកណ្តាល */
	display: flex;
	justify-content: flex-start;   /* តំរូវទៅកណ្តាលផ្ដេក */
	align-items: center;       /* តំរូវទៅកណ្តាលបញ្ឈរ */
}

.value-left{
	width: 50%;
	height: 70%;
	margin-top: 80px; /* ចុះក្រោម */
	padding-right: 1%;
	padding-left: 2%;
}
.value-left img{
	padding-top: 55px;
	width: 100%;
	height: 80%;
}

.value-right{
	width: 50%;
	height: 70%;
	margin-top: 80px; /* ចុះក្រោម */
	padding-right: 2%;
	padding-left: 1%;
	
}
.value-right h1 {
 	font-size: 50px;
 	font-weight: bolder;
 	color: white;   /* អ្នកអាចប្តូរពណ៌បាន */
	text-align: center;
	font-family: Aparajita;
}

.value-right .underline {
 	text-decoration: underline;
 	text-decoration-thickness: 3px; /* កម្រាស់បន្ទាត់ */
 	text-underline-offset: 6px;     /* ចន្លោះពីអក្សរ */
 	color: white;                    /* អាចដាក់ពណ៌ខុស */
}

.value-right h2 {
 	font-size: 30px;
	font-weight: normal;
  	color: white;   /* អ្នកអាចប្តូរពណ៌បាន */
	font-family: Aparajita;
}

.value-right p{
	font-family: Aparajita;
	font-size: 35px;
	color: white;
}
.value-right .big-number {
    font-size: 40px;   /* លេខធំ */
    font-weight: normal;
    color: white;
    margin-right: 8px;
}


.value-right .value-1{
	margin-left: 20px;
}
.value-right .value-2{
	margin-left: 50px;
}
.value-right .value-3{
	margin-left: 80px;
}
.value-right .value-4{
	margin-left: 120px;
}
.value-right .value-5{
	margin-left: 160px;
}


/* =======================================================
	Our Senior Team Section 
========================================================*/
.team-section{
	width: 100%;
	height: 720px;
	background-image: url("../img/Home_background_02.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;		
	
}

.team-title {
	text-align: center;
	padding-top: 70px;
}
.team-title h2 {
    font-size: 30px;
    margin-bottom: 20px;
	font-family: Aparajita;
	font-weight: bold;
    position: relative;
    display: inline-block;
	color: white;
}
.team-title h2::before,
.team-title h2::after {
    content: "";
    position: absolute;
    top: 45%;
    width: 80px;
    height: 3px;
    background: white;
}
.team-title h2::before {
    left: -100px;
}
.team-title h2::after {
    right: -100px;
}

.team-container1{
	width: 1000px;
	height: 40%;
	margin: auto;
	position: relative;
}
.team-container2{
	width: 1000px;
	height: 40%;
	margin: auto;
	position: relative;
}
.team-box{
	width: 33.3%;
	height: 50%;
	position: absolute;
}
.gallery{
	width: 218.07px;
	height: 216.18px;
	margin: auto;
}
.gallery img{
	width: 93%;
	height: 93%;
	cursor: pointer;
	transition: transform 0.3s;
}
.gallery img:hover {
    transform: scale(1.05);
}

.position{
	width: 100%;
	height: 20%;
	text-align: center;
}
.position h2{
	font-family: Aparajita;
	color: white;
	font-weight: bold;
	font-size: 22px;
}

#row1-left, #row2-left{
	left: 0;
}
#row1-middle, #row2-middle{
	left: 33.3%;
}
#row1-right, #row2-right{
	right: 0;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0; 
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,153,0.7);
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 1000;
}

.modal:target {
  display: flex;
}

.modal-content {
  background-color: whitesmoke;
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
  max-width: 900px;
  width: 100%;
  height: 80%;
  border-radius: 8px;
  position: relative;
  animation: fadeIn .25s ease-out;
}

.modal-left img {
  max-width: 230px;
  border-radius: 6px;
}

.modal-right {
  flex: 1;
  margin-left: 20px;
}
.modal-right h2{
	font-family: Aparajita;
	font-size: 25px;
}
.modal-right p{
	font-family: Aparajita;
	font-size: 22px;
	text-align: left;
}


.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  text-decoration: none;
  color: #333;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Responsive: stack on small screens */
@media (max-width: 640px) {
  .modal-content { flex-direction: column; }
  .modal-left img { max-width: 100%; }
}


/* =======================================================
	Our Facility Section 
========================================================*/
.facility-section{
	width: 100%;
	height: 720px;
	background-image: url("../img/Home_background_01.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;		
	
}
.facility-container{
	width: 1200px;
	height: 720px;
	margin: auto;
	/* ដាក់ flex អោយកូននៅកណ្តាល */
	display: flex;
	justify-content: center;   /* តំរូវទៅកណ្តាលផ្ដេក */
	align-items: center;       /* តំរូវទៅកណ្តាលបញ្ឈរ */
	padding-top: 20px;
}
.facility-container img{
	width: 98%;
	height: 600px;
}


/* =======================================================
	Our Staff Section 
========================================================*/
.staff-section{
	width: 100%;
	height: 720px;
	background-image: url("../img/Home_background_02.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;		
}

.staff-title {
	text-align: center;
	padding-top: 200px;
}
.staff-title h2 {
    font-size: 40px;
    margin-top: 20px;
	font-family: Aparajita;
	font-weight: bold;
    position: relative;
    display: inline-block;
	color: white;
}
.staff-title h2::before,
.staff-title h2::after {
    content: "";
    position: absolute;
    top: 45%;
    width: 80px;
    height: 3px;
    background: white;
}
.staff-title h2::before {
    left: -100px;
}
.staff-title h2::after {
    right: -100px;
}

.staff-container{
	width: 1200px;
	height: 360px;
	margin: auto;
	position: relative;
}

.staff-left{
	width: 33%;
	height: 100%;
	color: white;
	/* Flexbox អនុញ្ញាតអោយអត្ថបទតម្រៀបងាយ */
	display: flex;          	/* use flexbox */
    align-items: center;		/* អត្ថបទចំកណ្ដាលបញ្ឈរ */
    justify-content: center;	/* អត្ថបទចំកណ្ដាលផ្ដេក */
    padding: 0 1%;        /* some space inside */
	position: absolute;
}
.staff-left p{
	font-size: 40px;
	font-family: Aparajita;
}

.staff-middle{
	width: 33%;
	height: 100%;
	color: lightgray;
    padding: 5% 0 0 0.5%;        /* some space inside */
	position: absolute;
}	

.staff-middle p{
	font-family: Aparajita;
	font-size: 40px;
	padding: 0 20px; /* គំលាតអក្សរពីបន្ទាត់ */
	margin: 0 auto;
    border-left: 3px solid #fff; /* ដាក់បន្ទាត់ខាងឆ្វេង និង ពណ៌ */
    display: inline-block;       /* បង្ហាញបន្ទាត់ជាប់គ្នា */

}

.staff-middle .big-text {
    font-size: 105px;   /* លេខធំ */
    font-weight: normal;
    color: white;
    margin-right: 2px;
}

.staff-right{
	width: 33%;
	height: 100%;
	position: absolute;
	margin: auto;
	/* ដាក់ flex អោយកូននៅកណ្តាល */
	display: flex;
	justify-content: center;   /* តំរូវទៅកណ្តាលផ្ដេក */
	align-items: center;       /* តំរូវទៅកណ្តាលបញ្ឈរ */
	
}
.staff-right img{
	width: 90%;
	height: 65%;
}

#st-left{
	left: 0;
}
#st-middle{
	left: 33.3%;
}
#st-right{
	right: 0;
}




/* =======================================================
	Our Services Heading Page
======================================================= */
.servicepage-heading{
	width: 100%;
	height: 720px;
	background-image: url("../img/Home_background_01.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	justify-content: center; /* កណ្ដាលផ្ដេក */
	align-items: center;     /* កណ្ដាលបញ្ឈរ */
	position: relative;
}
.servicepage-text{
	width: 1300px;
	height: 30%;
	margin: auto;
	padding: 100px 60px;
	text-align: center;

}
.servicepage-text h1{
	font-family: Aparajita;
	font-size: 100px;
	color: white;
	font-weight: bold;
}
.servicepage-text .div-dec {
  width: 80px;
  height: 6px;
  border-radius: 3px;
  background-color: #fff;
  margin: 3px auto 0 auto;
}


/* =======================================================
	Ranges of Services Section
======================================================= */
.rangeofservice-section{
	width: 100%;
	height: 720px;
	background-image: url("../img/Home_background_02.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}

.rangeofservice-title{
	text-align: center;
	padding-top: 60px;
}
.rangeofservice-title h2 {
    font-size: 35px;
    margin-top: 20px;
	font-family: Aparajita;
	font-weight: bold;
    position: relative;
    display: inline-block;
	color: white;
	text-transform: uppercase;
}
.rangeofservice-title h2::before,
.rangeofservice-title h2::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 80px;
    height: 5px;
    background: white;
}
.rangeofservice-title h2::before {
    left: -100px;
}
.rangeofservice-title h2::after {
    right: -100px;
}


/* Services Detail - Container */
.rangeofservice-container{
	width: 1100px;
	height: 100%;
	margin: auto;
	position: relative;
}

/* What we offer */
.service-text-up{
	width: 100%px;
	height: 110px;
	margin: auto;
	/* Flexbox អនុញ្ញាតអោយអត្ថបទតម្រៀបងាយ */
	display: flex;          	/* use flexbox */
    align-items: center;		/* អត្ថបទចំកណ្ដាលបញ្ឈរ */
    justify-content: center;	/* អត្ថបទចំកណ្ដាលផ្ដេក */
    padding: 0 20px;        /* some space inside */	
}
.service-text-up p{
	color: white;
	font-family: Aparajita;
	font-size: 23px;
	text-align: center;
	padding: 10px 10px;
}

/* Services Detail - row 1 */
.service-text-r1-container{
	width: 100%;
	height: 32%;
	position: relative;
}

.service-text-r1-left{
	width: 33.3%;
	height: 100%;
	position: absolute;
	padding: 5px 0;

}

.service-text-r1-middle{
	width: 33.3%;
	height: 100%;
	position: absolute;
	padding: 5px 0;

}

.service-text-r1-right{
	width: 33.3%;
	height: 100%;
	position: absolute;
	padding: 5px 0;

}

/* Services Detail - row 2 */
.service-text-r2-container{
	width: 100%;
	height: 20%;
	position: relative;
}

.service-text-r2-left{
	width: 33.3%;
	height: 100%;
	position: absolute;
	padding: 5px 0;

}

.service-text-r2-middle{
	width: 33.3%;
	height: 100%;
	position: absolute;
	padding: 5px 0;

}

.service-text-r2-right{
	width: 33.3%;
	height: 100%;
	position: absolute;
	padding: 5px 0;

}

/* Services Detail - Title */
.service-detail h2 {
    font-size: 24px;
    color: white;
    margin-bottom: 5px;
    padding-left: 15px;
	text-decoration: underline;
	text-underline-offset: 6px;
}

.service-detail ul {
    list-style: none;        /* Remove default bullets */
    padding-left: 0;
}

.service-detail ul li {
    font-size: 22px;
    color: white;
    margin: 5px 0;
    position: relative;
    padding-left: 40px; /* គំលាតអក្សរពីសញ្ញា */
}

/* និមិត្តសញ្ញានៅពីមុខអក្សរ */
.service-detail ul li::before {
    content: "•"; /* or use "-" or an icon */
    position: absolute;
    left: 15px; /* គំលាតសញ្ញាពីផ្ទៃខាងឆ្វេង */
    top: 0;
    color: white;
    font-weight: bold;
}

#service-r1-left, #service-r2-left{
	left: 0;
}
#service-r1-middle, #service-r2-middle{
	left: 33.3%;
}
#service-r1-right, #service-r2-right{
	right: 0;
}

.button-coverage-industry{
	width: 100%;
	height: 12%;
	margin: auto;
	position: relative;
}
.button-coverage-industry a{
	font-family: Aparajita;
	color: darkblue;
	text-decoration: none;
	background-color: white;
	padding: 10px 50px;
	font-size: 30px;
	font-weight: bolder;
	border-radius: 30px;
	position: absolute;
	top: 50%; left: 50%; transform: translate(-50%, -50%);

}
.button-coverage-industry a:hover{
	color: blue;
	box-shadow: 0 0 5px 3px grey;
}


/* =======================================================
	Qualitative Research Section
======================================================= */
.qualitative-section{
	width: 100%;
	height: 720px;
	background-image: url("../img/Home_background_01.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
    justify-content: center; /* កណ្ដាលផ្ដេក */
    align-items: center;     /* កណ្ដាលបញ្ឈរ */
	position: relative;
}

.qualitative-container{
	width: 1300px;
	height: 70%;
	margin: auto;
	position: relative;
}

.qualitative-left{
	width: 45%;
	height: 100%;
	position: absolute;
}
.qualitative-left img {
	width: 100%;
	height: 90%;
	padding: 0 0 0 40px;
}

.qualitative-right{
	width: 55%;
	height: 100%;
	position: absolute;
	right: 0;
}
.qualitative-right .underline {
 	text-decoration: underline;
 	text-decoration-thickness: 3px; /* កម្រាស់បន្ទាត់ */
 	text-underline-offset: 6px;     /* ចន្លោះពីអក្សរ */
 	color: white;                    /* អាចដាក់ពណ៌ខុស */
}
.qualitative-right h2{
	font-size: 50px;
 	font-weight: bolder;
 	color: white;   /* អ្នកអាចប្តូរពណ៌បាន */
	text-align: center;
	font-family: Aparajita;
	padding: 40px 0 0 0;
}

.qualitative-right p {
 	font-size: 26px;
  	color: white;   /* អ្នកអាចប្តូរពណ៌បាន */
	text-align: center;
	font-family: Aparajita;
	padding: 10px 30px 0;
	
}
.qualitative-right ul {
    list-style: none;        /* Remove default bullets */
    padding-left: 30px;
}
.qualitative-right ul li {
    font-size: 24px;
    color: white;
    margin: 5px 0;
    position: relative;
    padding-left: 40px; /* គំលាតអក្សរពីសញ្ញា */
	line-height: 35px;
}
/* និមិត្តសញ្ញានៅពីមុខអក្សរ */
.qualitative-right ul li::before {
    content: "•"; /* or use "-" or an icon */
    position: absolute;
    left: 20px; /* គំលាតសញ្ញាពីផ្ទៃខាងឆ្វេង */
    top: 0;
    color: white;
    font-weight: bold;
	
}



/* =======================================================
	Quantitative Research Section
======================================================= */
.quantitative-section{
	width: 100%;
	height: 720px;
	background-image: url("../img/Home_background_02.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
    justify-content: center; /* កណ្ដាលផ្ដេក */
    align-items: center;     /* កណ្ដាលបញ្ឈរ */
	position: relative;
}

.quantitative-container{
	width: 1300px;
	height: 70%;
	margin: auto;
	position: relative;
}


.quantitative-left{
	width: 55%;
	height: 100%;
	position: absolute;
	left: 0;
}
.quantitative-left .underline {
 	text-decoration: underline;
 	text-decoration-thickness: 3px; /* កម្រាស់បន្ទាត់ */
 	text-underline-offset: 6px;     /* ចន្លោះពីអក្សរ */
 	color: white;                    /* អាចដាក់ពណ៌ខុស */
}

.quantitative-left h2{
	font-size: 50px;
 	font-weight: bolder;
 	color: white;   /* អ្នកអាចប្តូរពណ៌បាន */
	text-align: center;
	font-family: Aparajita;
	padding: 20px 0 0 0;
}

.quantitative-left p {
 	font-size: 26px;
  	color: white;   /* អ្នកអាចប្តូរពណ៌បាន */
	text-align: center;
	font-family: Aparajita;
	padding: 10px 28px 0;
	
}
.quantitative-left ul {
    list-style: none;        /* Remove default bullets */
    padding-left: 50px;
}
.quantitative-left ul li {
    font-size: 24px;
    color: white;
    margin: 5px 0;
    position: relative;
    padding-left: 40px; /* គំលាតអក្សរពីសញ្ញា */

}
/* និមិត្តសញ្ញានៅពីមុខអក្សរ */
.quantitative-left ul li::before {
    content: "•"; /* or use "-" or an icon */
    position: absolute;
    left: 20px; /* គំលាតសញ្ញាពីផ្ទៃខាងឆ្វេង */
    top: 0;
    color: white;
    font-weight: bold;
}

.quantitative-right{
	width: 45%;
	height: 100%;
	position: absolute;
	right: 0;
}
.quantitative-right img {
	width: 100%;
	height: 90%;
	padding: 0 40px 0 0;
}



/* =======================================================
	Retail Research Section
======================================================= */

.retail-section{
	width: 100%;
	height: 720px;
	background-image: url("../img/Home_background_01.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
    justify-content: center; /* កណ្ដាលផ្ដេក */
    align-items: center;     /* កណ្ដាលបញ្ឈរ */
	position: relative;
}

.retail-container{
	width: 1300px;
	height: 70%;
	margin: auto;
	position: relative;
}

.retail-left{
	width: 45%;
	height: 100%;
	position: absolute;
}
.retail-left img {
	width: 100%;
	height: 90%;
	padding: 0 0 0 40px;
}

.retail-right{
	width: 55%;
	height: 100%;
	position: absolute;
	right: 0;
}
.retail-right .underline {
 	text-decoration: underline;
 	text-decoration-thickness: 3px; /* កម្រាស់បន្ទាត់ */
 	text-underline-offset: 6px;     /* ចន្លោះពីអក្សរ */
 	color: white;                    /* អាចដាក់ពណ៌ខុស */
}
.retail-right h2{
	font-size: 50px;
 	font-weight: bolder;
 	color: white;   /* អ្នកអាចប្តូរពណ៌បាន */
	text-align: center;
	font-family: Aparajita;
	padding: 40px 0 0 0;
}

.retail-right p {
 	font-size: 26px;
  	color: white;   /* អ្នកអាចប្តូរពណ៌បាន */
	text-align: center;
	font-family: Aparajita;
	padding: 10px 25px 0;
	
}
.retail-right ul {
    list-style: none;        /* Remove default bullets */
    padding-left: 30px;
}
.retail-right ul li {
    font-size: 24px;
    color: white;
    margin: 5px 0;
    position: relative;
    padding-left: 40px; /* គំលាតអក្សរពីសញ្ញា */
}
/* និមិត្តសញ្ញានៅពីមុខអក្សរ */
.retail-right ul li::before {
    content: "•"; /* or use "-" or an icon */
    position: absolute;
    left: 20px; /* គំលាតសញ្ញាពីផ្ទៃខាងឆ្វេង */
    top: 0;
    color: white;
    font-weight: bold;
	
}


/* =======================================================
	Mystery Shopping Research Section
======================================================= */

.mystery-section{
	width: 100%;
	height: 720px;
	background-image: url("../img/Home_background_02.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
    justify-content: center; /* កណ្ដាលផ្ដេក */
    align-items: center;     /* កណ្ដាលបញ្ឈរ */
	position: relative;
}

.mystery-container{
	width: 1300px;
	height: 80%;
	margin: auto;
	position: relative;
}


.mystery-left{
	width: 55%;
	height: 100%;
	position: absolute;
	left: 0;
}
.mystery-left .underline {
 	text-decoration: underline;
 	text-decoration-thickness: 3px; /* កម្រាស់បន្ទាត់ */
 	text-underline-offset: 6px;     /* ចន្លោះពីអក្សរ */
 	color: white;                    /* អាចដាក់ពណ៌ខុស */
}

.mystery-left h2{
	font-size: 50px;
 	font-weight: bolder;
 	color: white;   /* អ្នកអាចប្តូរពណ៌បាន */
	text-align: center;
	font-family: Aparajita;
	padding: 20px 0 0 0;	
}

.mystery-left p {
 	font-size: 26px;
  	color: white;   /* អ្នកអាចប្តូរពណ៌បាន */
	text-align: center;
	font-family: Aparajita;
	padding: 10px 28px 0;
	
}
.mystery-left ul {
    list-style: none;        /* Remove default bullets */
    padding-left: 50px;
}
.mystery-left ul li {
    font-size: 24px;
    color: white;
    margin: 5px 0;
    position: relative;
    padding-left: 40px; /* គំលាតអក្សរពីសញ្ញា */

}
/* និមិត្តសញ្ញានៅពីមុខអក្សរ */
.mystery-left ul li::before {
    content: "•"; /* or use "-" or an icon */
    position: absolute;
    left: 20px; /* គំលាតសញ្ញាពីផ្ទៃខាងឆ្វេង */
    top: 0;
    color: white;
    font-weight: bold;
}

.mystery-right{
	width: 45%;
	height: 100%;
	position: absolute;
	right: 0;
}
.mystery-right img {
	width: 80%;
	height: 70%;
	padding: 70px 40px 0 0;
}


/* =======================================================
	Media Research Section
======================================================= */

.media-section{
	width: 100%;
	height: 720px;
	background-image: url("../img/Home_background_01.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
    justify-content: center; /* កណ្ដាលផ្ដេក */
    align-items: center;     /* កណ្ដាលបញ្ឈរ */
	position: relative;
}

.media-container{
	width: 1300px;
	height: 70%;
	margin: auto;
	position: relative;
}

.media-left{
	width: 45%;
	height: 100%;
	position: absolute;
}
.media-left img {
	width: 100%;
	height: 70%;
	padding: 110px 0 0 40px;
}

.media-right{
	width: 55%;
	height: 100%;
	position: absolute;
	right: 0;
}
.media-right .underline {
 	text-decoration: underline;
 	text-decoration-thickness: 3px; /* កម្រាស់បន្ទាត់ */
 	text-underline-offset: 6px;     /* ចន្លោះពីអក្សរ */
 	color: white;                    /* អាចដាក់ពណ៌ខុស */
}
.media-right h2{
	font-size: 50px;
 	font-weight: bolder;
 	color: white;   /* អ្នកអាចប្តូរពណ៌បាន */
	text-align: center;
	font-family: Aparajita;
	padding: 40px 0 0 0;
}

.media-right p {
 	font-size: 26px;
  	color: white;   /* អ្នកអាចប្តូរពណ៌បាន */
	text-align: center;
	font-family: Aparajita;
	padding: 10px 30px 0;
	
}
.media-right ul {
    list-style: none;        /* Remove default bullets */
    padding-left: 50px;
}
.media-right ul li {
    font-size: 24px;
    color: white;
    margin: 5px 0;
    position: relative;
    padding-left: 40px; /* គំលាតអក្សរពីសញ្ញា */
}
/* និមិត្តសញ្ញានៅពីមុខអក្សរ */
.media-right ul li::before {
    content: "•"; /* or use "-" or an icon */
    position: absolute;
    left: 20px; /* គំលាតសញ្ញាពីផ្ទៃខាងឆ្វេង */
    top: 0;
    color: white;
    font-weight: bold;
	
}


/* =======================================================
	Socio-economic Monitoring & Evaluation Research Section
======================================================= */

.socio-section{
	width: 100%;
	height: 720px;
	background-image: url("../img/Home_background_02.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
    justify-content: center; /* កណ្ដាលផ្ដេក */
    align-items: center;     /* កណ្ដាលបញ្ឈរ */
	position: relative;
}

.socio-container{
	width: 1300px;
	height: 70%;
	margin: auto;
	position: relative;
}


.socio-left{
	width: 55%;
	height: 100%;
	position: absolute;
	left: 0;
}
.socio-left .underline {
 	text-decoration: underline;
 	text-decoration-thickness: 3px; /* កម្រាស់បន្ទាត់ */
 	text-underline-offset: 6px;     /* ចន្លោះពីអក្សរ */
 	color: white;                    /* អាចដាក់ពណ៌ខុស */
}

.socio-left h2{
	font-size: 50px;
 	font-weight: bolder;
 	color: white;   /* អ្នកអាចប្តូរពណ៌បាន */
	text-align: center;
	font-family: Aparajita;
	padding: 20px 0 0 0;
}

.socio-left p {
 	font-size: 26px;
  	color: white;   /* អ្នកអាចប្តូរពណ៌បាន */
	text-align: center;
	font-family: Aparajita;
	padding: 10px 28px 0;
	
}
.socio-left ul {
    list-style: none;        /* Remove default bullets */
    padding-left: 80px;
}
.socio-left ul li {
    font-size: 24px;
    color: white;
    margin: 5px 0;
    position: relative;
    padding-left: 40px; /* គំលាតអក្សរពីសញ្ញា */

}
/* និមិត្តសញ្ញានៅពីមុខអក្សរ */
.socio-left ul li::before {
    content: "•"; /* or use "-" or an icon */
    position: absolute;
    left: 20px; /* គំលាតសញ្ញាពីផ្ទៃខាងឆ្វេង */
    top: 0;
    color: white;
    font-weight: bold;
}

.socio-right{
	width: 45%;
	height: 100%;
	position: absolute;
	right: 0;
}
.socio-right img {
	width: 100%;
	height: 90%;
	padding: 0 40px 0 0;
}




/* =======================================================
	Our Experience Heading Page
======================================================= */

.experiencepage-heading{
	width: 100%;
	height: 720px;
	background-image: url("../img/Home_background_01.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	justify-content: center; /* កណ្ដាលផ្ដេក */
	align-items: center;     /* កណ្ដាលបញ្ឈរ */
	position: relative;
}
.experiencepage-text{
	width: 1300px;
	height: 30%;
	margin: auto;
	padding: 100px 60px;
	text-align: center;

}
.experiencepage-text h1{
	font-family: Aparajita;
	font-size: 100px;
	color: white;
	font-weight: bold;
}
.experiencepage-text .div-dec {
    width: 80px;
    height: 6px;
    border-radius: 3px;
    background-color: #fff;
    margin: 3px auto 0 auto;
}


/* =======================================================
	Why MSD Section
======================================================= */
.whymsd-section{
	width: 100%;
	height: 720px;
	background-image: url("../img/Home_background_02.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	justify-content: center; /* កណ្ដាលផ្ដេក */
	align-items: center;     /* កណ្ដាលបញ្ឈរ */
	position: relative;
}

.whymsd-container{
	width: 1200px;
	height: 600px;
	position: absolute;
	top: 55%; 
	left: 50%; 
	transform: translate(-50%, -50%);
}

.whymsd-title{
	width: 100%;
	height: 8%;
}

.whymsd-title h2{
	font-family: Aparajita;
	font-size: 40px;
	color: white;
	text-align: center;
}

.whymsd-img{
	width: 100%;
	height: 88%;
}
.whymsd-img img{
	width: 100%;
	height: 100%;
}



/* =======================================================
	Coverage Industry & Impact Section
======================================================= */
.coverage-section{
	width: 100%;
	height: 720px;
	background-image: url("../img/Home_background_01.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	justify-content: center; /* កណ្ដាលផ្ដេក */
	align-items: center;     /* កណ្ដាលបញ្ឈរ */
	position: relative;
}

.coverage-container{
	width: 1300px;
	height: 600px;
	position: absolute;
	top: 55%; 
	left: 50%; 
	transform: translate(-50%, -50%);
}

.coverage-title{
	width: 100%;
	height: 10%;
	color: white;
}
.coverage-title h2{
	font-family: Aparajita;
	font-size: 35px;
	text-align: end;
	text-transform: uppercase;
	padding-right: 30px;
	text-decoration: underline;
	text-underline-offset: 20px;
}

.coverage-item-container{
	width: 100%;
	height: 45%;
	position: relative;
}

.coverage-item{
	width: 20%;
	height: 95%;
	position: absolute;
    display: flex;
    flex-direction: column;   /* stack h2 and img */
    align-items: center;      /* horizontal center */	
	padding-top: 20px;
}
.coverage-item h2{
	width: 100%;
	height: 20%;
	font-family: Aparajita;
	font-size: 50px;
	text-align: center;
	color: #FFFFFF;
	display: flex;
    justify-content: center; /* horizontal */
    align-items: center;     /* vertical */
}
.coverage-item img{
	width: 150px;
	height: 150px;
}

#item-r1{
	float: left;
}
#item-r2{
	float: right;
	margin-top: 20px;
}
#item-r1-left{
	left: 2%;
}
#item-r1-middle, #item-r2-left{
	left: 27%;
}
#item-r1-right, #item-r2-middle{
	left: 52%;
}
#item-r2-right{
	right: 2%;
}


/* =======================================================
	Our clients ocal and internation brands Section
======================================================= */
.ourclient-section{
	width: 100%;
	height: 720px;
	background-image: url("../img/Home_background_02.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}
.ourclient-section2{
	width: 100%;
	height: 720px;
	background-image: url("../img/Home_background_01.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}

.ourclient-container{
	width: 1300px;
	height: 1100px;
	position: absolute;
    top: 130px; 
	left: 50%; 
	transform: translateX(-50%);
	background-color: #FFFFFF;
	z-index: 1;
}

.ourclient-title{
	width: 100%;
	height: 10%;
	color: darkblue;
}

.ourclient-title h2{
	font-family: Aparajita;
	font-size: 35px;
	text-align: start;
	text-transform: uppercase;
	padding-left: 30px;
	text-decoration: underline;
	text-underline-offset: 20px;
	margin-top: 30px;
}

.ourclient-logo {
    display: grid;
    grid-template-columns: repeat(8, 150px); /* 100% ÷ 8 = 12.5% */
    gap: 12px; /* spacing between images */
    justify-content: center;
}

.ourclient-logo img {
    width: 100%;
    height: auto;
	margin-bottom: 30px;
}




/* =======================================================
	Career Heading Page
======================================================= */

.career-heading{
	width: 100%;
	height: 720px;
	background-image: url("../img/Home_background_01.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	justify-content: center; /* កណ្ដាលផ្ដេក */
	align-items: center;     /* កណ្ដាលបញ្ឈរ */
	position: relative;
}
.career-text{
	width: 1300px;
	height: 30%;
	margin: auto;
	padding: 100px 60px;
	text-align: center;

}
.career-text h1{
	font-family: Aparajita;
	font-size: 100px;
	color: white;
	font-weight: bold;
}
.career-text .div-dec {
    width: 80px;
    height: 6px;
    border-radius: 3px;
    background-color: #fff;
    margin: 3px auto 0 auto;
}

/* =======================================================
	Current Opportunities Section
======================================================= */

.currentopp-section{
	width: 100%;
	height: 720px;
	background-image: url("../img/Home_background_02.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	justify-content: center; /* កណ្ដាលផ្ដេក */
	align-items: center;     /* កណ្ដាលបញ្ឈរ */
	position: relative;
}

.currentopp-container{
	width: 1200px;
	height: 580px;
	margin: auto;
	margin-top: 100px;
	position: relative;
}
.currentopp-container .currentopp-left{
	position: absolute;
	width: 35%;
	height: 100%;	
}
.currentopp-container .currentopp-left img{
	position: absolute;
	width: 100%;
	height: 100%;
}

.currentopp-right{
	width: 65%;
	height: 100%;
	position: absolute;
	right: 0;
	display: flex;
    flex-direction: column;
    justify-content: flex-end; /* ទៅក្រោម */
    align-items: center;       /* ទៅកណ្ដាលផ្ដេក */
}
.currentopp-right h2{
	text-align: center;
	color: white;
	font-family: Aparajita;
	font-size: 55px;
	text-transform: uppercase;
	margin-bottom: 80px;
	line-height: 80px;
}
.currentopp-right a{
	width: 350px;
	padding: 20px;
	text-align: center;
	color: darkblue;
	text-decoration: none;
	font-weight: bold;
	background-color: whitesmoke;
	font-family: Aparajita;
	font-size: 25px;
	border-radius: 30px;
	margin-bottom: 100px; /* អាចកែតំរូវបាន */
}
.currentopp-right a:hover{
	color: blue;
	box-shadow: 0 0 5px 3px grey;
}

/* =======================================================
	Job Title Section
======================================================= */

.jobtitle-section{
	width: 100%;
	height: 720px;
	background-image: url("../img/Home_background_01.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	justify-content: center; /* កណ្ដាលផ្ដេក */
	align-items: center;     /* កណ្ដាលបញ្ឈរ */
	position: relative;
}

.jobtitle-container{
	width: 1000px;
	height: 40%;
	margin: auto;
	position: relative;
}
.job-box{
	width: 33.3%;
	height: 50%;
	position: absolute;
}
.jobtitle{
	width: 250px;
	height: 300px;
	margin: auto;
}
.jobtitle img{
	width: 93%;
	height: 93%;
	cursor: pointer;
	transition: transform 0.3s;
}
.jobtitle img:hover {
    transform: scale(1.05);
}

.jobposition{
	width: 100%;
	height: 20%;
	text-align: center;
}

.jobposition h2{
	font-family: Aparajita;
	color: white;
	font-weight: bold;
	font-size: 22px;
}

#job-left{
	left: 0;
}
#job-middle{
	left: 33.3%;
}
#job-right{
	right: 0;
}

/* =======================================================
	Contact Us Heading Page
======================================================= */

.contactus-heading{
	width: 100%;
	height: 720px;
	background-image: url("../img/Home_background_01.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	justify-content: center; /* កណ្ដាលផ្ដេក */
	align-items: center;     /* កណ្ដាលបញ្ឈរ */
	position: relative;
}
.contactus-text{
	width: 1300px;
	height: 80%;
	margin: auto;
	padding: 100px 60px;
	text-align: center;
}
.contactus-text h1{
	font-family: Aparajita;
	font-size: 100px;
	color: white;
	font-weight: bold;
	margin-bottom: 40px;
}

.contactus-text p{
	font-family: Aparajita;
	font-size: 30px;
	color: white;
	font-weight: bold;
	margin-bottom: 100px;
}

.contactus-text a{
	width: 100px;
	padding: 10px 50px;
	text-align: center;
	color: darkblue;
	font-weight: bold;
	text-decoration: none;
	background-color: whitesmoke;
	font-family: Aparajita;
	font-size: 30px;
	border-radius: 30px;
}
.contactus-text a:hover{
	color: blue;
	box-shadow: 0 0 5px 3px grey;
}



/* =======================================================
	Map Contact Section
======================================================= */
.contact-section{
	width: 100%;
	height: 720px;
	background-image: url("../img/Home_background_02.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}

.contact-container{
	width: 1200px;
	height: 500px;
	position: absolute;
    top: 100px; 
	left: 50%; 
	transform: translateX(-50%);
	background-color: #FFFFFF;
}

.contact-map{
	width: 100%;
	height: 100%;
	color: darkblue;
}



/* =======================================================
	Form Contact Section
======================================================= */

.contact-form-section{
	width: 100%;
	height: 720px;
	background-image: url("../img/Home_background_01.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	justify-content: center; /* កណ្ដាលផ្ដេក */
	align-items: center;     /* កណ្ដាលបញ្ឈរ */
	position: relative;
}

.contact-form-container{
	width: 1200px;
	height: 550px;
	background-color: black;
}

.contact-form {
	width: 1200px;
	height: 550px;
    margin: auto;
    padding: 10px 20px;
    background: #f5f5f5;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    font-family: Aparajita;
}

.form-desc {
    color: #555;
    margin-bottom: 15px;
    font-size: 25px;
}

.contact-form label {
    display: block;
    margin: 5px 0 5px;
	font-size: 22px;
	color: #555;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    margin-bottom: 10px;
}

.row {
    display: flex;
    gap: 10px;
}
.row .col {
    flex: 1;
}

.submit-btn {
    background: #ff4500;
    color: white;
    border: none;
    padding: 10px 25px;
    font-size: 25px;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
	font-family: Aparajita;
	font-weight: bold;
	
}
.submit-btn:hover {
    background: #e63e00;
}



/* =======================================================
	Thank You Heading Page
======================================================= */

.thankyou-heading{
	width: 100%;
	height: 720px;
	background-image: url("../img/Home_background_01.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	justify-content: center; /* កណ្ដាលផ្ដេក */
	align-items: center;     /* កណ្ដាលបញ្ឈរ */
	position: relative;
	padding: 40px 20px; /* safe space on smaller screens */
}
.thankyou-text{
    max-width: 1200px;
    text-align: center;
    animation: fadeIn 0.8s ease;
}

.thankyou-text .icon {
    font-size: 70px;
    color: white; 
    margin-bottom: 20px;
}

.thankyou-text h1 {
    font-size: 70px;
    color: white;
	font-family: Aparajita;
    margin-bottom: 20px;
}

.thankyou-text p {
    font-size: 30px;
    color: white;
    margin-bottom: 30px;
    line-height: 1.6;
}

.thankyou-text .back-btn {
    display: inline-block;
    padding: 12px 30px;
    background: white;
    color: darkblue;
    font-size: 18px;
	font-family: Aparajita;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s ease;
}

.thankyou-text .back-btn:hover {
    background: blue;
	color: white;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}




/* =======================================================
	Footer Section
======================================================= */

.footer-section{
	width: 100%;
	height: 400px;
	background-color: rgba(0,0,153,1.00);
	position: relative;
	bottom: 0;
	padding-top: 10px;
}
.footer-container{
	width: 1300px;
	height: 80%;
	margin: auto;
	position: relative;
}
.footer-left{
    width: 33.3%;
	height: 100%;
	padding: 10px 25px;
	font-family: Aparajita;
	color: white;
	position: absolute;
}

.footer-left h2 {
    text-align: left;
    margin-bottom: 20px;
    font-size: 35px;
    font-weight: bold;
	color: white;
	border-bottom: 2px solid rgba(130,129,129,0.5);
	padding-bottom: 15px;
}

.footer-item {
    display: flex;
    align-items: center;
    margin: 30px 0;
    font-size: 23px;
}

.footer-item img {
    width: 35px;
    height: 35px;
    margin-right: 12px;
}

.footer-item a {
    color: #fff;
    text-decoration: none;
}

.footer-item a:hover {
    color: orange;
	font-weight: bold;
}

.footer-middle{
	width: 33.3%;
	height: 100%;
	padding: 10px 90px;
	font-family: Aparajita;
	color: white;
	position: absolute;
}
.footer-middle h2 {
    text-align: left;
    margin-bottom: 20px;
    font-size: 35px;
    font-weight: bold;
	color: white;
	border-bottom: 2px solid rgba(130,129,129,0.5);
	padding-bottom: 15px;
}

.footer-middle a {
    font-size: 23px;
	color: white;
	line-height: 35px;
	text-decoration: none;
}

.footer-middle a:hover{
	color: orange;
	font-weight: bold;
}

.footer-right{
	width: 33.3%;
	height: 100%;
	padding: 10px 10px;
	font-family: Aparajita;
	color: white;
	position: absolute;
}
.footer-right h2 {
    text-align: left;
    margin-bottom: 20px;
    font-size: 29px;
    font-weight: bold;
	color: white;
	border-bottom: 2px solid rgba(130,129,129,0.5);
	padding-bottom: 22px;
}

.social-icons {
    display: flex;
    margin-top: 30px;
}
.social-icons a{
	margin-right: 15px;	/* spacing between icons */
}
.social-icons a:last-child{
    margin-right: 0; /* remove extra margin on last icon */
}

.social-icons img {
    width: 50px;
    height: 50px;
	transition: 0.3s;
}
.social-icons img:hover{
	filter: brightness(0) invert(1); /* makes icon white */
}

#f-left{
	left: 0;
}
#f-middle{
	left: 33.3%;
}
#f-right{
	right: 0;
}

.footer-bottom{
	width: 100%;
	height: 20%;
	text-align: center;
	color: white;
	border-top: 2px solid rgba(130,129,129,0.5);
	padding-top: 15px;
}
.footer-bottom p{
	font-family: Aparajita;
	font-size: 18px;
}



/* =======================================================
	Page Loading Section
======================================================= */
/* Fullscreen background */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;  /* you can change */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

/* Loader animation (spinner) */
.loader {
    width: 50px;
    height: 50px;
    border: 6px solid #ddd;
    border-top: 6px solid darkblue;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}





