/*===========================
    01. Common CSS
===========================*/
@import url("https://fonts.googleapis.com/css?family=Poppins:400,500,600,700|Space+Mono:400,700&display=swap");
body {
  font-weight: normal;
  font-style: normal;
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a:focus,
input:focus,
textarea:focus,
button:focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

button {
  cursor: pointer;
}

a:focus,
a:hover {
  text-decoration: none;
}

i,
span,
a {
  display: inline-block;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  margin: 0px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 50px;
  margin-bottom: 20px;
}

h2 {
  font-size: 45px;
}

@media (max-width: 767px) {
  h2 {
    font-size: 36px;
  }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  h2 {
    font-size: 40px;
  }
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

ul, ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

p {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  margin: 0px;
}

.img-bg {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  z-index: -1;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .container {
    width: 450px;
  }
}

.logo {
    display: inline-block;
    text-decoration: none;
    padding: 15px 0;
}

.logo-text {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.15));
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 991px) {
    .logo-text {
        height: 90px;
    }
}

@media (max-width: 767px) {
    .logo-text {
        height: 60px;
    }
}

/* Adjust header spacing to accommodate larger logo */
main .header.header-06 {
    padding-top: 40px;
    padding-bottom: 60px;
}

.logo:hover .logo-text {
    filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.3));
    transform: scale(1.02) translateY(-2px);
}

/* Enhanced header spacing */
main .header.header-06 {
    padding-top: 60px;
    padding-bottom: 80px;
    position: relative;
}

main .header.header-06::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.1) 20%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.1) 80%,
        transparent
    );
}

.heading {
    text-align: center;
    margin-bottom: 2rem;
}

main .main-wrapper.demo-06 .hero-area h1 {
    font-size: 5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.05em;
}

