/* style.css */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

:root {
  --dark-grey: #333333;
  --medium-grey: #636363;
  --light-grey: #eeeeee;
  --ash: #f4f4f4; /*rgb244,244,244*/
  --primary-color: #3366cc;/*#4472c4*//*#1f4e79*//*#4169E1*/
  --white: #fff;
  --black: #000;
  --gradientcolor:linear-gradient(to right, #6aa84f 70%,
        #0190cd 70%,
		#cc0000 80%);
  --border: 1px solid var(--light-grey);
  --shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

html{
  scroll-behavior: smooth;
}

body {
  font-family: inherit;
  background-color: var(--ash);
  color: var(--dark-grey);
  letter-spacing: -0.4px;
  
}

.row:after {
content: "";
display: table;
clear: both;
}
.col-5,.col-10, .col-15, .col-20, .col-25, .col-30, .col-35, .col-40, .col-45, .col-50, .col-55, .col-60,
.col-65,.col-70, .col-75, .col-80, .col-85, .col-90, .col-95, .col-100 {
float: left;
margin-top: 5px;
}
.col-5{width:5%;}
.col-10 {width: 10%;}
.col-15 {width: 15%;}
.col-20 {width: 20%;}
.col-25 {width: 25%;}
.col-30 {width: 30%;}
.col-35 {width: 35%;}
.col-40 {width: 40%;}
.col-45 {width: 45%;}
.col-50 {width: 50%;}
.col-55 {width: 55%;}
.col-60 {width: 60%;}
.col-65 {width: 65%;}
.col-70 {width: 70%;}
.col-75 {width: 75%;}
.col-80 {width: 80%;}
.col-85 {width: 85%;}
.col-90 {width: 90%;}
.col-95 {width: 95%;}
.col-100 {width: 100%;}

input[type=text], select, textarea,input[type=password], input[type=date], input[type=number],input[type=time] {
  width: 90%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
  
}
::-ms-input-placeholder { /* Edge 12-18 */
  color:var(--medium-grey);
}
::placeholder{
  color:var(--medium-grey);
}
label {
  padding: 12px 12px 12px 0;
  display: inline-block;
}

input:read-only,select:disabled,textarea:read-only{
	font-style:italic;
	font-weight:bold;
}

.mandatory{
  scroll-snap-type: y mandatory;  
}
.child {
  scroll-snap-align: start;
}

hr{
margin:5px;
border: 1px dashed var(--white);
}
.arrow{
	border: solid black;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;	
}
.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
header {
  background-color: var(--white);
  color: var(--black);
  position: fixed;
  top: 0;
  width: 100%;
  height:100px;
  z-index: 100;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background-color: transparent;
  cursor: pointer;
  color: inherit;
}

.btn {
  display: block;
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
  padding: 0.6rem 1.4rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 5px;
}

.icon {
  padding: 0.5rem;
  background-color: var(--light-grey);
  border-radius: 10px;
}

.logo {
  margin-right: 1.5rem;
}

.imgattr{
    color:var(--dark-grey); 
    font-size:9px;
}
#nav-menu {
  border-bottom: var(--border);
}

.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 2rem;
  height: 95px;
  padding: 1.2rem 3rem;
}

.menu {
  position: relative;
  background: var(--white);
}

.menu-bar li:first-child .dropdown {
  flex-direction: initial;
  min-width: 400px;
}

.menu-bar li:first-child ul:nth-child(1) {
  border-right: var(--border);
}

.menu-bar li:nth-child(n + 2) ul:nth-child(1) {
  border-bottom: var(--border);
}

.menu-bar .dropdown-link-title {
  font-weight: 600;
}

.menu-bar .nav-link {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.6px;
  padding: 0.3rem;
  min-width: 60px;
  margin: 0 0.6rem;
}

.menu-bar .active {
  font-weight: 1000;
  color: var(--primary-color);
}

.menu-bar .nav-link:hover,
.dropdown-link:hover {
  color: var(--primary-color);
}

.nav-start,
.nav-end,
.menu-bar,
.right-container,
.right-container .search {
  display: flex;
  align-items: center;
}

