@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Quicksand:wght@300..700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
  --navy: #23374D;
  --blue: #1089ff;
  --gray: #bbc8ca;
  --white:#eeeeee;
 


}

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

body{
  background-color: var(--gray); 
}

h1{
  color: var(--navy);
}


.image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-section {
    position: relative;
    padding-bottom: 3rem; /* Add padding to avoid form overlap */
    
}
nav >div{
  background: rgba( 238, 238, 238, 0.7 );
  box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
  backdrop-filter: blur( 17px );
  -webkit-backdrop-filter: blur( 17px );
  border: 1px solid rgba( 255, 255, 255, 0.18 );
}
.nav-item a{
  color: var(--navy);
  font-size: 1.1rem;
}
.nav-item a:hover{
  color: var(--blue);
  font-size: 1.2rem;
}

.image-container{
  height: 700px !important;
}
form{
  max-width: 850px;
  position: absolute;
  margin-top: -15%;
  background: rgba( 238, 238, 238, 0.7 );
box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
backdrop-filter: blur( 17px );
-webkit-backdrop-filter: blur( 17px );
border-radius: 10px;
border: 1px solid rgba( 255, 255, 255, 0.18 );
}



.input {
  border: 2px solid transparent;
  width: 15em;
  height: 2.5em;
  padding: 1.2em;
  margin: 0.8em;
  outline: none;
  overflow: hidden;
  background-color: #F3F3F3;
  border-radius: 10px;
  border: 0.1px solid var(--blue);
  transition: all 0.5s;
}

.input:hover,
.input:focus {
  border: 2px solid #4A9DEC;
  box-shadow: 0px 0px 0px 7px rgb(74, 157, 236, 20%);
  background-color: white;
}

textarea{
  height: 4em !important;
}
.spam{
  display: none;
}



.btn {
  font-size: 18px;
  padding: 0.5em 2em;
  border: transparent;
  box-shadow: 2px 2px 4px rgba(0,0,0,0.09);
  background: var(--blue);
  color: white;
  border-radius: 10px;
 }
 
 
 .btn:hover {
  background:var(--navy);
  background: linear-gradient(90deg, rgba(187, 200, 202,1) 0%, rgba(238, 238, 238,1) 100%);
 }
 
 .btn:active {
  transform: translate(0em, 0.2em);
 }


.sub-section{

  background: linear-gradient(to right, var(--gray) 25%,  var(--white) 25%);
 
}
.sub-section img{
  border: 10px solid var(--blue);
}

article{
  color: #333 !important;
  font-size: 0.9rem;
}














/* slider */
.marquee {
  overflow: hidden;
  position: relative;
  background-color: #fff;
}

.marquee-content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  animation: scroll 30s linear infinite;
  padding: 3% 3%;
}

@keyframes scroll {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.marquee-content img {
  flex-shrink: 0;
}


/* services */
.services{
  background-color: var(--gray);
 
}
.service-card >div {
  max-height: 550px !important;
  background-color: var(--white);
}


/* read more button  */

button {
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  cursor: pointer;
  align-self: center;
  margin-left: 30%;
}

.button-read-more {
  --primary-color:var(--navy);
  --hovered-color: var(--blue);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 20px;
  gap: 0.5rem;
  align-items: center;
}

.button-read-more article {
  margin: 0;
  position: relative;
  font-size: 20px;
  color: var(--primary-color);
}

.button-read-more::after {
  position: absolute;
  content: "";
  width: 0;
  left: 0;
  bottom: -7px;
  background: var(--hovered-color);
  height: 2px;
  transition: 0.3s ease-out;
}

.button-read-more p::before {
  position: absolute;
  /*   box-sizing: border-box; */
  content: "Subscribe";
  width: 0%;
  inset: 0;
  color: var(--hovered-color);
  overflow: hidden;
  transition: 0.3s ease-out;
}

.button-read-more:hover::after {
  width: 100%;
}

.button-read-more:hover article::before {
  width: 100%;
}

.button-read-more:hover svg {
  transform: translateX(4px);
  color: var(--hovered-color);
}

.button-read-more svg {
  color: var(--primary-color);
  transition: 0.2s;
  position: relative;
  width: 15px;
  transition-delay: 0.2s;
}
.service-card{
  padding: 0% 1%;
  margin-bottom: 3%;
  margin-top: 2%;

}
.service-card > div{
 border: 5px solid var(--blue);

}

.cta-container{
  
  color: var(--navy) !important;
 background: url(../images/cta-bg.gif);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat; 
 
}
/* pricing */


.pricing{
  margin-bottom: 10% !important;
  margin-left: 7%;
}

.card {
  width: 270px;
  height: 230px;
  border-radius: 20px;
  background: #f5f5f5;
  position: relative;
  padding: 1.8rem;
  border: 2px solid #c3c6ce;
  transition: 0.5s ease-out;
  overflow: visible;
 }
 
 .card-details {
  color: black;
  height: 100%;
  gap: .5em;
  display: grid;
  place-content: center;
 }
 
 .card-button {
  transform: translate(-50%, 125%);
  width: 60%;
  border-radius: 1rem;
  border: none;
  background-color: var(--blue);
  color: #fff;
  font-size: 1rem;
  padding: .5rem 1rem;
  position: absolute;
  left: 50%;
  bottom: 0;
  opacity: 0;
  transition: 0.3s ease-out;
 }
 
 .text-body {
  color: rgb(134, 134, 134);
 }
 
 /*Text*/
 .text-title {
  font-size: 2em;
  font-weight: bold;
 }
 .text-title-head{
  font-size: 2.5em;
  font-weight: bold;
 }
 
 /*Hover*/
 .card:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.25);
 }
 
 .card:hover .card-button {
  transform: translate(-50%, 50%);
  opacity: 1;
 }


 .icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px; /* Adjust size as needed */
  height: 60px; /* Adjust size as needed */
  border-radius: 50%;
  border: 2px solid rgba(0, 123, 255, 0.5); /* Change color as needed */
  background-color: white; /* Background color */
}
.icon-text{
  text-align: left !important;
}


