/* Montserrat Thin */
@font-face {
    font-family: 'Montserrat';
    src: url("./assets/fonts/Montserrat-Thin.ttf");
    font-weight: 100;
}

/* Montserrat Extra Light */
@font-face {
    font-family: 'Montserrat';
    src: url("./assets/fonts/Montserrat-ExtraLight.ttf");
    font-weight: 200;
}

/* Montserrat Light */
@font-face {
    font-family: 'Montserrat';
    src: url("./assets/fonts/Montserrat-Light.ttf");
    font-weight: 300;
}

/* Montserrat Regular */
@font-face {
    font-family: 'Montserrat';
    src: url("./assets/fonts/Montserrat-Regular.ttf");
    font-weight: 400;
}

/* Montserrat Medium */
@font-face {
    font-family: 'Montserrat';
    src: url("./assets/fonts/Montserrat-Medium.ttf");
    font-weight: 500;
}

/* Montserrat Semi-Bold */
@font-face {
    font-family: 'Montserrat';
    src: url("./assets/fonts/Montserrat-SemiBold.ttf");
    font-weight: 600;
}

/* Montserrat Bold */
@font-face {
    font-family: 'Montserrat';
    src: url("./assets/fonts/Montserrat-Bold.ttf");
    font-weight: 700;
}

/* Montserrat Extra Bold */
@font-face {
    font-family: 'Montserrat';
    src: url("./assets/fonts/Montserrat-ExtraBold.ttf");
    font-weight: 800;
}

/* Montserrat Black */
@font-face {
    font-family: 'Montserrat';
    src: url("./assets/fonts/Montserrat-Black.ttf");
    font-weight: 900;
}



@font-face { 
	font-family: 'SoDoSans'; 
    src:url("./assets/fonts/SoDoSans-Black.ttf"); 
	font-weight: 900; 
} 


@font-face { 
	font-family: 'SoDoSans'; 
    src:url("./assets/fonts/SoDoSans-Bold.ttf"); 
	font-weight: 700; 
} 


@font-face { 
	font-family: 'SoDoSans'; 
    src:url("./assets/fonts/SoDoSans-Light.ttf"); 
	font-weight: 300; 
} 


@font-face { 
	font-family: 'SoDoSans'; 
    src:url("./assets/fonts/SoDoSans-Regular.ttf"); 
	font-weight: 400; 
} 

@font-face { 
	font-family: 'SoDoSans'; 
    src:url("./assets/fonts/SoDoSans-SemiBold.ttf"); 
	font-weight: 600; 
} 

@font-face { 
	font-family: 'SoDoSans'; 
    src:url("./assets/fonts/SoDoSans-Thin.ttf"); 
	font-weight: 100; 
}



/* @import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&family=Quicksand:wght@300;400;500;600;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700;800;900&display=swap');
 */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,100;9..40,200;9..40,300;9..40,400;9..40,500;9..40,600;9..40,700;9..40,800;9..40,900;9..40,1000&display=swap');



*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	border: none;
	/* font-family: 'Rubik',sans-serif; */
	/* font-family: 'Lato', sans-serif;
	font-family: 'Quicksand', sans-serif; */
	font-synthesis: none;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
	font-family: 'SoDoSans',"Helvetica Neue", Helvetica, Arial,sans-serif;
}

html{
	scroll-behavior: smooth;
}

:root{
	--yellow:#fbffa7;
	--red:#ff764d;
	--lightblue:#b1c5ff;
	--purple:#d5b3ff;
	--green:#b6ffc0;
	--darkblue:#074D85;
}

body{ 
	/* user-select: none; */
	padding: 0;
	margin: 0;
	background-color: white; 
	color: white;
}


/* Header */
.header{
	width: 100%;
	height: calc(100vh + 70px);
	display: flex;
	flex-direction: column;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}



header::before{
	content: "";
	z-index: 8;
	position: absolute;
	width: 100%;
	height: 100vh;
	background-color: rgba(0,0,0,.6);
}


/* Navbar */
.navbar{
	width: 100%;
	height: 70px;
	display: flex;
	background-color: #fcfcfc;
	color: black ;
	position: fixed;
    top: 0px;
    z-index: 200;
    width: 100%;
    transition: all 1s ease-in-out;
    /* transition: background-color .4s linear; */   
}


