@charset "utf-8";
/* CSS Document */

/* Mobile utilities: apply up to 640px wide screens */
@media (max-width: 640px) {
  /* Horizontal padding (left & right) */
  .px-5 {
    padding-left: 1.25rem;  /* ~20px */
    padding-right: 1.25rem; /* ~20px */
  }

  /* Vertical padding (top & bottom) */
  .py-5 {
    padding-top: 1.25rem;   /* ~20px */
    padding-bottom: 1.25rem;/* ~20px */
  }
}


.navbar .dropdown {
  position: relative; /* Ensures dropdown-menu is positioned relative to this */
}

.navbar .dropdown-menu {
  top: 100%;       
  left: 0;             
  margin-top: 0.5rem;  
  position: absolute;
  z-index: 999;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateY(10px);
  visibility: hidden;
}

.nav-item.dropdown .nav-link::after {
  display: none;
}


.transition-icon {
  transition: transform 0.3s ease-in-out;
}


.nav-item:hover .transition-icon, 
.nav-item:focus-within .transition-icon {
  transform: rotate(90deg); 
}


.dropdown-menu {
  width: 300px;
  padding: 1rem 1.25rem;
  border: none;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}


.dropdown-menu a {
  text-decoration: none;
  color: #1f1f1f;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem;
  border-radius: 0.75rem;
  transition: background-color 0.2s ease;
}

.dropdown-menu a:hover {
  background-color: rgba(0, 0, 0, 0.03);
}


.dropdown-menu .icon {
  font-size: 1.5rem;
  background-color: #f5f5f5;
  padding: 0.6rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}


.dropdown-menu .text h5 {
  margin: 0;
  font-size: 1rem;
  color: #333;
}

.dropdown-menu .text div {
  font-size: 0.9rem;
  color: #555;
}


@media (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: flex;
  }

  .dropdown-menu.show {
    display: flex;
  }
}

.navbar .dropdown-menu {
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateY(10px);
  visibility: hidden;
  position: absolute;
  z-index: 999;
}

.navbar .dropdown:hover .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}



.vertical-dropdown {
  width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}


.vertical-dropdown .dropdown-item {
  display: block;
  padding: 0.75rem;
  border-radius: 0.75rem;
  position:relative;
  transition: background-color 0.2s ease;
  color: #1f1f1f;
  text-decoration: none;
}

.vertical-dropdown .dropdown-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 25%;       /* centers vertically */
  height: 50%;    /* half the item’s height */
  border-left: 3px solid #333;
  opacity: 0;     /* start invisible */
  transform: scaleY(0); /* collapsed */
  transform-origin: top; /* grow from top down */
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.vertical-dropdown .dropdown-item:hover::before {
  opacity: 1;
  transform: scaleY(1); /* expand smoothly */
}
.vertical-dropdown .dropdown-item:hover {
  background-color: rgba(0, 0, 0, 0.03);
}

/* Headline */
.vertical-dropdown h6 {
  margin: 0;
  font-weight: 700;
  font-size: 1rem;
  color: #333;
}

/* Subtext */
.vertical-dropdown small {
  font-size: 0.85rem;
  color: #666;
}


#active {
  color: #2cdd9b;
}

.container-separator {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.hero-section {
  padding: 50px 20px;
  margin-top: 70px;
  border-radius: 30px;
}

.hero-content {
  margin-top: 70px;
}

@media (max-width: 576px) {
  .hero-content {
    margin-top: 0;
  }

}


.align-items-start {
  padding: 15px;

}

.align-items-start:hover {
  padding-right: 15px;
  border: 2px solid grey;
  transition-delay: 0.05s;
  transition-duration: 0.5s;
}

.social-media {
  background-color: #fff;
  color: #2cdd9b;
  border-radius: 5px;
  width: 50%;
  margin-bottom: 10px;
}

.social-media:hover {
  background-color: #343a40;
  color: #fff;
}

/*Footer Section*/
.footer {
  background-color: #121212;
  color: #fff;
  font-size: 0.95rem;
  position: relative;
}

.footer-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #525252;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.footer-links li {
  margin-bottom: 0.4rem;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.9;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #2bdc9d; /* Bootstrap primary blue */
}

.footer-text {
  font-size: 0.9rem;
  opacity: 0.9;
}

.footer-separator {
  border-color: #444;
}

.footer-bottom-text {
  font-size: 0.85rem;
  color: #cccccc;
}

.footer-social a {
  color: #ffffff;
  font-size: 1rem;
  margin-left: 1rem;
  transition: color 0.3s ease;
}

.footer-social a:first-child {
  margin-left: 0;
}

.footer-social a:hover {
  color: #0d6efd;
}


.list-unstyled {
  color: #5a5e63;
  list-style: none;
  font-size: 1rem;
  padding: 1px;

}

