:root {
  --blue: #1e90ff;
  --green: #a4c639;
  --darkgrey:#555555;
  ;

body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
p {
	font-size: 14px;
	color: #666666;
	line-height: 30px;
}
a {
	text-decoration: none!important;
}
ul {
	padding: 0;
	margin: 0;
	list-style: none;
  margin:  0px;   
  padding: 0px; 
}

h1,h2,h3,h4,h5,h6 {
	margin: 0px;
}

a.filled-button {
	background-color: var(--blue);
	color: #fff;
}


a.filled-button, a.border-button {
  font-size: 0.8rem;
	text-transform: uppercase; 
	font-weight: 700;
	padding: 0.8rem 1.5rem;
	border-radius: 30px;
	display: inline-block;
	transition: all 0.3s;
}


a.filled-button:hover {
  color: var(--blue);
	background-color: #fff;
}

a.border-button {
	background-color: transparent;
	color: #fff;
	border: 2px solid #fff;
	
}

a.border-button:hover {
	background-color: #fff;
	color: var(--blue);
}

a.outline-button {
  background-color: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.6px 2rem;
  border-radius: 1.6rem;
  display: inline-block;
  transition: all 0.3s;
}
a.outline-button:hover {
  background-color: var(--blue);
  color: #fff;
}


#preloader {
  overflow: hidden;
  background: var(--blue);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: fixed;
  z-index: 9999999;
  color: #fff;
}

#preloader .jumper {
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  position: absolute;
  margin: auto;
  width: 50px;
  height: 50px;
}

#preloader .jumper > div {
  background-color: #fff;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  opacity: 0;
  width: 50px;
  height: 50px;
  -webkit-animation: jumper 1s 0s linear infinite;
  animation: jumper 1s 0s linear infinite;
}

#preloader .jumper > div:nth-child(2) {
  -webkit-animation-delay: 0.33333s;
  animation-delay: 0.33333s;
}

#preloader .jumper > div:nth-child(3) {
  -webkit-animation-delay: 0.66666s;
  animation-delay: 0.66666s;
}

@-webkit-keyframes jumper {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  5% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes jumper {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  5% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}


/* For brand name shorting */
.brand-short {
  display: none;
}




/* Header Style */
header {
  position: fixed;
	top: 0;
  width: 100%;
  z-index: 9999; /* Ensure it stays above other elements */
  background-color: #fff; /* Optional: Add a background color */
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); /* Optional: Add a shadow for better visibility */
	height: 80px;
	-webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

/* header .navbar {
	padding: 20px 0px;
} */

header .navbar-brand h2 {
	color:black!important;
}


.brand-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--blue);
  /* text-transform: uppercase;     */
  margin-left: 2rem;
  margin-top: 1.2rem;
  text-align: center;
}
/* .background-header .navbar {
	padding: 10px 0px;
}

.background-header {
	top: 0;
	position: fixed;
	background-color: #fff!important;
	box-shadow: 0px 1px 10px rgba(0,0,0,0.1);
}
.background-header .navbar-brand h2 {
	color: var(--blue)!important;
}
.background-header .navbar-nav a.nav-link {
	color: var(--darkgrey)!important;
}
.background-header .navbar-nav .nav-link:hover,
.background-header .navbar-nav .active>.nav-link,
.background-header .navbar-nav .nav-link.current,
.background-header .navbar-nav .nav-link.show,
.background-header .navbar-nav .show>.nav-link {
	color: var(--blue)!important;
} */
.navbar .navbar-brand {
	float: 	left;
	/* margin-top: 12px; */
	outline: none;
  text-align: center;
}
.navbar .navbar-brand span {
	color: var(--blue);
	font-size: 1.8rem;
	font-weight: 700;
  /* margin-left: 2rem; */
	-webkit-transition: all .3s ease 0s;
    -moz-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}

.navbar .navbar-brand h2 {
	color: #fff;
	text-transform: uppercase;
	font-size: 24px;
	font-weight: 700;
	-webkit-transition: all .3s ease 0s;
    -moz-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}
