
@import url('https://fonts.googleapis.com/css2?family=Miniver&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}

:root {
  --white-color: #fff;
  --dark-color: #252525;
  --primary-color: #0d47a1; /* dark blue for navbar text and headings */
  --secondary-color: #42a5f5; /* pale blue accent */
  --background-color: #e6f0fa; /* soft powder blue background */
  --medium-gray-colour: #ccc;

  --font-size-s: 0.9rem;
  --font-size-n: 1rem;
  --font-size-m: 1.12rem;
  --font-size-l: 1.5rem;
  --font-size-xl: 2rem;
  --font-size-xxl: 2.3rem;

  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semi-bold: 600;
  --font-weight-bold: 700;

  --border-radius-s: 8px;
  --border-radius-m: 30px;
  --border-radius-circle: 50%;

  --site-max-width: 1300px;
}


ul{
	list-style: none;
}

a{
	
    text-decoration: none;
}

button{
    cursor: pointer;
    border: none;
    background: none;
}

/*img{
    width: 100%;
}*/
img {
    max-width: 100%;
    height: auto;
}

.navbar .only-logo {
    width: auto !important;
}

.section-content{
	margin: 0 auto;
	padding:0 40px;
	max-width: var(--site-max-width);
}
.section-title{
	text-align: center;;
	padding: 60px 0 100px;
	text-transform: uppercase;
	font-size: var(--font-size-xl);
}
.section-title::after{
    content: "";
    display: block;
    width: 80px;
    height: 5px;
    background: var(--secondary-color);
    margin: 10px auto 0;
    border-radius: var(--border-radius-s);
}
header{
	position: fixed;
	width: 100%;
	z-index: 5;
    background: var(--background-color);
}
header .navbar{
    display: flex;
    padding:20px;
    align-items: center;
    justify-content: space-between;
    
}


.navbar .nav-logo .logo-text{
	color: var(--dark-color);
	font-size: var(--font-size-xl);
	font-weight: var(--font-weight-semibold);
}
.navbar .nav-menu{
	display: flex;
	gap: 10px;
}


.navbar .nav-menu .nav-link{
	    padding: 10px 18px;
	    color: var(--dark-color);
	    font-size: var(--font-size-m);
	    border-radius: var(--border-radius-m);
	    transition: all 0.3s ease;
}

.navbar .nav-menu .nav-link:hover{
	color:var(--primary-color);
    background: var(--secondary-color);

}
.navbar :where(#menu-close-button, #menu-open-button){
	display: none;
}
.hero-section{
	min-height: calc(100vh-80px);
	 background: var(--background-color);
  	 color: var(--dark-color);
}
.hero-section .section-content{
	
    display: flex;
    align-items: center;
    min-height: 100vh;
    color: var(--dark-color); 
    gap: 60px;
    justify-content: space-between;
}
.hero-section .hero-details {
    flex: 1;
}

.hero-section .hero-details .subtitle{
	margin-top:8px;
	margin:24px 0 40px;
	max-width:70%;
	font-size: var(--font-size-xl);
	font-weight: var(--font-weight-semi-bold);
	color: var(--primary-color);
	line-height:1.6;
}
.hero-section .hero-details .description{
	max-width:90%;
	margin:30px 0 60px;
    font-size: var(--font-size-m);
     text-align: justify; 
}

.hero-section .hero-details .description p{
	margin-bottom:16px;
	text-align: justify;
	color: var(--dark-color); 
}

.hero-section .hero-details .buttons{
    display: flex;
    gap: 23px;
}
.hero-section .hero-details .button{
	padding:10px 26px;
	border: 2px solid transparent;
	color: var(--dark-color);
	border-radius: var(--border-radius-m);
	background: var(--primary-color);
	font-weight: var(--font-weight-medium);
	transition:0.3s ease;
}

.hero-section .hero-details .button{
    color: var(--primary-color);
    border-color: var(--primary-color);
    background:transparent; 
}
.hero-section .hero-details .button:hover{
    color: var(--primary-color);
    border-color: var(--primary-color);
    background:var(--secondary-color); 
}
.hero-section .hero-image-wrapper {
    flex: 1;
    max-width: 600px;
    min-width: 300px;
    margin-right: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-section .hero-image-wrapper img {
    width: 100%;
    height: auto;
    max-height: 80vh; /* So it doesn’t overflow */
    object-fit: contain;
}
.service-section{
	padding: 50px 0 100px;
	background: var(--background-color);
}
.service-section .services{
	display:flex;
	padding:35px;
	text-align: center;
	flex-direction: column;
	align-items: center;
}
.service-section .services .service-image{
	width:320px;
	height:320px;
	object-fit:cover;
	margin-bottom:50px;
	border-radius: var(--border-radius-m);
	
}
.service-image{
	width:390px;
	height:390px;
	object-fit:cover;
	margin-bottom:50px;
	border-radius: var(--border-radius-m);
}
.service-section .services .service-type{
	margin-bottom: 16px;
	font-size: var(--font-size-m);
}
.service-section .services .description{
	line-height:25px;
	
	
}
.service-section .swiper-slide-button{
	color: var(--secondary-color);
	transition: 0.3s ease;
}
.service-section .swiper-slide-button:hover{
	color: var(--primary-color);
}

@media screen and (max-width: 900px){
	.root{
	--font-size-m: 1rem;
  	--font-size-l: 1.3rem;
  	--font-size-xl: 1.5rem;
  	--font-size-xxl: 1.8rem;
	}
	.navbar :where(#menu-close-button, #menu-open-button){
        display: block;
        font-size: var(--font-size-l);
    }
    .navbar #menu-close-button{
    position: absolute;
    right: 30px;
    top:30px;
    }
    .navbar #menu-open-button{
    	color: var(--dark-color);
    }
	.navbar .nav-menu{
        display: block;
        position: fixed;
        left: -300px;
        top: 0;
        width: 300px;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 100px;
        background: var(--white-color);
        transition:left 0.2s ease;
    }
    body.show-mobile-menu .navbar .nav-menu{
        left:0;
    }
        .navbar .nav-menu .nav-link{
        	color: var(--dark-color);
        	display: block;
        	margin-top:17px;;
        	font-size: var(--font-size-l);
        }

.hero-section .section-content{
	gap:50px;
	text-align: center;
	padding: 30px 20px 20px;
    flex-direction: column-reverse;
    justify-content: center;
    
}
.hero-section .hero-details :is(.subtitle, .description),.about-section .about-details{
    max-width: 100%;
}
.hero-section .hero-details .buttons{
	  justify-content: center;
}
 .hero-section .hero-image-wrapper{
 	max-width: 270px;
 	margin-right: 0;
 }
}

