@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  /* Brand Colors */
  --color-primary: #047aee;
  --color-accent: #2cbfb5;
   --color-white-light: #f9fafb;
  --color-white-light-1: #f7f8f9;
 
  --font-heading: 'Work Sans', sans-serif;
  --font-body: 'Poppins', sans-serif;

  /* Base Colors */
  --color-white: #ffffff;
  --color-black: #000000;
  --color-border: #ecf0f5;
  --color-yellow:#facc15;
  --border-hover-blue: #0072f54d;
  
  
    --clr-variant-1: #0e0b14;
    --clr-variant-2: #171320;
	--clr-variant-3: #2b253780;
	--clr-variant-4: #fff;
	--clr-variant-5: #74c892;
	--clr-variant-6: #666666;
	--clr-variant-7: #f3f5f7;
	--clr-variant-8: #0072f5;
	--clr-variant-9: #0072f51a;

  --border-hover: #b2d4fc;
  --card-bg-one: #f7f8fa;


  /* Theme Usage */
  --bg: var(--color-white);
  --text: var(--color-dark);
  --heading: var(--color-black);
  --link: var(--color-primary);
  
  
    --heading-h1: 72px;
    --heading-h2: 48px;
    --heading-h3: 32px;
    --heading-h4: 24px;
    
	--text-size-1: 20px;
	--text-size-2: 18px;
	--text-size-3: 16px;
	--text-size-4: 14px;

    --gradient-v1: linear-gradient(90deg,rgba(0, 114, 245, 1) 0%, rgba(46, 194, 179, 1) 50%, rgba(116, 200, 146, 1) 100%);
	--gradient-v2: linear-gradient(180deg,rgba(14, 11, 20, 1) 0%, rgba(36, 31, 46, 1) 50%, rgba(14, 11, 20, 1) 100%);
  

}

/* Dark Mode */

body.dark-mode {
    
  --bg: #000000;
  --text: #ffffff;
  --heading: #ffffff;
  --link: #2cbfb5;
  --card-bg-one:#14101b;
  --color-border:  #201b29;
  --color-white-light:#000;
  --color-white-light-1:#13101a;
  
   
 

}

/* Global */
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
}

h1,
h2,
h3,
h4,
h5 {
  color: var(--heading);
  font-family: var(--font-heading);
}

a {
  color: var(--link);
}
p{
    color: var(--clr-variant-6);
}
p:last-child{
    margin-bottom: 0;
}

/* =========================
   COMMON CLASSES
========================= */

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

.text-white{
	color: var(--clr-variant-4);
}

.grid{
	display: grid;
}

.grid-col-2{
	grid-template-columns: repeat(2, 1fr);
}

.grid-col-3{
	grid-template-columns: repeat(3, 1fr);
}

.grid-col-6{
	grid-template-columns: repeat(6, 1fr);
}

.gap-80{
    gap: 80px;
}

.gap-40{
    gap: 40px;
}

.gap-30{
    gap: 30px;
}

.gap-20{
    gap: 20px;
}

.flex{
    display: flex;
    flex-wrap: wrap;
}

.title-label {
    color: var(--clr-variant-5);
    background: #74c8921a;
    border: 1px solid #74c89233;
    display: inline-flex;
    padding: 8px 16px;
    border-radius: 30px;
    align-items: center;
    gap: 8px;
    font-size: var(--text-size-4);
}

.title-label .dot {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    background-color: var(--clr-variant-5);
}

.button-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.button {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    padding: 14px 24px;
    min-width: 213px;
    min-height: 56px;
    border-radius: 12px;
    display: inline-block;
    text-align: center;
    color: var(--clr-variant-4);
    text-decoration: none;
    line-height: 1.6;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.gradient-text{
    background: var(--gradient-v1);
    color: transparent;
    background-clip: text;
}
.animate-glow-pulse {
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%,to {
        text-shadow: 0 0 20px #0072f580, 0 0 40px #2ec2b34d;
    }

    50% {
        text-shadow: 0 0 40px #0072f5cc, 0 0 80px #2ec2b380;
    }
}

.media img{
    width: 100%;
    height: 100%;
}

/* =========================
   HEADER
========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  /* border-bottom: 1px solid rgba(0,0,0,0.08); */
  transition: box-shadow 0.3s ease;
}

.site-header.is-sticky {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}


