/* Fonts */

@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

.urbanist-500 {
  font-family: "Urbanist", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.urbanist-600 {
  font-family: "Urbanist", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.urbanist-800 {
  font-family: "Urbanist", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}


:root {
  --default-font: "Urbanist", sans-serif;
  --heading-font: "Urbanist", sans-serif;
  --nav-font: "Urbanist", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --white-color: #ffffff;
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #010915;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #010915;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #FFABAD;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* 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: #FFFFFF;
  /* The default color of the main navmenu links */
  --nav-hover-color: #FDABAB;
  /* 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: #FDABAB;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #FDABAB;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
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: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 15px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
  font-weight: 500;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
    margin-right: auto !important;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }

}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Index Page Header
------------------------------*/
.index-page .header {
  background: transparent;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {

  background: rgba(88, 60, 135, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0px 10px 60px rgba(3, 6, 17, 0.2);

}

/* .index-page.scrolled .header ul {
  background: transparent;
  border: 0;
  box-shadow: unset;
  backdrop-filter: unset;
} */

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }


  .performance-sec {
    margin-bottom: 130px;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;

    background: rgba(88, 60, 135, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0px 10px 60px rgba(3, 6, 17, 0.2);
    backdrop-filter: blur(2.5px);

    border-radius: 6px;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 10.5px 30px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    text-transform: capitalize;
    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;
  }
}

/* Listing Dropdown - Desktop */
@media (min-width: 1200px) {
  .navmenu .listing-dropdown {
    position: static;
  }

  .navmenu .listing-dropdown ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .listing-dropdown ul li {
    flex: 1;
  }

  .navmenu .listing-dropdown ul li a,
  .navmenu .listing-dropdown ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
    background-color: var(--nav-dropdown-background-color);
  }

  .navmenu .listing-dropdown ul li a:hover,
  .navmenu .listing-dropdown ul li .active,
  .navmenu .listing-dropdown ul li .active:hover {
    color: var(--nav-dropdown-hover-color);
    background-color: var(--nav-dropdown-background-color);
  }

  .navmenu .listing-dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
}

/* Listing Dropdown - Mobile */
@media (max-width: 1199px) {
  .navmenu .listing-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 .listing-dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .listing-dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer-section {
  max-width: 90%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(31.2px);
  padding: 17px 38px;
  border-radius: 15px;
  margin-bottom: 0px;
  margin-top: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-color-light);
}

.footer_bg {
  background-image: url('../img/footer-bg.png');
  background-size: cover;
  background-position: center;
  /* padding-top: 80px; */
  /* padding-top: 400px; */
  padding-top: 300px;
}

.footer-logo img {
  width: 30px;
  /* Adjust logo size */
  height: 30px;
  margin-right: 0.5rem;
  filter: brightness(0) saturate(100%) invert(43%) sepia(97%) saturate(544%) hue-rotate(293deg) brightness(98%) contrast(98%);
  /* Simple filter to make a placeholder image pinkish */
}

.footer-logo .text-peekr {
  color: var(--peekr-pink);
}

.footer-nav .nav-link {
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
  font-family: 'Urbanist';
  font-style: normal;
  font-weight: 700;

  font-size: clamp(15px, 5vw, 20px);
  line-height: clamp(20px, 5vw, 28px);
  text-transform: capitalize;
  color: #FFFFFF;
}

.mail_text {
  font-family: 'Urbanist';
  font-style: normal;
  font-weight: 400;
  padding: 0.5rem 0rem;
  transition: color 0.3s ease;

  font-size: clamp(15px, 5vw, 24px);
  line-height: clamp(20px, 5vw, 28px);

  text-decoration-line: underline;
  text-transform: capitalize;
  color: #FFABAD;
}

.footer-nav .nav-link:hover {
  color: #FFABAD;
}

.footer-contact a {
  color: var(--link-color-pink);
  text-decoration: none;
  font-weight: 500;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.copyright-section {
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 28px;
  color: #9DA8B3;
}

.copyright-section a {
  color: #9DA8B3;
  text-decoration: none;
  margin-left: 1rem;
}

.copyright-section a:hover {
  color: var(--link-color-pink);
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {

  /* For small to medium devices */
  .footer-nav {
    flex-direction: column;
    /* Stack nav items vertically */
    align-items: flex-start;
    /* Align to the start */
    margin-top: 1rem;
  }

  .footer-nav .nav-link {
    padding: 12px 0;
  }

  .footer-contact {
    margin-top: 1rem;
    /* Added margin top for contact on smaller screens */
  }

  .footer-section {
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
  }

  .copyright-section .d-flex {
    flex-direction: column;
    text-align: center;
  }

  .copyright-section .ms-auto {
    margin-left: 0 !important;
    margin-top: 0.5rem;
  }
}

@media (max-width: 767.98px) {

  /* For extra small devices */
  .footer-logo {
    font-size: 1.3rem;
  }

  .footer-section {
    margin-bottom: 1rem;
    /* Less margin on smaller screens */
  }
}



/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  /* background: rgba(88, 60, 135, 0.9); */
  background: rgb(0 0 0);
  border: 1px solid rgba(255, 255, 255, 0.1);
  /* box-shadow: 0px 10px 60px rgba(3, 6, 17, 0.2); */
  backdrop-filter: blur(2.5px);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .spinner {
  background-image: linear-gradient(rgba(88, 60, 135, 0.4) 35%, rgb(0, 225, 255));
  width: 100px;
  height: 100px;
  animation: spinning82341 1.7s linear infinite;
  text-align: center;
  border-radius: 50px;
  filter: blur(1px);
  box-shadow: 0px -5px 20px 0px rgba(88, 60, 135, 0.4), 0px 5px 20px 0px rgb(0, 225, 255);
}

.spinner1 {
  background-color: rgb(36, 36, 36);
  width: 100px;
  height: 100px;
  border-radius: 50px;
  filter: blur(10px);
}

@keyframes spinning82341 {
  to {
    transform: rotate(360deg);
  }
} */



/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# 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);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 117dvh;
  position: relative;
  padding: 80px 0 60px 0;
  display: flex;
  align-items: center;
  background: url(../img/hero-banner.png) top center no-repeat;
  background-size: 100% 100%;
}

.hero h1 {

  font-family: "Urbanist", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: clamp(25px, calc(-1.41px + 7.04vw), 100px);
  line-height: clamp(30px, calc(-1.692px + 8.448vw), 120px);
  color: var(--white-color);
  text-align: center;
}

.hero p {
  font-family: 'Urbanist';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 0 auto;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 30px;
  border-radius: 6px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  text-transform: capitalize;
  color: #010915;

}



.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 171, 173, 1);
}

/* .hero .btn-get-started:hover i {
  transform: translateX(5px);
} */



.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}


/* perk ai css farhan */
:root {
  --purple-color: #583C87;
  --gray-color: #D9D9D9;
}

.purple-bg {
  color: #FFABAD;

}

.purle-color {
  color: var(--purple-color);
}


/* Custom button styling */
.btn-custom {
  font-family: 'Urbanist';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 1px;
  text-transform: capitalize;

  color: #FFFFFF;
  margin: 0 15px 0 0;
  order: 2;
  background-color: transparent;
  /* Transparent background */
  border: none;
  /* Remove default border */
  padding: 13.5px 18px;
  /* Padding for the button */
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 6px;
  /* Rounded corners */
}

.btn-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 6px;
  /* Match button border-radius */
  padding: 2px;
  /* Controls the thickness of the gradient border */
  background: linear-gradient(90deg, #FFABAD 0%, #5F00FF 100%);
  /* Gradient colors */
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  /* Place behind the button content */
}


.btn-custom:hover {
  color: #ffffff;
  /* Keep text white on hover */

}

.pb_24 {
  padding-bottom: 24px;
}

.mb_24 {
  margin-bottom: 24px;
}


.mb_32 {
  margin-bottom: 32px;
}


.hero .how-it-works {
  color: var(--contrast-color);
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 171, 173, 1);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 30px;
  border-radius: 6px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  text-transform: capitalize;
  color: var(--white-color);

}



