/*
project:    LeadsBee
Version:    1.0
Last change:    16/11/20 [fixed Float bug, vf]
Author Name: LeadsBee
Primary use:    Official Site
*/

.container_box {
  background: #fafcfb;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 460px;
  align-content: center;
}

label,
input,
select,
textarea,
button {
  display: block;
  width: 100%;
  margin-top: 15px;
  padding: 10px;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
}

input,
select,
textarea {
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: all 0.3s ease;
  background-color: #f9f9f9;
  padding: 12px 14px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #07c2b2;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(7, 194, 178, 0.1);
  outline: none;
}

button {
  background: linear-gradient(135deg, #07c2b2, #3b595a);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  position: relative;
  overflow: hidden;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(7, 194, 178, 0.3);
}

button:active {
  transform: translateY(0);
}

.hidden {
  display: none;
}

.success {
  color: green;
  margin-top: 10px;
  text-align: center;
}
.error {
  color: red;
  margin-top: 10px;
  text-align: center;
}

/* Loading overlay */
.loading-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.spinner {
  border: 5px solid #f3f3f3;
  border-top: 5px solid #4caf50;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.upi-link {
  display: inline-block;
  margin-top: 15px;
  background: #28a745;
  color: white;
  padding: 10px;
  text-align: center;
  border-radius: 5px;
  text-decoration: none;
}

/*Reset CSS*/
* {
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  font-family: "Roboto", sans-serif;
  scroll-behavior: smooth;
}

a:hover {
  text-decoration: none;
}

/* Global animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInBottom {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease-out forwards !important;
}

/* Ripple effect for buttons */
button {
  position: relative;
  overflow: hidden;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  width: 20px;
  height: 20px;
  pointer-events: none;
  animation: ripple-animation 0.6s ease-out;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}
/* Adding Fonts*/

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&family=Roboto:wght@400;500&display=swap");

.header {
  background: linear-gradient(-40deg, #fffbf1, #ffffff);
  /* padding: 5%; */
}

.Banner {
  height: auto;
  padding: 4% 2%;
  min-height: 480px;
  display: flex;
  align-items: center;
  margin-top: 70px;
}

.message {
  color: green;
  font-weight: bold;
  margin-bottom: 10px;
  display: none; /* Initially hidden */
}

#content {
  transition: opacity 0.3s ease-in-out;
}

/* Header Navigation Styles */
.header-nav {
  min-height: 70px;
}
.navbar-brand img {
  height: 50px;
}
.main-menu ul li {
  margin-left: 26px;
  text-align: center;
  transition: all 0.3s ease;
}
.main-menu ul li a {
  font-family: "Poppins", sans-serif;
  color: #070a57;
  font-weight: 500;
  font-size: 16px;
  position: relative;
  display: inline-block;
  padding: 8px 0;
}

.main-menu ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background: linear-gradient(90deg, #07c2b2, #3b595a);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.main-menu ul li a:hover::after {
  width: 100%;
}

.main-menu ul li:hover {
  transform: scale(1.05);
  transition: 0.3s all ease;
}
button.nav-button {
  background: #07c2b2;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  padding: 5px 10px;
  border: none;
  vertical-align: middle;
  margin-top: -5px;
  border-radius: 5px;
}

/* Header Banner Area Styles */

.container.header-content {
  height: 100%;
}
.highlight {
  color: #ac00fc;
}
.highlight1 {
  font-family: sans-serif;
  font-weight: bold;
  font-size: xx-large;
  padding: 30px;
  text-align: center;
}
.left-content h2 {
  font-family: "Roboto", sans-serif;
  font-size: 60px;
  font-weight: 500;
  color: #070a57;
}
.centralize {
  display: flex;
  align-items: center;
}
.left-content p {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
}
.call-to-action button {
  background: #fbb115;
  border: none;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 500;
  padding: 5px 10px;
  color: white;
}
.call-to-action a {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #fbb115;
  margin-left: -3px;
}
.right-content img {
  /* border-radius: 72%; Makes the image fully rounded */
  /* width: 500px;         Adjust width and height */
  /* height: 500px;*/
  object-fit: cover;
  padding: 0px;
  /* Ensures the image covers the entire area */
}
/* Text design */
.aurora-text {
  position: relative;
  display: inline-block;
  color: white;
  font-size:100%;
  font-weight: bold;
  background: linear-gradient(45deg, #07c2b2, #90ecf3, #30f8e7, #0cf3f3);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  color: transparent;
  animation: auroraGlow 3s infinite linear;
  font-family: "Poppins", sans-serif;
}

.aurora-text::before {
  content: "beautiful";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  -webkit-background-clip: text;
  color: transparent;
  filter: blur(20px);
  opacity: 0;
  z-index: -1;
}

@keyframes auroraGlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* --------- */
/* aura text in sections */
/* Text design */
.aurora-text-sec {
  position: relative;
  display: inline-block;
  color: rgb(172, 208, 211);
  font-size: 100%;
  font-weight: bold;
  background: linear-gradient(45deg, #07c2b2, #00b8be, #00ffea, #80cdd3);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  color: transparent;
  animation: auroraGlowsec 3s infinite linear;
  font-family: "Poppins", sans-serif;
}

.aurora-text-sec::before {
  content: "beautiful";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  -webkit-background-clip: text;
  color: transparent;
  filter: blur(10px);
  opacity: 0;
  z-index: -1;
}

@keyframes auroraGlowsec {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.divider {
  margin: 20px 0;
  border-bottom: 2px solid #07c2b2;
  width: 100%;
}

/* Work process syles */

.process-block {
  text-align: center;
  padding: 10px;
}

.process-block img {
  background: #d0eff7;
  border: 2px dotted #07c2b2;
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.process-block p {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 400;
  padding-top: 10px;
}

.process-block h3 {
  font-family: "Roboto", sans-serif;
  font-size: 26px;
  font-weight: 500;
}
.project-discussion {
  margin-left: 30px;
}
.project-discussion h2 {
  font-family: "Roboto", sans-serif;
  font-size: 45px;
  font-weight: 500;
  color: #070a57;
}

.project-discussion p {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  line-height: 35px;
  color: #64707d;
}

.project-discussion button {
  background: #fbb115;
  border: none;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 500;
  padding: 10px 15px;
}

/* Services styles  */
.services {
  background: linear-gradient(135deg, #d5f6fb 0%, #ffffff 50%, #e8f4f8 100%);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(7, 194, 178, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.services::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(251, 146, 19, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.service-heading {
  font-family: "Roboto", sans-serif;
  font-size: 45px;
  font-weight: 500;
  color: #070a57;
}

/* Multiframe Carousel  */

@media (min-width: 768px) {
  .service-carousel.carousel-inner .carousel-item-right.active,
  .service-carousel.carousel-inner .carousel-item-next {
    transform: translateX(50%);
  }

  .service-carousel.carousel-inner .carousel-item-left.active,
  .service-carousel.carousel-inner .carousel-item-prev {
    transform: translateX(-50%);
  }
}

/* large - display 3 */
@media (min-width: 992px) {
  .service-carousel.carousel-inner .carousel-item-right.active,
  .service-carousel.carousel-inner .carousel-item-next {
    transform: translateX(33%);
  }

  .service-carousel.carousel-inner .carousel-item-left.active,
  .service-carousel.carousel-inner .carousel-item-prev {
    transform: translateX(-33%);
  }
}

@media (max-width: 768px) {
  .service-carousel.carousel-inner .carousel-item > div {
    display: none;
  }

  .service-carousel.carousel-inner .carousel-item > div:first-child {
    display: block;
  }
}

.carousel-inner .carousel-item.active,
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev {
  display: flex;
}

.carousel-inner .carousel-item-right,
.carousel-inner .carousel-item-left {
  transform: translateX(0);
}
.service-card h5 {
  font-family: "Roboto", sans-serif;
  font-size: 26px;
  font-weight: 500;
  color: #070a57;
}
.service-card p {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  color: #64707d;
}
.service-card a {
  color: #64707d;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #64707d;
  text-decoration: underline;
}
.service-card a:hover {
  color: #fbb115;
  transition: all 0.5s ease;
}
.service-control-prev,
.service-control-next {
  height: 50px;
  width: 50px;
  outline: black;
  background-color: #fbb115;
  background-size: 100%, 100%;
  border-radius: 3px;
}
.service-control-next {
  margin-right: -105px;
}

.service-control-prev {
  margin-left: -205px;
}
.service-card {
  min-height: 480px;
}

/* Testimonial Styles  */
#carousel-section {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  margin: 0;
  background-color: #fff;
  padding: 5%;
}

#carouselheading {
  text-align: center;
}
#carousel-container {
  position: relative;
  width: 80%;
  max-width: 600px;
  overflow: hidden;
}

#carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

#carousel-slide-1,
#carousel-slide-2,
#carousel-slide-3 {
  min-width: 100%;
  box-sizing: border-box;
  padding: 20px;
}

#card-1,
#card-2,
#card-3 {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
}

#card-icon-1 {
  width: 60px; /* Adjust width as needed */
  height: 60px; /* Adjust height as needed */
  margin-bottom: 15px;
}

