@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&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&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Poetsen+One&display=swap');
/*--------------------------------------------------------------



/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #3b5353;
  /* The default color of the main navmenu links */
  /* --nav-hover-color: #00a19e; */
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #3b5353;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #00a19e;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */

    /* --font-30: 30px;
    --font-22: 22px;
    --font-14: 14px; */

 --auth-head: 38px;
  --subscription-head: 32px;
  --auth-para: 22px;
  --subscription-para: 18px;
  --input-font: 16px;
  --text: #4a4a4a;
  --light-text: #787878;
  --light-text2: #7e7e7e;
  --placeholder: #a0a0a0;
  --light-gray3: #fafafa;
  --light-gray2: #a4a4a4;
  --light-gray4: #f2f2f2;
  --light-gray: #f1f1f1;
  --header-color: #e3e3e3;
  --color-inp-icon: #b1b1b1;
  --btn-light-back: #fcfcfc;
  --border-light-color: rgba(177, 177, 177, 0.35);
  --label: #848484;
  --switch: #e4e4e4;
  --dark: #1a1a1a;
  --dark2: #222222;
  --dark-font-color: #dbdbdf;
  --border-color: #e5e5e5;
  --black: #000;
  --white: #fff;
  --green: #00c54c;
  --light-green: #dbfbe7;
  --yellow: #f48a0f;
  --light-yellow: #fff4ed;
  --light-yellow2: #fffced;
  --required: #e76f6f;
  --red: #fe5f53;
  --light-red: #ffedee;
  --blue: #0090ff;
  --light-blue: #e2f4ff;
  --light-blue2: #f4faff;
  --violet: #7539ff;
  --light-violet: #f0eaff;
  --violet: #7539ff;
  --light-violet: #f0eaff;
  --grad1: #cc3399;
  --grad2: #ff0066;
  --grad3: #33cc66;
  --grad4: #00c9dc;
  --grad1-light: rgba(204, 51, 153, 0.5);
  --grad2-light: rgba(255, 0, 102, 0.5);
  --grad3-light: rgba(51, 204, 102, 0.5);
  --grad4-light: rgba(0, 201, 220, 0.5);
  --font-30: 30px;
  --font-28: 28px;
  --font-26: 26px;
  --font-24: 24px;
  --font-22: 22px;
  --font-20: 20px;
  --font-18: 18px;
  --font-17: 17px;
  --font-16: 16px;
  --font-15: 15px;
  --font-14: 14px;
  --font-12: 12px;
}

*{
  box-sizing: border-box;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/

.container {
  max-width: 1390px;
}

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
    color: #000000;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000000;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  margin-bottom: 15px;
}


h1,
h3 {
  font-size: 50px;
}

/* Main Section  */
.rounded-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #000;
  color: #fff;
  padding: 8px 24px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  font-family: "Source Sans 3", sans-serif;
}

.rounded-btn .arrow {
  font-size: 18px;
}

.rounded-btn:hover {
  background: #111;
  color: #fff;
}

p {
  font-family: "Source Sans 3", sans-serif;
  color: #646464;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 20px;
}




/* Hero Section */
.section {
  padding: 70px 0px;
}

section {
  padding: 70px 0px;
}

.hero-sec {
  padding: 45px;
}

.cards-hero {
  width: 100%;
  padding: 80px 20px;
  border-radius: 20px;
  background: linear-gradient(45deg, #ffe5ef, #e8ffe9, #e6f3ff);
  text-align: center;
  position: relative;
  /* overflow: hidden; */
  /* height: 700px; */
}
.banner-hero{
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
}
.h-700 {
  height: 650px;
}

.cards-hero .content {
  max-width: 900px;
  margin: 0 auto 0px;
}

.cards-hero h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
}