.about-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  max-height: 500px; /* Set max height */
}

.about-banner .banner-img {
  width: 100%;
  height: 500px;  /* Fix height */
  object-fit: cover; /* Crop nicely without stretching */
  display: block;
}
.about-slider-section {
  background: var(--background-color);
  padding: 100px 0;
}

.about-slide .about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 0 40px;
  flex-wrap: wrap;
}

.about-slide .text {
  flex: 1;
  min-width: 300px;
}

.about-slide .text h3 {
  font-size: var(--font-size-xl);
  color: var(--primary-color);
  margin-bottom: 20px;
}

.about-slide .text p {
  font-size: var(--font-size-m);
  color: var(--dark-color);
  text-align: justify;
  line-height: 1.8;
}

.about-slide .image {
  flex: 1;
  min-width: 300px;
}

.about-slide .image img {
  width: 100%;
  border-radius: var(--border-radius-m);
  object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--secondary-color);
}

.swiper-pagination-bullet-active {
  background: var(--primary-color);
}


.contact-section{
	padding: 150px 0 100px;;
    background: var(--background-color);
}
.contact-section .section-content{
    display: flex;
    gap: 48px;
    align-items: flex-start;
    justify-content: space-between;
}
.contact-section .contact-info-list .contact-info{
	display:flex;
	gap:20px;
	margin:20px 0;
	align-items: center;
}
.contact-section .contact-info-list .contact-info i{
	font-size:var(--font-size-m);
}
.contact-section .contact-form .form-input{
	width:100%;
	height:50px;
	padding: 0 12px;
	outline:none;
	margin-bottom:16px;
	background: var(--white-color);
	border-radius: var(--border-radius-s);
	border: 1px solid var(--medium-gray-colour);
}
.contact-section .contact-form{
	flex: 1;
  min-width: 300px;
  max-width: 600px;
}
.contact-section .contact-form .form-input:focus{
	border-color: var(--secondary-color);
}

.contact-section .contact-form textarea.form-input{
	height:100px;
	padding: 12px;
	resize:vertical;
}
.contact-section .contact-form .submit-button{
	padding:10px 26px;
	margin-top: 10px;
	color:var(--white-color);
	font-size: var(--font-size-m);
	font-weight: var(--font-weight-medium);
	background: var(--primary-color);
	border-radius: var(--border-radius-m);
	border : 1px solid var(--primary-color);
	transition:0.3s ease;
}
.contact-section .contact-form .submit-button:hover{
	color:var(--primary-color);
    background: transparent;
}
.image-slider-banner {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.image-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  max-width: 80%;
  background: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: var(--border-radius-m);
}

.slide-content h2 {
  font-size: var(--font-size-xxl);
  margin-bottom: 10px;
}

.slide-content p {
  font-size: var(--font-size-m);
  margin-bottom: 20px;
}

