/* Header Styling Starts */

@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Outfit:wght@100..900&display=swap");

/* @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: "Inter", sans-serif;
  /* font-family: "Poppins", sans-serif; */
}

html {
  scroll-behavior: smooth;
}

.text-black {
  color: black;
}

a {
  text-decoration: none;
}

a:hover {
  color: #064bbc;
  /* color: black; */
  transition: 0.2s ease-in-out;
}

li {
  list-style: none;
}

.gap-20 {
  gap: 20px;
}

.gap-40 {
  gap: 40px;
}

/* Header styling Starts */

.hero-cta:hover {
  color: white;
}

/* Navbar styles */
/* .navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
} */
.navbar {
  background-color: #0081a7;
  padding: 10px 0px 0px;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: 0.5s ease-in-out;
}

.nav-cnt {
  border-bottom: 1px solid white;
  padding-bottom: 6px;
}

.navbar-brand {
  font-size: 30px;
  font-weight: 500;
  color: #0081a8 !important;
  text-decoration: none;
  display: flex;
}

.img-header {
  height: 45px;
  /* width: 100%; */
}

/* .navbar-brand::after {
    content: "◆";
    color: #0081a8;
    margin-left: 5px;
    font-size: 20px;
} */

.navbar-nav .nav-link {
  color: #ffffff !important;
  font-weight: 500;
  padding: 8px 20px !important;
  position: relative;
  display: inline-block;
}

.mb-none {
  display: block;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #ffffff !important;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: calc(100% - 40px);
  height: 3px;
  background-color: #ffffff;
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  transform-origin: center;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
  opacity: 1;
}

.dropdown-toggle::after {
  display: none;
}

.dropdown-toggle i {
  margin-left: 8px;
  transition: transform 0.3s ease;
  font-size: 12px;
}

/* Dropdown menu */
.dropdown-menu {
  border: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 10px 0;
  margin-top: 10px;
}

.dropdown-item {
  padding: 10px 20px;
  color: #6c757d;
  transition: 0.3s ease-in-out;
}

.dropdown-item:hover {
  background-color: #f8f9fa;
  color: #0081a8;
  padding-left: 20px;
}

/* Button */
.btn-quote {
  background-color: #01afba;
  border: none;
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  border: 1px solid white;
}

.btn-quote:hover {
  background-color: #0081a8;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(29, 181, 166, 0.3);
}