.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.navmenu-icon{
	width: 45px;
	height: 45px;
	display: none;
}

.navbar_box{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav_img_box{
	width: 180px ;
	/*min-width: 200px;*/
	height: 35px;
	margin-top: 15px;
	display: flex;
	margin-left: 60px;
	border-radius: .2rem;
	justify-content: center;
	align-items: center;
	transition: all .5s ease-in-out;
}

/*  Context */
 .context-menu {
	display: none;
	position: absolute;
	background-color: #fff;
	padding: 10px;
	border-radius: .3rem;
	border: 0px solid #ccc;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	transition: all 4s ease-in-out;
}

.context-menu ul {
	list-style: none;
	padding: 0;
	margin: 0;
	}

.context-menu li{
	padding: 12px 16px;
	font-weight: 300;
	cursor: pointer;
	border-bottom: 1px solid lightgray;
}
.context-menu li:last-child{
	border-bottom: none;
}

.context-menu li a{
	text-decoration: none;
	color: rgba(0, 0, 0, 95);
}


.context-menu li:hover {
	background-color: #f0f0f0;
}

/* Background video */
video {
  width: 100%;
  height: 100%;
  z-index: 10; /* Push the video behind other content */
  object-fit: cover;
  overflow: hidden;
}


/* Caret */
.caret{
	width: 15px;
	height: 10px;
}


.nav_img_box img{
	width: 100%;
	height:100%;
	object-fit: cover;
	background-size: cover;
}

.nvb{
	display: flex;
	text-decoration:none;
	align-items: center;
	/* padding-right: 10px; */
	max-height: 400px;
	transition: all 1s linear,
}

.navlinks_box li{
	list-style: none;
	margin:0 0 0 25px;
	display: flex;
	align-items: center;
	gap: 4.5px;
	font-size: 15px;	
}

.li-img{
	width: 20px;
	height: 20px;
}

.reduce {
	width: 15px;
	height: 15px;
}


.nvb li {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.nvb li p {
	margin-top: 5px;
	color: black;
}

.nvb a:-webkit-any-link {
	text-decoration:none;
	color: black; 
}

.last_link {
	padding: 10px 9px !important ;
	border-radius: .2rem; 
	background-color: #0C5395; 
	color: white !important;
	margin: 20px;
	font-weight: 500;
	opacity: .85;
}

.last_link a {
	color: white;
}


/* NavLinks Hover state */
.last_link:hover{
	opacity: 1;
}



/* Middle text */
.middle_text{
	display: flex;
	flex-direction: column;
	position: absolute;
	top:55%;
	width:70%;
	z-index: 10;
	left:50%;
	transform: translate(-50%,-50%);
	text-align: center;
}

.middle_text h1{
	font-size: 3rem;
	font-weight: 900;
	text-transform: uppercase;
}
.middle_text p{
	font-size: 1.03em;
}
.middle_text small{
	color: #DCDCDC;
	margin-top: 10px;
	font-weight: 400;
	font-size: 1rem;
}

/* Global Styles */
a{
	text-align: center;
}

h2,h3{
	line-height: 40px;
	text-align: center;
	letter-spacing: 1.3px;
}

p{
	line-height: 26px;
	/* letter-spacing: 1.3px; */
}
img{
	object-fit: cover !important;
}
h2{
	font-size: 2rem;
	font-weight: 700 !important;
}


/* First Section */
.section{
	width:100%;
	background-color: brown;
	height:500px;
	display: flex;
	border-bottom: 3.5px solid #f9f9f9;
}


.s2 {
	border-bottom: 5px solid #f9f9f9;
}

.divider {
	width: 2.5px;
	height: 100%;
	background-color: #f9f9f9;
}

.top {
	margin-top:2.5px;
}

.section p{
	/* font-family:'Montserrat' !important; */
}

.section-1-inner-1{
	width:50%;
	display: flex;
	background-color: white;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	color:black;
	height: 100%;
	padding: 0 18px;
	/* border-left: 10px solid #f9f9f9; */
}


.section-1-inner-2{
	width:50%;
	background-color: black;
	display: flex;
	color: white;
	height: 100%;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	padding: 0 18px;
}






/* Classes */
.bg-img{
	object-fit: cover; 
	background-repeat: no-repeat; 
	background-size: cover; 
	background-position: center center;
}

.bg-white{
	background-color: white !important;
}

.dark{
	background-color: black!important;
	color:white!important;
}


.closemenu-icon{
	display: none;
}


/* Trusted By */
.trusted_by{
	color:black;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-color: white;
	height:350px;
	width:100%;
	border-bottom: 4px solid #f9f9f9;
	box-shadow: 1px 11px 25px 23px rgba(0,0,0,1);
	-webkit-box-shadow: 1px 11px 25px 23px rgba(212,207,207,0.75);
	-moz-box-shadow: 1px 11px 25px 23px rgba(212,207,207,0.75);
	padding-bottom: 30px;
	}

.trusted_by h2{
	margin: 30px 0 ;
	text-align: center;
}

.tb-inner {
	display: flex;
	justify-content: space-around;
	width:100%;
}

.tb-inner img {
	/*width: 160px;*/
	object-fit: cover;
	background-size: cover;
	height: 120px;
}



/* Testimonies */
.review-container{
	background-color: white;
	height:390px;
	width:100%;
	display: flex ;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	border-bottom: 4px solid #f9f9f9;

}

.review-text{
	text-align: center;
	color:black;
	font-weight: 900;
	/*color:seagreen;*/
	background-color: white;
}

.testimonies-container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    color:black;
    height: 75%;
    width:100%;
    align-items: center;
    /*margin: 20px 0 ;*/
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    background-color: white;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
}


.testimony {
    min-width: 300px;
    height: 230px;
    padding: 20px;
    margin: 10px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    scroll-snap-align: start;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.review {
    font-size: 18px;
}

.name {
    font-size: 16px;
    font-weight: bold;
}

.company {
    font-size: 14px;
    color: #777;
}

.rank {
    font-size: 14px;
}

.buttons {
    margin-top: 20px;
    position: relative;
}



/* Contact Us*/
.contact {
	height:850px;
	width: 100%;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items:center;
	gap:12px;
	margin-top: 30px;
	background-color: white;
	padding-top: 20px;
	padding-bottom: 30px;
	transition: all .5s ease-in-out; 
}

.contact h2 {
	color:black;
	font-weight: 900;
	font-size: 2.2rem;
	margin-bottom: 14px;
}
.contact_inner {
	display: flex;
	width:70%;
	flex-direction: column;
}

.error-message {
    color: red;
    font-size: 14px;
    margin-top:-4px;
    margin-bottom: 16px;
}

label{
	color:black;
	display: flex;
	font-size: 1.2rem;
	flex-direction: column;
}

.cad-main {
	margin: 13px -0;
	display: flex;
	gap: 7px;
	flex-direction: column;
}

.cad {
	display: flex;
/*	background-color: red*/
	gap:50px;
}


.contact_inner input {
	gap: 10px;
	font-size: 1.2rem;
	margin-bottom: 10px;
	padding: 15px 12px;
	border-radius: .3rem;
	border:1px solid darkgray;
	background-color: #f9f9f9;
}
.contact_inner input::placeholder{
	color:gray;

}


.contact_inner textarea {
	resize: none;
	padding: 14px 8px 8px ;
	font-size: 1rem;
	border-radius: .1rem;
	height: 100px;
	border:1px solid lightgray;
	margin-bottom: 5px;
}


.contact_inner input:focus {
	outline:white;
	border:white
}

/* Style for the radio button container */
.radio-container {
    font-size: 16px;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
}
 
.radio-container p {
	margin-top: 6px;
	font-weight: bold;
	color: black;
	opacity: .8
}

/* Style for the radio button indicator (dot) */
.radio-container input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 32.5px;
  border: 2px solid #074D85;
  border-radius: 50%;
  margin-right: 10px;
  background-color: transparent;
  position: relative;
  top: 6px;
}

input[type="radio"]:checked {
  border: 2px solid #074D85;
}

input[type="radio"]:checked::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-color: black;
  opacity: .9;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid #fff;
  transform: translate(-50%, -50%);
  animation: appear 0.8s;
}
/* Style for the radio button indicator when selected */
/* .radio-container input:checked[type="radio"] {
    background-color: #000;
}
 */