.dropdown {
  display: flex;
  flex-direction: column;
  min-width: 230px;
  background-color: var(--white);
  /* border-radius: 10px; */
  position: absolute;
  top: 36px;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  transform: scale(0.97) translateX(-5px);
  transition: 0.1s ease-in-out;
  box-shadow: var(--shadow);
}

.dropdown.active {
  visibility: visible;
  opacity: 1;
  transform: scale(1) translateX(5px);
}

.dropdown ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.2rem;
  font-size: 0.95rem;
}

.dropdown-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.15rem;
}

.dropdown-link {
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem 0;
  /* border-radius: 7px; */
  transition: 0.1s ease-in-out;
}

.dropdown-link p {
  font-size: 0.8rem;
  color: var(--medium-grey);
}

.right-container {
  display: flex;
  align-items: center;
  column-gap: 1rem;
}

.right-container .search {
  position: relative;
}

.right-container img {
  border-radius: 50%;
}

.search input {
  background-color: var(--ash);
  border: none;
  border-radius: 6px;
  padding: 0.7rem;
  padding-left: 2.4rem;
  font-size: 16px;
  width: 100%;
  border: var(--border);
}

.search .bx-search {
  position: absolute;
  left: 10px;
  top: 50%;
  font-size: 1.3rem;
  transform: translateY(-50%);
  opacity: 0.6;
}

#hamburger {
  display: none;
  padding: 0.1rem;
  margin-left: 1rem;
  font-size: 1.9rem;
}

.container1 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 10px 0px 0px;
}

.smalltext{
	font-size:10px;
}

.back{
	display:none;
}
/*about*/
.about {
  text-align: center;
  padding: 0px 0;
  margin-top:100px;
  background-color: var(--ash);
  /* background-image:url(../image/bkgnd.jpg);
  background-size:cover; */
}


.about h2{
  font-size: 36px;
  margin-bottom: 40px;
}

.about h3{
 text-align:center;
 margin:20px;
}
.about p{
	text-align:justify;
	font-size:16px;
	line-height:1.5;
	padding: 20px;
	margin-bottom:50px;
	color:var(--dark-grey);
}

.centerp{
text-align:center;
font-size:16px;
line-height:1.5;
padding:20px;
margin: 20px 0;	
height:50px;
font-weight:bold;
color:green;
}

.iconframe{
width:60px;
height:60px;
display: block;
margin-left:auto;
margin-right:auto; 
border-radius:50px; 
border:2px solid #000;
background-color:white;
}

.icon1{
padding:8px;
max-width:60px; 
max-height:60px;

width: 100%;
height: auto; 
}

/* Hero section styles */
/* styles.css */
.animated-element {
  opacity: 0;
  transition: opacity 2s ease, transform 2s ease;
}

.left-slide {
  transform: translateX(-30px);
}

.right-slide {
  transform: translateX(30px);
}

.animated-element-top {
  opacity: 0;
  transform: translateY(-200px); /* Initial position above the viewport */
  transition: opacity 2s ease, transform 2s ease;
}
.hero {
  text-align: center;
  padding: 10px 0;
  margin-top:100px;
  background-color: var(--black);
  /*background-color: #cccccc; /* Used if the image is unavailable */
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 40px;
  margin-top: 10px;
}

.btn1 {
  display: inline-block;
  padding: 12px 30px;
  width:180px;
  background-color: #333;
  color: var(--white);
  font-size: 18px;
  text-decoration: none;
  border-radius: 4px;
}

.btn1:hover {
  color: var(--dark-grey);
  background-color: var(--white);
  font-weight:bold;
  transform:scale(1.05);
}

.video-container {
  position: relative; 
  width: 100%;
  padding-bottom: 40%; /* 16:9 (56.25%) aspect ratio (adjust as needed) */
  overflow: hidden;
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity:0.5;
  object-fit: fill;
}

.video-container .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  /*font-size: 24px;*/
  text-align: center;
  padding:100px;
}

