*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html{
	overflow-x: hidden;
	scroll-behavior: smooth;
}

body {
	width: 100%;
	overflow-x: hidden;
	background-color: #ffffff;
	font-family: 'Poppins';
}

body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 4px;
}

body::-webkit-scrollbar-thumb:hover {
    background-color: #E4873B;
}

body::-webkit-scrollbar-track {
    background-color: #f0f0f0;
}

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
  }

/*-----------Home-----------*/

/* Styles for Video Player */

#video-container {
	width: 100%;
	height: 100vh; 
	position: relative;
	overflow: hidden;
}

#video-player {
	width: 100%;
	height: 100%;
	object-fit: cover; /* Preserve video aspect ratio and fill the container */
}

/* Styles for Company Description */

.company-des{  
	padding: 50px;
	margin-top: 50px;
	font-size: 45px;
	font-weight: 400;
	line-height: normal;
}

@media screen and (max-width: 800px) {
	.company-des{ 
		padding: 20px;
		margin-right: 20px;
		margin-top: 25px;
		font-size: 25px;
		font-weight: 400;
		line-height: normal;
	}
}

img{
	-webkit-user-drag: none;
	user-select: none;
	-moz-user-select: none;
	pointer-events: none;
}

/*styles for Portfolio Grid */

.portfolio{
	padding: 50px;
}

.card {
	position: relative;
	height: 300px;
	overflow: hidden;
	border-radius: 4px;
}

.card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.card-text-main {  /* Styles for text above the card */
    position: absolute;
	padding: 25px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: left;
    justify-content: left;
    color: #fff;
    font-size: 28px;
    text-align: left; 
}

.card-text {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(0, 0, 0, 0.4);
	color: #fff;
	font-size: 16px;
	text-align: center;
	opacity: 0;
	transition: opacity 0.2s ease-in-out;
}

.card:hover .card-text {
	opacity: 1;
}

.card-text a{
	text-decoration: none;
	color: #fff;
}

@media screen and (max-width: 768px) {

	.portfolio{
		padding: 20px;
	}
	
	.card {
		position: relative;
		height: 300px;
		overflow: hidden;
		border-radius: 2px;
	}
	
	.card img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	
	.card-text-main {  /* Styles for text above the card */
		position: absolute;
		padding: 15px;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		display: flex;
		align-items: left;
		justify-content: left;
		color: #fff;
		font-size: 20px;
		text-align: left;
		
	}
	
	.card-text {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		background-color: rgba(0, 0, 0, 0.4);
		color: #fff;
		font-size: 16px;
		text-align: center;
		opacity: 0;
		transition: opacity 0.2s ease-in-out;
	}
	
	.card:hover .card-text {
		opacity: 1;
	}
	
	.card-text a{
		text-decoration: none;
		color: #fff;
	}

}

/*------------Info------------ */

/*Styles for info-Container */

.about-us{
	margin-top: 150px;
}

.meta-title{
	margin-left: 35px;
	font-size: 35px;
}

.main-img-container {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 400px; /* Set the desired fixed height for the image */
  }

  .main-vid-container{
	margin-top: 20px;
	max-width: 100%;
	height: 100%;
	object-fit: contain;
  }

  .para-1{
	  text-align: justify;
	  margin-left: 35px;
	  font-size: 18px;
  }

/* Media query for small screens-info page */
@media screen and (max-width: 768px) {

	.about-us{
		margin-top: 90px;
	}	

	.meta-title{
		margin-top: 20px;
		margin-left: 6px;
		font-size: 23px;
	}
	
	.para-1{
		margin-left: 6px;
		margin-right: 10px;
		font-size: 14px;
		text-align: justify;
		word-spacing:-2px;
	}

	.main-vid-container {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 300px; /* Set the desired fixed height for the image */
	  }
}

/*Styles for Services */

.meta-what-we-do{
	margin-top: 25px;
	padding: 50px;
	font-size: 35px;
	color: #000000;
	font-weight: 500;
}

.what-we-do2{
	font-weight: 300;
}

