@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1320px;
    }
}

html {
  scroll-behavior: smooth;
}

body{
	    font-size: 0.85rem;
	    color: #fff;
	    letter-spacing: normal;
}

.btn {
	background: linear-gradient(90deg, #fba119, #fe6b36 35%, #ff3752);
}

.navbar-brand {
    width:200px;
}

.slider_area {
 width: 100%;
 height: 100%;
}

.image_area {
	display: flex;
    justify-content: center; /* Horizontally center */
    align-items: center;    /* Vertically center */
    height: 100vh;  
    width:30%;
    position: relative;  
}

img {
    max-width: 100%;
    height: auto !important;
}


nav.navbar {
	padding: 15px 0;
}

#particles-js {
    position: fixed;
    height: 100vh;
    width: 100%;
    z-index: -1;
}

/* =======================================
The juicy stuff
======================================= */
.filter-section {
    padding:30px 0;
  transition: 1.3s;
}

.controls ul {
    text-align: center;
    margin: 0 0 20px;
    padding: 20px 0;
    background: #ffffff;
    border-radius: 25px;
    border-bottom: 4px solid #ed6767;
    box-shadow: 0px 0px 8px #00000038;
}

.controls ul li {
    color: #343f52;
    opacity: 1;
    background: transparent;
    display: inline;
    padding: 0 5px;
    margin: 0 5px;
    cursor: pointer;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    -webkit-tap-highlight-color: transparent;
}
.controls ul li:hover, .controls ul li.active {
    text-decoration: underline solid white 2px;
    text-underline-offset: 0.5rem;
    opacity: 1;
    color: #ed6767;
}

.clearfix:after {
  display: table;
  content: " ";
  clear: both;
}

.item-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.item-grid .item {
  display: none;
  overflow: hidden;
}

/* Media Queries */
@media (max-width: 768px) {
  .item-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  
  .contact-btn {
      width:70% !important;
  }
  
  .rpt-35 {
      padding-top:35px;
  }
  
  .image_area {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45vh;
    width: 80vw;
    position: relative;
}

.type-effect {
    position: absolute;
    width: 100% !important;
    height: 8%;
    top: 55% !important;
    z-index: 99999;
    right: 0 !important;
    text-align: right;
    /* background: #fff; */
    font-size: 1.5rem;
    color: #fff;
}

}

@media only screen and (min-width: 768.1px) and (max-width: 991px) {
  .item-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}



.contact_page {
  background-image: linear-gradient(to right, #fc8e28, #b82aa2);  
}

 /* Transparent navbar */
.navbar {
  background: transparent;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* Sticky navbar with white background on scroll */
header.sticky {
  background-color: #ffffffcc  !important;
}

/* Navbar items black on scroll */
.navbar.sticky .navbar-brand, .navbar.sticky .nav-link {
  color: black !important;
}

/* Full-Screen Navbar Styles for Mobile */
.navbar-collapse {
  position: absolute;  /* Change to absolute on mobile */
  top: 0;
  left: 0;
  width: 100%;
  height: 80vh;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 1050;
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
  border-radius: 25px;
    border-bottom: 10px solid #ed6767;
}

.navbar-collapse.show {
  transform: translateY(0);
   top: 85%;
}

.show .navbar-nav .nav-item .nav-link {
  color: black !important;
}

.social-icons{
    margin-top:20px;
}

.social-icons a {
    font-size: 32px;
    padding: 10px;
}
/* Navbar links for mobile */

header {
    position: fixed;
    width: 100%;
    z-index: 999;
}

.navbar-nav {
  flex-direction: column;
  width: 100%;
  padding-left: 0;
}

.navbar-nav .nav-item {
  margin: 20px 0;
}

.navbar-nav .nav-link {
  color: white !important;
  font-size: 0.85rem;
}

/* Close button for full-screen menu (only visible on mobile) */
.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  color: white;
  border: none;
  background: transparent;
  cursor: pointer;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        display: contents !important;
        flex-basis: auto;
    }
}