/* testimonials */

.card__article{
  /* border: 5px solid var(--gray); */
  box-shadow: rgba(238, 238, 238,0.9) 0px 7px 29px 0px;
}


figure.snip1390 {
 
  position: relative;
  overflow: hidden;
  margin: 10px;
  /* min-width: 230px; */
  max-width: 315px;
  width: 100%;
  color: #000000;
  text-align: center;
  font-size: 16px;
  background-color:#fff;
  padding: 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
figure.snip1390 *,
figure.snip1390 *:before,
figure.snip1390 *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
figure.snip1390 figcaption {
  width: 100%;
}
figure.snip1390 h2,
figure.snip1390 h4,
figure.snip1390 blockquote {
  margin: 10px;
}
figure.snip1390 h2,
figure.snip1390 h4 {
  font-weight: 300;
}
figure.snip1390 h2 {
  color: var(--navy);
}
figure.snip1390 h4 {
  color: #a6a6a6;
}
figure.snip1390 blockquote {
  font-size: 1em;
  padding: 0px 20px 10px 30px;
  margin-top: 30px;
  /* background-color: #ffffff; */
  border-radius: 5px;
  /* box-shadow: inset -1.4px -1.4px 2px rgba(0, 0, 0, 0.3); */
  text-align: left;
  position: relative;
}
/* figure.snip1390 blockquote:before {
  font-family: 'FontAwesome';
  content: "\201C";
  position: absolute;
  font-size: 70px;
  opacity: 0.25;
  font-style: normal;
  top: 0px;
  left: 20px;
} */
figure.snip1390 .profile {
  width: 100px;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.4);
  margin-bottom: 10px;
  border: solid 5px var(--navy);
}

/* testimonilas */


.social i{
  color: var(--navy);
}




#item-footer{
	display: inline-block;
	margin: 10px;
	padding: 5px 5px;
	 border: 1px solid var(--blue);
  }
  
  
  #item-footer a{
	text-decoration: none;
	font-size: 1rem;
  font-weight: 500;
	padding: 10px 10px;
	margin: 2px 2px;
  color: var(--navy);
	
  }
  
  /* CSS for responsiveness */
@media (max-width: 767px) {
  footer .col-lg-4, footer .col-lg-8 {
    width: 100%;
    padding: 0 0 !important;
   margin: 0 !important;
  }
  footer .row {
    display: block;
    padding: 0 0 !important;
    margin: 0 !important;
  }
  footer .services-loc ul {
    padding: 0 !important;
    margin: 0 !important;
    column-count: 2; /* Multi-column layout for better organization */
   
  }
  footer .services-loc ul li {
    border: 1px solid var(--blue);
    padding: 2px !important;
    margin: 3px !important;
   
  }

  footer .services-loc ul li a{


    font-size: 0.2;
    display: inline ;
  }
  footer h3 {
    font-size: 1.5rem;
  }
  footer .widget {
    text-align: center;
  }
  footer .widget img {
    margin: 0 auto;
  }
  footer .d-md-flex {
    display: block;
    text-align:left;
  }
  footer .social {
    justify-content: center;
  }
}

  .user-select-none{
    text-decoration: none;
    color: black;
  }
/* Small devices (landscape phones, 576px and up) */


@media (max-width: 992px) {
  /* Tablet and smaller screens */
  .text-left {
    text-align: center !important;
  }

  .mt-5 {
    margin-top: 3rem !important;
  }

  .image-container{
    height: 370px !important; /* Adjust the height of the image */
  }


  form {
    position: relative;
    margin-top: 5%;
  
   
  }
  
  textarea {
    height: 6em !important;
  }

  .input {
    width: 95% !important;
  }
}

@media (max-width: 576px) {
 .hero-section  h1{
    margin: 0 !important;
    margin-top: -10% !important;
  }
  .sub-section{

    background: linear-gradient(to bottom, var(--gray) 20%,  var(--white) 80%);
   
  }
  /* Mobile screens */
  .image-wrapper {
    height: 300px !important; /* Further reduce image height */
  }

  form {
    margin: 0% !important;
  }
  .sub-section h2 , article{
    text-align: center !important;
  }
  .service-card{
    padding: 0 !important;
    margin: 0 !important;
  }

  .cta-container{
  
    color: var(--white) !important;
  background:rgba(16, 137, 255 ,0.7);
  
  }
}


/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  

}

/* Large devices (desktops, 992px and up) */
@media (max-width: 992px) {
  .cta-container{
  
    color: var(--white) !important;
  background:rgba(16, 137, 255 ,0.7);
  
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .service-card  .service-article{
    display: none;
    
  }
  .button-read-more{
    margin-left: 7% ;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  /* Your CSS for extra-large screens */
}

/* XXL devices (very large desktops, 1400px and up) */
@media (min-width: 1400px) {
  /* Your CSS for XXL screens */
}