/*----------------------------------------------------------------
#Fonts
----------------------------------------------------------------*/
@import url(https://fonts.googleapis.com/css?family=Roboto:300,400);
@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css);
.inter-font {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings:
    "slnt" 0;
}

a{
  text-decoration: none;
}
  /*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
  #header {
    height: 80px;
    transition: all 0.5s;
    z-index: 997;
    background: #fff;
    box-shadow: 0px 6px 9px 0px rgba(0, 0, 0, 0.06);
  }
  
  #header #logo h1 {
    font-size: 42px;
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
  }
  
  #header #logo h1 a {
    color: #4069E5;
  }
  
  #header #logo h1 a span {
    color: #4069E5;
  }
  
  #header #logo img {
    padding: 0;
    margin: 0;
  }
  
  @media (max-width: 768px) {
    #header {
      height: 60px;
    }
  
    #header #logo h1 {
      font-size: 34px;
    }
  
    #header #logo img {
      max-height: 40px;
    }
  }
  
  @media only screen and (width < 422px) {
    #topbar {
      height: 0;
    }
  } 
  
  .scrolled-offset {
    margin-top: 70px;
  }
  
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #444;
  white-space: nowrap;
  transition: 0.3s;
  text-decoration: none; /* Remove underlines */
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #4069E5;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  text-decoration: none; /* Remove underlines */
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #4069E5;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

/* .navbar ul li:last-child a {
  display: inline-block; 
  color: #444;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
} */

.navbar ul li:last-child a:hover {
  color: #4069E5;
}

.navbar ul li:last-child a:hover span {
  color: orange;
}


