@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*color variable */
:root {
  --primary-color: #44a3d2;
  --secondary-color: #c87696;
  --text-color: #1a1a1a;
  --bg-color: #ffffff;
  --muted-color: #676767;
  --blue-violet: #8a2be2;
  --black-background: #000000;
  --white-color: #ffffff;
  --footer-primary-color: #44a3d2;
  --footer-dark-color: #131922;
  --footer-light-bg: #f4f8fb;
  --white: #ffffff;
  --footer-text-light: #555;
  --footer-border: #44a3d2;
}

/* shared style start here */
/* .fa-dot-circle {
  width: 40px;
  height: 40px;
} */
.font-bold {
  font-weight: bold;
  font-size: 16px;
}

.font-bold:hover {
  color: var(--blue-violet);
}

.font-bold:hover .hidden {
  color: var(--blue-violet);
  opacity: 1;
}

/* Button  */
.btn-dark {
  background-color: var(--primary-color);
  border: none;
  border-top-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.common-radius {
  border-top-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.header-gradient {
  background: radial-gradient(
    ellipse at bottom center,
    #edd6f5 30%,
    rgba(255, 255, 255, 0.85) 63%,
    #ffffff 100%
  );
}

/* shared style end here */

/* Navbar style start here */
.header-container {
  min-height: 700px;
}

.nav-container {
  margin: 0 260px 0 280px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.mobile-nav {
  display: none;
}

/* Hover dropdown  */
.custom-dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transition: all 0.2s ease;
}

.muted-color {
  color: var(--muted-color);
  margin-bottom: 15px;
}

.dropdown-function-card-width {
  width: 800px;
}
.dropdown-solution-card-width {
  width: 700px;
}
.dropdown-hr-card-width {
  width: 500px;
}

.hidden {
  opacity: 0;
}

.logo {
  width: 250px;
}

.dropdown-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted-color);
  /* line-height: 12px; */
}

.dropdown-link:hover {
  color: var(--blue-violet);
}

.dropdown-link:hover .hidden {
  color: var(--blue-violet);
  opacity: 1;
}

.custom-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 80%;
  transform: translateX(-30%);
  opacity: 0;
  visibility: hidden;
  border-top-left-radius: 22px;
  border-bottom-right-radius: 22px;
  border-bottom-left-radius: 0px;
  border-top-right-radius: 0px;
  transition: all 0.2s ease;
  border: none;
}

.navbar-nav .nav-link {
  padding: 0.5rem 1rem;
  font-size: 17px;
  color: var(--text-color);
  margin-right: 20px;
}

/* Style for the vertical line  */
.custom-dropdown .dropdown-menu .vertical-line {
  border-left: 2px solid #ccc;
  height: 200px;
  margin-right: 20px;
  margin-left: 20px;
  display: inline-block;
}