.list-container {
	margin-top:25px;
	margin-left:50px;
	max-height:400px; 
	overflow:hidden;
	display:flex;
	flex-wrap:wrap;
  }

  .list-item {
	width: 50%; 
	box-sizing: border-box;
	padding: 5px;
	font-size: 20px;
	color: #000;
  }
  
  .list-item:hover{
	color: #7E27E3;
  }

/* Media query for Desk small screens-service page */
@media screen and (max-width: 1375px) {

	.list-item {
		width: 50%; 
		box-sizing: border-box;
		padding: 5px;
		font-size: 18px;
		color: #000;
	  }
} 

/* Media query for small screens-service page */
@media screen and (max-width: 768px) {

	.meta-what-we-do{
		margin-top: 25px;
		margin-left: 10px;
		padding: 5px;
		font-size: 20px;
		color: #000;
		font-weight: 400;
	}
	
	.what-we-do2{
		font-weight: 300;
	}

	.list-container {
		margin-top: 25px;
		margin-left: 10px;
		margin-right: 30px;
		max-height: 800px; 
		display: block;
	  }

	.list-item{
		width: 100%;
		font-size: 15px;
	}
}

/*Styles for Peoples */

.meta-people{
	margin-top: 2em;
	padding-left: 65px;
	padding-bottom: 20px;
	font-size: 35px;
	color: #000000;
	font-weight: 400;
}

.team-container {
	padding-left: 50px;
}

.team-member {
	margin-bottom: 20px;
	padding: 20px;
}

.team-member h3 {
	margin-top: 10px;
	text-align: left;
	padding-left:0;
}

.team-member a{
	color: #000;
	text-decoration: none;
}

.team-member p{
	text-align: left;
	padding-left: 0;
	color: grey;
}

.team-member img {
	max-width: 100%;
	height: auto;
	pointer-events: none;
}

/* Media query for small screens-service page */
@media screen and (max-width: 900px) {
	
.meta-people{
	margin-top: 2em;
	padding: 10px;
	font-size: 25px;
	color: #000000;
	text-align: center;
	font-weight: 400;
}

.team-container{
	padding-left:0px;
	margin-top: 30px;
}

.team-member {
	text-align: center;
	margin-bottom: 20px;
	padding: 20px;
}

.team-member h3 {
	text-align: center;
	padding-top: 5px;
	padding-left: 0;
}

.team-member p{
	text-align: center;
	padding-left: 0px;
}
}

/* clients section */

.meta-clients{
	margin-top: 1em;
	margin-bottom: 1em;
	padding: 10px;
	font-size: 35px;
	color: #000000;
	text-align: center;
	font-weight: 400;
}

@keyframes slide {
	from {
	  transform: translateX(0);
	}
	to {
	  transform: translateX(-100%);
	}
  }
  
  .logos {
	overflow: hidden;
	padding: 60px 0;
	background: #ffffff;
	white-space: nowrap;
	position: relative;
  }
  
  .logos:before,
  .logos:after {
	position: absolute;
	top: 0;
	width: 250px;
	height: 100%;
	content: "";
	z-index: 2;
  }
  
  .logos:before {
	left: 0;
	background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
  }
  
  .logos:after {
	right: 0;
	background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
  }
  
  .logos:hover .logos-slide {
	animation-play-state: paused;
  }
  
  .logos-slide {
	display: inline-block;
	animation: 35s slide infinite linear;
  }
  
  .logos-slide img {
	height: 50px;
	margin: 0 40px;
  }

.client-grid-container {
	display: none; /* Hidden on PC */
}

@media screen and (max-width: 900px) {
	.meta-clients{
		margin-top: 1em;
		margin-bottom: 1em;
		padding: 10px;
		font-size: 25px;
		color: #000000;
		text-align: center;
		font-weight: 400;
	}

	.logos {
		display: none;
	}

	.client-grid-container {
		display: grid;
		grid-template-columns: repeat(3, 1fr); 
		gap: 20px;
		padding: 30px;
		justify-items: center; 
	  }
	
	  .grid-item {
		border: 1px solid #cccccc52;
		width: 150px; 
    		height: 100px; 
		display: flex;
		justify-content: center; 
		align-items: center; 
		overflow: hidden; 
	  }
	
	  .grid-item img {
		max-width: 50%;
		max-height: 50%;
		width: auto; 
    		height: auto;
	  }
}

