@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-display: swap;
  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-display: swap;
  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);
}


/* Hamburger Menu Icon */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 10000;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    transition: 0.3s ease;
}



/* =======================================================
	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;
	min-height: 550px;
	background-color: black;
}

.contact-form {
	width: 1200px;
	min-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); }
}



/* =======================================================
	Responsive Section
======================================================= */

/* Responsive Menu Section */
@media (max-width: 1024px) {
    .menu {
        flex-direction: column;
        align-items: flex-start; /* តម្រៀបធាតុទៅខាងឆ្វេង */
        height: 60px; /* រក្សាកម្ពស់ Header Bar ឱ្យនៅថេរ 60px ដូច Desktop */
        padding: 0 40px; /* រក្សា padding ឱ្យដូច desktop */
        transition: height 0.3s ease;
        overflow: hidden; /* លាក់មាតិកាដែលលើសពីកម្ពស់ដំបូង */
    }

    .menu.active {
        height: auto; /* អនុញ្ញាតឱ្យរីកវែងនៅពេលបើក Menu ចុះក្រោម */
    }

    .hamburger {
        display: flex;
        position: absolute;
        right: 25px;
        top: 25px;
        top: 20px; /* កែសម្រួលឱ្យចំកណ្តាលបញ្ឈរនៃ Bar 60px */
    }

    .menu .logo {
        order: -1; /* រុញ Logo ឱ្យទៅនៅខាងលើគេបង្អស់ */
        width: 100%;
        display: flex;
        justify-content: center; /* រក្សា Logo ឱ្យនៅចំកណ្ដាលដដែល */
    }

    .menu .logo img {
        height: 60px; /* រក្សាទំហំ Logo ឱ្យនៅថេរ */
    }

    .menu .list.left, 
    .menu .list.right {
        /* display: none; */ /* លុបចោលដើម្បីអនុញ្ញាតឱ្យ Animation ដំណើរការ */
		width: 100%;
        max-height: 0; /* លាក់ដំបូង */
        overflow: hidden; /* លាក់មាតិកាដែលលើស */
        transition: max-height 0.5s ease-out, opacity 0.5s ease-out; /* បន្ថែម Animation */
        opacity: 0; /* លាក់ដំបូង */
        flex-direction: column; /* តម្រៀបធាតុបញ្ឈរក្នុងបញ្ជី */
        align-items: flex-start; /* តម្រឹមបញ្ជី Menu ទៅខាងឆ្វេង */
        background: radial-gradient(circle, rgba(102,204,255,1), rgba(0,0,153,1)); /* ផ្ទៃខាងក្រោយដូច Menu ធំ */
        box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* បន្ថែមស្រមោល */
        padding-top: 0; /* កំណត់ Padding ឡើងវិញ */
        padding-bottom: 0; /* កំណត់ Padding ចុះក្រោមវិញ */
    }

    /* Show menu when active class is added via JavaScript */
    .menu.active .list.left,
    .menu.active .list.right {
        display: flex; /* បង្ហាញជា Flexbox នៅពេល Active */
        max-height: 500px; /* កម្ពស់អតិបរមាគ្រប់គ្រាន់ដើម្បីបង្ហាញធាតុទាំងអស់ */
        opacity: 1; /* បង្ហាញធាតុ */
        padding-top: 10px; /* បន្ថែម Padding ពេល Active */
        padding-bottom: 10px; /* បន្ថែម Padding ពេល Active */
    }

    /* Hamburger animation to 'X' */
    .menu.active .hamburger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu.active .hamburger span:nth-child(2) { opacity: 0; }
    .menu.active .hamburger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .menu ul {
        flex-direction: column;
        align-items: flex-start; /* តម្រឹមបញ្ជី Menu ទៅខាងឆ្វេង */
        gap: 15px;
        padding: 10px 0;
    }

    /* បន្ថែម Icon Dropdown សម្រាប់ Menu ដែលមាន Sub-menu លើ Mobile */
    .menu ul li:has(.sub-menu) > a::after {
        content: " \25BC"; /* សញ្ញាព្រួញចុះក្រោម Unicode */
        font-size: 10px;
        margin-left: 8px;
        display: inline-block;
        transition: transform 0.3s ease;
    }

    /* បង្វិល Icon ឡើងលើវិញនៅពេល Sub-menu ត្រូវបានបើកតាមរយៈការ Click */
    .menu ul li.open:has(.sub-menu) > a::after {
        transform: rotate(180deg);
    }

    .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        min-width: 100%;
        background: rgba(0, 0, 100, 0.2);
        margin-top: 5px;
        max-height: 0; /* លាក់ Sub-menu ដំបូង */
        overflow: hidden; /* លាក់មាតិកាដែលលើស */
        transition: max-height 0.3s ease-out; /* បន្ថែម Animation សម្រាប់ Sub-menu */
    }

    /* បង្ហាញ Sub-menu នៅពេល Parent Li មាន class 'open' */
    .menu ul li.open > .sub-menu {
        max-height: 500px; 
        margin-bottom: 10px;
    }

    .sub-menu ul li a {
        padding-left: 35px; /* បន្ថែមការដាច់ឃ្លាតឱ្យដឹងថាជា Sub-item */
    }

    /* Welcome Page Heading Responsiveness */
    .welcome-section {
        height: 100vh;
        min-height: 550px;
    }

    .welcome-text {
        top: 30%;
    }

    .welcome-text h1 {
        font-size: 220%;
        padding: 0 15px;
    }

    .welcome-text p {
        font-size: 110%;
        padding-top: 15px;
        padding-bottom: 40px;
    }

    .welcome-text a {
        font-size: 20px;
        padding: 8px 30px;
    }

    .meet-our-team {
        width: 100%;
        height: 100%;
    }

    .meet-our-team a {
        font-size: 22px;
        left: 50%;
        bottom: 140px;
        transform: translateX(-50%);
        white-space: nowrap;
    }

    /* Overview Section Responsiveness */
    .overview-section {
        height: auto;
        padding-bottom: 60px;
    }

    .overview-title {
        padding-top: 60px;
    }

    .overview-title h2 {
        font-size: 28px;
    }

    .overview-title h2::before,
    .overview-title h2::after {
        width: 40px;
    }

    .overview-title h2::before { left: -50px; }
    .overview-title h2::after { right: -50px; }

    .overview-text {
        width: 100%;
        height: auto;
        padding: 20px 20px;
        text-align: justify;
    }

    .overview-text p {
        font-size: 20px;
        padding-bottom: 40px;
    }

    .overview-text a {
        font-size: 20px;
        padding: 8px 30px;
    }

    /* Service Section Responsiveness */
    .service-section {
        height: auto;
        padding-bottom: 60px;
    }

    .service-title {
        padding-top: 60px;
    }

    .service-title h2 {
        font-size: 28px;
    }

    .service-title h2::before,
    .service-title h2::after {
        width: 40px;
    }
    .service-title h2::before { left: -50px; }
    .service-title h2::after { right: -50px; }

    .service-container {
        width: 100%;
        height: auto;
        position: static;
        transform: none;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        padding: 0 10px;
    }

    .service-container .service-img {
        width: calc(50% - 20px); /* Show 2 items per row */
        height: auto;
        float: none;
        margin: 10px;
    }

    /* Client Logo Section Responsiveness */
    .clientlogo-section1,
    .clientlogo-section2 {
        height: auto;
        padding-bottom: 40px;
    }

    .clientlogo-title {
        padding-top: 40px;
    }

    .clientlogo-title h2 {
        font-size: 28px;
        margin-top: 0;
    }

    .clientlogo-title h2::before,
    .clientlogo-title h2::after {
        width: 40px;
    }
    .clientlogo-title h2::before { left: -50px; }
    .clientlogo-title h2::after { right: -50px; }

    #logo-slider-box2 {
        margin-top: 40px;
    }

    #logo-slider-box3 {
        top: 20px;
    }

    .logo-slider::before,
    .logo-slider::after {
        width: 40px;
    }

    .logo-subtitle h3 {
        font-size: 22px;
    }

    .logo-track {
        gap: 20px;
    }

    .logo-track img {
        height: 40px;
    }

    /* Footer Section Responsiveness */
    .footer-section {
        height: auto;
        padding: 40px 0 0;
    }

    .footer-container {
        width: 100%;
        height: auto;
        position: static;
        display: flex;
        flex-direction: column;
        padding: 0 20px;
    }

    .footer-left,
    .footer-middle,
    .footer-right {
        width: 100%;
        height: auto;
        position: static;
        padding: 20px 0;
        text-align: center;
    }

    .footer-left h2,
    .footer-middle h2,
    .footer-right h2 {
        text-align: center;
        font-size: 25px;
    }

    .footer-item {
        justify-content: center;
        margin: 15px 0;
        font-size: 20px;
    }

    .social-icons {
        justify-content: center;
        margin-top: 20px;
    }

    .footer-bottom {
        height: auto;
        padding: 20px 10px;

    }

	.footer-bottom p{
		font-size: 16px;
	}


    /* About Us Heading Page Responsiveness */
    .aboutus-section {
        height: 400px;
    }

    .aboutus-text {
        width: 100%;
        padding: 40px 20px;
    }

    .aboutus-text h1 {
        font-size: 50px;
    }

    /* Who We Are Section Responsiveness */
    .whoweare-section {
        height: auto;
        padding-bottom: 60px; /* Add some space at the bottom */
    }

    .whoweare-title {
        width: 100%;
        height: auto;
        padding-top: 60px;
        position: static; /* Allow it to flow naturally */
        text-align: center;
    }

    .whoweare-title h3 {
        width: 100%;
        position: static; /* Remove absolute positioning */
        padding: 0 20px; /* Adjust padding for mobile */
        font-size: 35px;
        text-align: center;
    }

    .whoweare-container {
        width: 100%;
        height: auto;
        position: static; /* Allow children to stack */
        display: flex;
        flex-direction: column; /* Stack children vertically */
        align-items: center; /* Center items horizontally */
        padding: 0 20px;
    }

    .whoweare-left,
    .whoweare-right {
        width: 100%;
        height: auto;
        position: static; /* Remove absolute positioning */
        padding: 0; /* Reset padding and adjust below */
        text-align: center;
    }

    .whoweare-left img {
        width: 80%; /* Adjust image width to be more fluid */
        height: auto; /* Maintain aspect ratio */
        margin: 20px auto; /* Center image */
        display: block; /* Make it a block element for margin auto */
    }

    .whoweare-right p {
        font-size: 20px; /* Reduce font size */
        padding: 0 20px 20px 20px; /* Add some padding around text */
        text-align: justify; /* Keep text justified or change to center */
    }

    /* Our Journey Section Responsiveness */
    .ourjourney-section {
        height: auto;
        padding-bottom: 60px;
    }

    .ourjourney-title {
        width: 100%;
        height: auto;
        padding: 40px 20px 20px;
    }

    .ourjourney-title h3 {
        font-size: 35px;
        text-align: center;
    }

    .ourjourney-img {
        width: 100%;
        height: auto;
    }

    .ourjourney-img img {
        width: 95%;
    }

    .ourjourney-text {
        width: 100%;
        height: auto;
        padding: 20px;
    }

    .ourjourney-text p {
        font-size: 20px;
    }

    /* Vision and Mission Section Responsiveness */
    .vision-section {
        height: auto;
        padding-bottom: 60px;
    }

    .vision-container {
        width: 100%;
        height: auto;
        flex-direction: column;
        padding: 0 20px;
    }

    .vision-left {
        width: 100%;
        height: auto;
        margin-top: 60px;
        padding: 0;
    }

    .vision-left h2 {
        font-size: 35px;
    }

    .vision-left p {
        font-size: 20px;
        text-align: center;
    }

    .vision-right {
        width: 100%;
        height: auto;
        margin-top: 30px;
        padding: 0;
        display: flex;
        justify-content: center;
    }

    .vision-right img {
        width: 80%;
        height: auto;
        margin-left: 0;
    }

    /* Value Section Responsiveness */
    .value-section {
        height: auto;
        padding-bottom: 60px;
    }

    .value-container {
        width: 100%;
        height: auto;
        flex-direction: column;
        padding: 0 20px;
    }

    .value-left {
        width: 100%;
        height: auto;
        margin-top: 60px;
        padding: 0;
    }

    .value-left img {
        width: 80%;
        height: auto;
        padding-top: 0;
        margin: 0 auto;
        display: block;
    }

    .value-right {
        width: 100%;
        height: auto;
        margin-top: 30px;
        padding: 0;
    }

    .value-right h1 {
        font-size: 35px;
    }

    .value-right .value-1,
    .value-right .value-2,
    .value-right .value-3,
    .value-right .value-4,
    .value-right .value-5 {
        margin-left: 0;
        text-align: center;
        font-size: 25px;
    }

    .value-right .big-number {
        font-size: 30px;
    }

    /* Our Senior Team Section Responsiveness */
    .team-section {
        height: auto;
        padding-bottom: 60px;
    }

    .team-title {
        padding-top: 60px;
    }

    .team-title h2 {
        font-size: 28px;
    }

    .team-title h2::before,
    .team-title h2::after {
        width: 40px;
    }
    .team-title h2::before { left: -50px; }
    .team-title h2::after { right: -50px; }

    .team-container1, 
    .team-container2 {
        width: 100%;
        height: auto;
        position: static;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        padding: 0 10px;
    }

    .team-box {
        width: 33.33%;
        height: auto;
        position: static;
        margin-bottom: 30px;
    }

    #row1-left, #row2-left,
    #row1-middle, #row2-middle,
    #row1-right, #row2-right {
        left: auto;
        right: auto;
    }

    .gallery {
        width: 100%;
        max-width: 220px;
        height: auto;
        margin: 0 auto 10px;
    }

    .position h2 {
        font-size: 16px;
    }

    /* Team Modal Responsiveness */
    .modal {
        padding: 10px;
    }

    .modal-content {
        flex-direction: column;
        height: auto;
        max-height: 90vh;
        overflow-y: auto;
        padding: 50px 20px 20px; /* Space at top for close button */
        width: 95%;
    }

    .modal-left {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }

    .modal-left img {
        max-width: 180px;
        height: auto;
    }

    .modal-right {
        width: 100%;
        margin-left: 0;
    }

    .modal-right h2 {
        font-size: 22px;
        text-align: center;
    }

    .modal-right p {
        font-size: 18px;
    }

    /* Our Facility Section Responsiveness */
    .facility-section {
        height: auto;
        padding: 40px 10px;
    }

    .facility-container {
        width: 100%;
        height: auto;
        padding-top: 0;
    }

    .facility-container img {
        width: 100%;
        height: auto;
    }

    /* Our Staff Section Responsiveness */
    .staff-section {
        height: auto;
        padding-bottom: 60px; /* Add some space at the bottom */
    }

    .staff-title {
        padding-top: 60px; /* Adjust padding for mobile */
    }

    .staff-title h2 {
        font-size: 28px; /* Smaller font size for title */
    }

    .staff-title h2::before,
    .staff-title h2::after {
        width: 40px; /* Shorter lines for title decoration */
    }
    .staff-title h2::before { left: -50px; }
    .staff-title h2::after { right: -50px; }

    .staff-container {
        width: 100%;
        height: auto;
        position: static; /* Allow it to flow naturally */
        display: flex;
        flex-direction: column; /* Stack children vertically */
        align-items: center; /* Center items horizontally */
        padding: 0 20px; /* Add some horizontal padding */
    }

    .staff-left,
    .staff-middle,
    .staff-right {
        width: 100%; /* Full width for stacking */
        height: auto;
        position: static; /* Remove absolute positioning */
        padding: 20px 0; /* Adjust padding */
        text-align: center; /* Center text */
    }

    .staff-left p {
        font-size: 25px; /* Smaller font size */
    }

    .staff-middle p {
        font-size: 25px; /* Smaller font size */
        padding: 0 10px; /* Adjust padding */
        border-left: none; /* Remove the vertical line */
        display: block; /* Make it a block element to center */
    }

    .staff-middle .big-text {
        font-size: 60px; /* Smaller big number */
    }

    .staff-right img {
        width: 70%; /* Adjust image width */
        height: auto;
    }

    /* Reset specific positioning for mobile */
    #st-left, #st-middle, #st-right {
        left: auto;
        right: auto;
    }

    /* Our Services Heading Page Responsiveness */
    .servicepage-heading {
        height: 400px;
    }

    .servicepage-text {
        width: 100%;
        padding: 40px 20px;
    }

    .servicepage-text h1 {
        font-size: 50px;
    }


	/* Ranges of Services Section Responsiveness */
    .rangeofservice-section {
        height: auto;
        padding-bottom: 60px;
    }

    .rangeofservice-title {
        padding-top: 60px;
    }

    .rangeofservice-title h2 {
        font-size: 28px;
    }

    .rangeofservice-title h2::before,
    .rangeofservice-title h2::after {
        width: 40px;
    }
    .rangeofservice-title h2::before { left: -50px; }
    .rangeofservice-title h2::after { right: -50px; }

    .rangeofservice-container {
        width: 100%;
        height: auto;
        position: static;
        padding: 0 20px;
    }

    .service-text-up {
        width: 100%;
        height: auto;
        padding: 10px 0;
    }

    .service-text-up p {
        font-size: 20px;
        padding: 0 10px 20px;
    }

    .service-text-r1-container,
    .service-text-r2-container {
        width: 100%;
        height: auto;
        position: static;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 0;
    }

    .service-detail {
        background: rgba(255, 255, 255, 0.1); /* Subtle card background */
        padding: 20px;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        margin-bottom: 20px;
    }

    .service-text-r1-left,
    .service-text-r1-middle,
    .service-text-r1-right,
    .service-text-r2-left,
    .service-text-r2-middle,
    .service-text-r2-right {
        width: 100%;
        height: auto;
        position: static;
        padding: 10px;
        text-align: center;
    }

    .service-detail h2 {
        font-size: 22px;
        padding-left: 0;
        text-align: center;
        margin-bottom: 15px;
    }

    .service-detail ul li {
        font-size: 18px;
        padding-left: 30px;
        text-align: left; /* Keep list items left-aligned for readability */
    }

    .service-detail ul li::before {
        left: 10px;
    }

    .button-coverage-industry {
        height: auto;
        padding: 30px 0;
        display: flex;
        justify-content: center;
        position: static;
    }

    .button-coverage-industry a {
        position: static;
        transform: none;
        font-size: 20px;
        padding: 10px 30px;
    }

    /* Quantitative Research Section Responsiveness */
    .quantitative-section {
        height: auto;
        padding-bottom: 60px;
    }

    .quantitative-container {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column-reverse; /* Ensures image stays on top on mobile */
        align-items: center;
        padding: 0 20px;
    }

    .quantitative-left,
    .quantitative-right {
        width: 100%;
        height: auto;
        position: static;
        padding: 0;
        text-align: center;
    }

    .quantitative-right img {
        width: 80%;
        height: auto;
        padding: 40px 0 20px;
        margin: 0 auto;
        display: block;
    }

    .quantitative-left h2 {
        font-size: 35px;
        padding-top: 20px;
    }

    .quantitative-left p {
        font-size: 20px;
        padding: 10px 10px;
    }

    .quantitative-left ul {
        padding-left: 20px;
        text-align: left;
    }

    .quantitative-left ul li {
        font-size: 18px;
        line-height: 25px;
        padding-left: 30px;
    }

    .quantitative-left ul li::before {
        left: 5px;
    }

    /* Retail Research Section Responsiveness */
    .retail-section {
        height: auto;
        padding-bottom: 60px;
    }

    .retail-container {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
    }

    .retail-left,
    .retail-right {
        width: 100%;
        height: auto;
        position: static;
        padding: 0;
        text-align: center;
    }

    .retail-left img {
        width: 80%;
        height: auto;
        padding: 40px 0 20px;
        margin: 0 auto;
        display: block;
    }

    .retail-right h2 {
        font-size: 35px;
        padding-top: 20px;
    }

    .retail-right p {
        font-size: 20px;
        padding: 10px 10px;
    }

    .retail-right ul {
        padding-left: 20px;
        text-align: left;
    }

    .retail-right ul li {
        font-size: 18px;
        line-height: 25px;
        padding-left: 30px;
    }

    .retail-right ul li::before {
        left: 5px;
    }

	
    /* Qualitative Research Section Responsiveness */
    .qualitative-section {
        height: auto;
        padding-bottom: 60px;
    }

    .qualitative-container {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
    }

    .qualitative-left,
    .qualitative-right {
        width: 100%;
        height: auto;
        position: static;
        padding: 0;
        text-align: center;
    }

    .qualitative-left img {
        width: 85%;
        height: auto;
        padding: 40px 0 20px;
        margin: 0 auto;
        display: block;
    }

    .qualitative-right h2 {
        font-size: 35px;
        padding-top: 20px;
    }

    .qualitative-right p {
        font-size: 20px;
        padding: 10px 10px;
    }

    .qualitative-right ul {
        padding-left: 20px;
        text-align: left; /* Keep list items left-aligned for readability */
    }

    .qualitative-right ul li {
        font-size: 18px;
        line-height: 25px;
        padding-left: 30px;
    }

    .qualitative-right ul li::before {
        left: 5px;
    }

    /* Mystery Shopping Research Section Responsiveness */
    .mystery-section {
        height: auto;
        padding-bottom: 60px;
    }

    .mystery-container {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column-reverse; /* Image on top on mobile */
        align-items: center;
        padding: 0 20px;
    }

    .mystery-left,
    .mystery-right {
        width: 100%;
        height: auto;
        position: static;
        padding: 0;
        text-align: center;
    }

    .mystery-right img {
        width: 80%;
        height: auto;
        padding: 40px 0 20px;
        margin: 0 auto;
        display: block;
    }

    .mystery-left h2 {
        font-size: 35px;
        padding-top: 20px;
    }

    .mystery-left p {
        font-size: 20px;
        padding: 10px 10px;
    }

    .mystery-left ul {
        padding-left: 20px;
        text-align: left;
    }

    .mystery-left ul li {
        font-size: 18px;
        line-height: 25px;
        padding-left: 30px;
    }

    .mystery-left ul li::before {
        left: 5px;
    }

    /* Media Research Section Responsiveness */
    .media-section {
        height: auto;
        padding-bottom: 60px;
    }

    .media-container {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
    }

    .media-left,
    .media-right {
        width: 100%;
        height: auto;
        position: static;
        padding: 0;
        text-align: center;
    }

    .media-left img {
        width: 80%;
        height: auto;
        padding: 40px 0 20px;
        margin: 0 auto;
        display: block;
    }

    .media-right h2 {
        font-size: 35px;
        padding-top: 20px;
    }

    .media-right p {
        font-size: 20px;
        padding: 10px 10px;
    }

    .media-right ul {
        padding-left: 20px;
        text-align: left;
    }

    .media-right ul li {
        font-size: 18px;
        line-height: 25px;
        padding-left: 30px;
    }

    .media-right ul li::before {
        left: 5px;
    }


    /* Socio-economic Section Responsiveness */
    .socio-section {
        height: auto;
        padding-bottom: 60px;
    }

    .socio-container {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column-reverse; /* Image on top on mobile */
        align-items: center;
        padding: 0 20px;
    }

    .socio-left,
    .socio-right {
        width: 100%;
        height: auto;
        position: static;
        padding: 0;
        text-align: center;
    }

    .socio-right img {
        width: 80%;
        height: auto;
        padding: 40px 0 20px;
        margin: 0 auto;
        display: block;
    }

    .socio-left h2 {
        font-size: 35px;
        padding-top: 20px;
    }

    .socio-left p {
        font-size: 20px;
        padding: 10px 10px;
    }

    .socio-left ul {
        padding-left: 20px;
        text-align: left;
    }

    .socio-left ul li {
        font-size: 18px;
        line-height: 25px;
        padding-left: 30px;
    }

    .socio-left ul li::before {
        left: 5px;
    }

    /* Our Experience Heading Page Responsiveness */
    .experiencepage-heading {
        height: 400px;
    }

    .experiencepage-text {
        width: 100%;
        padding: 40px 20px;
    }

    .experiencepage-text h1 {
        font-size: 50px;
    }


    /* Why MSD Section Responsiveness */
    .whymsd-section {
        height: auto;
        padding-bottom: 60px;
    }

    .whymsd-container {
        width: 100%;
        height: auto;
        position: static;
        transform: none;
        padding: 0 20px;
    }

    .whymsd-title {
        width: 100%;
        height: auto;
        padding-top: 40px;
    }

    .whymsd-title h2 {
        font-size: 35px;
    }

    .whymsd-img {
        width: 100%;
        height: auto;
        margin-top: 20px;
    }
    .whymsd-img img {
        width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    /* Coverage Industry & Impact Section Responsiveness */
    .coverage-section {
        height: auto;
        padding-bottom: 60px;
    }

    .coverage-container {
        width: 100%;
        height: auto;
        position: static;
        transform: none;
        padding: 0 10px;
    }

    .coverage-title {
        height: auto;
        padding-top: 40px;
        margin-bottom: 30px;
    }

    .coverage-title h2 {
        font-size: 28px;
        text-align: center;
        padding-right: 0;
        text-underline-offset: 10px;
    }

    .coverage-item-container {
        height: auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        position: static;
        gap: 10px; /* Reduced gap to accommodate 3 items per row */
    }

    .coverage-item {
        width: calc(33.33% - 10px); /* Changed to 3 items per row */
        height: auto;
        position: static;
        padding: 10px 5px; /* Reduced padding for smaller cards */
        background: rgba(255, 255, 255, 0.1); /* Subtle card background */
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        margin-bottom: 0; /* Gap handles vertical spacing */
        display: flex; /* Make it a flex container to center content */
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .coverage-item h2 {
        font-size: 14px; /* Reduced font size for 3-up layout */
        height: auto;
        margin-bottom: 5px;
        text-align: center;
    }

    .coverage-item img {
        width: 50px; /* Smaller icon size for 3-up layout */
        height: 50px;
    }

    #item-r1, #item-r2 {
        float: none;
        width: 100%;
    }

    #item-r1-left, #item-r1-middle, #item-r1-right,
    #item-r2-left, #item-r2-middle, #item-r2-right {
        left: auto;
        right: auto;
    }

    #item-r2 {
        margin-top: 0;
    }	

    /* Our Clients Gallery Responsiveness */
    .ourclient-section,
    .ourclient-section2 {
        height: auto;
        padding-bottom: 40px;
    }

    .ourclient-container {
        width: 100%;
        height: auto;
        position: static;
        transform: none;
        padding: 20px 10px;
        margin-top: 0;
    }

    .ourclient-title {
        height: auto;
        margin-bottom: 20px;
    }

    .ourclient-title h2 {
        font-size: 28px;
        text-align: center;
        padding-left: 0;
        margin-top: 20px;
        text-underline-offset: 10px;
    }

    .ourclient-logo {
        grid-template-columns: repeat(3, 1fr); /* Show 3 logos per row on mobile */
        gap: 15px;
    }

    .ourclient-logo img {
        margin-bottom: 20px;
    }


    /* Career Heading Page Responsiveness */
    .career-heading {
        height: 400px;
    }

    .career-text {
        width: 100%;
        padding: 40px 20px;
    }

    .career-text h1 {
        font-size: 50px;
    }


    /* Current Opportunities Section Responsiveness */
    .currentopp-section {
        height: auto;
        padding-bottom: 60px;
    }

    .currentopp-container {
        width: 100%;
        height: auto;
        margin-top: 40px; /* Adjust margin-top for mobile */
        position: static; /* Remove absolute positioning */
        display: flex;
        flex-direction: column; /* Stack children vertically */
        align-items: center; /* Center items horizontally */
        padding: 0 20px;
    }

    .currentopp-container .currentopp-left {
        width: 100%;
        height: auto;
        position: static; /* Remove absolute positioning */
        display: flex;
        justify-content: center;
        margin-bottom: 30px; /* Space between image and text */
    }

    .currentopp-container .currentopp-left img {
        width: 80%; /* Adjust image width to be more fluid */
        height: auto;
        position: static; /* Remove absolute positioning */
    }

    .currentopp-right {
        width: 100%;
        height: auto;
        position: static; /* Remove absolute positioning */
        justify-content: center; /* Center content vertically */
        align-items: center; /* Center content horizontally */
        padding: 0;
    }

    .currentopp-right h2 {
        font-size: 35px; /* Smaller font size for title */
        margin-bottom: 40px; /* Adjust margin */
        line-height: 1.3; /* Adjust line height */
        padding: 0 10px; /* Add horizontal padding */
    }

    .currentopp-right a {
        width: 80%; /* Make button fluid */
        max-width: 300px; /* Max width for button */
        padding: 15px 20px; /* Adjust padding */
        font-size: 20px; /* Smaller font size for button */
        margin-bottom: 40px; /* Adjust margin */
    }


    /* Job Title Section Responsiveness */
    .jobtitle-section {
        height: auto;
        padding-bottom: 60px;
    }

    .jobtitle-container {
        width: 100%;
        height: auto;
        position: static; /* Remove absolute positioning */
        display: flex;
        flex-direction: column; /* Stack children vertically for 1 per row */
        align-items: center; /* Center items horizontally */
        padding: 0 20px;
    }

    .job-box {
        width: 100%; /* Full width for stacking */
        height: auto;
        position: static; /* Remove absolute positioning */
        margin-bottom: 25px; /* Space between job items */
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        background: rgba(255, 255, 255, 0.1); /* Subtle card background */
        padding: 30px 20px;
        border-radius: 15px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .jobtitle {
        width: 100%;
        max-width: 180px; /* Balanced icon size for cards */
        height: auto;
        margin: 0 auto;
    }

    .jobtitle img {
        width: 100%;
        height: auto;
    }

    .jobposition h2 {
        font-size: 20px;
        margin-top: 15px;
        line-height: 1.3;
    }

    /* Remove desktop-specific offsets */
    #job-left, #job-middle, #job-right {
        left: auto;
        right: auto;
    }



    /* Contact Us Heading Page Responsiveness */
    .contactus-heading {
        height: 400px;
    }

    .contactus-text {
        width: 100%;
        padding: 40px 20px;
    }

    .contactus-text h1 {
        font-size: 50px;
        margin-bottom: 20px;
    }

    .contactus-text p {
        font-size: 20px;
        margin-bottom: 40px;
    }

    .contactus-text a {
        padding: 10px 30px;
        font-size: 20px;
    }

    
    /* Thank You Heading Page Responsiveness */
    .thankyou-heading {
        height: 400px; /* Adjust height for mobile */
        padding: 20px; /* Add some padding */
    }

    .thankyou-text {
        max-width: 100%; /* Ensure it takes full width */
        padding: 0 15px; /* Adjust padding */
    }

    .thankyou-text .icon {
        font-size: 50px; /* Smaller icon size */
        margin-bottom: 15px;
    }

    .thankyou-text h1 {
        font-size: 40px; /* Smaller heading font size */
        margin-bottom: 15px;
    }

    .thankyou-text p {
        font-size: 18px; /* Smaller paragraph font size */
        margin-bottom: 25px;
    }

    .thankyou-text .back-btn {
        padding: 10px 25px; /* Adjust button padding */
        font-size: 16px; /* Smaller button font size */
    }

    
    /* Scroll Indicator Responsiveness */
    .scroll-indicator {
        width: 25px; /* Smaller width */
        height: 40px; /* Smaller height */
        bottom: 25px; /* Move it higher to avoid overlap with the button */
        border: 1px solid rgba(255, 255, 255, 0.6); /* Thinner border */
    }

    .scroll-indicator::before {
        width: 5px; /* Smaller dot */
        height: 5px; /* Smaller dot */
        top: 8px; /* Adjust dot position for new height */
    }


    /* Map Contact Section Responsiveness */
    .contact-section {
        height: auto;
        padding-bottom: 60px; /* Add some space at the bottom */
    }

    .contact-container {
        width: 100%;
        height: auto;
        position: static; /* Remove absolute positioning */
        transform: none;
        margin-top: 40px; /* Adjust spacing */
        padding: 0 20px; /* Add horizontal padding */
    }

    .contact-map {
        width: 100%;
        height: 300px; /* Set a fixed height for the map on mobile */
    }

    .contact-map iframe {
        width: 100%;
        height: 100%;
        border: none; /* Remove default iframe border */
    }


    /* Form Contact Section Responsiveness */
    .contact-form-section {
        height: auto;
        padding: 40px 0; /* Add vertical padding */
    }

    .contact-form-container {
        width: 100%;
        height: auto;
        padding: 0 20px; /* Add horizontal padding */
        background-color: transparent; /* Remove black background for mobile */
    }

    .contact-form {
        width: 100%;
        height: auto;
        padding: 20px;
        margin: 0; /* Remove auto margin to allow container padding */
    }

    .form-desc {
        font-size: 18px;
        margin-bottom: 15px;
        text-align: center;
    }

    .contact-form label {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 12px;
        font-size: 16px;
        margin-bottom: 15px;
    }

    .row {
        flex-direction: column; /* Stack columns vertically */
        gap: 0; /* Remove gap when stacked */
    }

    .row .col {
        width: 100%; /* Full width for stacked columns */
        margin-bottom: 15px; /* Add space between stacked inputs */
    }

    .row .col:last-child {
        margin-bottom: 0; /* No margin after the last column in a row */
    }

    .submit-btn {
        font-size: 20px;
        padding: 12px 25px;
        width: 100%; /* Make button full width */
    }

    /* reCAPTCHA Responsiveness */
    .g-recaptcha {
        transform: scale(0.77); /* Scale down the reCAPTCHA widget */
        transform-origin: 0 0; /* Ensure it scales from the top-left corner */
        margin-bottom: 10px; /* Adjust margin after scaling */
    }

    









    
}