.nav-link:hover {
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-top-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.mega-menu h6 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.mega-menu h6:hover {
  color: blueviolet;
}
.language-hidden {
  display: none;
}

.dropdown-item:hover {
  background-color: var(--muted-color);
  color: white;
}

.close-btn {
  display: none;
}

/* hero design starty here */

.hero-container {
  /* margin: 0 auto; */
}
.hero-title {
  font-size: 68px;
}

.hero-subtitle {
  max-width: 700px;
  margin: 0 auto;
}

/* filter stars */
.content-container {
  max-width: 900px;
  margin: 0 auto;
}

.filter-box {
  background-color: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap; /* Added for responsive behavior */
}

.filter-group {
  flex: 1;
  border-right: 1px solid #e0e0e0;
  padding-right: 10px;
  min-width: 150px; /* Prevents elements from becoming too narrow */
}

.filter-group:last-child {
  border-right: none;
  padding-right: 0;
}

.filter-label {
  font-size: 13px;
  font-weight: 500;
  color: #666;
  margin-bottom: 3px;
}

.form-select {
  border: none;
  box-shadow: none;
  padding-left: 0;
  padding-right: 0;
  width: 100%; /* Ensures proper width in all cases */
}

.search-btn {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 15px 26px;
  /* border-radius: 5px; */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s; /* Smooth hover effect */
}

.search-btn:hover {
  background-color: #0057d6; /* Slightly darker on hover */
}

.search-btn i {
  font-size: 30px;
}

.form-select:focus {
  box-shadow: none;
}

/* hero design ends here */

/*marquee style starts here */

.marquee-container {
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
}

.marquee-track {
  display: inline-block;
  white-space: nowrap;
  margin-bottom: 15px;
  animation: scroll 40s linear infinite;
}

.marquee-tag {
  display: inline-block;
  margin: 0 1rem;
  padding: 0.4rem 1.2rem;
  background: #ffffff;
  /* border-radius: 50px; */
  border-top-left-radius: 15px;
  border-bottom-right-radius: 15px;
  font-size: 0.9rem;
  color: #7b7b7b;
  opacity: 0.5;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Footer and above footer */
.bellow-element {
  background-color: var(--footer-light-bg);
  color: var(--footer-dark-color);
}

.bellow-element h2 {
  color: var(--footer-dark-color);
}

.feature-box {
  /* border-radius: 12px; */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
  padding: 20px;
  background-color: var(--white);
  height: 100%;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 15px;
}

.feature-title {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--footer-dark-color);
}

.feature-text {
  font-size: 0.95rem;
  color: var(--footer-text-light);
  margin-bottom: 15px;
}

.feature-link {
  color: var(--footer-primary-color);
  text-decoration: none;
  font-weight: 500;
}

.feature-link:hover {
  color: darken(var(--footer-primary-color), 10%);
  text-decoration: underline;
}

.footer {
  background-color: var(--footer-dark-color);
  color: var(--footer-light-bg);
  padding: 60px 0 30px;
  border-radius: 3rem 3rem 0 0;
}

.footer a {
  color: var(--footer-light-bg);
  text-decoration: none;
}

.footer a:hover {
  color: var(--white);
}

.footer h5 {
  color: var(--white);
  margin-bottom: 20px;
}

.footer .social-icons a {
  color: #bbb;
  margin-right: 15px;
  font-size: 18px;
}

.footer .btn-contact {
  background-color: var(--footer-primary-color);
  color: var(--white);
  /* border-radius: 25px; */
  padding: 6px 20px;
  border: none;
}

.footer .btn-contact:hover {
  background-color: #3b8fbf;
}

.footer-bottom {
  border-top: 1px solid var(--footer-border);
  padding-top: 20px;
  text-align: center;
  color: #ddd;
  font-size: 14px;
}

@keyframes scroll {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

.card-floating {
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  /* border-radius: 1rem; */
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.event-type {
  font-size: 0.8rem;
  color: gray;
  text-align: left;
}

.tag {
  background-color: var(--primary-color);
  color: white;
  padding: 8px 15px;
  max-width: 100px;
  font-size: 14px;
  /* border-radius: 100px; */
  font-weight: 500;
  margin-right: 0.5rem;
  font-weight: 600;
}

.dashed-line {
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    #00c3ff,
    #00c3ff 5px,
    transparent 5px,
    transparent 10px
  );
  position: absolute;
  height: 400px;
  margin: 1rem auto;
  bottom: 10%;
  z-index: -1;
}

.plus-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  /* border-radius: 15px; */
  width: 60px;
  height: 60px;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transform: rotate(-45deg);
}

.heading {
  max-width: 750px;
  /* font-size: 40px; */
  font-weight: 700;
  margin: 0 auto;
}

.soft-card {
  position: relative;
  z-index: 1;
  margin-top: 30px;
  background-color: white;
  /* border-radius: 16px; */
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  padding: 15px;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  margin: auto;
  background: transparent;
}

.soft-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    to bottom rgba(255, 255, 255, 0.8),
    rgba(229, 226, 226, 0.5)
  );
  z-index: 0;
}

/*marquee style ends here */

/* responsive */
/* Small devices*/
@media (min-width: 100px) and (max-width: 376px) {
  .logo {
    width: 120px;
  }
  .language-dropdown {
    display: none;
  }
  .img-fluid {
    display: none;
  }
  .small-text {
    font-size: 14px;
  }

  .login-btn {
    display: none;
  }

  .hidden {
    opacity: 1;
  }
}