body.dark-mode .site-header {
  background: rgba(0, 0, 0, 0.85);
  border-color: rgba(255, 255, 255, 0.15);
}





.announcement-bar{
	background: var(--gradient-v1);
	padding-block: 10px;
}
.announcement-bar .msg{
    font-size: var(--text-size-4);
}


.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}


/* =========================
   LOGO
========================= */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  font-size: 24px;
  color: var(--heading);
  font-family: var(--font-heading);
}

.logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg,
      var(--color-primary),
      var(--color-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(4, 122, 238, 0.35);
  transition: transform .3s ease, box-shadow .3s ease;
}

.site-logo:hover .logo-icon {
  transform: scale(1.1);
  box-shadow: 0 18px 36px rgba(4, 122, 238, 0.5);
}

/* =========================
   DESKTOP NAV
========================= */
.main-nav {
  display: none;
  gap: 32px;
}

.main-nav a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  opacity: 1;
  letter-spacing: 0.05em;
  transition: color .25s ease, opacity .25s ease;
}

.main-nav a:hover {
  opacity: 1;
  color: var(--color-primary);
}

/* =========================
   HEADER ACTIONS
========================= */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* .theme-toggle,
.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  color: var(--text);
} */

.menu-toggle {
  width: 40px;
  height: 32px;
  position: relative;
  border: none;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background: #000;
  border-radius: 4px;
  transition: all 0.35s ease;
}

body.dark-mode .menu-toggle span{
    background-color: #fff;
}
/* Line positions */
.menu-toggle span:nth-child(1) {
  top: 0;
}

.menu-toggle span:nth-child(2) {
  top: 14px;
}

.menu-toggle span:nth-child(3) {
  bottom: 0;
}

/* 🔥 ACTIVE STATE (Cross) */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 14px;
}

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

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 14px;
}



/****/
.cta-btn {
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-white);
  background: linear-gradient(135deg,
      var(--color-primary),
      var(--color-accent));
  border: none;
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease;
}

.cta-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 16px 30px rgba(4, 122, 238, 0.45);
}


/**** Toogle Button dark/light mode****/

.header-inner .sign-in {
  text-decoration: none;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  opacity: 1;
  letter-spacing: 0.05em;
  transition: color .25s ease, opacity .25s ease;
}


.theme-toggle {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SVG base */
.theme-toggle svg {
  width: 20px;
  height: 20px;
  position: absolute;
  transition: all 0.5s ease;
}

/* Light mode default */
#icon-sun {
  opacity: 0;
  transform: scale(0.5);
}

#icon-moon {
  opacity: 1;
  transform: scale(1);
}

/* Dark mode */
body.dark-mode #icon-sun {
  opacity: 1;
  transform: scale(1);
  color: #facc15;
  /* yellow */
}

body.dark-mode #icon-moon {
  opacity: 0;
  transform: scale(0.5) rotate(-90deg);
}

/* 🔄 Sun rotate like clock on hover (only dark mode) */
body.dark-mode .theme-toggle:hover #icon-sun {
  transform: scale(1) rotate(180deg);
}



/* =========================
   MOBILE MENU
========================= */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  background: var(--bg);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

body.dark-mode .mobile-nav {
  border-color: rgba(255, 255, 255, 0.15);
}

.mobile-nav a {
  text-decoration: none;
  font-weight: 700;
  color: var(--text);
}



/* =========================
   RESPONSIVE
========================= */
@media (min-width: 1024px) {
  .main-nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }


}

@media (max-width: 767px) {

  .header-inner .sign-in {
    display: none;
  }

  .header-inner .cta-btn {
    display: none;
  }
  
  .announcement-bar .msg-icon{
      display: none;
  }

}



/* =========================
   Mega MENU
========================= */


/* nav item */
.nav-item {
  position: static; /* IMPORTANT */
}