/* Mobile toggle */
.navbar-toggler {
  border: none;
  background: transparent;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.hamburger {
  display: flex;
  flex-direction: column;
  width: 25px;
  height: 20px;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Custom Mobile Menu */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.show {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100vh;
  /* background: linear-gradient(135deg, #006b8b 0%, #0081a8 100%); */
  background: #0081a7;
  color: white;
  z-index: 1051;
  transition: left 0.3s ease;
  overflow-y: auto;
}

.mobile-menu.show {
  left: 0;
}

.mobile-menu-header {
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu-title {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
}

.mobile-close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-body {
  padding: 0;
}

.mobile-nav-link {
  color: white !important;
  padding: 15px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  padding-left: 30px;
  color: white !important;
}

.mobile-dropdown {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-dropdown-toggle {
  color: white !important;
  padding: 15px 20px;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-dropdown-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
  padding-left: 30px;
  color: white !important;
}

.mobile-dropdown-toggle i {
  transition: transform 0.3s ease;
}

.mobile-dropdown-toggle.active i {
  transform: rotate(180deg) !important;
}

.mobile-dropdown-menu {
  background-color: rgba(0, 0, 0, 0.2);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-dropdown-menu.show {
  max-height: 300px;
}

.mobile-dropdown-item {
  color: white !important;
  padding: 12px 40px;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  padding-left: 50px;
  color: white !important;
}

.mobile-quote-section {
  padding: 20px;
}

@media (max-width: 991px) {
  .mb-none {
    display: none;
  }
  .navbar-nav {
    display: none;
  }

  .mobile-menu-overlay,
  .mobile-menu {
    display: block;
  }
}

@media (min-width: 992px) {
  .mobile-menu-overlay,
  .mobile-menu {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }

  .dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }

  .navbar .dropdown-toggle i {
    transition: transform 0.3s ease !important;
  }

  .navbar .dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg) !important;
  }

  .dropdown-menu {
    min-width: auto;
    width: max-content;
    text-align: center;
  }

  .navbar .dropdown-menu {
    display: block;
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
}

/* Header styling Ends */

/* HOME PAGE STYLING STARTS */

/* hero section starts */

.hero-section {
  background-image: linear-gradient(
      to right,
      rgb(251 249 249 / 74%),
      rgb(209 209 209 / 50%)
    ),
    url(/images/emzhome/hero-main.png);
  background-size: cover;
  background-position: center center;
  padding-top: 30px;
  color: white;
}

/* .hero-content {
    padding: 80px 0;
} */

.hero-para {
  color: black;
  font-size: 14px;
}

.hero-left {
  /* padding-left: 40px; */
  padding-right: 40px;
  display: flex;
  align-items: center;
}

.hero-brand {
  color: #0081a8;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

span.hero-line {
  display: inline-block;
  width: 160px;
  height: 2px;
  background-color: #ffc107;
  margin-right: 10px;
}

.hero-headline h1 {
  color: #000000;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 30px;
}

/* .hero-headline span {
    color: #fff; 
    background-color: #0081a8;
    padding: 0 10px;
    display: inline-block;
    text-transform: uppercase;
} */

.hero-description {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 30px;
}

.hero-cta {
  background-color: #01afba;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 10px 25px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.hero-cta:hover {
  background-color: #0081a8;
}

.form-card {
  background-color: white;
  border-radius: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 40px;
  margin-top: 20px;
  width: 95%;
}

.form-card h3 {
  color: #333;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.form-card p {
  color: #666;
  font-size: 14px;
  margin-bottom: 25px;
}

.form-control {
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 10px 15px;
  margin-bottom: 15px;
  font-size: 14px;
  background: #f9f9f9;
}

.form-control:focus {
  box-shadow: none;
  border-color: #0081a8;
}

.form-control::placeholder {
  color: #aaa;
}

.form-label {
  font-size: 14px;
  color: #3c3c3c;
  font-weight: 700;
  margin-bottom: 5px;
}

.sign-up-btn {
  background-color: #01afba;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 12px;
  width: 100%;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.sign-up-btn:hover {
  background-color: #0081a8;
}

.hand-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.hero-right-content {
  position: relative;
  z-index: 10;
}

.bottom-bar {
  height: 8px;
  width: 100%;
  background: linear-gradient(
    to right,
    #007b9c 0%,
    #007b9c 25%,
    #ffc107 25%,
    #ffc107 50%,
    #6c757d 50%,
    #6c757d 75%,
    #00bcd4 75%,
    #00bcd4 100%
  );
}

/* Hero Section ends*/

/* Main Section Starts */

.main-section {
  /* background-image: linear-gradient(to bottom, rgb(0 129 167), rgb(235 235 235 / 0%)); */
  background: linear-gradient(
    181deg,
    rgba(0, 129, 167, 1) 37%,
    rgb(255 255 255) 100%
  );
  padding: 110px 0 50px;
  margin-top: -75px;
}

.gap-25 {
  gap: 25px;
}

.main-section .hero-cta {
  display: flex;
  width: 230px;
  align-items: end;
  justify-content: space-between;
  background-color: transparent;
  color: #ffffff;
  border: 1px solid white;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.main-section .hero-cta.two {
  background: white;
  border: none;
  color: #000000;
}

/* colors */
.scramble-container {
  /* font-size: 3rem; */
  /* font-weight: bold; */
  /* text-align: center; */
  display: inline-block;
}

.scramble-container span {
  text-transform: uppercase;
}

/* Hide all spans by default, show only first one */
[data-scramble="itself"] {
  display: none;
}

[data-scramble="itself"]:first-child {
  display: inline;
}

/* Colors */
[data-color="red"] {
  background: linear-gradient(45deg, #ff1919, #b31c1c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

[data-color="gold"] {
  background: linear-gradient(45deg, #ffd700, #d1ae00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

[data-color="darkpurple"] {
  background: linear-gradient(45deg, #4b0082, #851ee6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Dud characters styling */
.dud {
  color: #333 !important; /* Gray color for scrambling chars */
}

.main-section .hero-cta svg {
  transition: 0.3s ease-in-out;
  transform: rotate(-45deg);
}

.main-section .hero-cta:hover svg {
  transition: 0.3s ease-in-out;
  transform: rotate(0deg);
}

.main-section .hero-headline {
  color: #ffffff;
  line-height: 51px;
  font-weight: 700;
  font-size: 39px;
}

/* .main-section .hero-headline span{
    color: #ffffff; 
    background: none;
    line-height: 51px;
    font-weight: 700;
    font-size: 39px;
} */

.main-section .hero-para {
  font-size: 17px;
  color: #ffffff;
}

/* Main Section ends */

/* Partners Section Slide Starts */

.affiliate-section {
  background: #e9f2f6;
  padding: 80px 0;
  /* min-height: 100vh; */
  display: flex;
  align-items: center;
}

.aff-p{
  text-align: center;
  color: #525252;
  margin-bottom: 30px;
}

.partner-slider-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.swiper {
  overflow: hidden;
  padding: 20px 0;
}

.slide-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
  padding: 0 20px;
}

.partner-card {
  background: #f8fbfc;
  border-radius: 12px;
  transition: all 0.3s ease;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo {
  width: 200px;
  height: auto;
  max-height: 80px;
  object-fit: contain;
}

/* Custom Navigation */
.custom-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 10;
  border: none;
  font-size: 18px;
}

.custom-nav:hover {
  background: #0081a7;
  color: white;
}

.swiper-button-prev-custom {
  left: -25px;
}

.swiper-button-next-custom {
  right: -25px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .slide-grid {
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: repeat(4, 1fr);
      gap: 15px;
      padding: 0 15px;
  }
  
  .partner-card {
      height: 130px;
      padding: 25px 15px;
  }
}

@media (max-width: 768px) {

  .partner-logo {
    width: 169px;
  }

  .section-title {
      font-size: 2.5rem;
  }
  
  .custom-nav {
      width: 45px;
      height: 45px;
      font-size: 16px;
  }
  
  .swiper-button-prev-custom {
      left: -20px;
  }

  .swiper-button-next-custom {
      right: -20px;
  }
  
  .slide-grid {
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: repeat(4, 1fr);
      gap: 12px;
      padding: 0 10px;
  }
  
  .partner-card {
      height: 120px;
      padding: 20px 10px;
  }
  
}

@media (max-width: 576px) {
  .section-title {
      font-size: 2rem;
  }
  
  .section-description {
      font-size: 1rem;
      padding: 0 20px;
  }
  
  .affiliate-section {
      padding: 60px 0;
  }

  .slide-grid {
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: repeat(4, 1fr);
      gap: 10px;
      padding: 0 10px;
  }
  
  .partner-card {
      height: 100px;
      padding: 15px 8px;
  }

  .custom-nav {
      width: 40px;
      height: 40px;
      font-size: 14px;
  }
  
  .swiper-button-prev-custom {
      left: -15px;
  }

  .swiper-button-next-custom {
      right: -15px;
  }
}

/* Partners Section Slide Ends */

/* About page new section strats */

.about-section-main {
  background-image: url(/images/emzhome/about_us.png);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 64%;
  color: #000000;
  height: 600px;
  padding: 50px 0;
  max-width: 1350px;
  margin: auto;
  position: relative;
}

.about-cta-section{
    background-image: linear-gradient(to right, rgb(0 128 168 / 100%), rgb(41 170 207));
    background-size: cover;
    background-position: center top;
    padding: 60px 0;
    color: white;
    position: relative;
}

.about-section-main .hero-left {
  padding-top: 80px;
}

.about-section-main .hero-headline {
  text-transform: uppercase;
  font-weight: 700;
}

.about-section-main .hero-cta {
  display: flex;
  width: 230px;
  align-items: end;
  justify-content: space-between;
  background-color: #000000;
  color: #ffffff;
  border: 1px solid white;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.about-section-main .hero-cta svg {
  transition: 0.3s ease-in-out;
  transform: rotate(-45deg);
}

.about-section-main .hero-cta:hover svg {
  transition: 0.3s ease-in-out;
  transform: rotate(0deg);
}

/* About page new section ends */

/* stats sec starts */

/* Stats Section */
.stats-section {
  padding-top: 35px;
  padding-bottom: 20px;
  background-color: #f8f9fa;
}
.stats-section h2 {
  color: #333;
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 3rem !important;
}

.stats-section .display-5 {
  color: #0081a8 !important;
  font-weight: 700;
  font-size: 2.8rem;
  margin-bottom: 0.25rem;
}

.stats-section .text-muted {
  font-size: 0.85rem;
  /* text-transform: uppercase; */
  color: #6c757d !important;
  letter-spacing: 0.5px;
  font-weight: 400;
  margin-bottom: 0.2rem;
}

/* Animation styles */
.stat-item {
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-10px);
}

/* CSS for smooth counter animation */
.counter-element.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Counter animation styles */
.stats-mine,
.stats-proof {
  opacity: 0;
  transform: translateY(10px);
  display: inline-block;
  transition: none; /* We want precise animation control */
}

.counter-animate {
  animation: countUp 0.3s ease-out forwards;
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* stats sec ends */

/* affiliate section starts */

/* Affiliate Growth Engine Section */
.affiliate-growth-engine-section {
  background-color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

/* Left side image with play button */
.position-relative {
  position: relative;
}

.aff-img1 {
  background-image: url(/images/emzhome/emarzen-grl.jpg);
  background-position: center right;
  background-size: cover;
  height: 680px;
  width: 100%;
  border-radius: 30px;
}

.play-button-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #00bcd4;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.play-button:hover {
  transform: scale(1.1);
}

/* Right side content */
.about-us-section {
  padding-left: 15px;
}

.section-label {
  color: #0081a8;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

span.hero-line2 {
  display: inline-block;
  width: 100px;
  height: 2px;
  background-color: #ffc107;
  margin-right: 10px;
}

.section-title {
  color: #333;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-text {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
  font-weight: 400;
}

/* Why Emarzen section */
.why-emarzen-section {
  margin-top: 30px;
  /* background-color: #f9f9f9; */
  border-radius: 5px;
  padding: 20px;
}

.why-emarzen-header {
  display: flex;
  margin-bottom: 15px;
}

.aff-img2 {
  background-image: url(/images/emzhome/emarzen-grl2.jpg);
  background-position: center right;
  background-size: cover;
  height: 180px;
  width: 100%;
  border-radius: 20px;
}

.accent-line {
  width: 5px;
  background-color: #0081a8;
  margin-right: 15px;
  border-radius: 2px;
}

.why-title {
  color: #333;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
}

.why-subtitle {
  color: #666;
  font-size: 14px;
  margin-bottom: 0;
  font-style: italic;
}

/* Feature list */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
}

.feature-icon-home {
  color: #0081a8;
  font-weight: bold;
  margin-right: 10px;
  font-size: 18px;
}

/* CTA Button */
.cta-button,
.btn-started {
  display: inline-block;
  background-color: #00afb9;
  color: white;
  padding: 10px 36px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border: none;
  transition: background-color 0.3s ease;
}

.anchor-cta{
  background: white;
  color: black;
  padding: 4px;
}

.cta-button:hover,
.btn-started:hover {
  background-color: #0081a8;
  text-decoration: none;
  color: white;
}
/* affiliate section ends */

/* emporwerment section css starts */

/* Empower Every Stakeholder Section */
.empower-stakeholder-section {
  background-color: #f9f9f9;
  padding: 60px 0;
}

/* Active card styling (for first card) */
.feature-card.active {
  background-color: #0081a8;
  /* background: linear-gradient(135deg, #0081a8 0%, #04afe1 100%); */
  color: white;
}

.feature-card.active .code-icon,
.feature-card.active .megaphone-icon {
  color: white;
} /* Empower Every Stakeholder Section */
.empower-stakeholder-section {
  background-color: #f9f9f9;
  padding: 70px 0 100px;
}

/* Section Header */
.emp-lable {
  color: #0081a8;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.section-title {
  color: #333;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-description {
  color: #555;
  font-size: 16px;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

/* Feature Cards */
.feature-card {
  background-color: #fff;
  border-radius: 26px;
  padding: 30px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
}

.feature-card:hover {
  background-color: #0081a8;
  /* background: linear-gradient(135deg, #0081a8 0%, #04afe1 100%); */
  color: white;
}

.feature-card:hover .code-icon {
  color: white;
}

.icon-container {
  margin-bottom: 6px;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.code-icon {
  font-size: 36px;
  font-weight: bold;
  color: #0081a8;
}

.feature-text {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  max-width: 220px;
  font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .aff-img1 {
    height: 250px;
  }
  .feature-card {
    margin-bottom: 20px;
  }

  .section-title {
    font-size: 28px;
  }

  .section-description {
    font-size: 15px;
  }
}

/* emporwerment section css ends */

/* Smart Affiliate Growth Section starts */
.smart-growth-section {
  padding-top: 72px;
  padding-bottom: 5rem;
  background: #0081a8;
  /* background: linear-gradient(109deg, #0081a8 60%, #04afe1 100%); */
}

.smart-growth-section .text-uppercase.small {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
}

.smart-growth-section h2 {
  font-weight: 900;
  font-size: 30px;
}

.sm-affp {
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.dot-img {
  width: 80px;
  height: 40px;
}

.smart-growth-section .lead {
  color: rgba(255, 255, 255, 0.95);
  font-size: 15px;
  font-weight: 300;
  /* margin-bottom: 2rem; */
  line-height: 1.4;
}

.smart-aff-crd:hover,
.smart-aff-crd.active {
  background: white;
  color: black;
}

.smart-aff-crd.active p,
.smart-aff-crd.active .smart-h,
.smart-aff-crd:hover p,
.smart-aff-crd:hover .smart-h {
  color: #0081a8;
}
.smart-aff-crd.active svg {
  fill: #0081a8;
}
.smart-aff-crd:hover svg {
  fill: #0081a8;
}

.smart-aff-crd svg {
  fill: #ffffff;
}

.smart-h {
  font-weight: 600;
}

.smart-p {
  margin-bottom: 0;
}

.smart-aff-crd {
  padding: 20px;
  border-radius: 20px;
  width: 90%;
  margin-bottom: 30px;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.smart-growth-section h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: white;
}

.smart-growth-section .smart-p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.5;
}

.smart-growth-section {
  font-size: 6rem;
  line-height: 1;
}

.smart-growth-section .col-lg-5 .smart-p {
  font-size: 0.8rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.smart-growth-section .flex-shrink-0 svg {
  color: #ffffff;
}
/* Smart Affiliate Growth Section ends */

/* emarzen make it simple section starts */
.emarzen-simple-section {
  padding: 60px 0;
}

.section-tag {
  color: #0081a8;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.main-heading-smp {
  color: #050505;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.mks-lft-cnt {
  margin-top: 80px;
}

.mks-card {
  background: #0081a9;
  /* background: linear-gradient(135deg, #0081a8 0%, #04afe1 100%); */
  border: none;
  border-radius: 30px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  color: white;
  position: relative;
  overflow: hidden;
  left: -130px;
  top: 25px;
  width: 120%;
}

/* .mks-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
} */

.mks-card .mks-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  margin-left: 75px;
}

.mks-card .mks-content:last-child {
  margin-bottom: 0;
}

.mks-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mks-content-text {
  flex: 1;
}

.mks-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
}

.mks-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.mks-award-badge {
  position: absolute;
  bottom: -42px;
  left: 20%;
  transform: translateX(-50%);
  background: white;
  border-radius: 20px;
  padding: 15px 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.mks-award-icon {
  width: 30px;
  height: 30px;
  background: #17a2b8;
  border-radius: 50%;
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mks-award-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: #2c3e50;
  margin: 0;
}

.image-container {
  position: relative;
  /* overflow: hidden; */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  z-index: 200;
}

.main-image {
  border-radius: 25px;
  width: 100%;
  height: 400px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .main-heading {
    font-size: 2rem;
  }

  .mks-card {
    padding: 1.5rem;
  }

  .mks-card .mks-content {
    flex-direction: column;
    text-align: left;
    gap: 1rem;
    margin-bottom: 45px;
  }

  .mks-icon {
    margin: 0;
  }
}

/* emarzen make it simple section ends */

/* From Sign-Up to Scale Section */
.signup-scale-section {
  padding: 45px 0;
}

.signup-scale-section .section-label {
  color: #0081a9;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  font-size: 14px;
  text-transform: uppercase;
  position: relative;
}

.signup-scale-heading {
  color: #333;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.signup-scale-section .description {
  color: #666;
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.signup-scale-section .feature-list {
  margin-bottom: 2rem;
}

.signup-scale-section .feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: #444;
}

.signup-scale-section .images-container {
  position: relative;
}

.scale-rght-div {
  margin-top: 60px;
}

.signup-scale-section .main-image {
  width: 280px;
  height: 570px;
  border-radius: 20px;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.signup-scale-section .secondary-image {
  width: 232px;
  height: 180px;
  border-radius: 15px;
  /* object-fit: cover; */
  position: absolute;
  top: 106px;
  right: 0px;
  z-index: 3;
}

.signup-scale-section .buyer-signals-card {
  position: absolute;
  bottom: 110px;
  right: 0px;
  background: #0081a9;
  /* background: linear-gradient(100deg,  #0081A9, #04afe1); */
  color: white;
  padding: 1.5rem;
  border-radius: 15px;
  width: 232px;
  z-index: 4;
}

.signup-scale-section .card-icon {
  width: 30px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.signup-scale-section .card-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.signup-scale-section .card-subtitle {
  font-size: 0.8rem;
  opacity: 0.9;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .signup-scale-section h2 {
    font-size: 32px;
  }

  .signup-scale-section .images-container {
    margin-top: 3rem;
    text-align: center;
  }

  /* .signup-scale-section .main-image {
        width: 250px;
        height: 300px;
    } */

  .signup-scale-section .secondary-image,
  .signup-scale-section .buyer-signals-card {
    position: static;
    margin-top: 1rem;
    margin-left: auto;
    margin-right: auto;
  }
}
/* From Sign-Up to Scale Section */

/* What You See vs Emarzen Sees Section */
.comparison-section {
  background-color: #f8f9fa;
  padding: 5rem 0;
}

.section-header {
  color: #0081a9;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2.5rem;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.comparison-section h2 {
  color: #252525;
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.comparison-section .subtitle {
  color: #000000;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  font-weight: 500;
}

.metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
  margin-bottom: 0;
  background: white;
  padding: 20px;
  border-radius: 20px;
  height: 70%;
}

.metric-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid #e9ecef;
  color: #495057;
  font-size: 14px;
  font-weight: 400;
  position: relative;
  padding-left: 1rem;
}

.metric-item::before {
  content: "•";
  color: #495057;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.metric-item:nth-child(even) {
  padding-left: 2rem;
}

.col-divider-left {
  padding-left: 30px;
}

.col-divider-right {
  padding-right: 30px;
}

@media (max-width: 991.98px) {
  .col-divider {
    border-left: none;
    border-top: 1px solid #dee2e6;
    padding-left: 0;
    padding-top: 3rem;
    margin-top: 3rem;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
    height: fit-content;
  }

  .metric-item:nth-child(even) {
    padding-left: 1rem;
  }

  .metric-item:nth-child(odd) {
    padding-right: 0;
  }
}
/* What You See vs Emarzen Sees Section ends */

/* marketers complexity section starts */

.marketers-complexity-section {
  background-image: linear-gradient(
      to right,
      rgb(0 128 168 / 100%),
      rgb(255 255 255 / 0%)
    ),
    url(/images/emzhome/market-grl.jpg);
  background-size: cover;
  background-position: center top;
  padding: 80px 0;
  color: white;
}

.content-wrapper {
  position: relative;
  z-index: 2;
}

.marketers-complexity-section h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  color: white;
}

.marketers-complexity-section p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  line-height: 1.5;
  max-width: 500px;
}

.btn-get-started {
  background-color: #01afba;
  border: none;
  color: white;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.btn-get-started:hover {
  background-color: #01afba;
  color: white;
  transform: translateY(-1px);
  border: 1px solid white;
}

.ps-sticky-70 {
  position: sticky;
  top: 70px;
}

.woman-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 0;
  object-fit: cover;
}

@media (max-width: 768px) {
  .marketers-complexity-section h1 {
    font-size: 34px;
  }

  .marketers-complexity-section {
    padding: 40px 0;
    text-align: left;
  }
}

/* marketers complexity section ends */

/* Proof Behind Performance Section */
.proof-performance-section {
  padding: 65px 0;
}

.main-title {
  color: #0081a9;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.description-text {
  color: #000000;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 90%;
}

.stat-number {
  color: #000000;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
  padding-bottom: 6px;
  margin-bottom: 6px;
  border-bottom: 1px solid #01afba;
}

.stat-description {
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 2.5rem;
}

/* Tab Styles */
.custom-tabs {
  display: flex;
  margin-bottom: 2rem;
  border-bottom: 1px solid #dddddd;
}

.custom-tab {
  background: none;
  border: none;
  padding: 10px 0;
  margin-right: 40px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #adb5bd;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}

.custom-tab.active {
  color: #050505;
}

.custom-tab.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #01afba;
}

.tab-content-custom {
  display: none;
}

.tab-content-custom.active {
  display: block;
}

.proof-performance-section .client-logo {
  /* max-height: 45px; */
  width: 70%;
  margin: 0 0 0.75rem;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: opacity 0.3s ease-in-out, filter 0.3s ease-in-out;
}

.proof-performance-section .client-logo-home {
  /* max-height: 45px; */
  width: 100%;
  margin: 0 0 0.75rem;
  padding: 15px;
  background: #0081a70d;
  border-radius: 4px;
}

/* .proof-performance-section .client-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
} */

@media (max-width: 768px) {
  .main-title {
    font-size: 2rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 15px;
  }

  .custom-tab {
    margin-right: 20px;
    font-size: 0.75rem;
  }
}
/* Proof Behind Performance Section */

/* testimonial styling starts */

.testimonials-section {
  background-image: linear-gradient(
      135deg,
      rgb(255 255 255 / 85%),
      rgb(255 255 255 / 85%)
    ),
    url(/images/emzhome/testimonial-bg.png);
  background-size: cover;
  background-position: center top;
  padding: 60px 0;
  color: white;
}

.section-title3 {
  color: #0081a9;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.testimonial-heading {
  font-size: 42px;
  font-weight: 700;
  color: #2c3e50;
  line-height: 1.2;
  margin-bottom: 40px;
}

/* .testimonial-text {
  height: 120px !important;
} */

.testimonial-slider {
  visibility: hidden;
}

.testimonial-slider.slick-initialized {
  visibility: visible;
}

.testimonial-card {
  display: none;
}

.testimonial-slider.slick-initialized .testimonial-card {
  display: block;
}

.get-started-btn {
  background-color: #0081a9;
  color: white;
  padding: 15px 35px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.get-started-btn:hover {
  background-color: #17a2b8;
  color: white;
  transform: translateY(-2px);
}

/* .testimonial-slider {
    margin-top: 40px;
} */

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  margin: 0 15px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars {
  margin-bottom: 20px;
}

.star {
  color: #ffc107;
  font-size: 18px;
  margin-right: 2px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  font-style: italic;
  margin-bottom: 25px;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #0081a9;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 18px;
}

.author-info h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
}

.author-info p {
  margin: 0;
  font-size: 12px;
  color: #0081a9;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.quote-icon {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 40px;
  color: #f0f0f0;
  font-family: serif;
}

/* Slick Slider Customization */
.slick-dots {
  bottom: -50px;
}

.slick-dots li button:before {
  color: #0081a9;
  font-size: 12px;
}

.slick-dots li.slick-active button:before {
  color: #0081a9;
}

.slick-prev,
.slick-next {
  z-index: 1;
}

.slick-prev:before,
.slick-next:before {
  color: #0081a9;
  font-size: 24px;
}

@media (max-width: 768px) {
  .main-heading {
    font-size: 32px;
  }

  .testimonial-card {
    margin: 0 10px;
    height: auto;
    min-height: 280px;
  }
}

/* testimonial styling ends */

/* blog section starts */

.blog-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.section-title4 {
  color: #0081a9;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.main-heading {
  font-size: 42px;
  font-weight: 700;
  color: #2c3e50;
  line-height: 1.2;
  margin-bottom: 60px;
  text-align: center;
}

.blog-card {
  /* overflow: hidden; */
  transition: all 0.3s ease;
  height: 100%;
  margin-bottom: 30px;
  border-radius: 30px;
  width: 330px;
  cursor: pointer;
}

/* .blog-card:hover {
    transform: translateY(-10px);
    border-radius: 30px;
} */

.blog-image {
  position: relative;
  height: 250px;
  /* overflow: hidden; */
}

.blog-image img {
  border-radius: 30px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
  -webkit-transform: scale(1.05) rotate(2deg);
  transform: scale(1.05) rotate(2deg);
  opacity: 0.8;
}

.blog-card:hover .blog-title {
  color: #0081a9;
}

.category-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: #ffc107;
  color: #2c3e50;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.date-badge {
  position: absolute;
  bottom: 20px;
  left: -15px;
  background-color: #0081a9;
  color: white;
  padding: 8px 6px;
  text-align: center;
  font-weight: 600;
  min-width: 55px;
  font-size: 14px;
  line-height: 1.2;
}

.date-badge::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-width: 5px;
  left: 0%;
  top: -10px;
  border-right: 15px solid #00a1cb;
  border-top: 10px solid transparent;
}

.date-day {
  font-size: 20px;
  line-height: 1;
  display: block;
}

.date-month {
  font-size: 12px;
  text-transform: uppercase;
  display: block;
}

.blog-content {
  padding: 30px 0;
}

.blog-title {
  font-size: 22px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  line-height: 1.3;
  transition: 0.3s ease-in-out;
}

.blog-excerpt {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.learn-more-link {
  color: #0081a9;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.learn-more-link:hover {
  color: #17a2b8;
  transform: translateX(5px);
}

.learn-more-link::after {
  content: "→";
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.learn-more-link:hover::after {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .main-heading {
    font-size: 32px;
  }

  .blog-content {
    padding: 20px;
  }

  .blog-title {
    font-size: 20px;
  }
}

/* blog section ends */

/* HOME PAGE STYLING ENDS */

/* Footer Styling Starts */

/* partners slider top footer starts */

.partners-section {
  padding: 40px 0;
  background-color: #f9f9f9;
}

.partners-slider {
  margin: 0 auto;
  padding: 0 20px;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.partners-slider.slick-initialized {
  opacity: 1;
}

/* Pre-load state - horizontal layout before slick loads */
.partners-slider:not(.slick-initialized) {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
}

.partners-slider:not(.slick-initialized) .partner-logo {
  display: inline-block;
  flex: 0 0 auto;
  min-width: 250px;
}

.partner-logo {
  padding: 0 30px;
  text-align: center;
  outline: none;
  vertical-align: middle;
}

.partner-logo img {
  max-height: 80px;
  width: 100px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  filter: grayscale(100%);
}

.partner-logo:hover img {
  opacity: 1;
  filter: grayscale(0%);
}

/* Slick slider customization */
.slick-dots {
  display: none !important;
}

.slick-prev,
.slick-next {
  display: none !important;
}

.slick-track {
  display: flex;
  align-items: center;
}

.slick-slide {
  height: auto;
}

.slick-slide > div {
  height: 100%;
}

.w-80 {
  width: 80%;
}

/* partners slider top footer ends */

/* Footer styling starts */

.footer-section {
  background: #0081a8;
  /* background: linear-gradient(135deg, #1e88e5 0%, #1565c0 100%); */
  color: white;
  padding: 30px 0 30px;
}

.logo-title {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: 1px;
  display: flex;
}

.logo-subtitle {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
}

.description-text-f {
  color: white;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: 30px;
}

.email-form {
  position: relative;
  max-width: 400px;
  margin-bottom: 10px;
}

.email-input {
  background: rgb(255 255 255);
  border: none;
  border-radius: 8px;
  padding: 15px 55px 12px 15px;
  color: #000000;
  font-size: 14px;
  width: 100%;
  border-radius: 30px;
}

.email-input::placeholder {
  color: rgba(0, 0, 0, 0.7);
}

.email-input:focus {
  background: #ffffff;
  border: none;
  outline: none;
  box-shadow: none;
  color: rgb(0, 0, 0);
}

.submit-btn {
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  background: #03a9f4;
  border: none;
  border-radius: 0px 30px 30px 0px;
  padding: 12px 26px;
  color: white;
  height: 48px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: #03a9f4;
}

.spam-notice {
  font-size: 12px;
  opacity: 0.8;
  font-style: italic;
}

.section-title1 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: white;
}

.section-title2 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  color: white;
}

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

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: white;
  text-decoration: underline;
}

.office-info {
  font-size: 14px;
  line-height: 1.6;
}

.office-hours {
  margin: 20px 0;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 14px;
}

.contact-icon {
  width: 16px;
  margin-right: 8px;
  opacity: 0.8;
}

.social-icons {
  display: flex;
  gap: 15px;
  /* margin-top: 30px; */
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.25);
  color: white;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 40px;
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.copyright {
  font-size: 12px;
  opacity: 0.8;
}

.copyright a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.copyright a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-section {
    padding: 40px 0 30px;
  }

  .logo-title {
    font-size: 28px;
  }

  .logo-subtitle {
    font-size: 16px;
  }

  .email-form {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}

/* Footer styling ends */

/* Scroll to top styling starts */

/* body #ruetl17p4qao1762778717070 button.tawk-custom-color.tawk-custom-border-color.tawk-outline.tawk-button.tawk-button-circle.tawk-button-large {
    background: #0081a7 !important;
}


#ruetl17p4qao1762778717070 .tawk-toolbar.tawk-flex.tawk-card-small.tawk-flex-none.tawk-flex-middle.tawk-custom-color.tawk-active {
    background: #0081a7 !important;
}

.tawk-chat-bubble.tawk-agent-chat-bubble.tawk-text-regular-4 {
    background: #0081a7 !important;
}

button.tawk-new-messages-notification.tawk-button.tawk-button-circle {
    border: 2px solid #0081a7 !important;
}

.tawk-icon-caret-down:before {
    content: "\e9f4";
    color: #0081a7 !important;
} */

.scroll-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #00ade0 0%, #0081a7 100%);
  background-size: 300% 300%;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px) scale(0.8);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 8px 25px rgba(0, 173, 224, 0.3);
  animation: pulseGlow 4s ease-in-out infinite, gradientShift 8s ease infinite;
  overflow: hidden;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-to-top:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 173, 224, 0.4);
  transition: all 0.3s ease-out;
}

.scroll-to-top:active {
  transform: translateY(-4px) scale(1.05);
}

/* Magic Pulse Glow Animation - Slower */
@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 8px 25px rgba(0, 173, 224, 0.3),
      0 0 0 0 rgba(0, 173, 224, 0.6);
  }
  50% {
    box-shadow: 0 8px 25px rgba(0, 173, 224, 0.5),
      0 0 0 15px rgba(0, 173, 224, 0);
  }
}

/* Gradient Background Animation - Slower */
@keyframes gradientShift {
  0% {
    background-position: 0% 0%;
  }
  25% {
    background-position: 100% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  75% {
    background-position: 0% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}

/* Glowing Ring Effect - Slower */
.scroll-to-top::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  animation: spinRing 9s linear infinite;
  z-index: -1;
  opacity: 0.5;
}

@keyframes spinRing {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Arrow bounce effect - Slower */
.scroll-to-top i {
  display: inline-block;
  animation: arrowBounce 3s ease-in-out infinite;
}

@keyframes arrowBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

/* Particle effect - Slower */
.scroll-to-top::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.2) 0%,
    transparent 70%
  );
  transform: translate(-50%, -50%) scale(0);
  animation: particleBlast 5s ease-out infinite;
  pointer-events: none;
}

@keyframes particleBlast {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
  }
  70% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0.2;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

/* Scroll to top styling ends */

/* OTHER PAGES STYLING STARTS */

/* Testimonial Plus Brand Slider Css Starts */

.testimonial {
  margin: 20px 0;
}

.testimonial img {
  width: 80px !important;
  height: 80px;
  border-radius: 50%;
  margin: auto;
  margin-bottom: 10px;
}

.testimonial-content {
  background: #f8f9fa;
  padding: 30px;
  cursor: grab;
}

.testimonial-content p {
  font-size: 22px;
  line-height: 40px;
  font-weight: 400;
  font-style: italic;
}

.slick-slide {
  margin: 0px 20px;
  height: auto;
}

.slick-slide img {
  width: 100%;
}

.slick-next,
.slick-prev {
  top: 40%;
}

.slick-next {
  right: -35px;
}

.slick-prev {
  left: -35px;
}

.slick-next:before,
.slick-prev:before {
  font-size: 26px;
}

.customer-logos {
  padding: 50px 0px;
}

.slick-carousel .slick-prev:before,
.slick-carousel .slick-next:before {
  color: #656565;
}

/* Testimonial Plus Brand Slider Css Ends */

/* About Page Styling Starts */

.hero-about {
  position: relative;
  height: 556px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 20px;
  overflow: hidden; /* Ensures video doesn't overflow */
}

.hero-about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(
    0,
    0,
    0,
    0.5
  ); /* Adjust the alpha value to control the darkness */
  z-index: 1;
}

.hero-about > * {
  position: relative;
  z-index: 2;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.hero-about .p-one {
  font-size: 18px;
  line-height: 28px;
}

.hero-about .heading-one {
  font-size: 58px;
  line-height: 70px;
}

.btn-learn-about {
  padding: 10px 40px;
  color: #007bff;
  font-size: 18px;
  border-radius: 50px;
  border: none;
  background-color: #edf2f7;
  transition: 0.3s ease-in-out;
}

.dsk-hide {
  display: none;
}

.btn-learn-about:hover {
  color: #007bff;
  background: #d4d4d4;
  /* transform: scale(1.05); */
}

.brand-p {
  font-size: 30px;
  line-height: 36px;
  text-align: center;
  color: black;
  font-weight: 700;
  text-transform: uppercase;
}

.about-section {
  background-color: #f7f9fe;
  padding: 60px 0px;
}

.about-box {
  background-color: #ffffff;
  border-radius: 30px;
  border: none;
  padding: 50px 30px;
}

.about-box h2 {
  font-size: 32px;
  line-height: 32px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #0081a7;
}

.about-box hr {
  width: 50px;
  border-top: 3px solid #007bff;
  margin: 30px 0;
}

.about-box p {
  font-size: 16px;
  line-height: 1.6;
}

.contact-info-sec {
  padding: 50px 0;
}

.contact-info-sec h2 {
  font-size: 36px;
  color: #2c3e50;
  margin-bottom: 10px;
}

.underline {
  width: 100px;
  height: 3px !important;
  background-color: #3f51b5;
  margin: 0 auto 30px auto;
}

.contact-box {
  background-color: #f9fbfe;
  padding: 40px 40px;
  border-radius: 20px;
  /* height: 355px; */
}

.contact-box h5 {
  font-size: 18px;
  color: #333;
}

.contact-box p {
  margin: 5px 0;
  color: #555;
}

/* About Page Styling Ends */

/* Contact Us Page Styling Starts */

/* .contact-sec {
    background-image: url('/images/emzhome/bq-contactbg.jpg');
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: cover;
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
} */

.contact-form-sec {
  padding: 50px 0;
  background-color: #f8f9fa;
}

.contact-form-sec .form-container {
  background-color: #ffffff;
  padding: 40px 40px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* .contact-form-sec h1 {
    font-size: 2rem;
    font-weight: bold;
    color: #0d6efd;
    margin-bottom: 20px;
} */

.contact-form-sec p.description {
  color: #6c757d;
  margin-bottom: 30px;
}

.contact-form-sec .form-control {
  margin-bottom: 15px;
}

.contact-form-sec .form-check-label {
  color: #6c757d;
}

.contact-form-sec .btn-primary {
  background-color: #0d6efd;
  border-color: #0d6efd;
  padding: 10px 20px;
}

.form-title {
  text-align: center;
}

.form-title h1 {
  color: #0081a7;
}

.contact-us-form .form-control:focus,
.contact-us-form .form-select:focus {
  box-shadow: none;
  outline: none;
  border: 1px solid;
}

.cnt-heading {
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 35px;
  text-align: center;
  color: #252525;
}

/* Contact Us Page Styling Ends */

/* Support Page Styling Starts */

.support-sec {
  padding: 50px 0;
}

.support-sec .title-support {
  font-size: 62px;
  line-height: 81px;
  font-weight: 700;
  color: #0081a7;
}

.support-img {
  animation: upDown 3.8s ease-in-out infinite;
}

@keyframes upDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0); 
  }
}


.support-sec .subtitle {
  color: #309dbd;
  font-weight: bold;
  line-height: 45px;
  font-size: 16px;
}

.support-sec .description {
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 26px;
}

.title-ready {
  font-size: 40px;
  line-height: 40px;
  font-weight: 500;
  color: #0081a7;
}

.support-sec .icon {
  font-size: 3rem;
  color: #0081a7;
}

.ready-p {
  width: 80%;
  font-size: 18px;
  line-height: 28px;
  margin: auto;
}

.support-box h3 {
  font-size: 24px;
  line-height: 29px;
  font-weight: 500;
  color: #0081a7;
  margin-bottom: 16px;
}

.support-sec .support-option img {
  max-width: 100%;
  height: auto;
}

.ready-div {
  margin: 60px 0;
}

.support-card {
  margin: 110px 0;
}

.icon-support svg {
  height: 40px;
  width: 40px;
  fill: #0081a7;
}

.support-box {
  padding: 15px;
  background: #f9f9f9;
  border-radius: 10px;
  text-align: center;
  border: transparent;
  transition: all 0.3s ease-in-out;
  border: 1px solid #0081a7;
}

.support-box.active {
    background: #0081a7;
    color: white;
}

.support-box.active h3 {
    background: #ffffff;
    color: #0081a7;
    padding: 6px;
}

.support-box.active:hover {
    background: #ffffff;
    color: #0081a7;
}

.support-box.active a{
    background: #ffffff;
    color: #0081a7;
    padding: 2px 2px;
}

.support-box.active:hover h3{
    background: #0081a7;
    color: #ffffff;
    padding: 6px;
}

.support-box.active:hover a{
    background: #0081a7;
    color: #ffffff;
}

.support-box:hover {
  background: #ffffff;
  border: 1px solid #0081a7;
}

.support-box:hover .icon-support.mb-3{
  background: #0081a7;
}

.support-box:hover .icon-support.mb-3 svg{
  fill: #ffffff;
}


.icon-support.mb-3.two {
    background: #0081a7;
}

.icon-support.mb-3.two svg {
    fill: #ffffff;
}

.icon-support.mb-3 {
  background: white;
  border-radius: 50%;
  height: 60px;
  width: 60px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Support Page Styling Ends */

/* 404 Error Page Styling Starts */

.error404-message {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 60px 0;
}

.content-area-sec {
  max-width: 600px;
  width: 100%;
}

.notfound-404 h1 {
  font-size: 10em;
  margin-bottom: 20px;
}

.notfound-p {
  color: #484747;
}

.notfound-404 .light-clr {
  color: #0081a7;
}

.notfound-404 .dark-clr {
  color: #000;
}

.heading-2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: black;
}

.main_btn a {
  display: inline-block;
  padding: 10px 20px;
  background: #05bfa5;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  border: none;
  transition: background 0.3s ease;
}

.main_btn a:hover {
  background: #049784;
  color: #fff;
}

/* 404 Error Page Styling Ends */

/* Others Pages Privacy etc Styling Starts */

.privacy-sec {
  background-image: url("/images/emzhome/bq-privacy.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #0081a7;
  height: 450px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.privacy-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  background-color: #01093ff2;
  z-index: 1;
}

.privacy-sec .container {
  position: relative;
  z-index: 2;
}

.privacy-heading {
  font-size: 44px;
  line-height: 44px;
  font-weight: 500;
  margin: 0;
}

.breadcrumb {
  background-color: transparent;
  padding: 0;
  margin-bottom: 1rem;
}

.breadcrumb-item a {
  text-decoration: none;
  font-weight: 700;
  line-height: 24px;
  font-size: 16px;
  color: #06c0f7;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #ffffff;
}

.breadcrumb-item.active {
  color: white;
  font-weight: 700;
}

.privacy-content-sec {
  background-image: url("/images/emzhome/grey_bg.webp");
  background-repeat: no-repeat;
  background-size: 100%;
  padding: 50px 0;
}

.contact-form-sec {
  background-image: url("/images/emzhome/grey_bg.webp");
  background-repeat: no-repeat;
  background-size: 100%;
  position: relative;
}

.fs-14{
  font-size: 14px;
}

.support-sec {
  background-image: url("/images/emzhome/grey_bg.webp");
  background-repeat: no-repeat;
  background-size: 100%;
}

.privacy-policy {
  padding: 0px 100px;
}

.privacy-policy .main-head {
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 35px;
  text-align: center;
}

.privacy-policy h1,
.privacy-policy h2,
.privacy-policy h3,
.privacy-policy h4,
.privacy-policy h5,
.privacy-policy h6 {
  font-weight: 600;
  margin-top: 20px;
}

.privacy-policy ul li {
  list-style: disc;
  margin-bottom: 8px;
}

ul ul.bullet-disc li {
  list-style: disc !important;
  font-weight: 700;
}

ul ul ul.bullet-circle li {
  list-style: circle !important;
  font-weight: 400;
}

ul.bullet-number li {
  list-style: decimal !important;
  font-size: 24px;
  font-weight: 500;
  margin: 14px 0;
}

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

.privacy-policy p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.privacy-policy a {
  color: #007bff;
  text-decoration: underline black;
}

.privacy-policy a:hover {
  text-decoration: underline;
}

ul.bullet-alpha li {
  list-style: lower-alpha !important;
  font-size: 16px;
  font-weight: 400;
}

.table-width {
  width: 32%;
}

/* Others Pages Privacy etc Styling Ends */


/* Advertiser and Publisher UI Styling Starts */

.advertise-section {
  background: white;
  color: rgb(0, 0, 0);
  padding: 10px 0 60px;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.advertise-section .hero-cta {
  display: flex;
  width: 230px;
  align-items: end;
  justify-content: space-between;
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgb(0, 0, 0);
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 12px 20px;
  text-decoration: none;
}

.advertise-section .hero-cta.two {
  background: rgb(0, 0, 0);
  border: 1px solid rgb(0, 0, 0);
  color: #ffffff;
}

.advertise-section .hero-cta svg {
  transition: 0.3s ease-in-out;
  transform: rotate(-45deg);
}

.advertise-section .hero-cta:hover svg {
  transition: 0.3s ease-in-out;
  transform: rotate(0deg);
}

.advertise-section .hero-headline {
  color: #000000;
  line-height: 51px;
  font-weight: 700;
  font-size: 39px;
  margin-bottom: 20px;
}

.advertise-section .hero-para {
  font-size: 17px;
  color: #000000;
  margin-bottom: 30px;
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.shape {
  position: absolute;
  opacity: 0.1;
  border-radius: 50%;
  background: #0081a7;
  animation: float 15s infinite linear;
}

.shape-wht {
  position: absolute;
  opacity: 0.1;
  border-radius: 50%;
  background: #ffffff;
  animation: float 15s infinite linear;
}

@keyframes float {
  0% {
      transform: translateY(0) rotate(0deg);
  }

  100% {
      transform: translateY(-1000px) rotate(720deg);
  }
}

.img-hover-zoom {
  overflow: hidden;
  border-radius: 12px;
}

.img-hover-zoom img {
  transition: transform 0.5s ease;
  width: 100%;
  height: auto;
}

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

/* Swiper Custom Styles */
.swiper-container {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-pagination-bullet {
  background-color: 0081a7;
  cursor: pointer;
}

.swiper-button-next,
.swiper-button-prev {
  color: rgb(0, 0, 0);
}

.swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
  position: absolute;
  left: 114px;
  bottom: 100px;
  text-align: left
}

.feature-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.feature-div {
  border: 1px solid #efe5e5;
  border-radius: 12px;
  padding: 20px;
  background: white;
}

.feature-icon {
  border: 1px solid #0081a7;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  transition: .3s ease-in-out;
}

.feature-div:hover .feature-icon {
  color: #ffffff;
  background: #0081a7;
}

.feature-div:hover .feature-icon i {
  color: #ffffff;
}

.section-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

h3.display-5.fw-bold.text-white.adver-stats.counter-animate.animated {
  color: white !important;
}

h3.display-5.fw-bold.text-white.adver-stats {
  color: white !important;
}

section.adver-how-it-sec {
  padding: 60px 0;
}

.step-div {
  padding: 20px;
  background: #0081a7;
  color: white;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.step-number {
  border: 2px solid white;
  border-radius: 50%;
  padding: 25px;
  font-size: 28px;
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

/* Default reverse style for 1st, 3rd, 5th cards */
.col-lg-4:nth-child(odd) .step-div {
  background: white;
  color: #0081a7;
  border: 1px solid #c9d7db;
}

.col-lg-4:nth-child(odd) .step-number {
  border-color: #0081a7;
  color: #0081a7;
}

/* Hover effect for even cards (2,4,6) → reverse */

.adver-span-heading-1 {
  background: linear-gradient(45deg, #ff1919, #b31c1c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.adver-span-heading-2 {
  background: linear-gradient(45deg, #ffd700, #d1ae00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.adver-span-heading-3 {
  background: linear-gradient(45deg, #4b0082, #851ee6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Hover effect for odd cards (1,3,5) → flip back */
.col-lg-4:nth-child(odd) .step-div:hover {
  background: #0081a7;
  color: white;
  border: none;
}

.col-lg-4:nth-child(odd) .step-div:hover .step-number {
  border-color: white;
  color: white;
}

.cta-section {
  background-image: linear-gradient(to right, rgb(0 128 168 / 100%), rgb(0 129 167 / 65%));
  padding: 60px 0;
  color: white;
}

.content-wrapper {
  position: relative;
  z-index: 2;
}

.cta-section h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  color: white;
}

.cta-section p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  line-height: 1.5;
  max-width: 500px;
}

.faq-section {
  padding: 60px 0;
  background: #f9fafb;
}

.faq-title {
  font-weight: 700;
  margin-bottom: 30px;
  color: #0081a7;
  text-align: center;
}

.accordion-button {
  font-weight: 500;
  background: #fff;
  color: #333;
  box-shadow: none !important;
  border: none;
  transition: all 0.3s ease-in-out;
}

.accordion-button:not(.collapsed) {
  color: #0081a7;
  background: #e9f7fa;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  color: #555;
  line-height: 1.6;
}

.accordion-button::after {
  display: none;
}

.faq-icon {
  margin-right: 10px;
  transition: transform 0.3s ease;
}

.accordion-button.collapsed .fa-minus {
  display: none;
}

.accordion-button:not(.collapsed) .fa-plus {
  display: none;
}

.accordian-body {
  color: #323131;
  line-height: 1.6;
}


.adver-faq-card {
  position: absolute;
  top: 0;
  right: 0px;
  background: #0081a9;
  /* background: linear-gradient(100deg, #0081A9, #04afe1); */
  color: white;
  padding: 1.5rem;
  border-radius: 15px;
  width: 232px;
  z-index: 4;
}

.accordian-header h2 {
  color: #333;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 0 !important;
  line-height: 1.2;
  padding: 5px;
}

.accordion-item {
  background-color: #fff;
  border: 1px solid rgb(63 186 222);
  /* border-radius: 10px; */
  margin-bottom: 17px;
}


.feature-head {
  font-size: 18px;
  font-weight: 700;
}

.stat-description.d-flex span {
  color: #0081a7;
  font-size: 20px;
}

.stat-description.d-flex {
  gap: 10px;
}

/* Advertiser and Publisher UI Styling Ends */

/* About Us Page New UI Styling Starts */

.story-section {
  padding: 50px 0;
  position: relative;
  background: #f9f9f9;
}

.team-section {
  position: relative;
  padding: 50px 0;
  background: #f9f9f9;
}

.our-str-sec {
  position: relative;
  padding: 50px 0;
}

.str-sec-row {
  gap: 45px;
}

.str-sec-row .feature-card {
  width: 350px;
  gap: 15px;
}

.str-sec-row .feature-card h4 {
  font-size: 20px;
}


.our-team-crd-row {
  gap: 35px;
  justify-content: center;
  padding: 40px 0;
}

.team-highlight {
  padding: 15px;
  background: white;
  width: 250px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.team-highlight.two {
  background: #0081a7;
  color: white;
}

.team-highlight h4 {
  font-size: 20px;
}

.leadership-section {
  position: relative;
  padding: 50px 0;
  background: #ffffff;
}

.leadership-section .story-text {
  font-size: 18px;
  text-align: center;
}

.about-stats-section {
  background-color: #0081a8;
  color: white;
  padding-top: 30px;
}

.feature-card:hover .feature-icon i {
  color: #0081a8;
}


/* Floating Elements */
.floating-shapes-about {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.floating-shapes-about .shape {
  position: absolute;
  opacity: 0.1;
  animation: aboutfloat 8s ease-in-out infinite;
}

.shape-1 {
  top: 10%;
  left: 10%;
  width: 100px;
  height: 100px;
  background: #0081a8;
  border-radius: 50%;
  animation-delay: 0s;
}

.shape-2 {
  top: 60%;
  right: 15%;
  width: 80px;
  height: 80px;
  background: #0081a8;
  transform: rotate(45deg);
  animation-delay: 3s;
}

.shape-3 {
  bottom: 20%;
  left: 20%;
  width: 120px;
  height: 120px;
  background: #0081a8;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  animation-delay: 6s;
}

@keyframes aboutfloat {

  0%,
  100% {
      transform: translateY(0px) rotate(0deg);
  }

  33% {
      transform: translateY(-20px) rotate(120deg);
  }

  66% {
      transform: translateY(10px) rotate(240deg);
  }
}

/* About Us Page New UI Styling Ends */

/* OTHER PAGES STYLING STARTS */

/* Media Query Starts */

@media (max-width: 1516px) and (min-width: 1366px) {
  .publish-div {
    width: 100%;
  }
}

@media (max-width: 911px) {
    .dsk-hide {
    display: block;
  }

  .about-section-main {
    background-image: none;
    height: fit-content;
  }
    
}

@media (max-width: 768px) {

  .about-section-main .hero-left {
    padding-top: 0px;
  }

  .image-container {
    margin-top: 40px;
  }

  .business-m {
    resize: none;
  }

  .form-card {
    width: 100%;
    padding: 25px;
  }
  .emarzen-simple-section {
    padding: 0px;
  }

  .main-heading-smp {
    font-size: 32px;
  }

  .navbar {
    padding: 2px 0 0;
  }

  .hero-content {
    padding: 8px 0;
  }

  .submit-btn {
    right: 22px;
  }

  .why-emarzen-section {
    padding: 0;
  }

  .col-divider-left {
    padding-left: 12px;
  }

  .col-divider-right {
    padding-right: 12px;
  }

  .mks-award-badge {
    left: 30%;
  }

  .blog-card {
    padding: 0 10px;
    width: 100%;
  }

  .signup-scale-section .buyer-signals-card {
    width: 100%;
    text-align: left;
  }
  .signup-scale-section .secondary-image,
  .signup-scale-section .main-image {
    width: 100%;
    height: fit-content;
  }

  .main-section .hero-headline {
    font-size: 34px;
  }
  .bottom-bar {
    margin-top: 30px;
  }

  .smart-aff-crd {
    width: 100%;
  }

  .mks-card {
    left: 0;
    width: 100%;
  }

  .testimonial-card {
    margin-top: 30px;
  }

  .testimonial-card {
    height: fit-content !important;
  }

  .mks-content {
    margin-left: 0px !important;
  }

  .terms-cnt ul {
    padding-left: 25px;
  }

  .table-width {
    width: 100%;
  }

  ul.dropdown-menu.dropdown-menu-end.show {
    top: 11px;
  }

  .started-li {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .slick-carousel {
    width: 100%;
    margin: 0 auto;
  }

  nav.navbar.sticky-top.navbar-expand-lg.bg-white {
    padding: 8px 0px;
  }

  .hero-content {
    width: 100%;
  }

  .heading-one {
    font-size: 40px;
    line-height: 44px;
  }

  .stats.d-flex {
    flex-direction: column;
  }

  .performance-div {
    padding: 20px 12px;
    width: 100%;
  }

  .p-one {
    font-size: 18px;
    line-height: 30px;
  }

  .heading-two {
    font-size: 32px;
    line-height: 40px;
    margin-top: 20px;
  }

  .publish-div {
    width: 100%;
    flex-direction: column;
  }

  .w-50 {
    width: 100% !important;
  }

  .w-70 {
    width: 100% !important;
  }

  .support-img {
    height: auto;
    max-width: 100%;
  }

  .privacy-policy {
    padding: 10px;
  }

  /* .contact-row{
        gap: 40px;
    } */

  .ft-img {
    text-align: left;
  }

  .ft-btn {
    text-align: left;
  }

  .about-box {
    height: fit-content;
  }

  .email-input {
    width: 90%;
  }

  .hero-about .heading-one {
    font-size: 32px;
    line-height: 36px;
  }
}

@media (max-width: 991.98px) {
  .d-lg-block {
    display: none !important;
  }
  .d-lg-none {
    display: block !important;
  }
}

@media (min-width: 992px) {
  .slick-carousel {
    width: 60%;
    margin: 0 auto;
  }
}

/* Media Query Ends */