@media (min-width: 377px) and (max-width: 576px) {
  .nav-container {
    margin: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .img-fluid {
    display: none;
  }

  .small-text {
    font-size: 14px;
  }
  .font-size-18 {
    font-size: 18px;
  }
  .heading {
    font-size: 20px;
    margin: 0 8px;
  }

  .hero-text {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .logo {
    width: 150px;
  }

  .mobile-nav {
    display: block;
    width: 100%;
  }
  .language-dropdown {
    display: none;
  }

  .login-btn {
    display: none;
  }

  .hidden {
    opacity: 1;
  }
  .custom-dropdown:focus-within .dropdown-menu,
  .custom-dropdown:active .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    overflow-y: scroll;
  }
}

@media (max-width: 768px) {
  .custom-float-right {
    margin-left: 10% !important;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 577px) and (max-width: 768px) {
  .nav-container {
    margin: 0 20px;
  }

  .img-fluid {
    display: none;
  }

  .hero-text {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .navbar-nav {
    display: none;
  }

  .logo {
    width: 220px;
  }

  .language-dropdown {
    display: none;
  }

  .login-btn {
    display: none;
  }

  .hidden {
    opacity: 1;
  }

  .custom-dropdown:focus-within .dropdown-menu,
  .custom-dropdown:active .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    overflow-y: scroll;
  }
}

/* Large devices (desktops/laptops, 992px and up) */
@media (min-width: 769px) and (max-width: 1024px) {
  /* Styles for larger desktops */
  .nav-container {
    margin: 0 20px;
  }

  .hero-text {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .navbar-nav {
    display: none;
  }

  .language-dropdown {
    display: none;
  }

  .login-btn {
    display: none;
  }
  .img-fluid {
    display: none;
  }

  .hidden {
    opacity: 1;
  }
  .custom-dropdown:focus-within .dropdown-menu,
  .custom-dropdown:active .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    overflow-y: scroll;
  }
}

@media (max-width: 1199px) {
  .img-fluid {
    display: none;
  }
}
/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1025px) and (max-width: 1278px) {
  /* Styles for wide screens */
  .nav-container {
    margin: 0 200px;
  }

  .language-dropdown {
    display: none;
  }

  .login-btn {
    display: none;
  }

  .navbar-nav {
    display: none;
  }

  .hidden {
    opacity: 1;
  }

  .container-fluid {
    margin: 0 20px;
  }

  .custom-dropdown:focus-within .dropdown-menu,
  .custom-dropdown:active .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    overflow-y: scroll;
  }
}

@media (min-width: 1279px) and (max-width: 1400px) {
  /* Styles for wide screens */
  .nav-container {
    /* margin: 0 20px !important; */
    margin: 0 90px 0 50px !important;
  }
  .close-btn {
    display: none;
  }

  .mobile-nav {
    display: none;
  }
  .btn-hidden {
    display: none;
  }
}

/* Extra extra extra large devices (very large desktops, 1600px and up) */
@media (max-width: 1700px) {
  .nav-container {
    margin: 0 80px 0 95px;
  }
  .close-btn {
    display: none;
  }
  .mobile-nav {
    display: none;
  }
  .btn-hidden {
    display: none;
  }
}

/* Extra extra large devices (very large desktops, 1400px and up) */
@media (min-width: 1400px) and (max-width: 1600px) {
  .nav-container {
    /* margin: 0 50px; */
    /* margin: 0 20px !important; */
    margin: 0 0 0 25px !important;
  }

  .close-btn {
    display: none;
  }
  .container {
    min-width: 1370px !important;
  }
  .mobile-nav {
    display: none;
  }
  .btn-hidden {
    display: none;
  }
}

@media (min-width: 1700px) and (max-width: 1800px) {
  .nav-container {
    margin: 0 150px;
  }
  .close-btn {
    display: none;
  }
  .mobile-nav {
    display: none;
  }
  .btn-hidden {
    display: none;
  }
}
/* Extra extra extra large devices (very large desktops, 1800px and up) */
@media (min-width: 1800px) {
  .nav-container {
    /* margin: 0 250px; */
    margin: 0 250px 0 280px;
  }
  .close-btn {
    display: none;
  }
  .mobile-nav {
    display: none;
  }
  .btn-hidden {
    display: none;
  }
}