/* link */
.platform-link {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* FULL WIDTH DROPDOWN */
.dropdown-box {
  position: absolute;
  top: 100%;           /* exact nav ke neeche */
  left: 0;
  width: 100%;
  background: #1a0a2e;
padding: 0px 40px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
  z-index: 999;
}

/* active */
.nav-item.active .dropdown-box {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* icon rotate */
.chevron-icon {
  width: 20px;
  transition: 0.3s;
}


body.dark-mode .chevron-icon {
  fill:#fff !important;

}



.nav-item.active .chevron-icon {
  transform: rotate(180deg);
}



.mega-menu-box ul {
    list-style: none;
}

.mega-menu-box ul li {
    color: #767676;

    font-size: 16px;
    padding: 15px 20px;
   border-bottom: 1px solid #767676;
}


.mega-menu-box ul li:last-child{
    border-bottom: 0px !important;
}



/* =========================
   Home Page 
========================= */


/*** Banner ***/

.hero {
    padding: 144px 0 80px;
    position: relative;
    width: 100%;
    top: -116px;
}

.hero .button svg {
    height: 20px;
}

/********/
 /* .hero:after {
    content: "";
    background-image: linear-gradient(#233847 1px, transparent 1px), linear-gradient(90deg, #233847 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: -1;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
} */


/********/

.hero .media {
    border-radius: 12px;
    overflow: hidden;
}
.hero .content >*:not(:last-child) {
    margin-bottom: 24px;
}

.heading h1 {
    font-size: var(--heading-h1);
    font-weight: 800;
    line-height: 1;
}

.heading h1 span {
    display: block;
}

.check-list {
    padding-left: 0;
    margin-bottom: 0;
}

.check-list li {
    list-style: none;
    font-size: var(--text-size-4);
}

.check-list li .icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid var(--clr-variant-5);
    display: inline-block;
    background-color: #5ba57533;
    align-items: center;
    text-align: center;
}

.check-list li .icon svg {
    width: 15px;
    height: 15px;
    margin-bottom: 6px;
}


/********/

.hero .container {
    position: relative;
}

.hero .icon_banner_animation.animate-float {
    position: absolute !important;
    top: 100px;
    left: -60px;
    opacity: 0.5;
}


.hero .icon_banner_animation.animate-float svg {
    height: 45px;
}

@keyframes float {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, -70px);
  }
  100% {
    transform: translate(0, 0);
  }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}



/*** Services ***/

.featured-card {
    padding-block: 80px;
    background-color: var(--color-white-light);
}

.section-title{
    margin-bottom: 60px;
    max-width: 850px;
    margin-inline: auto;
}

.heading h2 {
    font-size: var(--heading-h2);
    font-weight: 700;
}

.featured-card .card {
    padding: 22px;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid #e1e7ef80;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .5s;
    animation-duration: .5s;
    background-color: #fff;
    cursor: pointer;
}

body.dark-mode .card{
    background: #171320;
}

.featured-card .card:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    transition-property: opacity;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .5s;
    animation-duration: .5s;
    background: radial-gradient(at 40% 20%, hsl(212 100% 48% / .15) 0px, transparent 50%), radial-gradient(at 80% 0%, hsl(174 62% 47% / .15) 0px, transparent 50%), radial-gradient(at 0% 50%, hsl(141 43% 62% / .1) 0px, transparent 50%);
}

.featured-card .card:hover:before {
    opacity: 1;
}

.featured-card .card h3{
  transition: color 0.5s ease;
}

.featured-card .card:hover h3{
  color: #1b8afa;
}


.featured-card .card:hover {
    border-color: var(--border-hover-blue);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1);
    transform: translateY(-4px);
}

.featured-card .card .icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    margin-bottom: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
}


.featured-card .card .icon:after {
    content: "";
    position: absolute;
    inset: 0;
       padding: 2px;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}


.featured-card .card h3 {
    font-size: var(--text-size-1);
    font-weight: 700;
    margin-bottom: 12px;
}

.featured-card .btn {
    font-size: var(--text-size-4);
    text-decoration: none;
}


body.dark-mode .featured-card .card .icon svg {
    color: #fff;
}
/*****Hover line bottom****/

.featured-card .card {
  position: relative;
}

.featured-card .card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
     background: linear-gradient(135deg, var(--color-primary), var(--color-accent));

  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.6s ease; /* slow */
}

/* hover */
.featured-card .card:hover::after {
  transform: scaleX(1);
}



/*****Logos section****/

