/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

.join-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #1a2a3a;
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px !important;
  font-weight: 300;
  text-transform: uppercase;
}

.join-btn__arrow {
  width: 15px;
  height: auto;
}

@media (max-width: 600px) {
  .join-btn {
    font-size: 14px !important;
    gap: 10px;
  }

  .join-btn__arrow {
    width: 13px;
  }
}

/* Spacing between menu items */
.header-nav-main li {
    margin: 0 35px;
}

.header-button .button.primary {
  background: transparent !important;
  border: 1px solid #ffffff !important;
  color: #ffffff !important;
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif !important;
  font-size: 16px !important;
  font-weight: 300 !important;
  text-transform: uppercase !important;
  padding: 5px 25px !important;
  text-decoration: none !important;
  display: inline-block !important;
  width: auto !important;
}
.header-button .button.primary:hover {
  background: transparent !important;
}
.header-button .button.primary span {
  font-weight: 300 !important;
}

.nav-dark .nav>li>a {
	
	color: #ffffff !important;
}

.sec-gradient .section-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    #0E151F 0%,
    rgba(14, 21, 31, 0.4) 77%,
    rgba(14, 21, 31, 0) 100%
  );
  z-index: 1;
}

.hero-heading h1,
.hero-heading h2,
.hero-heading h3,
.hero-heading h4,
.hero-heading h5,
.hero-heading h6 {
    line-height: 1.1 !important;
}

.cust-btn {
  background: #ffffff !important;
  color: #0B0B0B !important;
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif !important;
  font-size: 16px !important;
  font-weight: 300 !important;
  text-transform: uppercase !important;
  padding: 5px 40px !important;
  text-decoration: none !important;
  display: inline-block !important;
  width: auto !important;
}

@media (max-width: 768px) {
  .cust-btn {
    font-size: 14px !important;
    padding: 5px 28px !important;
  }
}

@media (max-width: 480px) {
  .cust-btn {
    font-size: 13px !important;
    padding: 5px 20px !important;
  }
}

.stroke-txt p::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background-color: #0E151F;
  vertical-align: middle;
  margin-right: 12px;
}

.stroke-txt-white p::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background-color: #ffffff;
  vertical-align: middle;
  margin-right: 12px;
}

.sec-gradient-2 .section-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(14, 21, 31, 0.3) 0%,
    #0E151F 88%
  );
  z-index: 1;
}

.sec-gradient-2 .section-bg img {
  filter: grayscale(100%);
}

/* =========================================
   IMN ADVANTAGE SECTION
   ========================================= */


.imn-advantage__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0 auto;
}

/* Title block + each card = 33.33% flex items */
.imn-advantage__title-block,
.imn-advantage__card {
    width: calc(33.333% - 14px);
    box-sizing: border-box;
}

/* ---- Title Block ---- */
.imn-advantage__title-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 20px 30px 0;
}

.imn-advantage__title-block .stroke-txt p {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 1.1rem;
    color: #0E151F;
    letter-spacing: 0.05em;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

.imn-advantage__heading {
    font-size: 50px;
    font-weight: 700;
    color: #0E151F;
    line-height: 1.1;
    margin: 0;
}

/* ---- Cards ---- */
.imn-advantage__card {
    background: #fff;
    border: 1px solid #ABBDBD;
    padding: 40px 40px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
	cursor: default;
}

.imn-advantage__card:hover {
    box-shadow: 0 8px 24px rgba(14, 21, 31, 0.08);
    transform: translateY(-4px);
}

.imn-advantage__card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 18px;
}

.imn-advantage__icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.imn-advantage__number {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    color: #93989F;
}

.imn-advantage__card-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: rgb(14, 21, 31);
    margin: 0 0 14px 0;
    line-height: 1.2;
}

.imn-advantage__card-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}
/* ---- Responsive ---- */
@media (max-width: 991px) {
    .imn-advantage__title-block,
    .imn-advantage__card {
        width: calc(50% - 10px);
    }

    .imn-advantage__heading {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .imn-advantage__title-block,
    .imn-advantage__card {
        width: 100%;
    }

    .imn-advantage__title-block {
        padding: 0 0 10px 0;
    }

    .imn-advantage__title-block .stroke-txt p {
        font-size: 1rem;
    }

    .imn-advantage__heading {
        font-size: 2rem;
    }

    .imn-advantage__card {
        padding: 30px 24px;
    }

    .imn-advantage__card-title {
        font-size: 1.4rem;
    }

    .imn-advantage__card-desc {
        font-size: 0.9rem;
    }

    .imn-advantage__icon {
        width: 27px;
        height: 27px;
    }
}