.hero .how-it-works:hover {
  color: var(--contrast-color);
  background: rgba(255, 171, 173, 1);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.pt_50 {
  padding-top: 50px;
}

.mb_50 {
  margin-bottom: 50px;
}

.pb_50 {
  padding-bottom: 50px;
}




.highlight {
  display: inline-block;
  background: #FFABAD;
  border-radius: 10px;
  transform: rotate(-4deg);
  padding: 10px;
}

/* Custom styles for card width on smaller screens and max-width */
.card-custom-width {
  max-width: 45%;
  width: 100%;
}

.num-circle {
  width: 40px;
  height: 40px;
  line-height: 2rem;
  position: absolute;
  top: -20px;
  left: -20px;
  border-radius: 6px;
  background: #0A1224;
}

.card-custom-width img {
  width: 60px;
  height: 60px;
}

.icon-size {
  width: 2rem;
  height: 2rem;
}

.text-body {
  font-family: 'Urbanist';
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 150%;
  color: #0A1224;

}

.feature_para {
  font-family: 'Urbanist';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: rgba(3, 6, 17, 0.72);
  margin-bottom: 30px;
}


.btn-read-more {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
  text-decoration-line: underline;
  text-transform: capitalize;
  color: #583C87;
}


@media (min-width: 768px) {
  .card-container {
    position: relative;
    min-height: 500px;
    /* Adjust min-height for desktop layout */
  }

  .card-container>div {
    position: absolute;
    width: 45%;
  }

  .card-container>div:nth-child(1) {
    top: 0;
    right: 0;
    border: 1px solid #0A1224 !important;
    border-radius: 10px;
    transform: rotate(-5.1deg);
  }

  .card-container>div:nth-child(2) {
    top: 150px;
    right: 160px;
    border: 1px solid #0A1224 !important;
    border-radius: 10px;
    transform: rotate(5.1deg);
  }

  .card-container>div:nth-child(3) {
    top: 280px;
    right: -25px;
    border: 1px solid #0A1224 !important;
    border-radius: 10px;
    transform: rotate(-5.1deg);

  }

  .card-container>div:nth-child(4) {
    top: 330px;
    right: 50%;
    border: 1px solid #0A1224;
    border-radius: 10px;
    transform: rotate(5.1deg);
  }

  .card-container>div:nth-child(5) {
    top: 460px;
    right: -44px;
    border: 1px solid #0A1224 !important;
    border-radius: 10px;
    transform: rotate(-5.1deg);
    overflow: visible;
    z-index: 99;
  }
}

.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}