#card-icon-2 {
  width: 60px; /* Adjust width as needed */
  height: 60px; /* Adjust height as needed */
  margin-bottom: 15px;
}

#card-icon-3 {
  width: 60px; /* Adjust width as needed */
  height: 60px; /* Adjust height as needed */
  margin-bottom: 15px;
}

#card-title-1,
#card-title-2,
#card-title-3 {
  margin: 10px 0;
  font-size: 1.5em;
}

#card-description-1,
#card-description-2,
#card-description-3 {
  color: #555;
}

#stars-1,
#stars-2,
#stars-3 {
  margin: 10px 0;
  color: #fbb115; /* Gold color for stars */
}

#stars-1 i,
#stars-2 i,
#stars-3 i {
  font-size: 20px;
}

/* Carousel button styles */
#carousel-button-left,
#carousel-button-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 100;
  width: 40px; /* Width of the button */
  height: 40px; /* Height of the button */
  border-radius: 50%; /* Make the buttons circular */
  display: flex;
  justify-content: center;
  align-items: center;
}

#carousel-button-left {
  left: 0px; /* Distance from the left edge */
  top: 60%;
}

#carousel-button-right {
  right: 0px; /* Distance from the right edge */
  top: 60%;
}

#carousel-button-left:hover,
#carousel-button-right:hover {
  background-color: #fbb115;
}
/* growth Styles */
/* Styles for the Growth section */
.customer-support {
  padding: 20px;
  background: linear-gradient(30deg, #fbf1d5, #fff);
}

.growth {
  display: flex;
  align-items: center;
}

.growth-content {
  flex: 1;
  padding-right: 20px;
}

.growth-img {
  flex: 1;
  text-align: center;
}

.growthtxt {
  text-align: center;
}

/* New styles for the GIF container */
#gif-container {
  display: inline-block;
}