@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
      left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
      left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #0c2e8a;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }

  .navbar.toggled ul {
    display: block;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(8, 30, 91, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #0c2e8a;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #4069E5;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #4069E5;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Logo
--------------------------------------------------------------*/
.logo{
  text-decoration: none;
}

/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/
@media (max-width: 767px) {
  .lc-block .d-grid {
      grid-template-columns: 1fr 1fr; /* Display buttons side by side */
  }

  .lc-block a.btn {
      width: 200px; /* Each button takes up 40% of the container width */
      font-size: 14px; /* Reduce font size for smaller screens */
      padding: 10px 20px; /* Adjust padding for smaller buttons */
  }
}
/*--------------------------------------------------------------
# Carousel
--------------------------------------------------------------*/

.carousel-item {
  height: 500px;
}
.carousel-item img {
  height: 100%;
  width: 100%;
  object-fit: fill;
}

@media (max-width: 420px) {
  .carousel-item {
    height: 300px;
    /* Adjust the height for mobile screens */
  }
  .carousel-item img {
    object-fit: fill; /* Ensures the image covers the container */
  }}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  background-color: #F4F3FD;
  padding: 40px 0;
  overflow: hidden;
}

/*-------------------------------
Sections Header
--------------------------------*/
.section-header {
  margin-bottom: 30px;
}

.section-header h2 {
  font-size: 40px;
  color: #4069E5;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  padding-bottom: 20px;
}

.clients-section-header h2 {
  font-size: 40px;
  color: #4069E5;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
}

.testimonial-section-header h2 {
  font-size: 40px;
  color: #4069E5;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  padding-block: 20px;
  margin-top: 40px;
}
.news-section-header h2 {
  font-size: 40px;
  color: #4069E5;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  padding-block: 20px;
  margin-top: 40px;
}



.section-header p {
  padding: 0;
  margin: 0;
}


  /*--------------------------------------------------------------
  # Team
  --------------------------------------------------------------*/
.card-title,
.card-text,
.team-card-text {
    font-family: 'Inter', sans-serif;
} 

.team-card{
  background-color: #8fe5ff;

}


  /*--------------------------------------------------------------
  # Services
  --------------------------------------------------------------*/
  .custom-services-card {
    padding-inline: 10px;
    height: 200px; /* Match the height of the image */
}

.custom-services-card .bg-image {
    height: 200px; /* Ensure the background image covers the entire card */
    background-size: cover;
    background-position: center;
}



/* Adjust the width of the owl carousel */
.services-carousel {
  margin: 0 auto; /* Center the carousel horizontally */
}

.services-carousel .owl-item {
  padding-inline: 10px;
}

.services-card {
  /* width: 360px; */
  height: 400px; /* Allow height to adjust based on content */
  margin: 0 auto; /* Center the card horizontally */
}

.services-card-wrapper {
  margin-bottom: 20px; /* Add some spacing between cards */
  width: 100%;
}

.services-card-body {
  height: 200px; /* Limit the maximum height of the card body */
  overflow: hidden; /* Hide overflow text */
  background-color: #C9DBEB ;
}

.services-card img {
  max-width: 100%; /* Ensure images fit within the card */
  height: 200px; /* Allow images to scale proportionally */
  object-fit: cover;
}

.services-card-title {
  color: #000;
  margin-block: 20px;
  border: none;
  border-radius: 0;
  transition: box-shadow 0.3s;
}

.services-card-text {
  color: #000;
}


.services-card:hover {
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
}


  /*--------------------------------------------------------------
  # Projects
  --------------------------------------------------------------*/
  .team .projects-carousel .item {
    margin: 0 15px; /* Gap between items */
}
.section-content {
  padding: 40px 0;
  align-items: center;
}

.section-header {
  text-align: left;
  font-family: 'Epilogue', sans-serif;
  font-weight: 600;
  font-size: 3rem;
  margin-bottom: 20px;
}

.section-paragraph {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  margin-top: 20px;
}

.image-placeholder {
  text-align: center;
}

.image-placeholder img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.project-card {
    background-color: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.project-card .bg-image {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.project-card-body {
    padding: 20px;
    height: 170px;
    position: relative;
}

.project-card .card-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.project-card .card-text {
    font-size: 1rem;
    color: #666;
}

.project-card .btn-primary {
    background-color: #007bff;
    border: none;
    padding: 10px 20px;
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 991px) {
    .container.py-6 {
        margin-block: 0;
    }
    .lc-block {
        margin-bottom: 20px;
    }
    .lead {
        font-size: 14px;
    }
    
    .flex-lg-row-reverse {
      flex-direction: row;
  }
}

@media (max-width: 500px) {
    iframe {
        height: 300px;
        width: 325px;
    }
}




  /*--------------------------------------------------------------
  # Clients
  --------------------------------------------------------------*/
  .tech__container img {
    width: 200px; /* Set a fixed width */
    object-fit: cover;
    height: 200px; /* Maintain aspect ratio */
}
@media (max-width: 768px) {
  .tech__container img {
      width: 100px;
      height: 100px; /* Adjust width for smaller screens */
  }
}
.subsection-gap{
  color: black;
  margin-bottom: 1rem;
}

.client-name {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 5px;
  box-sizing: border-box;
  font-size: 14px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.client-name:hover {
  cursor: pointer; /* Add cursor pointer on hover */
}

.tech__container:hover .client-name {
  opacity: 1;
}

  /*--------------------------------------------------------------
  # Testimonials
  --------------------------------------------------------------*/
  .snip1533 {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  color: #9e9e9e;
  display: inline-block;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  margin: 35px 10px 10px;
  max-width: 310px;
  min-width: 250px;
  height: 350px;
  position: relative;
  text-align: center;
  width: 100%;
  background-color: #ffffff;
  border-radius: 5px;
  border-top: 5px solid #4168E5;
}

.snip1533 *,
.snip1533 *:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}

.snip1533 figcaption {
  padding: 13% 10% 12%;
}

.snip1533 figcaption:before {
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  color: #4168E5;
  content: "\f10e";
  font-family: 'FontAwesome';
  font-size: 32px;
  font-style: normal;
  left: 50%;
  line-height: 60px;
  position: absolute;
  top: -30px;
  width: 60px;
}

.snip1533 h3 {
  color: #3c3c3c;
  font-size: 20px;
  font-weight: 300;
  padding-top: 5rem;
  margin: 10px 0 5px;
}

.snip1533 h4 {
  font-size: 20px;
  font-weight: 400;
  margin: 0;
  opacity: 0.5;
}

.snip1533 blockquote {

  height: 120px;
  font-style: italic;
  font-weight: 300;
  margin: 0 0 20px;
}
/* Media query for smaller screens */
@media (max-width: 768px) {
  .snip1533 {
      max-width: none;
      min-width: auto;
      width: 100%; /* Adjust width as needed */
      margin: 20px auto; /* Adjust margin as needed */
      height: 270px; /* Auto height for screens under 768px */
      font-size: 14px; /* Decreased font size for smaller screens */
  }
}

@media (max-width: 500px) {
  .snip1533 {
      font-size: 12px; /* Further decreased font size for screens under 400px */
  }
  .snip1533 p{
      margin-top: 10px;
  }
  .snip1533 h3 {
    color: #3c3c3c;
    font-size: 14px;
    font-weight: 300;
    line-height: 0px;
    padding-top: 2rem;
    margin: 10px 0 5px;
  }
  
  .snip1533 h4 {
    font-size: 12px;
    font-weight: 400;
    margin: 0;
    opacity: 0.5;
  }
}




  /*--------------------------------------------------------------
  # Footer
  --------------------------------------------------------------*/
.footer-head {
  color: #4069E5;
}



  /*--------------------------------------------------------------
  # Teams Page
  --------------------------------------------------------------*/

  @import url(//fonts.googleapis.com/css?family=Montserrat:300,400,500);
  .team2 {
    font-family: "Montserrat", sans-serif;
    color: #8d97ad;
    font-weight: 300;
  }
  
  .team2 h1,
  .team2 h2,
  .team2 h3,
  .team2 h4,
  .team2 h5,
  .team2 h6 {
    color: #3e4555;
  }
  
  
  @media (max-width:400px) {
    .tpage-card {
      margin-bottom: 20px;
      margin-left: 30px;
      text-align: center;
      width: 300px; /* Set a fixed width for the team cards */
      height: 300px; /* Set a fixed height for the team cards */
      overflow: hidden; /* Hide overflow content */
  }
  }
  
  .tpage-card {
    text-align: center;
    width: 300px; /* Set a fixed width for the team cards */
    height: 300px; /* Set a fixed height for the team cards */
    overflow: hidden; /* Hide overflow content */
}

.tpage-card img {
    width: 100%; /* Make the image cover the entire width of the card */
    height: 200px; /* Make the image cover the entire height of the card */
    object-fit: contain; /* Ensure the image covers the card while maintaining aspect ratio */
}
  
  .team2 h5 {
    line-height: 22px;
    font-size: 18px;
  }
  
  .team2 .font-weight-medium {
    font-weight: 500;
  }
  
  .team2 .subtitle {
    color: #8d97ad;
    line-height: 24px;
    font-size: 13px;
  }
  
  .team2 .pro-pic {
    min-height: 200px;
  }
  
  .team2 .pro-pic .card-img-overlay {
    background: rgba(26, 139, 243, 0.87);
    display: none;
  }
  
  .team2 .pro-pic .card-img-overlay ul {
    top: 50%;
  }
  
  .team2 .pro-pic .card-img-overlay ul li a {
    -webkit-transition: 0.1s ease-in;
    -o-transition: 0.1s ease-in;
    transition: 0.1s ease-in;
  }
  
  .team2 .pro-pic .card-img-overlay ul li a:hover {
    -webkit-transform: translate3d(0px, -5px, 0px);
    transform: translate3d(0px, -5px, 0px);
  }
  
  .team2 .pro-pic:hover .card-img-overlay {
    display: block;
  }



  
  /*--------------------------------------------------------------
  # Projects Page
  --------------------------------------------------------------*/

  #project {
    background: #ffffff;
    padding: 30px 0;
  }
  
  #project #project-flters {
    padding: 0;
    margin: 0 auto 25px auto;
    list-style: none;
    text-align: center;
    border-radius: 50px;
  }
  
  #project #project-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 10px 18px 12px 18px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: #444;
    margin: 0 3px 10px 3px;
    transition: all ease-in-out 0.3s;
    background: #f7f7f7;
    border-radius: 4px;
  }
  
  #project #project-flters li:hover,
  #project #project-flters li.filter-active {
    color: #fff;
    background: #4168E5;
  }
  
  #project #project-flters li:last-child {
    margin-right: 0;
  }
  
  #project .project-item {
    margin-bottom: 30px;
    overflow: hidden;
  }
  
  #project .project-item img {
    object-fit: cover;
    position: relative;
    top: 0;
    width: 100%;
    height: 275px;
    transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  
  #project .project-item .project-info {
    opacity: 0;
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: -50px;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    background: #4168E5;
    padding: 15px 20px;
  }
  
  #project .project-item .project-info h4 {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
  }
  
  #project .project-item .project-info p {
    color: #fff;
    font-size: 14px;
    margin-bottom: 0;
  }
  
  #project .project-item .project-info .preview-link,
  #project .project-item .project-info .details-link {
    position: absolute;
    right: 50px;
    font-size: 24px;
    top: calc(50% - 18px);
    color: rgba(255, 255, 255, 0.6);
    transition: ease-in-out 0.3s;
  }
  
  #project .project-item .project-info .preview-link:hover,
  #project .project-item .project-info .details-link:hover {
    color: #fff;
  }
  
  #project .project-item .project-info .details-link {
    right: 15px;
  }
  
  #project .project-item:hover img {
    top: -30px;
  }
  
  #project .project-item:hover .project-info {
    opacity: 1;
    bottom: 0;
  }



  /*--------------------------------------------------------------
  # Single Project Page
  --------------------------------------------------------------*/





  /*--------------------------------------------------------------
  # Gallery Page
  --------------------------------------------------------------*/

  .container.gallery-container {
    background-color: #fff;
    color: #35373a;
    min-height: 100vh;
}