.navbar .navbar-brand h2 em {
	font-style: normal;
	font-size: 16px;
}
#navbarResponsive {
	z-index: 999;
  background-color: #fff;
}
#navbarResponsive .nav-item :focus {
  color: var(--blue);
}
.navbar-collapse {
	text-align: center;
}
.navbar .navbar-nav .nav-item {
	margin: 0px 15px;
}
.navbar .navbar-nav a.nav-link {
	text-transform: capitalize;
	font-size: 15px;
	font-weight: 400;
	letter-spacing: 0.5px;
	color: var(--darkgrey) ;
	transition: all 0.5s;
	margin-top: 5px;
}



.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .active>.nav-link,
.navbar .navbar-nav .nav-link.current,
.navbar .navbar-nav .nav-link.show,
.navbar .navbar-nav .show>.nav-link {
	color: var(--blue);
	border-bottom: 3px solid var(--blue);
}
.navbar .navbar-toggler-icon {
	background-image: none;
}
.navbar .navbar-toggler {
	border-color: #fff;
	background-color: #fff!important;	
	height: 36px;
	outline: none;
	border-radius: 0px;
	position: absolute;
	right: 30px;
	top: 20px;
}
.navbar .navbar-toggler-icon:after {
	content: '\f0c9';
	color: var(--blue);
	font-size: 18px;
	line-height: 26px;
	font-family: 'FontAwesome';
}



/* Banner Style */
.main-banner {
  /* background-color: #0093E9;
  background-image: linear-gradient(160deg, #0093E9 0%, #80D0C7 100%); */
  background-image: url(../images/hero_7.jpg);
	width: 100%;
	height: auto;
	object-fit: cover;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	position: relative;
	margin-bottom: 40px;
	opacity: 95%;
} 

.banner-container{
  width: 80vw;
  margin: auto;
  height: 100vh;
  text-align: left;
  padding: 1rem;
}

.banner-text {
  width: 60%;
  color: #fff; /* Text color */
  text-align: left;
	margin: 2%;
	margin-top:14% ;
  padding: 1rem; /* Adjust padding as needed */
  backdrop-filter: blur(2px); 
}

.banner-text h5 {
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
  margin-top: 1rem;
  font-weight: bold;
  font-size: 2rem;
}

.banner-text a {
  color: #fff; 
  margin-top: 1rem;
}

.banner-text a {
 text-decoration: none;
 font-size: 0.8rem;
 font-weight: 700;
}


#hero-button{
  color: #fff;
  background-color: var(--blue);
  padding: 0.8rem 1.5rem;
  border-radius: 30px;    
  word-spacing: 0.3rem;
}

#hero-button:hover{
  background-color: #fff;
  color: var(--blue);
  /* border: 2px solid var(--blue); */
}
/* Service  */

.services{
  width: 80%;
  margin: auto;
  margin-bottom: 4rem;
}

.section-heading{
  text-align: center;
  margin-top: 4rem;
  margin-bottom: 2rem;
  color: var(--blue);
}
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill,
  minmax(280px, 1fr));
  grid-gap: 2rem;
}