#gif-container img {
  width: 100%; /* Ensures the image is responsive */
  height: auto;
  mix-blend-mode: multiply;
}

/* terms and condition styles */
.termhead {
  text-align: center;
  color: #07c2b2;
  font-weight: 600;
  padding: 3%;
}

.terms {
  text-align: center;
  color: #000000;
  font-weight: 300;
}

/* Contact Us Styling  */

.contact-header {
  max-height: 500px;
}
.contact-header .right-content img {
  width: 100% !important;
}
.contact-header .container.header-content {
  max-height: 400px;
}

/* Office Blocs Styleing  */

.office-block {
  padding: 15px;
  border: 2px dotted #fbb115;
  text-align: center;
}

.office-block h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 35px;
  line-height: 32px;
  color: #070a57;
  padding: 25px 0px;
}

.office-block p {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  line-height: 35px;
  color: #64707d;
}

#project-details form {
  background-color: white;
  color: #888888;
  text-align: left;
  padding-top: 20px;
}

#project-details label {
  display: none;
}

#project-details input,
#project-details textarea {
  /* to create space for placing icon*/
  padding: 16px 10px 16px 32px;
  border-color: #e0e0e0;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  transition: all 0.3s ease;
  background-color: #f9f9f9;
}

#project-details input:focus,
#project-details textarea:focus {
  border-color: #07c2b2;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(7, 194, 178, 0.1);
  outline: none;
}

#project-details .btn-default {
  margin-top: 15px;
  margin-bottom: 30px;
  padding: 15px 36px;
  background: linear-gradient(135deg, #fbb115 0%, #fb9213 100%);
  border: 0px;
  color: white;
  width: 100%;
  border-radius: 8px;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  box-shadow: 0 4px 15px rgba(251, 146, 19, 0.3);
  position: relative;
  overflow: hidden;
}

#project-details .btn-default::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

#project-details .btn-default:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(251, 146, 19, 0.4);
}

#project-details .btn-default:hover::before {
  left: 100%;
}