.contact-icon {
  background-color: rgba(44, 221, 155, 0.10);
  padding: 5px 9px 8px 8px;
  border-radius: 5px;
  margin-bottom: 2px;
  color: #2cdd9b;
}

.contact-icon:hover {
  background-color: #2cdd9b;
  color: #fff;
}

.client-section {
  margin: 40px 0;
}

/*===========================
about-01 css
===========================*/

.aboutus-content {
  padding-left: 0;
  padding-right: 0;
}

.about-one {
  background-color: var(--light-3);
}

.service-one {
  background-color: var(--light-3);
  padding-bottom: 60px;
}

.about-area {
  background-color: transparent;
  padding: 50px 0;
}

.about-one .single-about-items {
  margin-top: 20px;
  padding: 35px;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow-2);
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.about-one .single-about-items:hover {
  box-shadow: var(--shadow-4);
  color: #fff;
  background: #2cdd9b;
}

.about-one .single-about-items .items-icon {
  width: 70px;
  height: 70px;
  line-height: 85px;
  text-align: center;
  border-radius: 50px;
  background-color: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-2);
}

.about-one .single-about-items .items-icon i {
  font-size: 32px;
  color: #2cdd9b;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-one .single-about-items .items-icon {
    max-width: 90px;
  }
}

@media (max-width: 767px) {
  .about-one .single-about-items .items-icon {
    max-width: 80px;
  }
}

.about-one .single-about-items .items-content {
  margin-top: 32px;
}