.transition {
    /*animation: fadeIn 2s ease-in;*/
	animation: fadeIn 1s linear;
}


@keyframes fadeIn {  
   from {  
   -webkit-filter: blur(10px);
            filter: blur(10px);
       opacity:0; 
   }  

   to { 
-webkit-filter: blur(0px);
            filter: blur(0px);   
       opacity:1;  
   }  
}

@keyframes letter-animation {
 0%   { width: 0; opacity:0; }
  33%  { width: 33%; opacity:0.3;}
  66%  { width: 66%; opacity:0.6;}
  100% { width: 100%; opacity:1;}
}
.transition1 {
    animation: fadeIn1 5s;
}

@keyframes fadeIn1 {
  0% { opacity: 0; }
  100% { opacity: 0.5; }
}

/* Services section styles */
.tabdesc{
	display:none;
	margin:10px;
	text-align:left;
	transition:display 1s;
	line-height:1.5;
}

.services {
  text-align: center;
  padding: 50px 20px;
 }

.services h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

#indexcontact{
  font-size: 36px;
  margin-bottom: 40px;
  letter-spacing:2;
  color:var(--primary-color);
}
.services1 {
  text-align: center;
  padding: 10px 0;
}

.services1 h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

/*industry*/
.grid-container1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-gap: 10px;
}

.card {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d; /* Enables 3D transformation */
  transition: transform 0.5s;
}

.card:hover {
  transform: rotateY(180deg); /* Flip the card on hover */
}

.card-front,
.card-back {
  width: 100%;
  height: 100%;
  position: absolute;
  backface-visibility: hidden; /* Hide the backface of the card */
}

.card-back {
  transform: rotateY(180deg); /* Initially hide the back content */
  background-color: var(--ash);
  text-align:left;
  padding-left:20px;
  display: flex;
  line-height:1.5;
  justify-content: center;
  align-items: center;
}

.grid-item1 {
	perspective: 1000px; /* Depth for 3D effect */
	height:250px;
	width:350px;
  display: flex;
  flex-direction: column;
  align-items: center;
 /* justify-content: center;
  text-align: center; */
  background-color: var(--ash);
  padding: 20px;
  position: relative;
  cursor:pointer;
}

.grid-item1:hover{
	background-color:var(--white);
	box-shadow:1px 1px 8px 4px var(--dark-grey);
}
/* Centered text */
.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.grid-item1 img {
  height: 200px;
  width: 300px;
  margin-bottom: 10px;
  opacity:0.8;
}

.grid-item1 h3 {
  font-size: 30px;
  margin-bottom: 10px;
  color:#fff;
  text-shadow: 5px 5px 5px var(--dark-grey);
}

.grid-item1 p {
  font-size: 14px;
}

/*contact style*/

.contacth2{
    margin-top:30px;
    margin-bottom:30px;
}
#contact {
  width: 100%;
  height: 100%;
  padding:100px 0;
  background-image:url(../image/contactback.jpg);
  /* background-position: center;
  background-repeat: no-repeat;
  background-size: cover; */
}

.section-header {
  text-align: center;
  margin: 0 auto;
  padding: 40px 0;
  font: 500 60px 'Inter', sans-serif;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 6px;
}

.section-header-sub {
  text-align: center;
  margin: 0 auto;
  font: 500 'Inter', sans-serif;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 6px;
  background: linear-gradient(
        135deg,
		#6aa84f 70%,
        #0190cd 70%,
		#cc0000 80%
		
    );
    background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 2s linear infinite;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}
.contact-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  max-width: 840px;
}

/* Left contact page */
.col-50-right h2{
    letter-spacing:1.5;
    margin-bottom:20px;
}

.colp{
  width:350px;
  max-width:400px;

}