/* Mobile Menu Styles start here*/
@media (max-width: 1279px) {
  .nav-container {
    margin: 0;
    padding: 0.5rem 1rem;
  }
  .nav-link:hover {
    background-color: #4c464e;
  }

  .small-heading {
    color: var(--white-color);
  }
  .navbar-toggler {
    display: block;
    order: 2;
  }
  .navbar-nav {
    display: block;
  }

  .navbar-collapse {
    position: fixed;
    top: 0;
    right: 100%;
    width: 100%;
    height: 100vh;
    background: white;
    padding: 2rem;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1050;
    overflow-y: auto;
    background-color: #4c464e;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
  }

  .navbar-collapse.show {
    right: 0;
  }

  .custom-dropdown:focus-within .dropdown-menu,
  .custom-dropdown:active .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    overflow-y: scroll;
  }

  .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
    /* width: 100%; */
  }
  .mega-menu h6 {
    color: var(--white-color);
  }
  .dropdown-link {
    color: var(--white-color);
  }

  .dropdown-link:hover {
    color: white;
  }
  .dropdown-link:hover .hidden {
    color: white;
    opacity: 1;
  }

  .font-bold:hover .hidden {
    opacity: 1;
  }
  .nav-item {
    width: 100%;
    margin-bottom: 0.5rem;
    color: white;
  }

  .nav-link {
    padding: 0.8rem 0;
    margin-right: 0;
    color: white;
  }

  .hidden {
    display: none;
  }

  .header-container {
    min-height: 550px;
  }

  .custom-dropdown .dropdown-menu {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    box-shadow: none;
    border: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    padding: 0;
    margin: 0;
    border-radius: 0;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 0;
    color: white;
    font-size: 20px;
    display: none;
    padding: 0.5rem 0 0.5rem 1rem;
    height: 200px;
  }

  .mega-menu .row {
    flex-direction: column;
  }

  .mega-menu .col-md-4,
  .mega-menu .col-md-6 {
    width: 100%;
    margin-bottom: 1rem;
  }

  .btn-hidden {
    display: inline-block;
    height: 400px;
    /* position: absolute; */
    bottom: 10px;
    /* width: 90%; */
  }
  .language-hidden {
    display: block;
    margin-top: 100%;
  }

  #white {
    color: var(--white-color);
  }

  .hero-title {
    font-size: 30px;
    margin: 0 auto;
  }
  .hero-subtitle {
    margin: 0 auto;
    font-size: 16px;
  }

  .hero-btn {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .dropdown-function-card-width {
    width: 200px;
  }
  .dropdown-solution-card-width {
    width: 200px;
  }
  .dropdown-hr-card-width {
    width: 200px;
  }

  .vertical-line {
    display: none;
  }
  .img-text {
    display: none;
  }
  .muted-color {
    color: var(--white-color);
    margin-bottom: 15px;
  }

  /* .nav-actions {
    margin-top: 1rem;
    width: 100%;
    justify-content: flex-start;
  } */
  .close-btn {
    position: absolute;
    top: -0.5rem;
    right: 1rem;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    display: block;
  }

  /* .custom-close-btn {
    
  } */
}

@media (min-width: 1200px) and (max-width: 1278px) {
  .navbar-expand-xl .navbar-collapse {
    display: none !important;
  }
  .hide-image-div {
    display: none !important;
  }

  .navbar-expand-xl .navbar-toggler {
    display: block !important;
  }

  .navbar-expand-xl .navbar-collapse.show {
    display: block !important;
  }
}

/* Mobile Menu Styles ends here*/

/* Responsive Breakpoints for filter start*/
@media (max-width: 1200px) {
  .filter-box {
    gap: 15px;
  }
  .search-btn {
    padding: 15px 20px;
  }
}

@media (max-width: 992px) {
  .filter-box {
    gap: 12px;
    margin: 12px;
  }
  .filter-group {
    border-right: none;
    padding-right: 0;
    flex: 1 1 45%;
    margin-bottom: 10px;
  }
  .search-btn {
    flex: 1 1 100%;
    margin-top: 5px;
  }
}

@media (max-width: 768px) {
  .filter-box {
    gap: 10px;
    margin: 12px;
  }
  .filter-group {
    flex: 1 1 100%;
    margin-bottom: 8px;
  }
  .search-btn {
    padding: 12px 15px;
  }
  .search-btn i {
    font-size: 25px;
  }
}

@media (max-width: 576px) {
  .filter-box {
    padding: 8px;
    margin: 12px;
  }
  .filter-label {
    font-size: 12px;
  }
  .search-btn {
    padding: 10px 12px;
  }
  .search-btn i {
    font-size: 22px;
  }
}