.gallery-container h1 {
    text-align: center;
    margin-top: 30px; /* Reduced margin-top for smaller screens */
    font-family: 'Droid Sans', sans-serif;
    font-weight: bold;
}

.gallery-container p.page-description {
    text-align: center;
    max-width: 800px;
    margin: 15px auto; /* Reduced margin for smaller screens */
    color: #888;
    font-size: 16px; /* Reduced font size for smaller screens */
}

.tz-gallery {
    padding: 20px; /* Adjusted padding for smaller screens */
}

.tz-gallery .lightbox img {
  width: 100%;
  outline: 1px solid #000;
    object-fit: cover;
    height: 300px;
    margin-bottom: 20px; /* Reduced margin-bottom for smaller screens */
    transition: 0.2s ease-in-out;
    box-shadow: 0 2px 3px rgba(0,0,0,0.2);
}

.tz-gallery .lightbox img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0,0,0,0.3);
}

.baguetteBox-button {
    background-color: transparent !important;
}

/* Target the cards */
.gallery .card {
  height: 330px;
  width: 400px;
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Adding transition for smooth effect */
}

.gallery .card img {
  height: 250px; /* Set the height of the images */
  object-fit: cover; /* Maintain aspect ratio */
}

/* Hover effect */
.gallery .card:hover {
  transform: translateY(-5px); /* Lift the card slightly */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add a subtle box shadow */
}