.sendbtn{
  background-color:var(--primary-color);
  color:var(--white);
  font-weight:bold;
  text-align:center;
  padding:20px;
  transition: 0.2s;
  margin-top:20px;
  margin:0 auto;
  border-radius:10px;
  cursor:pointer;
}
.sendbtn:hover{
  background-color:var(--white);
  color:var(--primary-color);
  border:2px solid var(--primary-color);
  box-shadow:2px 2px 2px var(--primary-color);
}
.form-horizontal {
  /*float: left;*/
  max-width: 400px;
  font-family: 'Lato';
  font-weight: 400;
}
.textarea{
    margin-bottom:50px;
}
.form-control, 
.textarea {
  width:350px;
  max-width: 400px;
  min-height:50px;
  margin-bottom:10px;
  letter-spacing: 1px;
  background-color:var(--ash);
  display: flex;
  justify-content: center;
  align-items: center;
  margin:0 auto;
}

.send-button {
  margin-top: 15px;
  height: 34px;
  width: 350px;
  overflow: hidden;
  transition: all .2s ease-in-out;
}

.alt-send-button {
  width: 350px;
  height: 34px;
  transition: all .2s ease-in-out;
}

.send-text {
  display: block;
  margin-top: 10px;
  font: 700 12px 'Inter', sans-serif;
  letter-spacing: 2px;
}

.alt-send-button:hover {
  transform: translate3d(0px, -29px, 0px);
}

/* Begin Right Contact Page */
.direct-contact-container {
  max-width: 400px;
}

/* Location, Phone, Email Section */
.contact-list {
  list-style-type: none;
  margin-left: 0px;
  padding-right: 10px;
}

.list-item {
  line-height: 4;
  color: var(--dark-grey);
}

.contact-text {
  font: 300 18px 'Inter', sans-serif;
  letter-spacing: 1.9px;
  color: var(--dark-grey);
}

.place {
  margin-left: 32px; /*62px*/
  
}

.phone {
  margin-left: 26px; /*56px*/
}

.gmail {
  margin-left: 23px; /*53px*/
}

.contact-text a {
  color: var(--dark-grey);
  text-decoration: none;
  transition-duration: 0.2s;
}

.contact-text a:hover, .contact-text:hover {
  color: var(--medium-grey);
  text-decoration: none;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

.col-50-left {
  float: left;
  width: 50%;
  margin-top: 6px;
}
.col-50-right {
  float: left;
  width: 50%;
  margin-top: 6px;
}

.col-25 {
  float: left;
  width: 25%;
  margin-top: 6px;
}

/* Begin Media Queries*/
@media screen and (max-width: 850px) {
.col-50-left, .col-50-right, .col-25 {
  float: left;
  width: 100%;
  margin-top: 6px;
}
  .contact-wrapper {
    display: flex;
    flex-direction: column;
  }
  .direct-contact-container, .form-horizontal {
    margin: 0 auto;
  }  
  
  .direct-contact-container {
    margin-top: 60px;
    max-width: 300px;
  }    
  .social-media-list li {
    height: 60px;
    width: 60px;
    line-height: 60px;
  }
  .social-media-list li:after {
    width: 60px;
    height: 60px;
    line-height: 60px;
  }
}

@media screen and (max-width: 569px) {
.col-50-left, .col-50-right, .col-25 {
  float: left;
  width: 100%;
  margin-top: 6px;
}

  .direct-contact-container, .form-wrapper {
    /*float: none;*/
    margin: 0 auto;
  }  
  .form-control {
    margin: 0 auto;
	margin-bottom:5px;
  }
 
  .name, .email {
    width: 80%;
  } 
  .direct-contact-container {
    margin-top: 60px;
    max-width: 280px;
  }  
  .social-media-list {
    left: 0;
  }
  .social-media-list li {
    height: 55px;
    width: 55px;
    line-height: 55px;
    font-size: 2rem;
  }
  .social-media-list li:after {
    width: 55px;
    height: 55px;
    line-height: 55px;
  }
  .row:after {
content: "";
display: table;
clear: both;
}
.col-5,.col-10, .col-15, .col-20, .col-25, .col-30, .col-35, .col-40, .col-45, .col-50, .col-55, .col-60,
.col-65,.col-70, .col-75, .col-80, .col-85, .col-90, .col-95, .col-100 {
float: left;
margin-top: 5px;
width:100%;
}

}

@media screen and (max-width: 410px) {
.col-50-left, .col-50-right, .col-25 {
  float: left;
  width: 100%;
  margin-top: 6px;
}

  .send-button {
    width: 99%;
  }

}

/* Footer styles */
#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  left: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: var(--primary-color); /* Set a background color */
  color: #fff; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 0px; /* Some padding */
  border-radius: 50%; /* Rounded corners */
  height:50px;
  width:50px;
  font-size:18px;
  opacity:0.5;
}