#project-details .btn-default:active {
  transform: translateY(-1px);
}

/*position should be relative and z-index greater than one*/
#project-details .icon {
  position: relative;
  float: right;
  padding-right: 10px;
  margin-top: -30px;
  z-index: 2;
  color: #586794;
}

#project-details .icon-textarea {
  float: right;
  margin-top: -150px;
  padding-right: 10px;
  position: relative;
  z-index: 2;
  color: #586794;
}
#project-type {
  width: 100%;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  color: #64707d;
  border: 1px solid #ddd;
  padding: 7px 10px 7px 32px;
}

/* Service Page Styles  */

/*   
section.services {
    text-align: center;
}
.card-row-gap {
    padding-bottom: 2rem;
}
.card-body{
background-color: #ffebef;

}
a.card-body{
    text-decoration: underline;
}
.best-solution img{
	width:100%;
	height:auto;
}

/* why choose leadsbee 

.service-type-gap {
 padding-bottom: 8rem;
}
h2.col-md-6 {
    padding-bottom: 3rem;
    padding-top: 2rem;
} */
.feature-design-image {
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
}
section.header.contact-header {
  padding-bottom: 50px;
}
.card.service-block-card img {
  width: 100%;
  height: auto;
}

.card.service-block-card {
  min-height: 480px;
  margin-bottom: 20px;
}
.why-choose img {
  margin-bottom: 25px;
}

.why-choose {
  padding-bottom: 30px;
}
/* Blog Page Styles  */
.blog-post {
  border: 1px solid #dddddd;
  padding: 15px;
}
.blog-category p {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #fbb115;
  line-height: 35px;
}

.blog-content h2.blog-title {
  font-family: "Roboto", sans-serif;
  font-size: 26px;
  font-weight: 500;
  color: #fbb115;
  line-height: 35px;
}

.blog-content p.blog-exercpt {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  line-height: 35px;
  color: #64707d;
}

.blog-meta h3 {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #070a57;
}

.blog-meta p.date {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  line-height: 35px;
  color: #64707d;
}

.pagination ul li {
  list-style: none;
  display: inline;
  border: 1px solid #ddd;
  padding: 10px;
}
.pagination ul li a {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  color: #64707d;
}

.pagination ul li.previous {
  background: #ddd;
}
.pagination ul li.previous a,
.pagination ul li.next a {
  color: #070a57 !important;
}
.pagination ul li.next {
  background: #fbb115;
}
p.sub-heading {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  line-height: 35px;
  color: #070a57;
  padding-top: 20px;
}

form#newsletter-form input#client-mail {
  max-width: 500px;
  border: 1px solid #fbb115;
  border-radius: 3px;
}

form#newsletter-form button,
.team-counter button {
  background: #fbb115;
  border: none;
  padding: 5px 12px;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  color: #070a57;
}

/* Portfolio Page Styles */

.portfolio-block {
  position: relative;
  margin-bottom: 20px;
  border: 2px solod red;
}

.portfolio-overlay {
  position: absolute;
  background: #fbb115;
  height: 90%;
  width: 90%;
  top: 10px;
  left: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  display: none;
}

.portfolio-block:hover .portfolio-overlay {
  display: flex;
  transition: 0.5s ease;
}

.portfolio-overlay h3 {
  font-family: "Roboto", sans-serif;
  font-size: 35px;
  font-weight: 500;
  color: #070a57;
}

.portfolio-overlay p {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #64707d;
}

section.portfolio-call-to-action {
  background: #ffeebf;
  text-align: center;
}

section.portfolio-call-to-action h2 {
  font-family: "Roboto", sans-serif;
  font-size: 45px;
  font-weight: 500;
  line-height: 55px;
  color: #070a57;
}

button.project-button-1,
button.project-button-2 {
  border: none;
  padding: 10px 15px;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #070a57;
  margin-right: 15px;
}
button.project-button-1 {
  background: #fbb115;
}
button.project-button-2 {
  background: #fff;
}

/* Team Page Styles  */

.team-page-description h2 {
  font-family: "Roboto", sans-serif;
  font-size: 45px;
  font-weight: 500;
  color: #070a57;
  line-height: 32px;
  padding-bottom: 25px;
}