.services {
  background: #F9F9F9;
  margin-top: 90px;
}


/* service cards */

.services .card-container {
  max-width: 1200px;
  width: 100%;
}

.custom-card {
  padding: 25px;
  text-align: left;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border: 1px solid rgba(3, 6, 17, 0.14);
  border-radius: 10px;
}

.icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  /* Rounded corners for the icon background */
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  font-size: 24px;
  /* Adjust icon size */
}

.icon-wrapper.gold {
  background-color: #fff9e6;
  color: #d4a72c;
}

.icon-wrapper.purple {
  background-color: #f1e6ff;
  color: #8c4bff;
}

.icon-wrapper.teal {
  background-color: #e6fffa;
  color: #2ccad4;
}

.icon-wrapper.light-purple {
  background-color: #ede6ff;
  color: #6a4bff;
}

.icon-wrapper.green {
  background-color: #e6ffe6;
  color: #4bff4b;
}

.card-title {
  font-family: 'Urbanist';
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  line-height: 22px;
  color: #030611;

  margin-bottom: 20px;

}

.card-text {
  font-family: 'Urbanist';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: rgba(3, 6, 17, 0.72);
  line-height: 1.6;
}

/* progress slider css */

.ai_bot_features {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
  padding: 0 15px;
}

.ai_bot_features h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  position: relative;
}