#myBtn:hover {
  opacity:1;
}
footer {
  background-color: var(--dark-grey);
  color: var(--white);
  text-align: center;
  padding: 20px 0;
  bottom:0;
}

footer p {
  font-size: 14px;
}

/*grid*/
.grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 10px;
}

.grid-item {
  background-color: var(--primary-color);/*#7da9ca;*/
  color:#fff;
  font-weight:bold;
  padding: 20px;
  border-radius: 20px; 
  text-align: center;
  cursor:pointer;
  height:120px;
  min-width:160px;
  box-shadow: 5px 5px 5px #b3cde0;
}

.grid-item a{
	text-decoration:none;
	font-size:18px;
}

.grid-item:hover{
  background-color: #2b56ad;/*#e0e7f7;*/
  box-shadow: 5px 5px 5px #7da9ca;
}


 .container1 h2 a{
	 text-decoration:none;
	 color:var(--primary-color);
 }
 .container1 h2 a:hover{
	text-shadow:0 0 10px var(--white);
 }
@media (max-width: 1100px) {
  #hamburger {
    display: block;
  }

  .container {
    padding: 1.2rem;
  }

.close-icon .menutog:before {
  content: "\00d7"; 
  font-size: 48px;
  color:var(--primary-color);
}

  .menu {
    display: none;
    position: absolute;
    top: 100px;
    left: 0;
    min-height: 100vh;
    width: 100%;
  }

  .menu-bar li:first-child ul:nth-child(1) {
    border-right: none;
    border-bottom: var(--border);
  }

  .dropdown {
    display: none;
    min-width: 100%;
    border: none !important;
    border-radius: 5px;
    position: static;
    top: 0;
    left: 0;
    visibility: visible;
    opacity: 1;
    transform: none;
    box-shadow: none;
  }

  .menu.show,
  .dropdown.active {
    display: block;
  }

  .dropdown ul {
    padding-left: 0.3rem;
  }

  .menu-bar {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    row-gap: 1rem;
    padding: 1rem;
  }

  .menu-bar .nav-link {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-weight: 600;
    font-size: 1.2rem;
    margin: 0;
  }

  .menu-bar li:first-child .dropdown {
    min-width: 100%;
  }

  .menu-bar > li:not(:last-child) {
    padding-bottom: 0.5rem;
    border-bottom: var(--border);
  }
  
  .grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
  }

.hero h1 {
  font-size: 38px;
  margin-bottom: 20px;
  max-width:90%;
}

.hero p {
  font-size: 20px;
  margin-bottom: 40px;
}
}

@media only screen and (max-width: 750px){
	.grid-container1 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 20px;
  padding:10px;
}
.grid-item1{
    width:100%;
}
.hero h1 {
  font-size: 38px;
  margin-bottom: 20px;
  max-width:90%;
}

.video-container {
  position: relative;
  width: 100%;
  min-height: 600px;
padding-bottom: 56.25%; /* 16:9 aspect ratio (adjust as needed) */
  overflow: hidden;
}

}


@media only screen and (max-width: 1100px) and (min-width: 750px){
	.grid-container1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
padding:10px;
}
.grid-item1{
    width:100%;
}
.video-container {
  min-height: 700px;
padding-bottom: 56.25%; /* 16:9 aspect ratio (adjust as needed) */

}
}

@media only screen and (max-width: 1300px) and (min-width: 550px){
.hero h1 {
  font-size: 38px;
  margin-bottom: 20px;
  max-width:90%;
}

.video-container {
  min-height: 600px;
padding-bottom: 56.25%; /* 16:9 aspect ratio (adjust as needed) */

}
}