.contact_btn{
	padding: 18px 50px;
	font-size: 1.2rem;
	background-color:#074D85;
	color:white;
	border-radius: .3rem;
	font-weight: bold;
}




/* Founder */
.founder {
	height:280px;
	width: 100%;
	background-color: #074D85;
	color:white;
	display: flex; 
}

.founder_inner {
	width: 50%;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	height:100%;
	flex-direction: column;

}

.inner_one{
	gap:13px;
}

.inner_one h2 {
	font-size: 2.1rem;
	line-height: 40px;
	padding: 0 10px;
}


.inner_one p {
	font-size: .95rem;
	padding: 0 30px;
	/* font-family: 'Montserrat'; */
}

.inner_two {
	row-gap: 30px;
	/*flex-direction: row;
    justify-content: flex-start;*/
}
.inner_two h2 {
	font-size: 7rem;
}




/*  Footer  */
footer {
	width: 100%;
    background-color: white;
    color: white!important;
    background-color: rgba(0, 0, 0, .95);
    padding: 30px 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
}

.footer-logo img {
    width: 150px;
    height:auto;
    margin-bottom: 20px;
}

.footer-links ul,
.footer-info,
.footer-social {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    /* color: white; */
    text-align: center;
}

.footer-links h3{
	/* margin-bottom: 5px; */
}
.footer-links a {
    text-decoration: none;
    color: lightgray;
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ff9900;
}