.ai_bot_features h1 .features-tag {
  background-color: #ffe0ee;
  /* Light pink background */
  color: #d82c8f;
  /* Darker pink text */
  padding: 5px 15px;
  border-radius: 8px;
  font-size: 1.5rem;
  font-weight: 700;
  position: absolute;
  top: -10px;
  transform: rotate(5deg);
  right: -100px;
  /* Adjust as needed */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.navigation-buttons {
  display: flex;
  gap: 10px;
}

.navigation-buttons .swiper-button-prev,
.navigation-buttons .swiper-button-next {
  position: static;
  width: 44px;
  height: 44px;
  border-radius: 0%;
  background-color: rgba(1, 9, 21, 0.06);
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.navigation-buttons .swiper-button-prev::after,
.navigation-buttons .swiper-button-next::after {
  font-size: 1rem;
  /* Adjust icon size */
}

.navigation-buttons .swiper-button-prev:hover,
.navigation-buttons .swiper-button-next:hover {
  background-color: rgba(1, 9, 21, 0.06);
  color: #000;
}

.feature-card {
  border-radius: 15px;
  padding: 50px 25px;
  height: 100%;
  background: rgba(255, 245, 245, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 400px;

  max-height: 500px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-card .icon-wrapper {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

.feature-card .icon-wrapper i {
  color: #d82c8f;
  /* Darker pink */
  font-size: 1.8rem;
}

.feature-card h3 {
  margin-bottom: 10px;
  font-family: 'Urbanist';
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  text-transform: uppercase;
  color: #010915;
}

.feature-card p {
  margin-bottom: 0;
  font-family: 'Urbanist';
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  color: rgba(1, 9, 21, 0.6);
}



.custom-progress-bar-container {
  width: 100%;
  height: 1px;
  background-color: rgba(1, 9, 21, 0.06);
  border-radius: 10px;
  margin-top: 80px;
  overflow: hidden;
}

.custom-progress-bar-fill {
  height: 100%;
  width: 0%;
  /* Initial width */
  background-color: rgba(1, 9, 21, 1);
  /* Active color */
  border-radius: 10px;
  transition: width 0.3s ease;
  /* Smooth transition for fill */
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  width: 44px;
  height: 44px;
  background: rgba(1, 9, 21, 0.06);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .ai_bot_features {
    flex-direction: column;
    align-items: flex-start;
  }

  .ai_bot_features h1 {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .ai_bot_features h1 .features-tag {
    position: static;
    transform: none;
    margin-top: 10px;
  }

  .navigation-buttons {
    width: 100%;
    justify-content: center;
    margin-top: 30px;
  }
}

@media (max-width: 576px) {
  .ai_bot_features h1 {
    font-size: 1.8rem;
    margin-bottom: 60px !important;
    text-align: center;
  }

  .ai_bot_features h1 .features-tag {
    font-size: 1.2rem;
  }

  .feature-card {
    padding: 20px;
  }

  .feature-card .icon-wrapper {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }

  .feature-card .icon-wrapper i {
    font-size: 1.5rem;
  }

  .feature-card h3 {
    font-size: 1.1rem;
  }

  .feature-card p {
    font-size: 0.9rem;
  }
}




.card-custom {
  background-color: #fff;
  border-radius: 10px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  height: 100%;
  position: relative;
  overflow: hidden;
  background-image:
    radial-gradient(ellipse at 10% 20%, rgba(200, 200, 200, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse at 80% 90%, rgba(200, 200, 200, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse at 40% 50%, rgba(200, 200, 200, 0.08) 0%, transparent 70%);
  background-size: 200% 200%;
  /* Larger size for subtle effect */
  background-position: center center;
  background-repeat: no-repeat;
  transition: transform 0.2s ease-in-out;
}

.card-custom:hover {
  transform: translateY(-5px);
  /* Slight lift on hover */
}



.card-custom .icon-wrapper i {
  font-size: 2rem;
  color: #fff;
}

.card-custom .value {
  margin-bottom: 5px;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 600;
  font-size: 64px;
  line-height: 64px;
  color: #030611 !important;
}

.card-custom .description {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 19px;
  line-height: 48px;
  color: rgba(1, 9, 21, 0.6);
}


:root {
  --card-background-image: url('../img/n1.png');
  /* Default background image for cards */

}

/* Card specific colors - using rgba to allow the background pattern to show through */
.card-1 {
  background: linear-gradient(135deg, rgba(177, 171, 255, 0.2), rgba(177, 171, 255, 0.2)), var(--card-background-image, none);
}

/* Light purple gradient */
.card-1 .icon-wrapper,
.card-2 .icon-wrapper,
.card-3 .icon-wrapper,
.card-4 .icon-wrapper,
.card-5 .icon-wrapper {
  margin-bottom: 25px;
}




.card-2 {
  background: linear-gradient(0deg, rgba(236, 247, 255, 0.5), rgba(236, 247, 255, 0.5)), var(--card-background-image, none) center center no-repeat;
  background-size: cover;
  background-position: center;
}



.card-3 {
  background: linear-gradient(135deg, rgba(255, 171, 173, 0.2), rgba(255, 171, 173, 0.2)), var(--card-background-image, none);
}




.card-4 {
  /* background: linear-gradient(135deg, rgba(224, 255, 240, 0.8), rgba(204, 255, 238, 0.8)), var(--card-background-image, none); */
  background: linear-gradient(0deg, rgba(232, 253, 243, 0.6), rgba(232, 253, 243, 0.6)), var(--card-background-image, none) center center no-repeat;
  background-size: cover;
  background-position: center;
}



.card-5 {
  background: linear-gradient(0deg, rgba(253, 229, 248, 0.6), rgba(253, 229, 248, 0.6)), var(--card-background-image, none) center center no-repeat;
  background-size: cover;
  background-position: center;
}


.icon-wrappers {
  margin-bottom: 25px;
}


.ready_see {

  background-image: url(../img/contact-bg.png);
  background-position: center;
  padding: 50px 0;
  min-height: 60dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  right: 0;
  border-radius: 10px;
  margin-top: -16%;
  z-index: 9;
  background-size: cover;
  background-repeat: no-repeat;

}

.contact_bg {
  /* position: absolute;
  left: 0;
  right: 0;
  border-radius: 10px;
  margin-top: -50px; */
  width: 90%;
  margin: 0 auto;
}


.btn-get-started {
  background: var(--accent-color);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 30px;
  border-radius: 6px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 20px;
  text-transform: capitalize;
  color: #010915;
}

.fly_bird_btn {
  width: 290px;

}

.sales_img {
  filter: grayscale(100%);
}

.mw_para {
  max-width: 450px;
}

.peekr_action {
  padding: 60px 0px 0px 100px;
}

.pb_100 {
  padding-bottom: 100px;
}

.btn-get-started:hover {
  color: var(--contrast-color);
  background: rgba(255, 255, 255, 0.2);
  /* border: 2px solid rgba(255, 171, 173, 1); */
}


/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 60px;
  right: 14px;
  /* background-color: #25D366; */
  /* color: white;
  border-radius: 50%; */
  /* width: 60px;
  height: 60px; */
  display: flex;
  align-items: center;
  justify-content: center;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); */
  z-index: 1000;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  /* box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3); */
}

/* From Uiverse.io by Gaurang7717 */
.Btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition-duration: 0.3s;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
  background-color: #00d757;
}

.sign {
  width: 100%;
  transition-duration: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sign svg {
  width: 25px;
}

.sign svg path {
  fill: white;
}

.text {
  position: absolute;
  right: 0%;
  width: 0%;
  opacity: 0;
  color: white;
  font-size: 1.2em;
  font-weight: 600;
  transition-duration: 0.3s;
}

.Btn:hover {
  width: 150px;
  border-radius: 40px;
  transition-duration: 0.3s;
}

.Btn:hover .sign {
  width: 30%;
  transition-duration: 0.3s;
  padding-left: 10px;
}

.Btn:hover .text {
  opacity: 1;
  width: 70%;
  transition-duration: 0.3s;
  padding-right: 10px;
}

.Btn:active {
  transform: translate(2px, 2px);
}

.h-slider {
  padding-left: 6.5% !important;
}




@media screen and (min-width: 1450px) {
  .performance-sec {
    margin-bottom: 250px;
  }
}



@media screen and (min-width: 768px) and (max-width: 1024px) {

  .header .navmenu {
    margin-right: 0 !important;
  }

  .btn-custom {
    order: 3;
  }

  .hero {
    /* padding: 80px 0 60px 0; */
    min-height: 100dvh;
  }

  .ready_see {
    min-height: auto;
    position: relative;
    background-image: unset;
    background-repeat: no-repeat;

  }

  .peekr_action {
    padding: unset;
  }

  .footer_bg {
    padding-top: 40px;
  }

  .cta-sec {
    background: rgba(9, 24, 59, 0.6);
    box-shadow: 0px -14px 110.2px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(147.4px);
    margin: 100px 0px 0px 0px;
  }
}


/* Responsive adjustments */
@media (max-width: 767.98px) {
  .card-custom {
    padding: 25px;
  }

  .card-custom .value {
    font-size: 2rem;
  }

  .card-custom .description {
    font-size: 1rem;
  }
}

/* ends progress slider css */


/* modal for contact form css */


.modal-dialog.modal-dialog-centered .modal-content {
  border-radius: 1rem;
  /* Rounded corners for the modal */
  overflow: hidden;
  /* Ensures content respects rounded corners */
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.2);
  /* Stronger shadow */
  max-width: 900px;
  /* Adjust max-width for the two-column layout */
  width: 95%;
  /* Make it responsive */
}



.modal-body {
  padding: 3rem;
}

.modal-footer {
  border-top: none;
}

#contactModal .form-control {
  border-radius: 6px;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(3, 26, 38, 0.1);
  font-family: 'Urbanist';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  text-transform: capitalize;
  color: rgba(1, 9, 21, 0.6);
  margin-bottom: 15px;
}

#contactModal .form-control:focus {
  border-color: rgba(255, 171, 173, 1);
  box-shadow: none;
}

.btn-close {
--bs-btn-close-bg:unset;
}

/* Custom button style for "Request" button */
.btn-request {
  background-color: rgba(255, 171, 173, 1);
  border-color: rgba(255, 171, 173, 1);
  color: #fff;
 margin-top: 25px;
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

.btn-request:hover {
  background-color: #ff9cab;
  /* Slightly darker on hover */
  border-color: #ff9cab;
  color: #fff;
}

.btn-close {
  background-color: transparent;
  /* Remove background */
  opacity: 1;
  /* Full opacity */
  font-size: 1.5rem;
  /* Larger 'x' icon */
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 100;
}

.btn-close:focus {
  box-shadow: none;
  /* Remove focus outline */
}

.contact-info-section {
  /* padding-right: 2rem; */
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
}


.contact-info-section h3 {
  font-family: 'Urbanist';
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  color: #0B1728;
}

@media (max-width: 767.98px) {
  .contact-info-section {
    border-right: none;
    /* Remove border on small screens */
    border-bottom: 1px solid #eee;
    /* Add bottom border instead */
    padding-right: 1rem;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  /* Space between contact items */
}

.contact-item span {
  border: 1px solid #031A261A;
  padding: 12px;
  width: 70px;
  border-radius: 6px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;

  margin-right: 1rem;
  flex-shrink: 0;
  /* Prevent icon from shrinking */
}

.contact-item div {
  flex-grow: 1;
}

.contact-item h6 {
  margin-bottom: 0.2rem;
  font-family: 'Urbanist';
  font-style: normal;
  color: #0B1728;
  font-weight: 500;
  font-size: 13px;
  line-height: 26px;
  text-transform: uppercase;
}

.contact-item a {
  margin-bottom: 0;
  font-family: 'Urbanist';
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 23px;
  color: #0B1728;
}

.description-text {
font-family: 'Urbanist';
font-style: normal;
font-weight: 400;
font-size: 16px;
line-height: 28px;
color: rgba(1, 9, 21, 0.6);
}

.modal-dialog {
  margin-right: auto;
  margin-left: auto;
  max-width: 1366px;
}


.modal-dialog-centered {
  display: flex;
  align-items: center;
  /* min-height: calc(100% - var(--bs-modal-margin) * 2); */
  justify-content: center;
}

/* ends modal for contact form css */

/* perk ai css farhan ends */



@media (max-width: 640px) {

  .h-slider {
    padding-left: 1.5rem;
  }

  .hero {
    width: 100%;
    min-height: 70dvh;
  }

  .card-custom-width {
    max-width: 80%;
    width: 100%;
    border: 1px solid #0A1224 !important;
    border-radius: 10px;
    position: relative;
  }

  .ready_see {

    min-height: auto;
    position: relative;
    background-repeat: no-repeat;
    background-image: unset;
  }

  .peekr_action {
    padding: 0;
  }

  .custom-progress-bar-container {
    margin-top: 50px;
  }

  .section-title {

    padding-bottom: 30px;

  }

  .pb_100 {
    padding-bottom: 50px;
  }

  .footer_bg {
    padding-top: 80px;
  }

  .cta-sec {
    background-image: url(../img/contact-bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    background: rgba(9, 24, 59, 0.6);
    box-shadow: 0px -14px 110.2px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(147.4px);
    margin: 50px 0px 0px 0px;
  }

  .footer-section {
    margin-top: 0px;

  }

  .line_none {
    display: none;
  }

  .feature-card {
    min-height: 240px;
  }

  .features,
  .features-slider {
    padding-bottom: 0px;
  }

  .num-circle {

    top: 20px;
    left: -20px;

  }

  .navmenu a,
  .navmenu a:focus {
    color: #010915;
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navigation-buttons {

    margin-top: unset;
  }

  .hero .how-it-works,
  .hero .btn-get-started {
    width: 70%;
    margin: 0 auto;
    margin-right: auto !important;
  }

  .modal-body {
    padding: 2rem;
}


}



@media (min-width: 320px) and (max-width: 375px) {
  .hero {
    width: 100%;
    min-height: 90dvh;
  }

  .btn-custom {
    display: none;
  }
}