.tagline {
    font-size: 2rem;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 991px) {
    main .main-wrapper.demo-06 .hero-area h1 {
        font-size: 4rem;
    }
    .tagline {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    main .main-wrapper.demo-06 .hero-area h1 {
        font-size: 3rem;
    }
    .tagline {
        font-size: 1.25rem;
    }
    .logo-text {
        height: 25px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .img-wrapper {
    display: none;
  }
}

@media (max-width: 767px) {
  .img-wrapper {
    display: none;
  }
}

@media (max-width: 767px) {
  .odd-col {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}

.slick-slide:focus {
  outline: 0;
}

.common-btn {
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.common-btn::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: inherit;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.common-btn:hover::after {
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  opacity: 0;
}

.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-55 {
  margin-top: 55px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-65 {
  margin-top: 65px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-75 {
  margin-top: 75px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-85 {
  margin-top: 85px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-95 {
  margin-top: 95px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-105 {
  margin-top: 105px;
}

.mt-110 {
  margin-top: 110px;
}

.mt-115 {
  margin-top: 115px;
}

.mt-120 {
  margin-top: 120px;
}

.mt-125 {
  margin-top: 125px;
}

.mt-130 {
  margin-top: 130px;
}

.mt-135 {
  margin-top: 135px;
}

.mt-140 {
  margin-top: 140px;
}

.mt-145 {
  margin-top: 145px;
}

.mt-150 {
  margin-top: 150px;
}

.mt-155 {
  margin-top: 155px;
}

.mt-160 {
  margin-top: 160px;
}

.mt-165 {
  margin-top: 165px;
}

.mt-170 {
  margin-top: 170px;
}

.mt-175 {
  margin-top: 175px;
}

.mt-180 {
  margin-top: 180px;
}

.mt-185 {
  margin-top: 185px;
}

.mt-190 {
  margin-top: 190px;
}

.mt-195 {
  margin-top: 195px;
}

.mt-200 {
  margin-top: 200px;
}

.mt-205 {
  margin-top: 205px;
}

.mt-210 {
  margin-top: 210px;
}

.mt-215 {
  margin-top: 215px;
}

.mt-220 {
  margin-top: 220px;
}

.mt-225 {
  margin-top: 225px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-85 {
  margin-bottom: 85px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-95 {
  margin-bottom: 95px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-105 {
  margin-bottom: 105px;
}

.mb-110 {
  margin-bottom: 110px;
}

.mb-115 {
  margin-bottom: 115px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb-125 {
  margin-bottom: 125px;
}

.mb-130 {
  margin-bottom: 130px;
}

.mb-135 {
  margin-bottom: 135px;
}

.mb-140 {
  margin-bottom: 140px;
}

.mb-145 {
  margin-bottom: 145px;
}

.mb-150 {
  margin-bottom: 150px;
}

.mb-155 {
  margin-bottom: 155px;
}

.mb-160 {
  margin-bottom: 160px;
}

.mb-165 {
  margin-bottom: 165px;
}

.mb-170 {
  margin-bottom: 170px;
}

.mb-175 {
  margin-bottom: 175px;
}

.mb-180 {
  margin-bottom: 180px;
}

.mb-185 {
  margin-bottom: 185px;
}

.mb-190 {
  margin-bottom: 190px;
}

.mb-195 {
  margin-bottom: 195px;
}

.mb-200 {
  margin-bottom: 200px;
}

.mb-205 {
  margin-bottom: 205px;
}

.mb-210 {
  margin-bottom: 210px;
}

.mb-215 {
  margin-bottom: 215px;
}

.mb-220 {
  margin-bottom: 220px;
}

.mb-225 {
  margin-bottom: 225px;
}

.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-105 {
  padding-top: 105px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-115 {
  padding-top: 115px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-125 {
  padding-top: 125px;
}

.pt-130 {
  padding-top: 130px;
}

.pt-135 {
  padding-top: 135px;
}

.pt-140 {
  padding-top: 140px;
}

.pt-145 {
  padding-top: 145px;
}

.pt-150 {
  padding-top: 150px;
}

.pt-155 {
  padding-top: 155px;
}

.pt-160 {
  padding-top: 160px;
}

.pt-165 {
  padding-top: 165px;
}

.pt-170 {
  padding-top: 170px;
}

.pt-175 {
  padding-top: 175px;
}

.pt-180 {
  padding-top: 180px;
}

.pt-185 {
  padding-top: 185px;
}

.pt-190 {
  padding-top: 190px;
}

.pt-195 {
  padding-top: 195px;
}

.pt-200 {
  padding-top: 200px;
}

.pt-205 {
  padding-top: 205px;
}

.pt-210 {
  padding-top: 210px;
}

.pt-215 {
  padding-top: 215px;
}

.pt-220 {
  padding-top: 220px;
}

.pt-225 {
  padding-top: 225px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-105 {
  padding-bottom: 105px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-125 {
  padding-bottom: 125px;
}

.pb-130 {
  padding-bottom: 130px;
}

.pb-135 {
  padding-bottom: 135px;
}

.pb-140 {
  padding-bottom: 140px;
}

.pb-145 {
  padding-bottom: 145px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pb-155 {
  padding-bottom: 155px;
}

.pb-160 {
  padding-bottom: 160px;
}

.pb-165 {
  padding-bottom: 165px;
}

.pb-170 {
  padding-bottom: 170px;
}

.pb-175 {
  padding-bottom: 175px;
}

.pb-180 {
  padding-bottom: 180px;
}

.pb-185 {
  padding-bottom: 185px;
}

.pb-190 {
  padding-bottom: 190px;
}

.pb-195 {
  padding-bottom: 195px;
}

.pb-200 {
  padding-bottom: 200px;
}

.pb-205 {
  padding-bottom: 205px;
}

.pb-210 {
  padding-bottom: 210px;
}

.pb-215 {
  padding-bottom: 215px;
}

.pb-220 {
  padding-bottom: 220px;
}

.pb-225 {
  padding-bottom: 225px;
}

.countdown {
  padding-top: 40px;
  padding-bottom: 40px;
}

.countdown .single-count-content {
  position: relative;
  padding: 0 40px;
  text-align: center;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .countdown .single-count-content {
    padding: 0 30px;
  }
}

@media (max-width: 767px) {
  .countdown .single-count-content {
    padding: 0 10px;
  }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .countdown .single-count-content {
    padding: 0 20px;
  }
}

.countdown .single-count-content::after {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 50px;
}

@media (max-width: 767px) {
  .countdown .single-count-content::after {
    top: -10px;
  }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .countdown .single-count-content::after {
    top: -5px;
  }
}

.countdown .single-count-content:first-child {
  padding-left: 0px;
}

.countdown .single-count-content:last-child {
  padding-right: 0px;
}

.countdown .single-count-content:last-child::after {
  display: none;
}

.countdown .single-count-content .count {
  font-size: 50px;
}

@media (max-width: 767px) {
  .countdown .single-count-content .count {
    font-size: 35px;
  }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .countdown .single-count-content .count {
    font-size: 45px;
  }
}

.countdown .single-count-content .text {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .countdown .single-count-content .text {
    font-size: 15px;
  }
}

.header {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  z-index: 2;
}

main.main-06 {
  background: #0A0A0A;
  overflow: hidden;
}

main .header.header-06 {
  position: unset;
  padding-top: 100px;
  padding-bottom: 120px;
}

@media (max-width: 767px) {
  main .header.header-06 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

@media (max-width: 767px) {
  main .header.header-06 .header-right {
    display: none;
  }
}

main .header.header-06 .header-right a {
  color: #fff;
  font-size: 20px;
  font-family: "Space Mono", sans-serif;
}

main .main-wrapper.demo-06 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: auto;
}

main .main-wrapper.demo-06 .hero-area {
  margin-bottom: 100px;
}

main .main-wrapper.demo-06 .hero-area {
    position: relative;
    overflow: hidden;
}

main .main-wrapper.demo-06 .hero-area::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.03) 0%, transparent 50%);
    animation: rotate 30s linear infinite;
    z-index: -1;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

main .main-wrapper.demo-06 .hero-area h1 {
    font-size: 120px;
    font-weight: 700;
    color: #fff;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.5) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255,255,255,0.1);
}

.tagline {
    font-size: 32px;
    color: rgba(255,255,255,0.9);
    font-family: "Space Mono", sans-serif;
    letter-spacing: 2px;
    margin-bottom: 60px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    main .main-wrapper.demo-06 .hero-area h1 {
        font-size: 90px;
    }
    .tagline {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    main .main-wrapper.demo-06 .hero-area h1 {
        font-size: 50px;
    }
    .tagline {
        font-size: 20px;
        letter-spacing: 1px;
    }
}

main .main-wrapper.demo-06 .hero-area p {
  font-family: "Space Mono", sans-serif;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 40px;
}

main .main-wrapper.demo-06 .hero-area .countdown {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

main .main-wrapper.demo-06 .hero-area .countdown::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 45%, rgba(255,255,255,0.05) 50%, transparent 55%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

main .main-wrapper.demo-06 .hero-area .countdown .single-count-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 20px;
    min-width: 140px;
    background: rgba(255,255,255,0.02);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

main .main-wrapper.demo-06 .hero-area .countdown .single-count-content:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

main .main-wrapper.demo-06 .hero-area .countdown .single-count-content::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, rgba(255,255,255,0.5), transparent);
    border-radius: 50%;
    box-shadow: 0 8px 0 rgba(255,255,255,0.2);
}

main .main-wrapper.demo-06 .hero-area .countdown .single-count-content:last-child::after {
    display: none;
}

main .main-wrapper.demo-06 .hero-area .countdown .single-count-content .count {
    font-family: "Poppins", sans-serif;
    font-size: 72px;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.5) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(255,255,255,0.1);
}

main .main-wrapper.demo-06 .hero-area .countdown .single-count-content .text {
    font-family: "Space Mono", sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.6);
    position: relative;
}

@media (max-width: 767px) {
    main .main-wrapper.demo-06 .hero-area .countdown {
        gap: 20px;
        padding: 20px;
    }

    main .main-wrapper.demo-06 .hero-area .countdown .single-count-content {
        min-width: 80px;
        padding: 15px 10px;
    }

    main .main-wrapper.demo-06 .hero-area .countdown .single-count-content .count {
        font-size: 36px;
    }

    main .main-wrapper.demo-06 .hero-area .countdown .single-count-content .text {
        font-size: 12px;
        letter-spacing: 1px;
    }

    main .main-wrapper.demo-06 .hero-area .countdown .single-count-content::after {
        right: -10px;
        width: 4px;
        height: 4px;
    }
}

main .main-wrapper.demo-06 .team-area {
  margin-bottom: 100px;
}

@media (max-width: 767px) {
  main .main-wrapper.demo-06 .team-area {
    margin-bottom: 30px;
  }
}

main .main-wrapper.demo-06 .team-area .section-title h1 {
  font-size: 26px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #fff;
  padding-bottom: 7px;
  margin-bottom: 40px;
  position: relative;
}

@media (max-width: 767px) {
  main .main-wrapper.demo-06 .team-area .section-title h1 {
    font-size: 20px;
  }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  main .main-wrapper.demo-06 .team-area .section-title h1 {
    font-size: 22px;
  }
}

main .main-wrapper.demo-06 .team-area .section-title h1::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 1px;
  background: #fff;
  bottom: 0;
  left: 0;
}

main .main-wrapper.demo-06 .team-area .section-title h2 {
  font-family: "Poppins", sans-serif;
  font-size: 45px;
  line-height: 55px;
  font-weight: 45px;
  color: #fff;
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  main .main-wrapper.demo-06 .team-area .section-title h2 {
    font-size: 28px;
    line-height: 40px;
  }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  main .main-wrapper.demo-06 .team-area .section-title h2 {
    font-size: 32px;
    line-height: 42px;
  }
}

main .main-wrapper.demo-06 .team-area .team-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -25px;
  margin-right: -25px;
}

main .main-wrapper.demo-06 .team-area .team-wrapper .team-item {
  width: calc(33.33% - 50px);
  margin: 0px 25px 50px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  main .main-wrapper.demo-06 .team-area .team-wrapper .team-item {
    width: calc(33.33% - 30px);
    margin: 0px 15px 50px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  main .main-wrapper.demo-06 .team-area .team-wrapper .team-item {
    width: calc(50% - 30px);
    margin: 0px 15px 50px;
  }
}

@media (max-width: 767px) {
  main .main-wrapper.demo-06 .team-area .team-wrapper .team-item {
    width: calc(100% - 50px);
    margin: 0px 25px 50px;
  }
}

main .main-wrapper.demo-06 .team-area .team-wrapper .team-item .team-img {
  position: relative;
  margin-bottom: 20px;
}

main .main-wrapper.demo-06 .team-area .team-wrapper .team-item .team-img img {
  width: 100%;
}

main .main-wrapper.demo-06 .team-area .team-wrapper .team-item .team-img .social-links {
  position: absolute;
  width: 185px;
  height: 0px;
  background: #fff;
  border-top-right-radius: 57px;
  left: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

main .main-wrapper.demo-06 .team-area .team-wrapper .team-item .team-img .social-links li {
  display: inline-block;
  margin: 0 8px;
}

main .main-wrapper.demo-06 .team-area .team-wrapper .team-item .team-img .social-links li a {
  font-size: 18px;
  color: #0A0A0A;
}

main .main-wrapper.demo-06 .team-area .team-wrapper .team-item .team-img .social-links li a:hover {
  color: #D5081A;
}

main .main-wrapper.demo-06 .team-area .team-wrapper .team-item:hover .team-img .social-links {
  height: 57px;
  opacity: 1;
  visibility: visible;
}

main .main-wrapper.demo-06 .team-area .team-wrapper .team-item .team-info h4 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

main .main-wrapper.demo-06 .team-area .team-wrapper .team-item .team-info p {
  font-family: "Space Mono", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

main .footer {
  width: 100%;
  margin-bottom: 50px;
}

main .footer p {
  font-family: "Space Mono", sans-serif;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 767px) {
  main .footer p {
    text-align: center;
  }
}

main .footer .credit {
  text-align: right;
}

@media (max-width: 767px) {
  main .footer .credit {
    text-align: center;
  }
}
/*# sourceMappingURL=style.css.map */

/* BridviaConnect Custom Styles */
.logo {
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.problem-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.problem-list li {
    font-family: "Space Mono", sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.solution-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 35px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.solution-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(255, 255, 255, 0.03) 50%,
        transparent 100%
    );
    transform: translateX(-100%);
    transition: transform 0.8s ease;
}

.solution-item:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.solution-item:hover::before {
    transform: translateX(100%);
}

.solution-item h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 25px;
    font-family: "Poppins", sans-serif;
    position: relative;
    padding-bottom: 15px;
}

.solution-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,0.5), transparent);
    transition: width 0.3s ease;
}

.solution-item:hover h3::after {
    width: 60px;
}

.solution-item ul {
    list-style: none;
    padding: 0;
}

.solution-item ul li {
    font-family: "Space Mono", sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    line-height: 1.6;
    transition: all 0.3s ease;
    padding-left: 24px;
    position: relative;
}

.solution-item ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.solution-item:hover ul li {
    transform: translateX(5px);
    color: rgba(255, 255, 255, 0.9);
}

.solution-item:hover ul li::before {
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.signup-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px 30px;
    border-radius: 10px;
    margin-top: 60px;
}

.signup-section h2 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 20px;
    font-family: "Poppins", sans-serif;
}

.signup-form {
    max-width: 500px;
    margin: 30px auto;
    display: flex;
    gap: 15px;
}

.signup-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    color: #fff;
    font-family: "Space Mono", sans-serif;
    border-radius: 5px;
}

.signup-form input:focus {
    border-color: rgba(255, 255, 255, 0.5);
    outline: none;
}

.signup-form .btn-primary {
    background: #fff;
    color: #0A0A0A;
    border: none;
    padding: 12px 30px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.signup-form .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
}

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #fff;
}

@media (max-width: 767px) {
    .solution-grid {
        grid-template-columns: 1fr;
    }

    .signup-form {
        flex-direction: column;
    }

    .signup-form .btn-primary {
        width: 100%;
    }

    .social-links {
        justify-content: center;
        margin-bottom: 20px;
    }
}

/* Enhanced Contact Options */
.contact-options {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
}

.contact-option a {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.contact-option i {
    font-size: 32px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.contact-option span {
    color: rgba(255, 255, 255, 0.9);
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-option small {
    color: rgba(255, 255, 255, 0.6);
    font-family: "Space Mono", sans-serif;
    font-size: 14px;
}

.contact-option a:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-option a:hover i {
    transform: scale(1.1);
    color: #fff;
}

/* Enhanced Footer */
.footer-content {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.social-links {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.social-links .linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.social-links .linkedin-link i {
    font-size: 24px;
}

.social-links .linkedin-link span {
    font-family: "Space Mono", sans-serif;
    font-size: 14px;
}

.social-links .linkedin-link:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 767px) {
    .contact-options {
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-option a {
        padding: 20px;
    }
}