/* Target the images inside the cards */
.gallery .card-img-top {
  transition: transform 0.3s ease; /* Adding transition for smooth effect */
}

/* Zoom effect on image hover */
.gallery .card:hover .card-img-top {
  transform: scale(1.05); /* Zoom in slightly */
}


@media(max-width: 768px) {
  
    .container.gallery-container {
        border-radius: 0;
    }

    .tz-gallery .lightbox img {
        max-width: 100%; /* Adjusted max-width for smaller screens */
        margin-bottom: 15px; /* Reduced margin-bottom for smaller screens */
    }
}

@media(max-width: 1200px) {
  
    .container.gallery-container {
        border-radius: 0;
    }

    .tz-gallery .lightbox img {
        max-width: 100%; /* Adjusted max-width for smaller screens */
        margin-bottom: 15px; /* Reduced margin-bottom for smaller screens */
        padding-inline: 10px;
    }
}


/* Contact Stats Container */

.stats-container {
  text-align: center;
  padding: 20px 0;
}

/* .stats-container .stat-number {
  font-size: 2rem;
  font-weight: bold;
} */

.stats-container i{
  color: #000;
  font-size: 2rem;
}

.stats-container .stat-text {
  font-size: 1.5rem;
  color: black;
}

.stats-container .stat-num {
  font-size: 1.2rem;
  color: black;
}


@media (max-width: 430px){

  .stats-container {
    text-align: center;
    padding: 20px 0;
  }
  
  /* .stats-container .stat-number {
    font-size: 2rem;
    font-weight: bold;
  } */
  
  .stats-container i{
    color: #000;
    margin-top: 2rem;
    font-size: 2rem;
  }
  
  .stats-container .stat-text {
    font-size: 1.5rem;
    color: black;
  }
}