@media screen and (max-width: 600px) {
	.client-grid-container {
		grid-template-columns: repeat(2, 1fr);
		padding: 15px;
	  }
}

@media screen and (max-width: 345px) {
	.client-grid-container {
		grid-template-columns: repeat(1, 1fr);
		padding: 0;
	}
	
	.grid-item {
		width: 250px;
		height: 100px;
	}
}

/*------------Contact------------ */
/*Styles for Contact-New Business*/

.business-title{
	padding: 30px;
	font-size: 81px;
}

.meta-business-enquiry{
	margin-top: 25px;
	padding: 20px;
	margin-right: 30px;
	font-size: 25px;
}

.email-wrap-business{
	padding-left: 20px;
	padding-top: 10px;
	padding-bottom:35px;
	font-size: 30px;
	font-weight: 400;
}

.email-wrap-business a{
	text-decoration: none;
	color: #000;
}

.meta-company{
	padding: 30px;
	font-size: 81px;
}

.meta-company-loc{
	padding: 20px;
	margin-top: 25px;
	font-size: 35px;
	font-weight: 400;
}

.address-wrap-company{
	padding-left: 20px;
	padding-top: 0px;
	margin-bottom: 35px;
	margin-right: 50px;
	font-size: 25px;
	font-weight: 400;
}

.tel{
	color: #000;
	text-decoration: none;
}