.btn-group {
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* Buttons */
.btn {
  padding: 12px 26px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: 0.3s;
}

.btn.light {
  background: #fff;
  color: #000;
  border: 1px solid #ddd;
}

.btn.light:hover {
  background: #f4f4f4;
}

.btn.dark {
  background: #000;
  color: #fff;
}

.btn.dark:hover {
  background: #111;
}

/* Hero Image */
.hero-image {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  margin-top: -500px;
  z-index: 1;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 50%;
  transform: translateX(-50%);
}


.blue-bg {
  background-color: #E2F4FF;
  padding: 2px 5px;

}

.gradedcard-sec {
  padding: 80px 0px 30px;
}

.gradedcard-img {
  width: 100%;
  /* make the wrapper full width */
  margin: 0;
  /* remove any default margins */
}

.gradedcard-img img {
  /* width: 100%; */

  height: auto;

  /* display: block; */

}

.text-gray{
  color: #646464;
}
.bulkedit-sec {
  padding-bottom: 60px;
}

.bulkedit-sec .dark-bg {
  background-color: #000;
  color: #fff;
  padding: 2px 5px;
}


.manage-role {
  height: 700px;
}

.bottom-image {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.analytics-sec .green-bg {
  background-color: #DBFBE7;
  color: #000;
  padding: 2px 5px;
}

.pricing-sec {
  padding-left: 45px;
  padding-right: 45px;
  padding-top: 0px;
}

/* Slider */



/* .testimonial-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding-bottom: 10px;
} */

.testimonial-card {
  /* flex: 0 0 320px; */
  width: 320px;
  background: #FAFAFA;
  border-radius: 8px;
  padding: 20px;
  scroll-snap-align: start;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  scroll-snap-align: center;
}

.stars {
  color: #f5b301;
  font-size: 18px;
  margin-bottom: 10px;
}

.testimonial-text {
  font-size: 15px;
  margin-bottom: 15px;
  color: #333;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-img {
  width: 48px !important;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-info .name {
  font-weight: bold;
  font-size: 14px;
  margin: 0;
}

.testimonial-info .role {
  font-size: 13px;
  color: #777;
  margin: 0;
}

/* Responsive */
@media (max-width: 600px) {
  .testimonial-card {
    flex: 0 0 80%;
  }
}


.testimonial-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding-bottom: 10px;

  /* Hide scrollbar */
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}

.testimonial-slider::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari */
}













/* Join Us */

.joinus-sec {
  min-height: 300px;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  padding: 60px;
  color: #fff;
  margin: 0px 45px 80px;
  border-radius: 20px;
}

.joinus-sec h1 {
  color: #fff;
}

.joinus-sec p {
  font-size: 28px;
  color: #B1B1B1;
  font-weight: 600;
}

.joinus-sec .white-bg {
  background: #fff;
  color: #000;
  padding: 2px 5px;
}



.footer-des {
  width: 30%;
  margin: 0 auto;
  justify-content: space-between;
  display: flex;
  padding: 28px 0px;
}

.footer-des p {
  color: #fff;
  font-size: 15px;
  margin: 0;

}


.footer-des a:hover {
  color: #a2a2a2;

}

.footer-sec {
  background: #000;
  padding: 20px 20px;
}





/* Button Section */
.white-btn {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff !important;
}

.white-btn:hover {
  background-color: #000;
  color: #fff;
  border: 2px solid #fff !important;
}

.button-container {
  display: flex;
  flex-wrap: nowrap;
  /* Prevent wrapping */
  gap: 10px;
  justify-content: center;
  /* padding: 20px; */
}

.btn {
  padding: 8px 24px;
  font-size: 16px;
  border-radius: 30px;
  border: 2px solid black;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-family: "Source Sans 3", sans-serif;
  flex-shrink: 0;
}

.btn-login {
  background-color: transparent;
  color: black;
}

.btn-login1 {
  background-color: #fff;
  color: black;
  border-color: #fff;
  gap: 8px;
}
.btn-login1:hover {
  background-color: #000;
  color: #fff;
  border-color: #fff;
}

.btn-login:hover {
  background-color: #000;
  color: #fff;
}

.btn-create {
  background-color: black;
  color: white;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 2px solid #000;
}

.btn-create:hover {
  background-color: #fff;
  color: #000;
  border: 2px solid #000;
}

.arrow {
  font-size: 18px;
}



.text-desktop {
  display: inline;
}

.text-mobile {
  display: none;
}


@media (max-width: 480px) {
  .text-desktop {
    display: none;
  }

  .text-mobile {
    display: inline;
  }
}





/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq-container {
  background-color: #FAFAFA;
  padding: 30px;
  border-radius: 15px;
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 25px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
  background: #fff;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 3px 5px;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 22px;
  line-height: 26px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-family: "Source Sans 3", sans-serif;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 35px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.bi::before {
  font-weight: 600 !important;
}

.faq .faq-container .faq-active {
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}





/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 19px 0;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0px 0 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  left: 0;
  background: #fff;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 60px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 500;
  color: var(--heading-color);
}

.BorderBtn,
.BorderBtn:focus {
  font-family: "Source Sans 3", sans-serif;
  color: #000;
  background: #fff;
  font-size: 15px;
  padding: 8px 15px;
  margin: 0;
  border-radius: 40px;
  transition: 0.3s;
  font-weight: 700;
  border: 2px solid #000;
}

.BorderBtn:hover,
.BorderBtn:focus:hover {
  color: #fff;
  background: #000;
}

@media (max-width: 1200px) {
  /* .header .logo {
    order: 1;
  } */

  .header .BorderBtn {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #ffffff;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    gap: 50px;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    /* color: var(--nav-color); */
    padding: 18px 15px;
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: #DBFBE7;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: #DBFBE7;
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  /* color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0; */
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

@media (max-width: 480px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }
}

.header {
  overflow: hidden;
}

/*--------------------------------------------------------------
# Media query
--------------------------------------------------------------*/
@media (max-width: 767px) {

  h1,
  h3 {
    font-size: 42px;
    line-height: 52px;
  }

  p {
    font-size: 18px;
  }

  .header .logo img {
    max-height: 50px;

  }

  .btn {
    padding: 8px 16px;
  }

  .hero-sec {
    padding: 22px;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .h-700 {
    height: 800px;
  }

  .hero-image {
    width: 80%;
    margin-top: -450px;
  }

  .analytics-sec .content {
    padding: 0px 20px;
  }

  .joinus-sec {
    margin: 0px 20px 60px;
  }

  .bottom-image {
    width: 90%;
  }

  .manage-role {
    height: 460px;
  }

  .cards-hero {
    padding: 30px 20px;
  }

  .gradedcard-sec {
    padding: 40px 0px 60px;
  }

  .bulkedit-sec {
    padding: 60px 0px;
  }

  .faq {
    padding: 0px 10px;
  }

  .faq-container {
    padding: 15px;
  }

  .faq .faq-container .faq-item {
    padding: 20px;
  }

  .faq .faq-container .faq-item h3 {
    font-size: 20px;
  }


  .joinus-sec p {
    font-size: 24px;
  }

  .footer-des {
    width: 90%;
  }







}











/* 17-11-25 */
        .marquee {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100vw;  
  transform: rotate(-1.9deg);
  transform-origin: center center;
  margin: calc(50% * tan(1.9 * 2deg)) 0;
  font-family: "Inter", sans-serif;
}

.marquee-inner {
  display: inline-flex;
  gap: 26px;
  animation: scroll 20s linear infinite;
  will-change: transform;
}

/* Duplicate content for seamless looping */
/* .marquee-inner::after {
  content: attr(data-duplicate);
  display: inline-flex;
  gap: 26px;
} */

/* Keyframes for continuous scroll */
@keyframes scroll {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Optional: Pause on hover */
.marquee:hover .marquee-inner {
  animation-play-state: paused;
}
.marquee-batch{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    user-select: none;
}
.marquee-batch img{
max-width: 18px;
width: 18px;
height: auto
}
.text-marquee{
background-color: #000;
border-top: solid 1px rgba(177, 177, 177, 0.35);
border-bottom: solid 1px rgba(177, 177, 177, 0.35);
color: #e3e3e3;
font-size: 17px;
font-weight: 600;
}




.subs-plan-box {
  font-family: "Inter", sans-serif;
  padding: 25px 20px;
  border-radius: 20px;
  border: solid 1px  rgba(177, 177, 177, 0.35);
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 15px;
  color: #7e7e7e;
  background-color: #fff;
  /* max-width: 410px; */
  width: 100%;
  text-align: left;
}
.subs-plan-box.pro {
  border-color: #b2efc9;
  box-shadow: inset 1px 1px 0 0 #b2efc9;
}
.how-it-works{
  padding-top: 100px;
}
.how-it-works .subs-plan-box{
  border: 2px solid #B1B1B159;
  box-shadow: 0px 6.19px 4.12px 0px #FFFFFF59 inset;
  box-shadow: 0px 2.06px 0px 0px #E4E4E4;
}
.pan-head-box {
  font-weight: 600;
  font-size: var(--font-22);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.plan-tag {
  color: #fff;
  background-color: #00c54c;
  font-size: 15px;
  padding: 6px 20px;
  border-radius: 150px;
}

.plan-price-box {
  font-size: var(--font-14);
  font-weight: 500;
  color: #a5a5a5;
  margin: 3px 0;
}

.plan-price {
  font-size: var(--font-30);
  font-weight: 600;
  color: #4a4a4a;
}

.plan-desc {
  font-size: var(--font-14);
  font-weight: 500;
}

.feature-list {
  margin: 0;
  padding: 0;
  padding-top: 8px;
  list-style-type: none;
}
.feature-list li {
  padding-left: 5px;
  margin-bottom: 10px;
  font-weight: 500;
  font-size: var(--font-14);
  position: relative;
  display: flex;
  gap: 10px;
  align-items: start;
}
.feature-list li .deco-img {
  margin-top: 6px;
}
/* .feature-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  color: #00c54c;
  position: absolute;
  top: 0;
  left: 0;
} */
.feature-list li strong,
.feature-list li b {
  font-weight: 600;
}
.feature-list li:last-of-type {
  margin-bottom: 0;
}

.big-btn {
  font-size: var(--font-16);
  padding: 17px 15px;
  font-weight: 600;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  gap: 5px;
  border: solid 1px #e4e4e4;
  color: #222222;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
  min-width: 120px;
  text-align: center;
}
.big-btn:hover {
  background-color: #222222;
  border-color: #222222;
  color: #fff;
}
.green-big-btn {
  color: #fff;
  border-color: #00c54c;
  background-color: #00c54c;
}
.green-big-btn:hover {
  color: #00c54c;
  border-color: #00c54c;
  background-color: #fff;
}
.dark-big-btn {
  color: #fff;
  border-color: #000000;
  background-color: #000000;
}
.dark-big-btn:hover {
  color: #000000;
  border-color: #000000;
  background-color: #fff;
}
.btn-shadow {
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.2);
}



.plan-duration-box {
  padding: 3px;
  border-radius: 100px;
  background-color: #fff;
  color: #4a4a4a;
  border: solid 1px #e4e4e4;
  font-size: 15px;
  display: flex;
  position: relative;
  font-family: "Inter", sans-serif;
}

.plan-duration-btn {
  border-radius: 100px;
  font-weight: 600;
  padding: 7px 10px;
  width: 100%;
  min-width: 105px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease-in-out;
}
.plan-duration-btn:hover {
  color: #1a1a1a;
}
.plan-duration-btn.active {
  color: #fff;
  background-color: #1a1a1a;
}

[data-plan=annual] {
  display: none;
}

.save-btn {
  font-size: 12px;
  font-weight: 600;
  color: #00c54c;
  border: solid 1px #00c54c;
  padding: 2px 7px;
  border-radius: 20px;
  background-color: #fff;
  position: absolute;
  top: calc(100% - 6px);
  right: 15px;
}
.w-fit {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}







.md-btn{
  font-size: var(--font-14);
  font-weight: 600;
  line-height: 1.5;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  text-wrap: nowrap;
  padding: 11px 25px;
  border: solid 1px;
}
.grey-red-btn {
  color: var(--red);
  background-color: #232323;
  border-color: #424242;
}
.grey-red-btn:hover {
  background-color: var(--red);
  color: var(--white);
}
.grad-btn {
  color: var(--dark);
  background-color: var(--white);
  background-image: linear-gradient(45deg, rgba(204, 51, 153, 0.2), rgba(255, 0, 102, 0.2), rgba(51, 204, 102, 0.2), rgba(0, 201, 220, 0.2));
  transition: all 0.3s ease-in-out;
}
.grad-btn:hover {
  background-color: var(--black);
  color: var(--white);
  box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.25);
}
.profile-modal {
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.profile-modal *{
  font-family: "Inter", sans-serif;
}
.profile-modal .close-modal {
  font-size: 22px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  line-height: 1;
  padding: 0 0 5px 5px;
}
.profile-modal .close-modal:hover {
  color: #fff;
}

.profile-modal .grad-btn:hover {
  box-shadow: 0 0 1px 2px rgba(255, 255, 255, 0.5);
}
.profile-modal .modal-dialog {
  max-width: 600px;
  width: 96%;
  padding-top: 100px;
}
@media (max-width: 575px) {
  .profile-modal .modal-dialog {
    padding-top: 50px;
  }
}
.profile-modal .modal-content {
  position: relative;
  border-radius: 30px;
  background-color: transparent;
  box-shadow: -1px 0 0 0 var(--grad2-light), 1px 0 0 0 var(--grad4-light), 0 -1px 0 0 var(--grad3-light), 0 1px 0 0 var(--grad1-light), 0 0 0 1px #fff;
  border: none;
}
.profile-modal .modal-content::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(10deg, var(--grad1), var(--grad2), var(--grad3), var(--grad4));
  opacity: 0.5;
  border-radius: 30px;
}
.profile-modal .modal-body {
  background-color: rgba(0, 0, 0, 0.85);
  border-radius: 30px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 575px) {
  .profile-modal .modal-body {
    padding: 30px 20px;
  }
}
.profile-modal .modal-body form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.profile-modal .modal-head-box {
  color: var(--placeholder);
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.profile-modal .modal-head-box h4 {
  color: var(--dark-font-color);
  font-size: var(--font-22);
  font-weight: 600;
  margin-bottom: 0;
}
.profile-modal input,
.profile-modal select,
.profile-modal textarea {
  color: var(--dark-font-color);
}
.profile-modal label {
  color: var(--label);
}

.profile-modal .divider {
  border-top: solid 1px #424242;
}
.profile-modal .modal-btn-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.profile-modal p {
  margin-bottom: 5px;
  color: var(--placeholder);
}

.inp-box{
  border: solid 1px var(--border-light-color);
  box-shadow: 0 2px 9px rgba(0, 0, 0, 0.03);
  padding: 7px 15px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-weight: 600;
}
.inp-box label {
  font-size: var(--font-12);
  color: var(--label);
  line-height: 1.5;
}
.inp-box input:not([type="submit"]):not([type="radio"]):focus, .inp-box select:focus, .inp-box textarea:focus {
  outline: none;
  border: none;
}
.inp-box input:not([type="submit"]):not([type="radio"]), .inp-box select, .inp-box textarea {
  border: none;
  width: 100%;
  background-color: transparent;
  resize: none;
}
.cust-container{
  max-width: 1225px;
}

.gradient-btn-black{

  background: #000;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  width: 225px;
  padding: 10px;
  border-radius: 101px;
  font-family: "Source Sans 3", sans-serif;
  border: 2px solid transparent;
   background:    
    linear-gradient(#000, #000) padding-box,    
    linear-gradient(
      89.87deg,
      rgba(204, 51, 153, 0.3) 0%,
      rgba(255, 0, 102, 0.3) 32.99%,
      rgba(51, 204, 102, 0.3) 65.98%,
      rgba(0, 201, 220, 0.3) 99.97%
    ) border-box;
    box-shadow: 0px 6.19px 4.12px 0px #FFFFFF59 inset;

}
.banner-sections {
  background: url("../images/banner-bg.png") ;
}
.banner-sections h1{
  font-size: 65px;
}

.banner-sections .left{
  max-width: 630px;
  width: 100%;
}
.banner-sections .right img{
  max-width: 715px;
}
.banner-sections .for-bg{ 
  position: relative; 
  padding-top: 85px;
  padding-bottom: 200px;
  
}
.banner-sections .for-bg::after{
  position: absolute;
  bottom: -105px;
  left: 0;
  width: 100%;
  height: 213px;
  content: '';
  background: url("../images/left-line.png") no-repeat;
  background-position: left;
  z-index: 1;  
}
.banner-sections .for-bg::before{
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 200px;
  content: '';
  background: url("../images/right-line.png") no-repeat;
  background-position: right;
  z-index: 1;
  
}
.more-on{
  color: #646464;
  font-weight: 600;
  font-size: 18px;
    font-family: "Source Sans 3", sans-serif;

}

/* border: 2.06px solid;

border-image-source: linear-gradient(0deg, #FFFFFF, #FFFFFF),
linear-gradient(89.87deg, rgba(204, 51, 153, 0.3) 0%, rgba(255, 0, 102, 0.3) 32.99%, rgba(51, 204, 102, 0.3) 65.98%, rgba(0, 201, 220, 0.3) 99.97%);


box-shadow: 0px 6.19px 4.12px 0px #FFFFFF59 inset;

 */


.bubble-text {    
   /* background:linear-gradient(to right, rgba(204, 51, 153, 0.4) 7.09%, rgba(255, 0, 102, 0.28) 35.15%, rgba(51, 204, 102, 0.28) 63.2%, rgba(0, 201, 220, 0.4) 92.11%);    
    -webkit-text-stroke: 1px rgba(0,0,0,.5);
    -webkit-background-clip: text;       
  -webkit-text-fill-color: transparent;
    font-family: "Poetsen One", sans-serif;
    letter-spacing: -3px; */
 }
 .bubble-text img{    

  /* max-width: 120px; */
  min-width: 70px;
 }
.gradient-btn-black:hover {
  animation: smoothBounce 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes smoothBounce {
  0% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-8px); /* small soft lift */
  }
  60% {
    transform: translateY(3px); /* gentle dip */
  }
  100% {
    transform: translateY(0);
  }
}