.contact-btn {
    width:20%;
    color:#fff;
    border-radius: 25px !important;
    border:none !important;
}

/* Desktop and Laptop Styles */
@media (min-width: 768px) {
  .navbar-collapse {
    position: static;  /* Set position to static for desktop */
    transform: none;  /* Remove the translateY effect */
    background-color: transparent; /* Remove the background color */
    display: flex; /* Ensure navbar items are displayed */
  }
  
  

  /* Navbar Layout for Desktop and Laptop */
  .navbar {
    justify-content: space-between;  /* Keep space between logo, navbar items, and contact button */
  }

  /* Center navbar items */
  .navbar-nav {
    display: flex !important;
    justify-content: center; /* Center the navbar items */
    flex-grow: 1;  /* Make navbar items take up remaining space */
  }

  /* Contact button aligned to the right */
  .contact-btn {
    display: inline-block !important;
    margin-left: auto;  /* Push the contact button to the right */
  }

  /* Social media icons hidden on desktop */
  .social-icons {
    display: none;
  }

  /* Close button should be hidden on desktop */
  .close-btn {
    display: none;
  }
}

/* Default Navbar Styling */
.navbar-toggler-icon {
  background-color: black;
}


.burger {
    width: 32px;
    position: absolute;
    height: 24px;
    cursor: pointer;
    right: 2%;
    top: 52%;
    z-index: 20;
}

.burger span {
    width: 100%;
    height: 4px;
    background-color: white;
    border-radius: 12px;
    display: block;
    transition: background-color 0.5s ease-in-out;
}

.burger span::before,
.burger span::after {
    content: "";
    width: 100%;
    background-color: white;
    display: block;
    transition: all 0.5s ease-in-out;
    border-radius: 12px;
    height: 4px;
}

.burger span::before {
    transform: translateY(-10px);

}

.burger span::after {
    transform: translateY(10px);
    margin-top: -4px;
}


.burger.active span {
    background-color: transparent;
}

.burger.active span::before {
    transform: rotateZ(45deg) translateY(0);
}

.burger.active span::after {
    transform: rotateZ(-45deg) translateY(0);
}

.card {
    padding: 25px;
    margin-bottom: 20px;
}

.client_logo_swiper .swiper-slide {
    display: flex !important;
    justify-content: center;
    align-items: center;
   
    height: auto !important;
    padding: 20px;
    box-sizing: border-box;
    transition: transform 0.3s ease;
    background: #fff;
    border-radius:25px;
}

.mt-20 {
  margin-top: 20px;
}

.testimonial_swiper .swiper-slide {
    position: relative;
    transition-property: transform;
    display: block;
    display: flex;
    height: auto;
    background: #fff;
    align-items: center;
    border-radius:25px;
}


.testimonial_swiper .card {
     box-shadow:none; 
     border: none;
     background:none;
}

.height-700 {
    padding: 25vh 0 20vh 0 !important;
}

section  {
    padding:80px 0;
}


.image-wrapper_new {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
    width: 100%;
    overflow: hidden;
    text-align: center;
    margin: 10px 0;
    padding: 20px;
}

.client-image {
    max-width: 100%;
    max-height: 100%; /* Maintain aspect ratio */
    object-fit: contain; /* Ensures the entire image is visible */
}

.our-work .item h1{
    font-size: 20px;
    text-align: center;
    padding: 10px 0;
    color: #343f52;

} 

.our-work .item img {
    border-radius:25px;
}


.our-work-section {
    background:#fff;
}

.icon-box {
    padding:15px;
}
.icon-box .icon {margin-bottom:20px;}

.overlay-blue.height-auto.background-bottom:after {
    background-image: url(/img/nnn.png);
    width: 100%;
    position: absolute;
    top: calc(100% - 10px);
    left: 0;
    right: 0;
    content: "";
    height: 400px;
    z-index: 1;
    top: calc(100% - 400px);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}