.slider-button {
  padding: 10px 26px;
  background: var(--secondary-color);
  color: white;
  border-radius: var(--border-radius-m);
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  transition: background 0.3s ease;
}

.slider-button:hover {
  background: var(--primary-color);
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  background: rgba(0,0,0,0.3);
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  z-index: 2;
  border-radius: 10px;
}

.left-arrow {
  left: 20px;
}

.right-arrow {
  right: 20px;
}

.arrow:hover {
  background: rgba(0,0,0,0.6);
}

.highlight-section {
  position: relative;
  width: 100%;
  height: 400px;
  margin: 0;
  padding: 0;
}

.highlight-background {
  background-image: url('images/hr-banner.jpg'); /* Replace with actual path */
  background-size: cover;
  background-position: center;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.highlight-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0,0,0,0.5);
  color: var(--white-color);
  padding: 40px;
  border-radius: var(--border-radius-m);
  text-align: center;
  transition: background 0.3s ease;
  width: 90%;
  max-width: 700px;
}
.highlight-section .highlight-background{
		background: var(--background-color);
	color: var(--primary-color);
}
.highlight-overlay:hover {
  background-color:(--background-color);
  
}

.highlight-overlay h2 {
  font-size: var(--font-size-xl);
  margin-bottom: 10px;
}

.highlight-overlay p {
  font-size: var(--font-size-m);
  margin-bottom: 15px;
}

.highlight-overlay .drive-text {
  display: inline-block;
  font-size: var(--font-size-l);
  font-weight: var(--font-weight-bold);
  color: var(--secondary-color);
}
.beyond-business {
  background: var(--background-color);
  padding: 100px 20px;
}

.beyond-business .section-title {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 40px;
}

.beyond-business .beyond-text p {
  font-size: var(--font-size-m);
  color: var(--dark-color);
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.beyond-business .beyond-text .tagline {
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
  text-align: center;
  margin-top: 40px;
  font-size: var(--font-size-l);
}
.why-section, .expertise-section {
  padding: 50px 20px;
  background-color: var(--background-color);
}

.why-description {
  max-width: 800px;
  line-height: 1.8;
  font-size: 1.1rem;
  margin: 20px auto;
  text-align: center;
}

.expertise-section {
  padding: 60px 20px;
  background-color: var(--background-color);
  text-align: center;
}
.expertise-table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background-color: #004d99; /* matches header */
  border-radius: 12px; /* keeps rounded corners */
  padding: 0; /* remove padding to avoid showing wrapper background */
}

.expertise-table {
  width: 100%;
  min-width: 800px; /* ensures scroll on small screens */
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px; /* rounded corners */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.expertise-table th,
.expertise-table td {
  padding: 16px 24px;
  border: 1px solid #ddd;
  font-size: 1rem;
  background-color: #fff; /* table cells background */
}

.expertise-table th {
  background-color: #004d99;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
}

.expertise-table tr:nth-child(even) {
  background-color: #f2f2f2;
}


.expertise-table tr:hover {
  background-color: #e8f4ff;
  transition: background-color 0.3s ease;
}

.video-banner {
  position: relative;
  width: 100%;
  height: 500px; /* 👈 change this to adjust height */
  overflow: hidden;
  z-index: 1;
}

.banner-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.career-section {
  padding: 100px 20px;
  background: var(--background-color);
  color: var(--dark-color);
}

.career-text-wrapper {
  max-width: 900px;
  margin: 0 auto;
  font-size: var(--font-size-m);
  line-height: 1.8;
  text-align: justify;
}

.career-text-wrapper p {
  margin-bottom: 20px;
}
.section-subtitle {
  text-align: center;
  font-size: var(--font-size-l);
  margin-top: 60px;
  margin-bottom: 30px;
  color: var(--primary-color);
}

.career-table-wrapper {
  overflow-x: auto;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}


/* Improve table layout on all screens */
.career-table-wrapper {
  overflow-x: auto;
  margin-top: 20px;
  -webkit-overflow-scrolling: touch;
}


/* Mobile optimization */
@media screen and (max-width: 600px) {
  .career-table th,
  .career-table td {
    padding: 12px 14px;
    font-size: 0.9rem;
  }

  .career-table {
    font-size: 0.9rem;
  }
}

/* FINAL — RESPONSIVE + CLEAN JOB DETAILS FIX */
.career-table {
  table-layout: fixed;           /* forces proper text wrapping */
  width: 100%;
}

.career-table td,
.career-table th {
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Details row styling */
.career-table tr.job-details-row td {
  background: #fafafa;
  text-align: justify;
  line-height: 1.7;
  padding: 20px 22px;
  white-space: normal !important;
  word-break: break-word !important;
}

/* Make everything inside justify too */
.career-table tr.job-details-row td * {
  text-align: justify !important;
  white-space: normal !important;
  line-height: 1.7;
  word-break: break-word;
}