.home-logos {
    background: var(--card-bg-one);
    padding: 48px 0px;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.home-logos .marquee {
  overflow: hidden;
  width: 100%;
}

.home-logos .marquee__inner {
  display: flex;
  width: fit-content;
  animation: scroll 55s linear infinite;
}

.home-logos .logo {
  flex-shrink: 0;
  padding: 0 40px;
  white-space: nowrap;
}

.home-logos p {
    text-align: center;
    padding-bottom: 20px;
    text-transform: uppercase;
    color: #666;
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}


.home-logos .logo span {
    padding: 12px 24px;
    border: 1px solid var(--color-border) !important;
    font-size:var(--text-size-4);
    display: block;
    border-radius: 10px;
    color: var(--clr-variant-6);
    background-color: var(--color-white);
     transition: 
        border-color 0.4s ease,
        background-color 0.4s ease,
        color 0.4s ease;
}

.home-logos .logo span:hover {
    border-color: var(--border-hover-blue) !important;
}

body.dark-mode .home-logos .logo span{
    color: var(--clr-variant-6);
    background-color: var(--clr-variant-2);
}



/*****Logos section End****/

.testimonials {
        padding-block: 80px;
        background: var(--color-white-light-1);
}

.testimonials-label .label {
    background: var(--border-hover-blue);
    width: fit-content;
    padding: 5px 15px;
    border-radius: 50px;
    color: var(--color-primary);
    margin: 0 auto;
}


.testimonials-box {
    padding: 24px;
    background: var(--color-white);
    border-radius: 10px;
    border: 1px solid var(--color-border) !important;
    transition: 
        border-color 0.4s ease,
        background-color 0.4s ease,
        color 0.4s ease;
}

body.dark-mode .testimonials-box{
    background-color: var(--clr-variant-2);
}
.testimonials-box:hover {
    border-color: var(--border-hover-blue) !important;
}


.testimonials-box .icon svg {
    color: var(--color-yellow);
    fill: var(--color-yellow);
}


.testimonials-box .icon-logo-box {
    background: var(--gradient-v1);
    height: 40px;
    border-radius: 50px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    color: #fff;
    background-position: left;
}

.testimonials-box .author .name {
    font-size: var(--text-size-2);
}

/*****Testimonials section End****/


    


/***************/

.metrics{
    padding-block: 80px;
        background: linear-gradient(163deg, #dceef5, transparent);
}


body.dark-mode .metrics{

                    background: linear-gradient(to right, #111322 40%, #161a2c 60%, #121823 100%);

    
}


.metrics-box {
    background: #fff;
    padding: 32px;
    border-radius: 10px;
    transition: transform .3s ease, box-shadow .3s ease;
}



body.dark-mode .metrics-box{
    background: #191724;
}
.metrics-box:hover{
    transform: scale(1.1);
}

.metrics-box .counter-text span{
    font-size:var(--heading-h1);
    font-weight: 700;
    color: #0072f5;
}



.metrics-divider {
    height: 5px;
    background: linear-gradient(to right, #5fa9ea, #ffffff);
    max-width: 120px;
    margin: 0 auto;
}


.metrics .grid .column:nth-child(2) .metrics-divider {

     background: linear-gradient(to right, #2ec2b3, #ffffff);

}


.metrics .grid .column:nth-child(3) .metrics-divider {

     background: linear-gradient(to right, #74c892, #ffffff);

}

/**** Security Features ****/

.your-stack {
    padding-block: 60px;
       background-color: var(--color-white-light);
}

.your-stack-box-one {
    padding: 32px;
    border: 1px solid var(--color-border) !important;
    border-radius: 10px;
    height: 100%;
    background: #fff;
}


.your-stack-box-one {
    position: relative;
    z-index: 1;
}

.divider-one .divider-line {
    height: 3px;
    width: 100%;
    background: #fdecec;
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translate(0%, -50%);
    rotate: 356deg;
    z-index: -1;
}

body.dark-mode .divider-one .divider-line{
opacity: 0.2;
}
body.dark-mode .your-stack-box-one {
    background: #171320;
}

.your-stack-box-one .svg-icon {
    background: #fdecec;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 10px;
}

.your-stack-box-one .svg-icon .text-destructive {
    color: #ef4242;
}

.your-stack-box-one .stact-list {
    list-style: none;
    padding: 0px;
}

.your-stack-box-one .stact-list li {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px 0px;
}

.your-stack-box-one .stact-list li .rounded-full {
    background: #fdecec;
    padding: 10px;
    width: 12px;
    height: 12px;
    border-radius: 10px;
    position: relative;
}

.your-stack-box-one .stact-list li .rounded-full svg {
    color: #ef4242;
    width: 15px;
    height: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.your-stack-box-one-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.your-stack-box-one-buttons span {
    background: #f3f5f7;
    font-size: 13px;
    padding: 14px 10px;
    border-radius: 50px;
    line-height: 0px;
}


body.dark-mode .your-stack-box-one .your-stack-box-one-buttons span {
    background: #241f2e;
}


.your-stack-box-two {
    border: 1px solid var(--border-hover-blue);
    padding: 32px;
     height: 100%;
    border-radius: 10px;
    background: linear-gradient(163deg, #ecf4f8, #f1f7f5);
}


body.dark-mode  .your-stack-box-two {
    background: #131820;
        box-shadow: 0px 0px 80px -12px #0983e6;
}
.your-stack-box-two .svg-icon {
     background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 10px;
}

.your-stack-box-two .svg-icon svg {
    color: #fff;
}

.your-stack-box-two .stact-list {
    list-style: none;
    padding: 0px;
}

.your-stack-box-two .stact-list li{
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px 0px;
}


.your-stack-box-two .stact-list li .rounded-full {
    background: #d3eae3;
    padding: 10px;
    width: 12px;
    height: 12px;
    border-radius: 10px;
    position: relative;
}

.your-stack-box-two .stact-list li .rounded-full svg{
   color:#74c892;
       width: 15px;
    height: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.your-stack-box-two .your-stack-box-one-buttons span {
    background: #e2f1eb;
        border: 1px solid;
    color: #92c89d;
}

body.dark-mode .your-stack-box-two .your-stack-box-one-buttons span{
        background: #1c2729;
}

body.dark-mode .your-stack-box-two .stact-list li .rounded-full {
    background: #253838;
}


.your-stack-call-to-action a {
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border: none;
    cursor: pointer;
    transition: transform .3s ease, box-shadow .3s ease;
    text-decoration: none;
}

.your-stack-call-to-action a svg {
    height: 20px;
}

.your-stack-call-to-action a:hover {
transform: translateY(-2px) scale(1.05);
    box-shadow: 0 16px 30px rgba(4, 122, 238, 0.45);
}

.your-stack-call-to-action svg {
    height: 25px;
    margin-left: 10px;
}



/**** Security Features ****/

.entire-team {
    background-color: var(--color-white-light);
    padding-block: 80px;
}


.entire-team .team-box {
    padding: 32px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #f0f3f7;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .5s;
    animation-duration: .5s;
}

body.dark-mode .entire-team .team-box {
   background-color: #171320;
   border-color: #211c2c;
}

body.dark-mode .entire-team .team-box:hover{
border-color: var(--border-hover-blue);
}


.entire-team .team-box:hover{
       border-color: var(--border-hover-blue);
    transform: translateY(-4px);
}

.entire-team .team-box  .top {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding-bottom: 20px;
}

.entire-team .team-box .top .icon {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    background: #e5f1fe;
    display: flex;
    align-items: center;
    justify-content: center;
}




.entire-team .team-box .buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
     padding: 25px 0px;
}

.entire-team .team-box .buttons span {
    background: #e5f1fe;
    padding: 5px 10px;
    font-size: 13px;
    border-radius: 50px;
    color: #0983e6;
}

.entire-team .team-box  .links a{
      color: #0983e6;
}

.entire-team .team-box  .links svg {
    height: 15px;
}

/*****seprate color********/

.team-wrap .column:nth-child(2) .team-box .top .icon {
    background: #eaf9f7;
}

.team-wrap .column:nth-child(2) .team-box .top .icon svg {
    color: #2ec2b3 !important;
}

.team-wrap .column:nth-child(2) .team-box .buttons span{
    background-color: #eaf9f7;
    color: #2ec2b3;
}


.team-wrap .column:nth-child(3) .team-box .top .icon {
    background: #f1f9f4;
}

.team-wrap .column:nth-child(3) .team-box .top .icon svg {
    color: #74c892 !important;
}

.team-wrap .column:nth-child(3) .team-box .buttons span{
    background-color: #f1f9f4;
    color: #74c892;
}


.team-wrap .column:nth-child(3) .team-box .top .icon {
    background: #f7f2ff;
}

.team-wrap .column:nth-child(3) .team-box .top .icon svg {
    color: #af86ff !important;
}

.team-wrap .column:nth-child(3) .team-box .buttons span{
    background-color: #f7f2ff;
    color: #af86ff;
}

/******Dark ***/

body.dark-mode .team-wrap .column:nth-child(1) .team-box .top .icon {
    background: #171f36;
}

body.dark-mode .team-wrap .column:nth-child(1) .team-box .top .icon svg {
    color: #1a85ff !important;
}

body.dark-mode .team-wrap .column:nth-child(1) .team-box .buttons span{
    background-color: #171f36;
    color: #1a85ff;
}


body.dark-mode .team-wrap .column:nth-child(2) .team-box .top .icon {
    background: #19252e;
}

body.dark-mode .team-wrap .column:nth-child(2) .team-box .top .icon svg {
    color: #2ec2b3 !important;
}

body.dark-mode .team-wrap .column:nth-child(2) .team-box .buttons span{
    background-color: #19252e;
    color: #2ec2b3;
}


body.dark-mode .team-wrap .column:nth-child(3) .team-box .top .icon {
    background: #20252b;
}

body.dark-mode .team-wrap .column:nth-child(3) .team-box .top .icon svg {
    color: #74c892 !important;
}

body.dark-mode .team-wrap .column:nth-child(3) .team-box .buttons span{
    background-color: #20252b;
    color: #74c892;
}


body.dark-mode .team-wrap .column:nth-child(4) .team-box .top .icon {
    background: #22162f;
}

body.dark-mode .team-wrap .column:nth-child(4) .team-box .top .icon svg {
    color: #8a2eb8 !important;
}

body.dark-mode .team-wrap .column:nth-child(4) .team-box .buttons span{
    background-color: #22162f;
    color: #8a2eb8;
}




/**** Security Features ****/

.security-features {
    padding-block: 60px;
    background-color: rgba(255, 255, 255, 0.8);
    background-image: linear-gradient(rgb(249, 250, 251), rgba(0, 114, 245, 0.05), rgb(249, 250, 251));
}


body.dark-mode .security-features {
     background: var(--color-white-light-1);
}


.count-box {
    padding: 24px;
    background-color: #fff;
    border-radius: 12px;
}

body.dark-mode .count-box {
    background: #171320;
}

.text-blue{
    color: #0072f5;
}

.text-green{
    color: #2ec2b3;
}

.text-light-green{
    color: #74c892;
}

.text-purple{
    color: #ac80ff;
}

.count-box h3 {
    font-weight: 600;
}
.feature-box {
    box-shadow: rgba(46, 194, 179, 0.4) 0px 0px 60px -12px;
    padding: 32px;
    border-radius: 16px;
    background-color: #ffffffcc;
    backdrop-filter: blur(24px);
    border: 1px solid #e1e7ef80;
}

body.dark-mode .feature-list .icon img{
  filter: brightness(0) invert(1);
}

body.dark-mode .feature-box {
    background: #161727;
        border: 1px solid #161727;
}

body.dark-mode .feature-list p {
    color: #fff;
}

body.dark-mode .feature-box .trust p {
    color: #fff;
}
.feature-box h3 {
    margin-bottom: 32px;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.feature-list .list-item {
    border-radius: 12px;
    background-color: #ffffff80;
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 12px;
    padding: 16px;
    align-items: center;
}

body.dark-mode .feature-list .list-item{
    background: #171320 !important
}

.feature-list .list-item .icon {
    background-color: #74c8921a;
    padding: 10px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-list .list-item .icon img {
    width: 20px;
}

.feature-list .list-item .info {
    font-size: 14px;
}


.trust {
    background-image: linear-gradient(to right, rgba(116, 200, 146, 0.1), rgba(0, 114, 245, 0.1));
    padding: 16px;
    margin-top: 32px;
    border-radius: 12px;
    text-align: center;
}



/**** Pricing ****/

.pricing {
    padding-block: 60px;
}

.price-box {
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #e1e7ef80;
    height: 100%;
    transition: all 0.3s ease-in-out;
    position: relative;
}

.price-box:hover{
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.1) 0px 8px 10px -6px;
    transform: translateY(-4px);
}

.price-box.box-1 {
    background-image: linear-gradient(to right bottom, rgb(243, 245, 247), rgb(255, 255, 255));
}

.price-box.box-2 {
    background-image: linear-gradient(to right bottom, rgba(0, 114, 245, 0.2), rgba(46, 194, 179, 0.2));
    border: 1px solid #0072f5;
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 114, 245, 0.1) 0px 20px 25px -5px, rgba(0, 114, 245, 0.1) 0px 8px 10px -6px;
}

.price-box.box-3 {
    background-image: linear-gradient(to right bottom, rgba(116, 200, 146, 0.2), rgba(172, 128, 255, 0.2));
}


.price-title h3 {
    font-size: var(--heading-h4);
    font-weight: 700;
}

.price .num {
    font-size: var(--heading-h2);
    font-weight: 700;
    color: var(--clr-variant-1);
}

.badge {
    font-size: var(--text-size-4);
    font-weight: 500;
    background-color: #0072f5;
    border-radius: 30px;
    padding: 6px 16px;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.list-style-1 {
    padding: 0;
}

.list-style-1 li {
    list-style: none;
    position: relative;
    padding-left: 30px;
    margin-top: 12px;
    font-size: var(--text-size-4);
    color: #121212cc;
}

.list-style-1 li::before {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-image: url(/wp-content/uploads/2025/12/check.svg);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #74c89233;
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center;
}
.price-box .button {
    width: 100%;
    margin-top: 32px;
}


.pricing .button svg {
    height: 20px !important;
}

/*****price-box dark*********/

body.dark-mode .price-box.box-1 {
    background: #1e1927;
}


body.dark-mode .pricing li {
    color: #ffffff;
    opacity: 0.8;
}

body.dark-mode .pricing .num {
    color: #fafafa !important;
}


/**** before Footer ****/



.before-footer {
    padding-block: 80px;
            background: linear-gradient(to right, #ddebf7 40%, #bedff3 60%, #d6f1ef 100%);
}

body.dark-mode .before-footer {
     background: linear-gradient(to right, #171a30 40%, #1f2037 60%, #142939 100%);
}


.before-footer .button svg {
    height: 20px !important;
}


/**** Footer ****/

.footer-top {
    padding-block: 60px;
}

.footer-title {
    font-size: var(--text-size-3);
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-bio p {
    font-size: var(--text-size-4);
    margin-bottom: 24px;
}

.social-icon {
    padding: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-icon li {
    list-style: none;
}

.social-icon li a {
    width: 36px;
    height: 40px;
    border-radius: 12px;
    background-color: var(--clr-variant-7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon li a svg {
    width: 20px;
    height: 20px;
    color: var(--clr-variant-6);
}

.social-icon li a:hover {
    background-color: var(--clr-variant-9);
}

.social-icon li a:hover svg {
    color: var(--clr-variant-8);
}

.footer-menu ul {
    padding: 0;
    margin: 0;
}

.footer-menu ul li {
    list-style: none;
}

.footer-menu ul li:not([hidden]) ~ :not([hidden]){
    margin-top: 12px;
}

.footer-menu ul li a {
    font-size: var(--text-size-4);
    color: var(--clr-variant-6);
    text-decoration: none;
    transition: all 0.15s ease-in-out;
}

.footer-menu ul li a:hover {
    color: var(--clr-variant-8);
}

.footer-bottom {
    padding-block: 24px;
    border-top: 1px solid #e1e7ef;
}

.copyright p {
    font-size: var(--text-size-4);
}

.terms ul {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 24px;
    margin: 0;
    padding: 0;
}

.terms ul li {
    list-style: none;
    font-size: var(--text-size-4);
}

.terms ul li a {
    text-decoration: none;
    color: var(--clr-variant-6);
}



@media(max-width: 991px){
    .grid-col-3{
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-col-6 {
        grid-template-columns: repeat(3, 1fr);
    }
    .security-features .grid-col-2, 
    .your-stack .grid-col-2{
        grid-template-columns: 1fr;
    }
}
@media(max-width: 767px){
    
    :root {
  
    --heading-h1: 34px;
    --heading-h2: 28px;
    --heading-h3: 26px;
    --heading-h4: 24px;
    
	--text-size-1: 18px;
	--text-size-2: 16px;
	--text-size-3: 14px;
	--text-size-4: 12px;

    }
    
    .button {
        padding: 10px 24px;
        min-width: 190px;
        min-height: 44px;
        border-radius: 8px;
        font-size: 14px;
    }
    
    .grid-col-2, 
    .grid-col-3, 
    .grid-col-6, 
    .feature-list{
        grid-template-columns: 1fr;
    }
    
    .footer .grid-col-6{
        grid-template-columns: repeat(2, 1fr);
    }
    .footer .grid-col-6 .column:first-child{
        grid-column: 1 / -1;   
    }
    .footer-bottom .col {
        width: 100%;
        flex: 100%;
    }
    .terms ul {
        justify-content: start;
        margin-top: 15px;
    }
    
}