.service-card{
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 2px 5px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.service-card img{
  width: 100%;
  height: auto;
  border-radius: 10px 0px 0px 0px !important;
}

.card-deatails {
  padding: 2rem;
  background-color: #fff;
  border-radius: 0px 0px 10px 10px !important;
}

.card-deatails h5 {
  color: var(--blue);
  margin-bottom: 1rem;
}

.card-deatails p {
   font-size: 0.8rem; 
  color: #666; 
  line-height: 1.6rem;
}

.service-card:hover {
  transform: scale(1.03);
  box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
}


 /* about */ 

 .about{
	width: auto;
  height: auto; /* Maintain aspect ratio */
  display: flex; /* Remove any inline spacing */
	
	margin-top: 200px;
	background-image: url(../images/fun-facts-bg.jpg); 
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	padding: 120px 0px;
	color: #fff;
}

.left-image img {
	margin-left: 100px;
	width: 50vw;
	height: 80vh;
	overflow: hidden;
	border-radius: 10px;
	object-fit: cover
}

/* .more-info .more-info-content {
	background-color: #f7f7f7;
} */

.about {
  background-image: url('../images/fun-facts-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 4rem 0;
  color: #fff;
  margin-top: 2rem; 
}

 .about-container {
  width: 80%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  color: #fff;
  margin-bottom: 2rem;
}

.about-container img {
  width: 60%;
  margin: 1rem;
  margin-top: 2rem;
  height: auto;
  object-fit: cover;
  border-radius: 2rem;
}

.about-text {
  margin-top: 2rem;
  padding: 2rem;
  width: 40%;
  font-size: 10px;
  line-height: 0.8em;
}
.about-text h2 {
  font-size: 1.5rem;
  color: var(--blue);
  margin: 1rem  0rem;
}
.about-text p {
  font-size: 0.8rem;
  color: #fff;
}
 
/* Footer */
footer {
  background-color: #1e90ff;
  padding: 2rem 0;
  text-align: center;
	background-color: white;
	color: #232323;
}

footer h5 {
	color: #232323;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 0.25px;
	margin-bottom: 1.2rem;
}
footer p {
	color: #232323;
}

footer ul.social-icons {
	margin-top: 2rem;
  color: var(--blue);
  margin-bottom: 1.5rem;
}

footer ul.social-icons li {
	display: inline-block;
	margin-right: 5px;
  color: var(--blue);
  transition: all 0.3s;
}

footer ul.social-icons li:last-child {
	margin-right: 0px;
}

footer ul.social-icons li a {
	width: 34px;
	height: 34px;
	display: inline-block;
	line-height: 34px;
	text-align: center;
	background-color:var(--blue);
	color: white;
	border-radius: 50%;
	transition: all 0.3s;
}

footer ul.social-icons li a:hover {
	background-color: var(--blue);
}

footer ul.menu-list li {
	margin-bottom: 13px;
}

footer ul.menu-list li:last-child {
	margin-bottom: 0px;
}

footer ul.menu-list li a {
	font-size: 14px;
	color: #fff;
	transition: all 0.3s;
}

footer ul.menu-list li a:hover {
	color: var(--blue);
}

footer .contact-form input {
	border-radius: 20px;
	height: 40px;
	line-height: 40px;
	display: inline-block;
	padding: 0px 15px;
	color: white;
	background-color: #343434;
	font-size: 13px;
	text-transform: none;
	box-shadow: none;
	border: none;
	margin-bottom: 15px;
}

footer .contact-form input:focus {
	outline: none;
	box-shadow: none;
	border: none;
	background-color: #343434;
	color: white;
}

footer .contact-form textarea {
	border-radius: 20px;
	height: 120px;
	max-height: 200px;
	min-height: 120px;
	display: inline-block;
	padding: 15px;
	color: #FFF;
	background-color: #343434;
	font-size: 13px;
	text-transform: none;
	box-shadow: none;
	border: none;
	margin-bottom: 15px;
}

footer .contact-form textarea:focus {
	outline: none;
	box-shadow: none;
	border: none;
	background-color:#343434;
	color: white;
}

footer .contact-form ::-webkit-input-placeholder { /* Edge */
  color: white;
}
footer .contact-form :-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: white;
}
footer .contact-form ::placeholder {
  color: white;
}

footer .contact-form button.filled-button {
	background-color: transparent;
	color: #fff;
	background-color: var(--blue);
	border: none;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 700;
	padding: 12px 30px;
	border-radius: 30px;
	display: inline-block;
	transition: all 0.3s;
	outline: none;
	box-shadow: none;
	text-shadow: none;
	cursor: pointer;
}

footer .contact-form button.filled-button:hover {
	background-color:  #343434;
	color: var(--blue);
}



/* Sub Header Style */

.blue-band {
	background-color: var(--blue);
  padding: 10px;
}

.blue-band-container{
  width: 80%;
  margin: auto;
}
.blue-band ul li {
	display: inline-block;
}

.blue-band ul.left-info li {
	border-left: 1px solid rgba(250,250,250,0.3);
	padding: 0px 20px;
}

.blue-band ul.left-info li:last-child {
	border-right: 1px solid rgba(250,250,250,0.3);
}

.blue-band ul.left-info li i {
	margin-right: 10px;
	font-size: 18px;
}

.blue-band ul.left-info li a {
	color: #fff;
	font-size: 14px;
	font-weight: 600;
}

.blue-band ul.right-info {
	float: right;
}

.blue-band ul.right-info li {
	margin-right: -4px;
	width: 46px;
	display: inline-block;
	text-align: center;
	border-right: 1px solid rgba(250,250,250,0.3);
}

.blue-band ul.right-info li:first-child {
	border-left: 1px solid rgba(250,250,250,0.3);
}

.blue-band ul.right-info li a {
	color: #fff;
	transition: all 0.3s;
}

.blue-band ul.right-info li a:hover {
	opacity: 0.75;
}


/* Sub Footer */
.sub-footer {
	background-color: #343434;
	text-align: center;
	padding: 20px 0px;
}

.sub-footer p {
	color: #fff;
	font-weight: 300;
	letter-spacing: 0.5px;
}

.sub-footer a {
	color: #fff;
}
.sub-footer a:hover {
  color: var(--blue);
}


#form-submit{
  width: 40%;
}