.team-page-description p {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  /* font-weight: 500; */
  color: #070a57;
  line-height: 35px;
  padding-bottom: 25px;
}
.team-card {
  margin-bottom: 40px;
}
.team-card h3 {
  font-family: "Roboto", sans-serif;
  font-size: 26px;
  font-weight: 500;
  color: #070a57;
  padding: 5px;
}

.team-card p {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #64707d;
}

.team-card ul li {
  list-style: none;
  display: inline;
  padding: 5px 10px;
}

.team-card ul li a {
  color: #e1e1e1;
  font-size: 16px;
}

.team-card ul li a:hover {
  color: #fbb115;
  transition: all 0.5s;
}

span.counter {
  font-family: "Roboto", sans-serif;
  font-size: 45px;
  color: #070a57;
}

span.counter-plus {
  font-family: "Roboto", sans-serif;
  font-size: 45px;
  color: #fbb115;
}

/*********************************************************/
.section-head-1 {
  margin-bottom: 60px;
  background-size: 200%;
  background-position: left;
}
.section-head-1 p {
  color: #333;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
}
.item {
  background: rgba(0, 0, 0, 0.1);
  text-align: center;
  color: white;
  padding: 40px 25px;
  backdrop-filter: blur(12px); /* blur the background */
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  margin-bottom: 30px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  position: relative;
  overflow: hidden;
}

.item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(7, 194, 178, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.item:hover {
  background: linear-gradient(135deg, #07c2b2 0%, #3b595a 50%, #00ffea 100%);
  box-shadow: 0 15px 40px rgba(7, 194, 178, 0.3);
  transform: translateY(-8px) scale(1.02);
  border: 1px solid rgba(7, 194, 178, 0.5);
}

.item:hover::before {
  opacity: 1;
}
.glass-card {
  width: 300px;
  padding: 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1); /* semi-transparent white */
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  backdrop-filter: blur(12px); /* blur the background */
  -webkit-backdrop-filter: blur(12px); /* Safari support */
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: white;
  text-align: center;
}

.glass-card h2 {
  margin: 0 0 10px;
}

.item:hover {
  background: linear-gradient(135deg, #07c2b2 0%, #3b595a 50%, #00ffea 100%);
  box-shadow: 0 15px 40px rgba(7, 194, 178, 0.3);
  transform: translateY(-8px) scale(1.02);
  border: 1px solid rgba(7, 194, 178, 0.5);
}
.item:hover .item,
.item:hover span.icon {
  background: #ffffff;
  border-radius: 10px;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.item:hover h6,
.item:hover p {
  color: #000000;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.item .icon {
  font-size: 40px;
  margin-bottom: 25px;
  color: #07c2b2;
  width: 90px;
  height: 90px;
  line-height: 96px;
  border-radius: 50px;
}
.item .feature_box_col_one {
  background: rgba(247, 198, 5, 0.2);
  color: #52ab98;
}
.item .feature_box_col_two {
  background: rgba(255, 77, 28, 0.15);
  color: #52ab98;
}
.item .feature_box_col_three {
  background: rgba(0, 147, 38, 0.15);
  color: #52ab98;
}
.item .feature_box_col_four {
  background: rgba(0, 108, 255, 0.15);
  color: #52ab98;
}
.item .feature_box_col_five {
  background: rgba(146, 39, 255, 0.15);
  color: #52ab98;
}
.item .feature_box_col_six {
  background: rgba(23, 39, 246, 0.15);
  color: #52ab98;
}
.item p {
  font-size: 15px;
  font-family: "Varela Round", Arial, "Helvetica Neue", Helvetica, sans-serif;
  line-height: 26px;
}
.item h6 {
  margin-bottom: 20px;
  font-family: "Varela Round", Arial, "Helvetica Neue", Helvetica, sans-serif;
  color: #2f2f2f;
}

.title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 40px;
  text-align: center;
  color: #070a57;
  position: relative;
  display: inline-block;
  width: 100%;
  letter-spacing: -0.5px;
  animation: fadeInDown 0.6s ease-out;
}

.title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #07c2b2, #fbb115);
  border-radius: 2px;
}

.section-container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 100;
  margin-bottom: 40px;
  color: #000000;
}

.features-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.feature-box {
  display: flex;
  align-items: flex-start; /* Align icon & text to the top */
  gap: 20px;
  background-color: #ffffff;
  padding: 25px;
  border-radius: 16px;
  flex: 1 1 300px;
  max-width: 400px;
  min-width: 280px;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  box-sizing: border-box;
  border: 1px solid #e8e8e8;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(7, 194, 178, 0.1), transparent);
  transition: left 0.5s ease;
  pointer-events: none;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(7, 194, 178, 0.2);
  border-color: rgba(7, 194, 178, 0.3);
}