@media only screen and (min-width: 1400px) {
  .about-one .single-about-items .items-content {
    padding-right: 45px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .about-one .single-about-items .items-content {
    padding-right: 35px;
  }
}

.about-one .single-about-items .items-content .items-title {
  color: var(--black);
  margin-bottom: 15px;
  font-weight: 600;
}

.about-one .single-about-items .items-content .text {
  color: var(--dark-3);
}

/*PORTFOLIO*/
.portfolio-area {
  background-color: transparent;
  margin: 30px 0;
}

.portfolio-section {
  padding: 30px;
  margin-top: -200px;
}

.portfolio-header {
  margin-top: 50px;
  margin-bottom: 20px;
}

.portfolio-title {
  margin-bottom: 30px;
}

/*CONTACT FORM*/
.gradient-brand-color {
  color: #fff;
  background: #2cdd9b;
  background: -webkit-linear-gradient(legacy-direction(to right), #2cdd9b 0%, #1dc8cc 100%);
  background: -webkit-gradient(linear, left top, right top, from(#2cdd9b), to(#1dc8cc));
  background: -webkit-linear-gradient(left, #2cdd9b 0%, #1dc8cc 100%);
  background: -o-linear-gradient(left, #2cdd9b 0%, #1dc8cc 100%);
  background: linear-gradient(to right, #2cdd9b 0%, #1dc8cc 100%);
}

.contact-info__wrapper {
  overflow: hidden;
  border-radius: 5px 5px 0 0
}

@media (min-width: 1024px) {
  .contact-info__wrapper {
    border-radius: 0 5px 5px 0;
    padding: 2rem !important
  }
}

.contact-info__list span.position-absolute {
  left: 0
}

.z-index-101 {
  z-index: 101;
}

.list-style--none {
  list-style: none;
}

.contact-form_wrapper {
  background-color: #fff;
  border: 1px solid #f4f4f4;
  border-radius: 5px 0 0 5px;
}

.shadow-lg,
.shadow-lg--on-hover:hover {
  box-shadow: 0 1rem 3rem rgba(132, 138, 163, 0.1) !important;
}

.form-section {
  margin: 50px 0;
}

.form-select {
  display: block;
  width: 100%;
  padding: .6125rem 3rem .6125rem 1rem;
  -moz-padding-start: calc(1rem - 3px);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #51596c;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2351596C' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px 12px;
  border: .0625rem solid rgba(0, 34, 28, .1);
  border-radius: .3125rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

select {
  text-transform: none;
}

select {
  word-wrap: normal;
  border:none;
  width: -webkit-fill-available;
}

:focus {
  outline-color: rgba(0, 128, 96, .5);
}

.form-select {
  cursor: pointer;
}

.form-select option {
  background-color: #fff;
  color: #343a40;
  border: none;
  font-size: 16px;
}

.form-select:focus {
  border-color: rgba(140, 152, 164, .25);
  outline: 0;
}

.option {
  border: none;
  padding: 20px;
}

.position-absolute {
  background-color: #fff;
  color: #2cdd9b;
  padding: 4px 8px;
  border-radius: 50px;
}

/*STATS*/
.stats {
  color: #2cdd9b;
  border-left: 4px solid #f4f4f4;
  margin-bottom: 20px;
  padding: 20px;
}

.stats p {
  color: #fff;

}

.text-top {
  font-weight: 600;
  color: #2cdd9b;
}

.icon-start {
  color: #2cdd9b;
  background: rgba(44, 221, 155, 0.10);
  padding: 8px 12px;
  width: 100px;
  margin: 20px 10px;
  border-radius: 10px;
}

.section-title {
  color: #2cdd9b;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 50px;
  text-transform: capitalize;
  position: relative;
  display: inline-block;
  padding: 0;
  opacity: 0;
  animation: fadeInTitle 1s ease-in forwards;
}

/* Subtle underline accent */
.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 40%;
  height: 2px;
  background-color: #2cdd9b;
  opacity: 0;
  animation: fadeInUnderline 1s ease-in forwards 0.3s;
}

/* Fade-in keyframes */
@keyframes fadeInTitle {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUnderline {
  from { opacity: 0; width: 0; }
  to { opacity: 1; width: 40%; }
}


.new-container {
  background-color: #f4f4f4;
  padding: 200px 0;
  width: 100%;
}

.inner-page-header {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding:120px 0;
  margin-bottom: 50px;
}

.inner-page-header-2 {
 background-image: url("../images/cloud-forest-landscape.jpg"); /* Update this path to your image */
  background-size: cover; /* Cover the entire section */
  padding-top: 120px;
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Prevent the image from repeating */
  position: relative; /* Keep the positioning for absolute elements inside */
  margin-bottom: 50px; /* Maintain bottom margin */
  color: white; /* Optional: Set text color for contrast */
}

.inner-page-header-2 h1 {
  font-size: 1.8rem;
  color: #fff;
  text-align: center;
}

.inner-page-header-2 p {
  color: #fff;
  text-align: center;
}

.inner-page-header h1 {
  font-size: 1.8rem;
  color: #14c38e;
}

/*service section*/
.service-section {
  position: relative;
}

.icon {
  height: 60px;
  background-color: rgba(44, 221, 155, 0.10);
  color: #2cdd9b;
  border-radius: 50px;
  width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}


/* Gallery */

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  margin: 20px 0;
}

.gallery-item img {
  width: 100%;
  border-radius: 30px;
  height: auto;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.5)
}

.gallery-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: #2cdd9b;
  color: #fff;
  padding: 30px;
  transition: opacity 0.3s ease;
  opacity: 0;
  width: 100%;
}

.gallery-item:hover .overlay {
  opacity: 0.9;
}


/*quote*/
.background-container {
  background: #2cdd9b;
  margin: 50px 0;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  height: 200px;
  /* Adjust height as needed */
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.quote {
  max-width: 80%;
  /* Adjust as needed */
  text-align: center;
  font-size: 24px;
  /* Adjust font size as needed */
}

.call-to-action{
background-color: #2cdd9b;
border-radius:20px;
padding:20px;
}


.link-secondary:hover {
  background-color: #2cdd9b;
  color: #fff;
  padding: 2px 4px;
  border-radius: 3px;
}

.workdrive {
  text-align: justify;
}

.container-workdrive {
  margin-bottom: 50px;
  margin-top: 50px;
  border-bottom: 1px solid #f4f4f4;
}

.design-process-1 {
  color: #fff;
  padding: 30px;
  background: #2cdd9b;
  border: 1px solid #fff;
  transition: background-color 0.3s ease;
  transition: transform 0.3s ease;
  border-radius: 10px;
}

.design-process-2 {
  color: #fff;
  padding: 30px;
  background: #495057;
  border: 1px solid #fff;
  transition: background-color 0.3s ease;
  transition: transform 0.3s ease;
  border-radius: 10px;
}

.design-process-3 {
  color: #fff;
  padding: 30px;
  background: #495057;
  border: 1px solid #fff;
  transition: background-color 0.3s ease;
  transition: transform 0.3s ease;
  border-radius: 10px;
}

.design-process-4 {
  color: #fff;
  padding: 30px;
  background: #2cdd9b;
  border: 1px solid #fff;
  transition: background-color 0.3s ease;
  transition: transform 0.3s ease;
  border-radius: 10px;
}

.design-process-1:hover,
.design-process-2:hover,
.design-process-3:hover,
.design-process-4:hover {
  background-color: #343a40;
  transform: translateY(-5px);
  /* Move up by 5px */
  transition-duration: 0.9s ease;
}

.recent-posts {
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #f4f4f4;

}

.recent-posts:hover{
  background-color: #2cdd9b;
  transition:0.6s;
  color: #fff;
}


.success-sms {
  background-color: #2cdd9b;
  color: fff;
  text-align: justify;
  padding: 50px;
}


.icon {
  font-size: 30px;
  background-color: rgba(44, 221, 155, 0.10);
  color: #2cdd9b;
  border-radius: 50px;
  width: 60px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}


.icon:hover {
  -webkit-transition: all 1s ease;
  transition: all 1s ease-in-out;
  justify-content: center;
  align-items: center;
}

.service-card:hover {
  transform: translateY(-15px);
}

.service-card:hover .icon {
  background-color: #2cdd9b;
  color: #fff;
}

@media (max-width: 1198px) {
  .service-card {
    height: 450px;
  }

  .service-card-body {
    padding: 32px;
  }
}


/* Blog Section */
.pagination {
  margin-top: 20px;
  text-align: center;
  justify-content: center;
}


.btn-pagination {
  margin: 0 5px;
  padding: 3px 13px;
  border-radius: 5px;
  display: flex;
  border: 2px solid #f4f4f4;
}

.btn-pagination.active {
  background-color: #2cdd9b;
  border: 2px solid #2cdd9b;
  color: white;
}

.btn-pagination:hover {
  background-color: #212529;
  border: 2px solid #212529;
  color: white;
}

.card {
  border: 1px solid #eef0f3;
  background-color: #fff;
  height: auto;
  border-radius: 20px;
  transition: transform 0.3s ease;
}


.card-2 {
    padding: 15px 3px;
    color: #212529;
    margin-bottom: 10px;
    background-color: #f4f4f4;
    height: auto;
    border-radius: 10px;
}

.card-2:hover {
  color: #fff;
}


.card:hover {
  transform: translateY(-5px);
}

.card-img {
  object-fit: cover;
  margin: 0;
}

.card-body {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 0 20px 0 20px;
  text-decoration: none;
}

.card p {
  margin-top: 0;
}

.card-title {
  margin-top: 20px;
  text-transform: capitalize;
  font-weight: 700;
  font-size: 1.2rem;
  /* Adjust title font size */
}

@media (max-width: 576px) {
  .card-title {
    font-size: 1.5rem;
    font-weight: 500;
  }
}

.card-text {
  margin-bottom: 0;
  margin-top: 0;
  font-size: 1rem;
  /* Adjust content font size */
  color: #212529;
}

.card-text:hover {
  color: #212529;
}

.card-link:hover {
  text-decoration: none;
  /* Remove underline on hover */
}

.btn-primary {
background: #333;
padding: 6px 10px;
font-size: 14px;
border-radius: 5px;
color: #ffffff;
position: relative;
transition: background-color 0.9s ease;
overflow: hidden;
}

.btn-primary::after {
  content: '›';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) translateX(0);
  opacity: 0;
  font-size: 16px;
  transition: opacity 0.3s ease;
}

/* Hover triggers opacity and animation */
.btn-primary:hover {
  background-color: #282c30;
  color: #fff;
  padding-right: 35px;
}

.btn-primary:hover::after {
  opacity: 1;
  animation: arrowLoop 1s ease-in-out infinite;
}

/* Keyframes for looping arrow movement */
@keyframes arrowLoop {
  0% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(-50%) translateX(6px);
  }
  100% {
    transform: translateY(-50%) translateX(0);
  }
}


.blog-header {
  margin-bottom: 50px;
}

/* Add margin between cards */
.mb-4 {
  margin-bottom: 20px;
}


.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.overlay:hover {
  opacity: 1;
}

.featured-projects {
  margin-top: 40px;
  margin-bottom: 40px;
}

.padding-portfolio {
  padding-left: 0;
  padding-right: 0;
}

.portfolio-img {
  border-radius: 10px 0 0 10px;
}

.portfolio-img-1 {
  border-radius: 0 10px 10px 0;
}

@media (max-width: 576px) {
  .portfolio-img {
    border-radius: 20px;
  }

  .portfolio-img-1 {
    border-radius: 20px;
  }

  .padding-portfolio {
    padding: 20px;
  }
}

/* Custom CSS for carousel controls */

.carousel-control-next {
  right: 0;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  border-radius: 50px;
  outline: black;
  background-color: #17a2b8;
  border:2px solid #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 25px 25px;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
  border-radius: 50px;
  background-color: #17a2b8;
  border:2px solid #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 25px 25px;
}

.carousel-featured {
  padding: 10px 0;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
  background-color: #17a2b8;
  padding: 20px;
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-color: #17a2b8;
  padding: 20px;
}

.blog-section-title {
  margin-bottom: 100px;
}

.round{
  border-radius:10px;
}

/* Footer Section */
.newsletter-input {
  margin-right: 5px;
  width: 60%;
  display: block;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 20px 0 0 20px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-newsletter {
  display: inline-block;
  font-weight: 400;
  color: #343a40;
  background-color: #e5cb36;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid #e5cb36;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0 20px 20px 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-newsletter:hover {
  color: #343a40;
  background-color: #fff;
  border: 1px solid #fff;
}

.copyright-section {
  padding: 20px 0;
  background-color: #282c30;
  border-top: 1px solid rgb(64 64 64 / 60%);
  color: #f4f4f4;
}

.footer-section {
  background: #282c30;
  margin: 50px 0 0;
}

.newsletter-field {
  margin-left: 0;
}

/* End Footer Section */


/* Floating Portfolio Section */

.portfolio-home {
  padding-top: 50px;
  border-radius: 20px;
  padding-bottom: 30px;
}

.contact-title {
  padding: 0;
  position: relative;
}

.advertisement-card {
  padding: 40px 20px 40px 30px;
  border-radius: 5px;
  color: #fff;
  background: rgb(221, 15, 215);
  background: linear-gradient(48deg, rgba(221, 15, 215, 1) 0%, rgba(255, 74, 0, 1) 100%);
}

.advertisement-card-2 {
  padding: 40px 20px 40px 30px;
  background-color: rgba(200, 245, 229, 0.58);
  border-radius: 5px;
  color: rgba(200, 245, 229, 0.58);
  text-align: center;
  margin-top: 20px;
  border: 3px dotted rgba(200, 245, 229, 0.58);
}

.btn-advert {
  background-color: #fff;
  padding: 10px;
  border-radius: 5px;
  font-size: 14px;
  color: #212529;
}

.sidebar {
  padding: 10px;
  border-radius: 10px;
  height: auto;
}

.web-links {
  text-decoration: none;
}

.web-links:hover {
  text-decoration: none;
  color: #fff;
}

.bc-banner {
  border-radius: 20px;
  position: relative;
  color: #fff;
  background: #b741f3;
  background: -webkit-linear-gradient(legacy-direction(to right), #b741f3 0%, #cc1d86 100%);
  background: -webkit-gradient(linear, left top, right top, from(#b741f3), to(#cc1d86));
  background: -webkit-linear-gradient(left, #b741f3 0%, #cc1d86 100%);
  background: -o-linear-gradient(left, #b741f3 0%, #cc1d86 100%);
  background: linear-gradient(to right, #b741f3 0%, #cc1d86 100%);
  overflow: hidden;
}

.bc-banner a {
  text-decoration: none;
  color: #fff;
}

.bc-banner a:hover {
  opacity: 0.8;
}

.bc-banner-header {
  background-color: #fff;
  position: relative;
  z-index: 2;
  padding: 1rem;
}

.bc-banner-body {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.btn-ad {
  background-color: #fff;
  color: #b741f3;
  padding: 10px;
  border-radius: 5px;
}

.btn-ad:hover {
  background-color: #000;
  color: #fff;
}

.padding-LR {
  padding-left: 0;
  padding-right: 0;
}

.padding-TP {
  padding-top: 0;
  padding-bottom: 0;
}

.padding-RL {
  padding-left: 0;
  padding-right: 20px;
}

.form-PD {
  padding: 2rem;
}

/* Cookie Consent */

#cookieConsent {
  position: fixed;
  display: none;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  text-align: center;
  border-radius: 10px;
  margin: 15px;
  padding: 10px 20px;
  z-index: 1000;
  width: auto;
}

@media (max-width: 576px) {
  #cookieConsent {
    left: 0%;
    transform: translateX(0%);
  }
}

#cookieConsentBox .button {
  margin-left: 15px;
  padding: 5px 20px;
  border: none;
  border-radius: 10px;
  background-color: #14C38E;
  color: white;
  cursor: pointer;
}

#cookieConsentBox .button {
  background-color: #14C38E;
}

.learnmore {
  color: #14C38E;
}

.learnmore:hover {
  color: #fff;
}

/* Downloads */
.download-item {
  display: block;
  position: relative;
  transition: transform 0.3s ease;
  text-decoration: none;
  /* Remove underline */
  color: inherit;
  /* Inherit text color */
  border: 1px solid #f4f4f4;
  /* Optional border */
  border-radius: 10px;
  margin-bottom: 10px;
  /* Space between items */
}

.download-item p {
  padding: 15px;
  /* Optional padding */
}

.download-item:hover {
  transform: scale(1.05);
}

.preview-image {
  position: relative;
}

.preview-image img {
  max-width: 100%;
  padding: 0;
  border-radius: 10px 10px 0 0;
  height: auto;
}

.file-format {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 5px;
  border-radius: 5px;
}

/* Different colors for file formats */
.file-format.pdf {
  background-color: #dc3545;
  color: #fff;
  padding: 5px;
  font-size: 12px;
}

.file-format.doc {
  background-color: #008cff;
  color: #fff;
  padding: 5px;
  font-size: 12px;

}

.file-format.xls {
  background-color: #0de0a7;
  color: #fff;
  padding: 5px;
  font-size: 12px;

}

.file-format.eps {
  background-color: #e0450d;
  color: #fff;
  padding: 5px;
  font-size: 12px;

}

.file-format.ai {
  background-color: #3c0202;
  color: #fff;
  padding: 5px;
  font-size: 12px;

}

.file-format.svg {
  background-color: #7FC6A4;
  color: #fff;
  padding: 5px;
  font-size: 12px;

}

.file-format.zip {
  background-color: #8338ec;
  color: #fff;
  padding: 5px;
  font-size: 12px;

}

.file-format.psd {
  background-color: #387ADF;
  color: #fff;
  padding: 5px;
  font-size: 12px;

}

/* Media queries for responsive design */
@media (min-width: 768px) {
  .download-item {
    width: calc(25% - 20px);
    display: inline-block;
    vertical-align: top;
    margin-right: 10px;
    margin-left: 10px;
  }
}

@media (max-width: 767px) {
  .download-item {
    width: 100%;
  }
}

.search-container {
  display: flex;
  justify-content: center;
  /* Center the content horizontally */
  align-items: center;
  /* Center the content vertically */
}

.search-container form {
  display: flex;
  width: 100%;
  align-items: flex-end;
  max-width: 600px;
  /* Adjust the maximum width as needed */
}

.search-container input.form-control {
  flex-grow: 1;
  /* Make the input take up the remaining space */
  margin-right: 10px;
  /* Space between the input and button */
}

.search-container button.btn {
  flex-shrink: 0;
  /* Prevent the button from shrinking */
}

#search-suggestions {
  display: none;
  position: absolute;
  background-color: #dfdfdf;
  border-radius: 5px;
  z-index: 1;
  width: calc(100% - 60px);
}

#search-suggestions ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

#search-suggestions li {
  padding: 10px;
  list-style: none;
  background-color: #484848;
  cursor: pointer;
}

#search-suggestions li:hover {
  background-color: #35f18d;
  color: #fff;
}

/* DASHBOARD */

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-top: 20px;
}

.grid-item {
  padding: 50px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 8px;
  margin: 5px;
  text-align: center;
  transition: background-color 0.3s;
  text-decoration: none;
}

.grid-item:hover {
  color: #fff;
  background: #2cdd9b;
  background: -webkit-linear-gradient(legacy-direction(to right), #2cdd9b 0%, #1dc8cc 100%);
  background: -webkit-gradient(linear, left top, right top, from(#2cdd9b), to(#1dc8cc));
  background: -webkit-linear-gradient(left, #2cdd9b 0%, #1dc8cc 100%);
  background: -o-linear-gradient(left, #2cdd9b 0%, #1dc8cc 100%);
  background: linear-gradient(to right, #2cdd9b 0%, #1dc8cc 100%);
}

a.grid-item {
  color: inherit;
  text-decoration: none;
}


.logout-section {
  margin-top: 20px;
}

.dashboard-header {
  margin-bottom: 20px;
}

.dashboard-link {
  color: #212529;
}

.dashboard-link:hover {
  color: #fff;
}

.dashboard-icon {
  font-size: 22px;
  margin-bottom: 10px;
  color: #14c38e;
  /* Icon color */
}

.dashboard-icon:hover {
  font-size: 32px;
  /* Adjust the font size */
  margin-bottom: 10px;
  color: #fff;
  /* Icon color */
}

.dashboard-container {
  margin-top: 50px;
}

/*Contact Page*/
.thank-you-message-wrapper {
  padding: 20px;
  background-color: #dff0d8;
  border: 1px solid #d0e9c6;
  border-radius: 4px;
  margin-bottom: 20px;
}

.thank-you-message {
  color: #14C38E;
  font-weight: bold;
}

.error-message {
  color: red;
  font-weight: bold;
}

/*Portfolio Page*/

.portfolio {
  display: flex;
  flex-wrap: wrap;
}

.portfolio .col-md-4 {
  display: flex;
  align-items: stretch;
}

.portfolio-item-inner {
  position: relative;
  margin: 10px;
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.portfolio-item-inner img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  /* Scale the image while maintaining aspect ratio */
  border-radius: 5px;
  flex-grow: 1;
  transition: transform 0.3s ease;
  /* Add transition for smooth animation */
}

.portfolio-item-inner:hover img {
  transform: scale(1.1);
  /* Scale the image to 110% when hovering */
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.portfolio-item-inner:hover .overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
}

.overlay-content h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.overlay-content p {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 300px;
}

.category-filter {
  display: flex;
  justify-content: left;
  margin-bottom: 20px;
}

.filter-button {
  padding: 5px 10px;
  margin: 0 5px;
  border: none;
  border-radius: 5px;
  background-color: #14bf98;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.filter-button:hover {
  background-color: #212529;
}

.filter-button.active {
  background-color: #212529;
}

@media (max-width: 576px) {
  .filter-button {
    padding: 6px 12px;
    margin: 0 2px;
    font-size: 14px;
  }
}

@media (max-width: 400px) {
  .filter-button {
    padding: 4px 6px;
    margin: 0 2px;
    font-size: 14px;
  }
}

/*Larger Section Title*/
.lg-title {
  font-size: 2rem;
  font-weight: 700;
}

@media (max-width: 575.98px) {
  .lg-title {
    font-size: 2rem;
    font-weight: 700;
  }
}

/* DOWNLOAD DETAIL */

.detail-container {
  margin: 60px auto;
}


.detail-container-2 {
  margin-left: 20px;
}

.detail-container p {
  margin-left: 20px 0;
  padding: 20px;
}

.detail-container .btn {
  margin: 0 20px;
}

.suggestions-slider-container {
  margin: 80px 0;
}

.suggestions-slider-container h2 {
  text-align: center;
  margin-bottom: 20px;
}

.suggestions-slider {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.suggestion-item {
  flex: 0 0 calc(33.3333% - 20px);
  /* Adjust this value for responsiveness */
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.suggestion-item:hover {
  border-radius: 8px;
}

.suggestion-image {
  position: relative;

}

.suggest-title {
  padding-bottom: 10px;
  font-weight: 600;
}

.suggestion-image img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.suggestion-image:hover img {
  transform: scale(1.1);
  border-radius: 8px;
}

.title-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #fff;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.412);
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.suggestion-item:hover .title-overlay {
  opacity: 1;
}

.title-overlay p {
  margin: 0;
  font-weight: bold;
  text-align: center;
}

.detail-img {
  max-width: 100%;
  padding: 0;
  border-radius: 10px;
  height: auto;
}

@media (max-width: 768px) {
  .suggestions-slider {
    justify-content: flex-start;
  }

  .suggestion-item {
    flex: 0 0 100%;
    /* Display one item per row on mobile */
  }

  .detail-container h1 {
    margin-top: 20px;
    margin-left: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .detail-container p {
    margin-left: 0;
    padding: 0;
  }

  .detail-container .btn {
    margin: 0;
  }
}

.form-text {
  text-align: center;
}

.connect {
  color: grey;
  border: 2px solid grey;
  border-radius: 20px;
  padding: 8px;
  margin-bottom: 0;
  display: inline-flex;
}

.connect:hover {
  border: 2px solid #2cdd9b;
}

.social-connect {
  color: grey;
  margin-bottom: 5px;
}

.find-us {
  border-width: 50%;
  padding: 20px 0;
}

/* FAQs */
.accordion-header{
  background-color: transparent;
  text-align: left;
  margin-top: 10px;
}

.accordion .btn-link {
  color: #212529;
  font-size: 20px;
  text-align: left;
  font-weight: bold;
}

.accordion-card {
  border-top: 1px solid #dbdfe0;
}

.accordion-body {
  text-align: left;
  border-radius: 20px;
  margin: 10px;
}

@media (max-width: 576px) {
  .accordion .card-header {
    background-color: transparent;
    text-align: left;
  }
}

/* Service Page */
.display-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
  padding: 20px;
}

.display-card {
  border: 1px solid #f4f4f4;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.display-card p {
  text-align: left;
  padding: 0 20px;
}

.display-card h4 {
  text-align: left;
  padding: 0 20px;
  font-size: 20px;
}

.display-btn {
  margin-left: 20px;
}

.display-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px 8px 0 0;
  margin-bottom: 10px;
}

.display-card:hover {
  transform: scale(1.05);
}

@media (min-width: 768px) {
  .display-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .display-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .display-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}


/* Service Detail Section */
.service-detail-page {
  padding: 20px;
}

.service-detail-content {
  border-radius: 8px;
  margin-bottom: 30px;
}

.display-title {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #212529;
}

.service-image {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  margin-bottom: 20px;
}

.service-description,
.service-detail-description {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #495057;
}

.service-price {
  font-size: 1.5em;
  font-weight: bold;
  color: #212529;
  margin-bottom:0;
  width: fit-content;
}

.strikethrough-price{
    color: red;
    font-size: 14px;
    margin-top: 0;
    margin-left:5px;
    background-color: #fff5f5;
    width: fit-content;
    padding: 3px 6px;
    border-radius: 50px;
}

.price-discount{
    color: red;
    font-size: 16px;
    margin-top: 0;
    background-color: #fff5f5;
    width: fit-content;
    margin-left:10px;
    padding: 5px 10px;
    border-radius: 10px;
}

.feature-card .card-body {
  padding: 15px;
  margin-left: 20px;
}

.feature-card .card-title {
  font-size: 1.25em;
  font-weight: bold;
}

.feature-card .card-text {
  font-size: 1em;
}


/* Sidebar Section */
.display-sidebar {
  padding-left: 20px;
}

.sidebar-section {
  border-radius: 10px;
  border: 1px solid #f4f4f4;
  background-color:#fff;
  padding: 40px;
  margin-bottom: 30px;
}

.sidebar-section h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #343a40;
}

.other-services-list {
  list-style: none;
  padding: 0;
}

.other-services-list li {
  margin-bottom: 10px;
  background-color: #f4f4f4;
  padding: 10px;
  border-radius: 5px;
}

.other-services-list li:hover {
  background-color: #14c38e;
  transition: color 0.5s ease-in-out;
}

.other-services-list a {
  color: #212529;
  font-size: 16px;
  line-height: 1.2;
  text-decoration: none;
}

.other-services-list a:hover {
  color: #fff;
  transition: color 0.5s ease-in-out;
}


.display-advertisement img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 15px;
}

.display-advertisement {
  background: linear-gradient(58deg, rgba(131, 58, 180, 1) 0%, rgba(253, 29, 29, 1) 50%, rgba(252, 176, 69, 1) 100%);
  color: #fff;
  border: none;
}

.display-advertisement h3 {
  font-weight: 600;
}

.display-advertisement p {
  line-height: 1.5;
}

.advertisement-btn {
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 50px;
  background-color: #212529;
  color: #fff;
}

.advertisement-btn:hover {
  background-color: #fff;
  color: #212529;
  transition: color 0.8s ease-in-out;
}

/* Error Message */
.error-message {
  display: none;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
  padding: 10px 15px;
  border-radius: 4px;
  margin-top: 10px;
}

/* Success Message */
.success-message {
  display: none;
  background-color: #e4f8f0;
  color: #2bdc9e;
  border: 1px solid #2cdd9b;
  padding: 10px 15px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.s-padding {
  padding: 5px;
}

.card-blog {
  margin: 0 5px 0 5px;
}

.faqs-section {
  padding: 10px 0;
  margin-top: 20px;
}


/* General Styling for Stats Section */
.stats {
  padding: 50px 0;
  text-align: center;
}

.stats .container {
  max-width: 1200px;
  margin: 0 auto;
}

.stat-box-1 {
  padding: 20px;
  margin: 15px 0;
  border-radius: 20px;
  background-image: linear-gradient(to right top, #ff00bd, #ff009f, #ff0081, #ff0065, #fb004b, #f81e44, #f42d3d, #f03937, #f34341, #f64d4b, #f95655, #fb5f5f);
  transition: transform 0.3s ease;
  position: relative;
}

.stat-box-2 {
  padding: 20px;
  margin: 15px 0;
  border-radius: 20px;
  background-image: linear-gradient(to right top, #79e8ff, #42d5ff, #00bfff, #00a8ff, #008ffc, #008efc, #008cfd, #008bfd, #00a2ff, #00b7ff, #00caff, #00dbff);
  transition: transform 0.3s ease;
  position: relative;
}

.stat-box-3 {
  padding: 20px;
  margin: 15px 0;
  border-radius: 20px;
  background-image: linear-gradient(to right top, #34d1f2, #00d8ed, #00dee3, #00e3d5, #00e7c4, #2aebb3, #4bef9e, #69f187, #8ff46d, #b4f550, #d9f431, #fff000);
  transition: transform 0.3s ease;
  position: relative;
}


.stat-box:hover {
  transform: translateY(-5px);
}

.stat-box-header {
  font-size: 2.5em;
  font-weight: 700;
  margin: 10px 0;
  color: #fff;
}

.stat-box p {
  font-size: 1.1em;
  color: #777;
}

/* Icon Styling */
.stat-icon {
  font-size: 3em;
  color: #fff;
  position: absolute;
  top: 10px;
  right: 10px;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .stat-box {
    margin: 15px auto;
  }
}


.table {
  border-collapse: collapse;
  margin: 25px 0;
  font-size: 0.9em;
  font-family: sans-serif;
  min-width: 400px;
}

.table thead tr {
  background-color: #009879;
  color: #ffffff;
  text-align: left;
}

.table th,
.table td {
  padding:5px;
  vertical-align: middle;
  font-size:12px;
}

.table tbody tr {
  border-bottom: 1px solid #dddddd;
}

.table tbody tr:nth-of-type(even) {
  background-color: #f3f3f3;
}

.table tbody tr:last-of-type {
  border-bottom: 2px solid #009879;
}

.table tbody tr.active-row {
  font-weight: bold;
  color: #009879;
}

/* Carousel Indicators */

    .carousel-indicators {
      display: flex;
      justify-content: center;
      gap: 8px; 
      margin-top: 100px; 
  }
  
  /* Style the individual dots */
  .carousel-indicators button {
      width: 12px; 
      height: 12px;
      border-radius: 50%; 
      background-color: #ccc; 
      border: none; 
      transition: background-color 0.3s ease;
  }
  
  /* Active dot color */
  .carousel-indicators .active {
      background-color: #14bf98; 
      border: none;
  }
  
  /* Hover effect */
  .carousel-indicators button:hover {
      background-color: #555;
  }


/* Styling for the client logos section */
.customer-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

/* Individual logo slides */
.customer-logos .logo-slide {
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Style for client logos */
.customer-logos img {
    max-width: 100%;
    border: 1px solid #f4f4f4;
    border-radius: 20px;
    max-height: 100px; /* Adjust based on your design */
    object-fit: contain;
}

/* Slick Slider default adjustments */
.slick-slide {
    padding: 0 10px; /* Spacing between slides */
}

.slick-list {
    overflow: hidden;
}
