@import url('https://fonts.googleapis.com/css2?family=Afacad:ital,wght@0,400..700;1,400..700&family=Caveat:wght@400..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Yeseva+One&display=swap');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --main-color: #2C7E95;
  --text-color: #fff;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

 a {
  text-decoration: none;
} 

.padding-space {
  padding: 3rem 0rem;
}

.title {
  color: var(--main-color);
  font-weight: 700;
  word-spacing: 1px;
  font-size: 2.3rem;
  letter-spacing: 1px;
}

.title1 {
  color: #499DAA;
}

.whatsapp_main {
  position: fixed;
  bottom: 30px;
  left: 20px;
  text-align: center;
  z-index: 10;
}


/*header section css*/
.main-header {
  position: relative;
  background: #FEFAF9 !important;
}

.navbar {
  padding: 15px 0;
  transition: all 0.3s ease;
  background: #FEFAF9 !important;
}

.navbar-nav .nav-link {
  font-size: 15px;
  font-weight: 500;
  color: #000;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #2C7E95;
  font-weight: 600;
}

.demo-btn {
  background-color: #4A9EA9;
  border-radius: 6px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 500;
  border: none;
}

.demo-btn:hover {
  background-color: #F18634;
  border: none;
}

.header-border {
  height: 4px;
  background: linear-gradient(90deg, #0b3c78, #2d7bdc);
  margin-top: 80px;
}

/* Dropdown Styling */
.dropdown-menu {
  border-radius: 6px;
  border: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
  font-size: 14px;
  padding: 8px 18px;
}

.dropdown-item:hover {
  background-color: #f1f6ff;
}

/* Sticky Shadow on Scroll */
.navbar.scrolled {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* gallery page filter css */
.filters a {
  color: #000;
}

/*footer section css*/

.footer-section {
  background: linear-gradient(135deg, #2C7E95, #15677e);
  color: #dce7f5;
  padding: 60px 0 25px;
  font-size: 15px;
}

.footer-section p {
  color: #dce7f5;
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ABF0F0;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #dce7f5;
  text-decoration: none;
  transition: 0.3s;
  font-size: 1rem;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 5px;
}

.footer-contact i {
  margin-right: 10px;
  color: #ffffff;
}

.footer-social a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
  color: #ffffff;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #ABF0F0;
  color: #000;
}

.footer-line {
  border-color: rgba(255, 255, 255, 0.2);
  margin: 30px 0 20px;
}

.privacy-link {
  color: #dce7f5;
  text-decoration: none;
}

.privacy-link:hover {
  color: #ffffff;
}

/*contact page css*/
.hero {
  background: #2c7e95b5;
  padding: 4rem 0rem;
}

.hero-section strong {
  font-size: 2.5rem;
}

.hero-section p,
a {
  font-size: 1.1rem;
  color: #fff;
}

.contact-box {
  border: 2px solid #153c331a;
  border-radius: 30px;
  padding: 30px;
  text-align: center;
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.contact-icon {
  background: #0b376b42;
  width: 50px;
  height: 50px;
  margin-right: auto;
  margin-left: auto;
  color: #0B376B;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  margin-bottom: 0.5rem;
}

.contact-box i {
  font-size: 1.5rem;
}

.contact-box strong {
  color: #0B376B;
  font-size: 1.3rem;
}


.form-control1 {
  height: 50px;
}

.form-btn {
  background: #499DAA;
  color: #fff;
}

/*blog page css*/
.blog-box {
  border-radius: 10px;
  padding: 0.7rem;
  margin: 0.5rem;
}

.img-zoom {
  overflow: hidden;
  border-radius: 10px;
  /* optional */
}

.img-zoom img {
  width: 100%;
  transition: transform 0.6s ease;
}

.img-zoom:hover img {
  transform: scale(1.1);
}

.blog-box h3 {
  color: var(--main-color);
  font-size: 1.4rem;
  padding-top: 0.8rem;
  font-weight: 600;
}

.blog-box p {

  font-size: 0.9rem;

}

.link-btn {
  background: var(--main-color);
  color: var(--text-color);
  font-size: 1.1rem;
  padding: 0.3rem 1rem;
  border-radius: 5px;
}

.link-btn:hover {
  background: #0b376b42;
  color: var(--main-color);
  font-size: 1.1rem;
  padding: 0.3rem 1rem;
  border-radius: 5px;
  font-weight: 600;
}

.blog-details h1 {
  color: var(--main-color);
  padding-top: 0.8rem;
  font-size: 1.8rem;
  font-weight: 6000;
}

/*about page css*/

.about-box {
  margin: 1rem;
}

.about-box p {
  line-height: 1.9;
}

.mission {
  border: 2px solid #153c331a;
  padding: 0.8rem;
  text-align: center;
  border-radius: 15px;
  /*	height: 200px;*/
  margin: 0.5rem;
}

.mission h3 {
  font-weight: 600;
  padding-top: 0.5rem;
}

.mission p {
  font-size: 0.9rem;
}


/*counter value*/
.stats-section {
  background: var(--main-color);
}

.stats-box {
  padding: 35px 20px;
  border: 1px dashed rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  color: #fff;
  height: 160px;
}

.stats-box .icon {
  font-size: 45px;
  color: #fff;
  margin-bottom: 15px;
}

.stats-box .title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

.stats-box .count {
  font-size: 38px;
  font-weight: 700;
  color: #F66D1C;
  /* Yellow text like image */
  margin-top: 5px;
}

.site-fly-img {
  position: fixed;
  left: 30px;
  /* Left side fixed */
  bottom: -250px;
  /* Start very bottom */
  width: 150px;
  z-index: 999999;
  /* Always on top */
  animation: flyUp 20s ease-in-out infinite;
}

@keyframes flyUp {
  0% {
    bottom: -250px;
    /* Start from bottom */
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  70% {
    bottom: 40vh;
    /* Move to top of screen */
    opacity: 1;
  }

  100% {
    bottom: -250px;
    /* Return back to bottom */
    opacity: 0;
    /* Fade before restarting */
  }
}

.testmonial {

  padding: 3rem 0rem;
}

.google_review {
  background-color: #fff;
  padding: 2rem 1rem;

}

.media1 {
  background-color: var(--main-color);
  width: 80px;
  height: 80px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.white-circle1 {
  background-color: #fff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  width: 60px;
  height: 60px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center
}

.google_review h5 {
  font-family: "Afacad", sans-serif;
  color: var(--main-color);
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 10px;
}

.google_review i {
  color: #FF9800;
  font-size: 0.8rem;
}

.solutions-box {
  height: 470px;
  margin-bottom: 1rem;
}

.solutions-box strong {
  font-size: 1.3rem;
  color: var(--main-color);
}

.solutions-box p {
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.solutions-box span {
  font-size: 0.9rem;
}

.form-btn11 {
  background-color: #2C7E95;
  padding: 0.3rem 1rem;
  border-radius: 30px;
}

/*feature section css*/



.features p {
  /* border-bottom: 2px solid skyblue;
  margin-bottom: 1.4rem;
  padding-bottom: 0.5rem;*/
  font-size: 1rem;
  width: 100%;

}

.features i {
  color: #499DAA;
  font-size: 1.1rem;
}

* {
  cursor: none;
}

.cursor {
  position: fixed;
  width: 14px;
  height: 14px;
  background: #008cff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10000;
  box-shadow: 0 0 10px rgba(0, 140, 255, 0.7);
}

.trail {
  position: fixed;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 140, 255, 0.25);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  filter: blur(10px);
  transition: transform 0.25s ease-out, opacity 0.3s ease-out;
  opacity: 0;
}

.custom-shadow {
  box-shadow: 5px 10px 10px 2px lightblue;
}

/*industries section css*/


.industries-box {
  background: #fff;
  padding: 1rem;
  text-align: center;
  height: 250px;
}

.industries-img {
  width: 150px;
  height: 150px;
  margin-left: auto;
  margin-right: auto;
}

.industries-img img {
  border-radius: 50%;
  border: 4px solid #0b3c78;

}

.industries-box h5 {
  font-size: 1.1rem;
}


.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  display: none;
}

.hero_bottom {
  padding-top: 1rem;
  padding-bottom: 1rem;

}

.contact-form i {
  color: #499DAA;
  font-size: 1.5rem;
}

.services-details-box {
  background: aliceblue;
  padding: 1rem;
  border-radius: 10px;
}

.services-details-box strong {
  color: #F18634;
  font-size: 1.4rem;
  font-weight: 700;
}

.services-details-box h4 {

  font-size: 1.3rem;
  padding: 0.3rem 0rem;

}

.services-details-box:hover {
  margin-top: -0.5rem;
  transition: .5s;
}

.department {
  height: 150px;
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.department p {
  font-weight: 600;
  padding-top: 0.5rem;
}

@media screen and (max-width: 600px) {
  .solutions-box {
    height: 390px;
    margin-bottom: 1rem;
  }

  .department {
    height: 195px;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
  }
  .title {
   
    font-size: 2rem;
    
}
.department p {
    font-weight: 600;
    padding-top: 0.5rem;
    font-size: 0.8rem;
}
.slider
{
  margin-top: 3rem;
}
}

@media screen and (max-width: 768px) {
  .solutions-box {
    height: 450px;
    margin-bottom: 1rem;
  }
}