/* .footer-info h3, */
.footer-social h3 {
    font-size: 18px;
    /* margin-bottom: 10px; */
}

.code{
	color: lightgray;
	text-decoration: none;
}

b{
	font-weight: bold;
	color: #fcfcfc;
}

.footer-info p {
    font-size: 15px;
    line-height:1.7; 
    color: darkgray;
}

.social-icon {
    text-decoration: none;
    color: #fff;
    margin-right: 10px;
    font-size: 18px;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #ff9900;
}

.footer-social ul{
	list-style: none;
}

.footer-social img {
	width: 40px;
	height:40px;
}


/* Footer 2 */
.footer-2 {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 70px;
	font-size: 1.1rem;
	background-color:rgba(0, 0, 0, 0.95);
	color: white; 
	border-top: 2px solid rgba(0, 0, 0, 0.25);
	text-align: center;
}




/* smooth scroll animation  done*/
/* Jump to "section" done*/
/* Animate on scroll  done*/
 
@media (max-width: 720px){

	body{
		overflow-x: none;
	}

	
	.navmenu-icon{
		z-index: 944;
		display: flex;
		position: fixed;
		width: 30px;
		height: 30px;
		top:20px;
		right: 30px;
	}

	.nav_img_box{
		width: 150px ;
		height: 25px;
		position: fixed;
		top: 10px;
		left: 0;
		z-index: 130;
	}

	.navbar {
		position: sticky;
		top:0;
		/* bottom:0; */
		width:100%;
		background-color: #fcfcfc /*red*/   ;
		align-items: center;
		z-index: 240;
		transition: all .3s ease-in-out;
	}

	.nvb {
		position: fixed;
		top: 0;
		right: 0;
		padding-top: 65px;
		width: 100%;
		flex-direction: column;
		align-items: center;
		background-color: #fcfcfc;
		height: 700px;
		justify-content: center;
		transition: height 1s ease-in-out;
	}

	.nav_img_box{
		margin-top: 17px;
		margin-left: 40px;
	}

	.nvb {
		display: none;
	}


	.nvb.active {
		display: unset;
	}

	.bg-oo {
		background-color: transparent !important ;
	}

	.bg-ol {
		background-color: #fcfcfc !important ;
	}


	.nvb.active li {
		color: black;
		margin: 0 auto;
		text-align: center;
		gap: 5.5px;
	}	


	/* Nav Links */
	.navlinks_box li a {
		color:black  ;	
	}

	.nvb li p {
		font-size: 15px;
	}

	.li-img{
		width: 20px;
		height: 20px;
	}


	.navlinks_box li{
		padding: 5px 0;
		text-align: center;
		width: 100%;
		justify-content: center;
	}

	.last_link {
		text-align: center;
		color: white !important;
		padding: 8px 7px !important ; 
		/* margin: 0 auto; */
		
	} 

	/* Header text */
	.header {
		height: calc(100vh - 50px);
	}

	.middle_text{
		width: 80%;
		top:calc(45% - 50px);
	}
	.middle_text h1{
		font-size: 2.3rem;
	}
	.middle_text p{
		font-size: .93rem;
	}
	.middle_text small{
		color: lightgray;
		margin-top: 10px;
		font-weight: 600;
		font-size: .8rem;
	}

	/* Section */	
	.section{
		flex-direction: column !important;
	}
	.section p {
		font-size: .9rem;
		line-height: 27px;
		letter-spacing: 1.3px;
	}
	.section h2 {
		font-size: 1.7rem;
		line-height: 33px !important;
	}

		
	/* inner section*/
	.section{
		width:100%;
		height: 800px;
		/* background-color: yellow */
	}
	.section-1-inner-1{
		width:100%;
		height:100%;
		/*flex-direction: flex-column-reverse;*/
	}
	.section-1-inner-2{
		width:100%;
		height:100%;
	}
	.divider {
		height: unset;
	}



	/* Services */
	.service-container{
		flex-direction: column;
		width: 100%;
		min-height:1100px;
	}
	
	.service-inner {
		width: 100%;
		height: 100%;
		flex-direction: column;
	} 

	.service-box {
		flex-direction: row;
		width: 100%;
		/* background-color: red; */
		flex-direction: column;
	}

	.reverse{
		flex-direction: column-reverse;
	}
	.service-box-inner{
		width: 100%;
		height: 100%;
	}

	.service-inner-2{
		width: 100% ;
		height: 40%;
	}

	.services_text {
		font-size: 3rem;
	}


	/* Utility Classes */
	.cut-text{
		padding: 0 17px;
	
	}


	/* Scroll Simulator*/
	#section-1 {
	  background-color: #2d8df8;
	}

	a#scroll-btn {
		position: absolute;
		height: 4em;
		width: 2em;
		border: 0.3em solid #ffffff;
		margin: auto;
		top:calc(77.5% - 40px);
		z-index: 10;
		left:50%;
		transform: translate(-50%,-50%);
		text-align: center;
		border-radius: 3em;
	}

	a#scroll-btn:before {
	  position: absolute;
	  content: "";
	  margin: auto;
	  left: 0;
	  right: 0;
	  top: 2.2em;
	  height: 1em;
	  width: 1em;
	  background-color: #ffffff;
	  border-radius: 50%;
	  animation: move-down 2s infinite;
	}

	@keyframes move-down {
	  0% {
	    transform: translateY(0);
	  }
	  80% {
	    opacity: 0.5;
	  }
	  100% {
	    transform: translateY(-1.75em);
	    opacity: 0;
	  }
	}

	a#scroll-btn:after {
	  position: absolute;
	  content: "SCROLL UP";
	  width: 12em;
	  display: block;
	  text-align: center;
	  left: -5em;
	  bottom: -2.5em;
	  font-size: .6em;
	  color: #ffffff;
	  letter-spacing: 3px;
	  font-weight: 600;
	}


	/*a#scroll-btn:after {
	  content: "SCROLL DOWN";
	}*/

	/* Contact */
	.contact {
		height: 860px;
	}

	.contact h2{
		font-size: 1.9rem;
		/* border-bottom: 4px solid rgba(0,0,0,0.5); */

	}
	.contact_inner {
		display: flex;
		width:84%;
		flex-direction: column;
	}
	.contact_inner input::placeholder, .contact_inner textarea {
		font-size: 1.1rem;
	}



	/* Founder */

	.founder {
		flex-direction: column;
		width: 100%;
		height: 640px;
		justify-content: center;
		align-items: center;
		padding-top: 30px 0;
	}
	.inner_one {
		height: 60%;
	}
	.inner_two {
		height: 40%;
	}

	.inner_one h2 {
		font-size: 2rem;
		line-height: 38px;
		/*padding: 0 1px*/
	}

	.inner_one p {
		padding: 0 12px;
		font-size: .9rem;
	}


	.founder_inner {
		width:92%;
		align-items: center;
	}

	/* TB */
	.trusted_by{
		justify-content: center;
		align-items: center;
		justify-content: space-around;
		height: 600px;
	}
	.tb-inner {
		height: 80%;
		flex-direction: column;
		align-items: center;
		justify-content: space-between;
	}

	.footer-content {
        flex-direction: column;
        align-items: center;
        gap:20px;
    }
}