.feature-box:hover::before {
  left: 100%;
}

.icon {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  width: 70px; /* same width as height */
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s, filter 0.3s;
}

.svg-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  transition: filter 0.3s;
}

.content h3 {
  margin: 0;
  font-size: 20px;
  color: #000000;
  font-weight: 700;
  transition: color 0.3s;
  line-height: 1.3;
}

.content p {
  margin: 6px 0 0 0;
  font-size: 15px;
  color: #555;
}

.feature-box:hover .icon {
  background-color: #07c2b2;
  border-color: transparent;
}

.feature-box:hover .svg-icon {
  filter: brightness(0) invert(1);
}

.feature-box:hover .content h3 {
  color: #07c2b2;
}

@media (max-width: 768px) {
  .features-container {
    flex-direction: column;
    align-items: center;
  }
}

/* ------hover in services------------ */
/* Dropdown menu appears on hover */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

/* Dropdown menu styling */
.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.1);
  z-index: 1;
  border-radius: 4px;
  border: none;
  padding: 0;
}

.dropdown-item {
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background-color: #a4fcff;
  color: #80cdd3;
}

/* Dropdown arrow indicator */
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 4px;
  vertical-align: middle;
  content: "▾";
  border: none;
  margin-top: -25px;
}

/* Remove the gap between navbar and dropdown */
.dropdown {
  position: relative;
}

/* Footer Styles */
footer {
  background: linear-gradient(135deg, #ffffff 0%, #f0f9f8 50%, #d5f6fb 100%);
  padding: 60px 0 20px;
  color: #000000;
  font-family: "Poppins", sans-serif;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #07c2b2, #3b595a, #fbb115, #07c2b2);
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 50px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(7, 194, 178, 0.1);
}

.footer-logo img {
  width: 160px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.footer-logo img:hover {
  transform: scale(1.05);
}

.footer-logo p {
  color: #555;
  line-height: 1.8;
  font-size: 0.95rem;
}

.footer-links h3,
.footer-contact h3 {
  color: #07c2b2;
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
  font-weight: 700;
}

.footer-links h3::after,
.footer-contact h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #07c2b2, #3b595a);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.footer-links:hover h3::after,
.footer-contact:hover h3::after {
  width: 100%;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.footer-links a {
  color: #555;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background: linear-gradient(90deg, #07c2b2, #3b595a);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #07c2b2;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-contact li {
  color: #555;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.6;
}

.footer-contact i {
  color: #07c2b2;
  min-width: 20px;
  margin-top: 2px;
}

.social-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}

.newsletter {
  flex: 1;
  min-width: 300px;
}

.newsletter h3 {
  color: #fff;
  margin-bottom: 15px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 14px;
}

.newsletter-form input::placeholder {
  color: #ccc;
}

.newsletter-form button {
  background: linear-gradient(45deg, #ffad00, #ff7700);
  color: #fff;
  border: none;
  padding: 0 25px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 173, 0, 0.3);
}

/* Enhanced Social Icons */
.social-icons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(7, 194, 178, 0.1), rgba(251, 146, 19, 0.1));
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  overflow: hidden;
  width: 50px;
  height: 50px;
  text-decoration: none;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(7, 194, 178, 0.2);
}

.icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
  pointer-events: none;
}

.icon img {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.icon:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 25px rgba(7, 194, 178, 0.3);
  background: linear-gradient(135deg, rgba(7, 194, 178, 0.2), rgba(251, 146, 19, 0.2));
}

.icon:hover::before {
  left: 100%;
}

.icon:hover img {
  filter: brightness(1.2);
}

/* #whatsapp:hover { background: #25D366; }
  #linkedin:hover { background: #0077B5; }
  #instagram:hover { background: #E4405F; }
  #contact:hover { background: #FF9900; } */

.copyright {
  text-align: center;
  color: #888;
  font-size: 0.95rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px 0;
  margin-top: 20px;
  border-top: 1px solid rgba(7, 194, 178, 0.1);
  transition: all 0.3s ease;
}

.copyright:hover {
  color: #07c2b2;
}

.copyright p {
  margin: 0;
  display: inline-block;
}