.tel:hover{
	background: linear-gradient(90deg, #E4873B 0%, #7E27E3 100%); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
	text-decoration: none;
}

.office{
	padding: 50px;
}

@media screen and (max-width: 768px) {

	.business-title{
		padding: 10px;
		font-size: 35px;
	}
	
	.meta-business-enquiry{
		margin-top: 0;
		padding: 10px;
		margin-right: 30px;
		font-size: 16px;
	}
	
	.email-wrap-business{
		padding-left: 10px;
		padding-top: 0;
		padding-bottom:20px;
		font-size: 18px;
		font-weight: 400;
	}
	
	.meta-company{
		padding: 10px;
		font-size: 35px;
	}
	
	.meta-company-loc{
		padding: 10px;
		margin-top: 0px;
		font-size: 20px;
		font-weight: 400;
	}
	
	.address-wrap-company{
		padding-left: 10px;
		padding-top: 0px;
		margin-bottom: 20px;
		margin-right: 50px;
		font-size: 18px;
		font-weight: 400;
	}
	
	.tel{
		color: #000;
		text-decoration: underline;
	}
	
	.tel:hover{
		background: linear-gradient(90deg, #E4873B 0%, #7E27E3 100%); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
		text-decoration: none;
	}
	
	.office{
		padding: 20px;
	}
}

/*styles for Footer*/

.footer-wrap {
    margin-top: 120px;
    margin-bottom: 20px;
	margin-left: 50px;
	margin-right: 50px;
}

footer h3 {
    font-size: 81px;
    line-height: 101px;
    font-weight: 700;
    margin-top: -20px;
    white-space: nowrap;
}

.footer-wrap .email-wrap{
	font-size: 40px;
	font-weight: 500;
}

.footer-wrap .email-wrap a{
	text-decoration: none;
	color: #000;
}

.pdf-dld{
	margin-top: 35px;
	margin-bottom: 20px;
	font-size: 20px;
	font-weight: 400;
	color: #000;
}

.pdf-dld a{
	color: #000;
	font-weight:500;
	text-decoration: none;
	display: inline-block;
	position: relative;
}

.pdf-dld a:after {    
	background: none repeat scroll 0 0 transparent;
	bottom: 0;
	content: "";
	display: block;
	height: 2px;
	left: 50%;
	position: absolute;
	background:#E4873B;
	transition: width 0.3s ease 0s, left 0.3s ease 0s;
	width: 0;
}

.pdf-dld a:hover:after { 
	width: 100%; 
	left: 0; 
}

.sorlist img{
	margin-top: 10px;
	margin-bottom: 10px;
	display:inline-block; 
	width:180px; 
	height:60px;
}

.footer-wrap .byline {
    margin-top: 36px;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #000;
    max-width: 500px;
}

.footer-wrap .with-border {
    border-top: 4px solid transparent;
    padding-top: 25px;
}

.footer-wrap .with-border.border-orange {
    border-color:  #E4873B 
}

.footer-wrap ul li {
    list-style: none;
	font-size: 18px;
	font-weight: 400;
}

.footer-wrap ul li a{
    text-decoration: none;
	color: #000;
}

.footer-wrap ul li a:hover{
    text-decoration: none;
	color: #E4873B;
}

.footer-wrap ul.new-footer-social-media {
	display: grid;
	gap: 15px;
    max-width: 100%;
}

.footer-wrap ul.new-footer-social-media .social-icon{
	width: 25px;
}

.footer-wrap .with-border.border-violet {
    border-color:  #7E27E3;
}

.footer-wrap .footer-nav-list{
	font-size: 20px;
	font-weight: 500;
	color: #000;
}

.footer-wrap .footer-nav-list :hover{
	color: #7E27E3;
}

.footer-wrap .with-border.border-magentha {
	border-color: #B15790;
}

.footer-wrap .address a{
	font-weight: 400;
	color: #000;
	text-decoration: none;
}

.footer-wrap .address a:hover{
	color: #B15790;
}

footer .footer-bottom {
    font-size: 20px;
    line-height: 18px;
    color: #000;
    background: 0 0;
    margin-top: 20px;
    letter-spacing: -.4px;
}

footer .footer-bottom a{
	text-decoration: none;
	color: #000;
}

.modal-opener{
	padding-left: 25px;
}

.modal-opener a:hover{
	cursor:pointer;
}

.modal-item:hover{
	color: #7E27E3;
}

/* Styles for Modal Display */

.modal-container {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1;
}

.modal-content-1 {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 60%; /* Adjust width for smaller screens */
	max-height: 75%; /* Adjust max-height for smaller screens */
	overflow-y: auto;
	background-color: white;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #fff;
	padding: 10px 50px;
	position: sticky;
	top: 0;
	z-index: 2;
}

#closeModal1 {
	background: none;
	border: none;
	cursor: pointer;
	color: #333;
	font-size: 40px;
}

#closeModal2 {
	background: none;
	border: none;
	cursor: pointer;
	color: #333;
	font-size: 40px;
}

.content {
	padding: 20px;
	overflow-y: auto;
}

.modal-header p {
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 5px;
}

.content p {
	font-size: 16px;
	line-height: 1.6;
	color: #666;
	padding-left: 30px;
	padding-right: 30px;
	text-align: justify;
}

/* Style the scrollbar */
.modal-content-1::-webkit-scrollbar {
	width: 8px;
}

.modal-content-1::-webkit-scrollbar-thumb {
	background-color: #888;
	border-radius: 4px;
}

.modal-content-1::-webkit-scrollbar-thumb:hover {
	background-color: #E4873B;
}

.modal-content-1::-webkit-scrollbar-track {
	background-color: #f0f0f0;
}