/* Responsive Styles */


/* @media (max-width: 576px) {

} */



@media screen and (min-width: 992px) and (max-width: 1200px) {
  .main-banner {
    width: 100vw;
    height: 100vh;
  }
  
  .banner-container {
    width: 100vw;
    height: 100vh;
    padding: 3rem 1rem;
    position: relative;
  }


  .banner-text {
    position: absolute; 
    top: 30%; 
    left: 40%;
    transform: translate(-50%, -50%);
    width: 60%;
    /* padding: 20px; */
  }


  .banner-text h5 {
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 1rem;
    margin-top: 1rem;
    font-weight: bold;
    font-size: 2rem;
  }
  
  
  .banner-text a {
    color: #fff; 
    margin-top: 1rem;
  }
  
  .banner-text a {
   text-decoration: none;
   font-size: 0.8rem;
   font-weight: 700;
  }

  /* about */
  .about {
    background-image: url('../images/fun-facts-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4rem 0;
    color: #fff;
    margin-top: 2rem; 
  } 
  
   .about-container {
    width: 80%;
    margin: auto;
    display: flex;
    /* align-items: center; */
    /* justify-content: center; */
    flex-direction: column;
    padding: 2rem;
    color: #fff;
    margin-bottom: 2rem;
  }
  
  .about-container img {
    width: 100%;
    margin: 1rem;
    margin-top: 2rem;
    height: auto;
    object-fit: cover;
    border-radius: 2rem;
  }
  
  .about-text {
    margin-top: 2rem;
    padding: 2rem;
    width: 100%;
    font-size: 10px;
    line-height: 1rem;
  }
  .about-text h2 {
    font-size: 1.5rem;
    color: var(--blue);
    margin: 1rem  0rem;
  }
  .about-text p {
    font-size: 0.8rem;
    color: #fff;
  }
  

}


@media screen and (min-width: 769px) and (max-width: 992px) {

  .main-banner {
    width: 100vw;
    height: 90vh;
  }

  .banner-container {
    width: 100vw;
    height: 100vh;
    padding: 1rem;
    position: relative;
  }


  .banner-text {
    position: absolute; 
    top: 30%; 
    left: 50%; 
    transform: translate(-50%, -50%);
    width: 80%;
    /* padding: 20px; */
  }


 .about {
  background-image: url('../images/fun-facts-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 4rem 0;
  color: #fff;
  margin-top: 2rem; 
} 

 .about-container {
  width: 80%;
  margin: auto;
  display: flex;
  /* align-items: center; */
  /* justify-content: center; */
  flex-direction: column;
  padding: 2rem;
  color: #fff;
  margin-bottom: 2rem;
}

.about-container img {
  width: 100%;
  margin: 1rem;
  margin-top: 2rem;
  height: auto;
  object-fit: cover;
  border-radius: 2rem;
}

.about-text {
  margin-top: 2rem;
  padding: 2rem;
  width: 100%;
  font-size: 10px;
  line-height: 1rem;
}
.about-text h2 {
  font-size: 1.5rem;
  color: var(--blue);
  margin: 1rem  0rem;
}
.about-text p {
  font-size: 0.8rem;
  color: #fff;
}


} 



@media screen and (min-width: 426px) and (max-width: 768px) {
  .main-banner {
    height: 100vh;
    width: 100vw;
  }

  .banner-container {
    width: 100vw;
    height: 100vh;
    padding: 1rem;
    position: relative;
  }

  .banner-text {
    position: absolute; 
    top: 40%; 
    left: 50%; 
    transform: translate(-50%, -50%);
    width: 100%;
    /* padding: 20px; */
  }

  .about-container {
    flex-direction: column;
    align-items: center;
  }
  .about-container img {
    margin-bottom: 20px;
    width: 100%;
    height: auto;
  }
  .about-text {
    width: 100%;
    padding: 20px;
  }
  .about-text h2 {
    font-size: 24px;
  }
  .about-text p {
    font-size: 14px;
  }
}



@media screen and (min-width: 0px) and (max-width: 425px) {
  html, body {
    font-size: 12px;
    line-height: 1.5rem;
  }
  .header .navbar{
    padding: 0px!important;
    margin: 0px!important;

  }
  .brand-full {
   display: none;
  }
  .brand-short {
   display: block;
  }

.brand-logo {
  font-size: 1.8rem;
  font-weight: 600;
  margin-left: 1rem;
  margin-top: 0.4rem;
  /* text-align: center; */
}
  #brand-slogan {
    font-size: 0.8rem;
    color: var(--blue);
    font-weight: 700;
    margin-left: 1rem;
    text-transform:capitalize;
    margin-top: 0rem;
    padding-top:0rem ;
    line-height: 0.8rem;
  }
 
  .navbar-brand span{
    margin-left: 20px;
    font-size: 0.6rem;
  }

  .banner-container{
    width: 100vw;
    margin-top: 3rem;
    padding-top: 3rem;
    height: 100vh;
    text-align: left;
    padding-bottom: 1rem;
  }
  
  .banner-text {
    position: absolute; 
    top: 40%; 
    left: 50%; 
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 1rem; 
    backdrop-filter: blur(2px);  
  }
  
  .banner-text h5 {
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 1rem;
    font-weight: bold;
    font-size: 1.6rem;
 }
  
  
  .banner-text a {
    color: #fff; 
    margin-top: 1rem;
   text-decoration: none;
   font-size: 0.8rem;
   font-weight: 700;
  }
  .banner-text p{
    font-size: 0.8rem;
    line-height: 1.5rem;
  }
  
  #hero-button{
    font-size: 0.6rem;
  }

  /* Service  */
  .services{
    width: 100%;
    margin-bottom: 1rem ;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0rem 1.5rem;
    text-align: left;
  }

  .card-deatails {
    padding: 1rem;
  }
  .card-deatails h5 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .card-deatails p{
    font-size: 0.7rem;
    line-height: 1.2rem;
  }

  /* about */ 

  .about{
    margin: 0px;
    padding: 0px;
  }

  .about-container {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-content: stretch;
    padding: 0.6rem;

  }
  .about-container img {
    width: 100%;
    margin: 1rem;
    margin-top: 2rem;
    height: auto;
    object-fit: cover;
    border-radius: 2rem;
  }

  
  .about-text {
    width: 100%;
    font-size: 10px;
    line-height: 0.8rem;
    margin: 0px;
    padding: 10px;
  }

  .about-text h2 {
    font-size: 1.5rem;
  }
 .about-text p {
    font-size: 0.8rem;
  }


.footer{
    margin: 0px;
    padding: 0px;
  }
.footer-item{
  margin-top: 1.5rem;
  padding: 0.4rem;

 } 

 .blue-band{
  text-align: center;
 }
 
.blue-band .left-info {
  margin-bottom: 10px;
  
}
.blue-band .left-info li {
  border:none!important;

  padding: 0px 20px;
}

.blue-band ul.left-info li a {
	color: #fff;
	font-size: 0.8rem;
	font-weight: 400;
}
.blue-band .right-info {
  margin-bottom: 10px;
  display: flex;
  justify-content: center;

}
.footer {
  margin: 0px;
  padding: 0px;
}
}