/* Media query for small screens */
@media screen and (max-width: 768px) {

	.col-xl-5 .lets-talk {
		font-size: 62px;
		line-height: 50px;
		font-weight: 700;
		margin-top: -20px;
		white-space: nowrap;
	}

	.footer-wrap {
		margin-top: 60px;
		margin-bottom: 20px;
		margin-left: 0px;
		margin-right: 20px;
	}

	.footer-top-wrap {
	  padding: 20px;
	}
	
	.col-xl-5, .col-xl-6, .offset-xl-1 {
	  width: 100%;
	  margin-bottom: 20px;
	}
	
	.footer-top {
	  text-align: left;
	}
	
	.footer-bottom {
	  text-align: left;
	}
	
	.footer-bottom .col-md-12 {
	  padding: 10px;
	}

	.row-flex-mobile{
		text-align: center;
		align-items: center;
		line-height: 35px;
	}

	.pdf-dld{
		margin-top: 35px;
		margin-bottom: 15px;
		font-size: 18px;
		font-weight: 400;
		color: #000;
	}s

	.modal-opener{
		display: inline-block;
		padding: 0;
	}
  }
  
  /* Media query for extra small screens */
  @media screen and (max-width: 600px) {
	.footer-wrap .email-wrap {
	  font-size: 25px;
	}
	
	.footer-wrap .byline {
		margin-top: 18px;
		font-weight: 400;
		font-size: 18px;
		line-height: 28px;
		color: #000;
		max-width: 500px;
	}

	.pdf-dld{
		margin-top: 35px;
		margin-bottom: 10px;
		font-size: 16px;
		font-weight: 400;
		color: #000;
	}
	
	.new-footer-social-media li {
	  margin-bottom: 10px;
	}

	.new-footer-social-media li a {
		font-size: 16px;
	}
	
	.footernavbar-nav li {
	  margin-bottom: 10px;
	}
	
	.address h6 {
	  font-size: 14px;
	}

	.modal-opener{
		display: inline-block;
		padding: 0;
	}
  }
  
  /* Media query for ultra extra small screens */
  @media screen and (max-width: 360px) {
	
	.col-xl-5 .lets-talk {
		font-size: 50px;
		line-height: 50px;
		font-weight: 700;
		margin-top: -20px;
		white-space: nowrap;
	}

	.footer-wrap {
		margin-top: 40px;
		margin-bottom: 20px;
		margin-left: 10px;
		margin-right: 20px;
	}

	.footer-top-wrap {
	  padding: 20px;
	}
	
	.col-xl-5, .col-xl-6, .offset-xl-1 {
	  width: 100%;
	  margin-bottom: 10px;
	}
	
	.footer-top {
	  text-align: left;
	}
	
	.footer-bottom {
	  text-align: left;
	}
	
	.footer-bottom .col-md-12 {
	  padding: 10px;
	}

	.footer-wrap .email-wrap {
		font-size: 20px;
	}

	.pdf-dld{
		margin-top: 12px;
		margin-bottom: 12px;
		font-size: 09px;
		font-weight: 400;
		color: #000;
	}
	  
	.footer-wrap .byline {
		margin-top: 18px;
		font-weight: 400;
		font-size: 16px;
		line-height: 24px;
		color: #000;
		max-width: 500px;
	}
	  
	.new-footer-social-media li {
		margin-bottom: 2px;
	}
  
	.new-footer-social-media li a {
		font-size: 14px;
	}
	  
	.footernavbar-nav li {
		margin-bottom: 10px;
	}
	  
	.address h6 {
		font-size: 15px;
	}

	.row-flex-mobile{
		text-align: center;
		align-items: center;
		font-size: 18px;
		line-height: 35px;
	}

	.modal-opener{
		display: inline-block;
		font-size: 17px;
		padding: 0;
	}
}



/* Media Queries for Modal small screen */
@media (max-width: 768px) {
	.modal-content-1 {
		width: 85%;
		max-height: 75%;
		position: absolute;
		top: 55%;
		left: 50%;
		transform: translate(-50%, -50%);
		overflow-y: auto;
		background-color: white;
		box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	}

	.modal-header {
		display: flex;
		justify-content: space-between;
		align-items: center;
		background-color: #fff;
		padding: 0px 10px;
		position: sticky;
		top: 0;
		z-index: 2;
	}

	#closeModal1 {
		font-size: 30px;
	}

	#closeModal2 {
		font-size: 30px;
	}

	.content {
		padding: 20px;
		overflow-y: auto;
	}
	
	.modal-header p {
		font-size: 15px;
		margin-bottom: 0;
		margin-left: 5px;
	}
	
	.content p {
		font-size: 12px;
		line-height: 1.6;
		color: #666;
		padding-left: 10px;
		padding-right: 10px;
		text-align: justify;
	}

	.modal-content-1::-webkit-scrollbar {
		display:none;
	}
}
