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

/* Global css for template */
body {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  color: #000;
  line-height: 1.3;
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 25px;
  padding: 0;
  font-family: "Roboto", sans-serif;
  line-height: 1.5;
}

h1 {
  font-size: 70px;
  font-weight: 800;
}

h2 {
  font-size: 60px;
  font-weight: 700;
}

h3 {
  font-size: 50px;
  font-weight: 600;
}

h4 {
  font-size: 45px;
  font-weight: 500;
}

h5 {
  font-size: 35px;
  font-weight: 400;
}

h6 {
  font-size: 20px;
  font-weight: 400;
}

p {
  margin-bottom: 15px;
}

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

a {
  text-decoration: none;
  display: inline-block;
  color: blue;
}

.common-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

/* mega menu css */
:root {
  --white-100: hsl(206, 5%, 100%);
  --white-200: hsl(206, 5%, 90%);
  --white-300: hsl(206, 5%, 80%);
  --white-400: hsl(206, 5%, 65%);
  --white-500: hsl(206, 5%, 45%);
  --black-100: hsl(210, 21%, 12%);
  --black-200: hsl(210, 21%, 9%);
  --black-300: hsl(210, 21%, 6%);
  --black-400: hsl(210, 21%, 3%);
  --black-500: hsl(210, 21%, 1%);
  --night-100: hsl(217, 27%, 20%);
  --night-200: hsl(217, 27%, 16%);
  --night-300: hsl(217, 27%, 12%);
  --night-400: hsl(215, 27%, 8%);
  --night-500: hsl(215, 27%, 4%);
  --pink-100: hsl(326, 85%, 90%);
  --pink-200: hsl(327, 87%, 80%);
  --pink-300: hsl(329, 86%, 70%);
  --pink-400: hsl(330, 81%, 60%);
  --pink-500: hsl(333, 71%, 50%);
  --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
    0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html {
  font-size: 100%;
  box-sizing: inherit;
  scroll-behavior: smooth;
  height: -webkit-fill-available;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: clamp(1rem, calc(0.97rem + 0.14vw), 1.09rem);
  font-weight: normal;
  line-height: 1.5;
  color: var(--black-300);
  background-color: var(--white-100);
}

body.darkmode {
  color: var(--white-100);
  background-color: var(--night-400);
}

main {
  overflow: hidden;
}

a,
button {
  cursor: pointer;
  user-select: none;
  border: none;
  outline: none;
  background: none;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

@keyframes slideLeft {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }

  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}

@keyframes slideRight {
  0% {
    opacity: 1;
    transform: translateX(0%);
  }

  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}

.section {
  margin: 0 auto;
  padding: 6rem 0 2rem;
}

.container {
  /* max-width: 75rem; */
  height: auto;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.centered {
  text-align: center;
  vertical-align: middle;
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  font-family: inherit;
  font-size: inherit;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  user-select: none;
  border-radius: 0.25rem;
  text-transform: capitalize;
  transition: all 0.3s ease;
}

.btn-primary {
  padding: 0.75rem 1.5rem;
  color: var(--white-100);
  background-color: var(--pink-500);
  box-shadow: var(--shadow-medium);
}

.btn-darken {
  padding: 0.75rem 1.5rem;
  color: var(--white-100);
  background-color: var(--night-300);
  box-shadow: var(--shadow-medium);
}

.switch {
  display: none !important;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  height: auto;
  z-index: 100;
  margin: 0 auto;
  background-color: #000000;
  /* opacity: 0.3; */
  /* background-color: var(--white-100); */
  /* background: #0035F5;
  background: linear-gradient(90deg, rgba(0, 53, 245, 1) 0%, rgba(255, 255, 255, 1) 100%); */
  box-shadow: var(--shadow-medium);
}

.darkmode .header {
  background-color: var(--night-300);
}

.menu-link {
  color: #ffffff !important;
}

.menu-link:hover {
  color: #0035f5 !important;
}

.brand {
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--pink-500);
  text-transform: uppercase;
  order: 1;
}

.darkmode .brand {
  color: var(--pink-300);
}

.navbar {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 4rem;
  margin: 0 auto;
}

.navbar-left {
  display: flex;
  align-items: center;
  flex: 0 0 17%;
}

.navbar-center {
  display: flex;
}

.navbar-right {
  display: flex;
  flex: 0 0 17%;
  align-items: center;
  justify-content: flex-end;
  column-gap: 1.5rem;
}

@media only screen and (max-width: 992px) {

  .navbar-left,
  .navbar-right {
    flex: 0 0 auto;
  }

  .navbar-right {
    align-items: center;
  }

  .navbar-center {
    flex: 0 0 100%;
    order: 3;
    align-items: center;
  }
}

@media only screen and (max-width: 992px) {
  .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 75%;
    height: 100%;
    z-index: 100;
    overflow: hidden;
    transform: translate(-100%);
/*     background-color: var(--white-100); */
	 background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease-in-out;
  }
	.connect-link{
		margin-left: 15px !important;
        margin-right: 17px !important;
		text-align: center !important;
        display: block !important;
        height: 60px !important;
        
	}

  .menu.is-active {
    transform: translate(0%);
  }

  .darkmode .menu {
    background-color: var(--night-300);
  }
}

.menu-header {
  display: none;
  box-shadow: var(--shadow-medium);
}

.menu-item {
  display: inline-block;
  line-height: 1.5;
  padding-right: 1.25rem;
  /* padding-bottom: 14px; */
}

.menu-link {
  font-family: inherit;
  font-size: inherit;
  font-weight: 500;
  line-height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--black-300);
  text-transform: capitalize;
  transition: all 0.25s ease;
}

.menu-link>i.bx {
  font-size: 1.35rem;
  margin-left: 0.25rem;
  transform: rotate(90deg);
}

.darkmode .menu-link {
  color: var(--white-100);
}

.menu-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  font-size: 1.45rem;
  color: var(--black-300);
  transition: all 0.25s ease;
}

.darkmode .menu-icon {
  color: var(--white-100);
}

@media only screen and (min-width: 993px) {
  .menu-dropdown:hover>.submenu {
    opacity: 1;
    visibility: visible;
    margin-top: 1rem;
  }
}

@media only screen and (max-width: 992px) {
  .menu-header {
    position: relative;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 4rem;
    z-index: 110;
    visibility: hidden;
    background: transparent;
  }

  .menu-header.is-active {
    visibility: visible;
    background-color: var(--white-100);
  }

  .menu-header.is-active>.menu-arrow {
    display: block;
  }

  .darkmode .menu-header.is-active {
    background-color: var(--night-100);
  }

  .menu-arrow {
    display: none;
    cursor: pointer;
    width: 3rem;
    height: 4rem;
    text-align: center;
  }

  .menu-arrow>i.bx {
    font-size: 1.5rem;
    line-height: 4rem;
    color: var(--black-300);
    transition: all 0.25s ease;
  }

  .darkmode .menu-arrow>i.bx {
    color: var(--white-100);
  }

  .menu-title {
    font-family: inherit;
    font-size: inherit;
    font-weight: 500;
    line-height: inherit;
    text-transform: capitalize;
    color: var(--black-300);
  }

  .darkmode .menu-title {
    color: var(--white-100);
  }

  .menu-inner {
    height: 100%;
    margin-top: -3rem;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .menu-item {
    display: block;
    line-height: 1;
    padding-inline: 0;
  }

  .menu-link {
    justify-content: space-between;
    height: 2.5rem;
    line-height: 2.5rem;
    padding-inline: 1.25rem;
  }

  .menu-link>i.bx {
    margin-left: 0.5rem;
    transform: rotate(0deg);
  }
}

.submenu {
  position: absolute;
  width: 100%;
  height: auto;
  margin-top: 1.75rem;
  padding: 1rem 2rem;
  z-index: 102;
  opacity: 0;
  visibility: hidden;
  border-radius: 0.25rem;
  /* border-top: 2px solid var(--pink-400); */
  border-top: 2px solid #0035f5;
  background-color: var(--white-100);
  box-shadow: var(--shadow-medium);
  transition: all 0.25s ease-in-out;
}
.horizontal-menu-wrapper{

}
.horizontal-menu{
  /* background-color: ; */
  /* background-color: background: linear-gradient(to right, #f857a6, #6b92e6, #00c6ff); */
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap:30px;
} 
.horizontal-menu .submenu-list{
  display: flex;
  gap:13px !important;
}
.menu-text{
  font-size: 25px !important;
}
.submenu-inner .tree-image{
   height: 260px;
}
.darkmode .submenu {
  border-top: 2px solid var(--pink-300);
  background-color: var(--night-300);
}
.submenu-inner {
  /* flex: 0 0 25%; */
  padding: 0 1rem;
}

.submenu-inner img{
  max-width: 350px !important;
  border-radius: 16px;
}
.submenu-inner p{
  font-size: 25px;
  font-weight: 450;
  text-align: center;
}
.submenu-title {
  font-family: inherit;
  /* font-size: inherit; */
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  padding: 0.75rem 0;
  /* color: var(--pink-500); */
  color: #0035f5;
  text-transform: uppercase;
  transition: all 0.3s ease;
  margin-bottom: 3px;
}

/* .submenu-title:hover{
    color:#0035f5;
    border:1px solid #0035f5;
    border-radius: 20px;
    padding: 17px;
    color:#0035f5;
} */

.submenu-link:hover {
  color: #0035f5;
  border: 1px solid #0035f5;
  border-radius: 20px;
  padding-left: 27px;
  padding-right: 27px;
  padding-top: 10px;
  padding-bottom: 10px;
  color: #0035f5;
}

.darkmode .submenu-title {
  color: var(--pink-300);
}

.submenu-item {
  display: block;
  line-height: 1;
  margin: 0 auto;
}

.submenu-link {
  display: inline-block;
  font-family: inherit;
  /* font-size: inherit; */
  font-size: 14px;
  font-weight: 500;
  line-height: inherit;
  padding: 0.75rem 0;
  margin-bottom: 7px;
  white-space: nowrap;
  text-transform: capitalize;
  color: var(--black-300);
  transition: all 0.25s ease-in-out;
}

.darkmode .submenu-link {
  color: var(--white-100);
}

.submenu-image {
  display: block;
  width: 100%;
  height: auto;
  margin-block: 0.5rem;
  object-fit: cover;
}

@media only screen and (max-width: 992px) {
  .submenu {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    min-width: auto;
    margin: 0;
    padding: 1rem;
    padding-top: 4rem;
    opacity: 1;
    overflow-y: auto;
    visibility: visible;
    box-shadow: none;
    transform: translateX(0%);
  }

  .submenu.is-active {
    display: block;
  }

  .submenu-inner {
    flex: 0 0 100%;
    padding: 0rem;
  }

  .submenu-list {
    margin-bottom: 1rem;
  }

  .submenu-link {
    display: block;
  }

  .submenu-image {
    margin-top: 0;
  }
}

.megamenu {
  left: 50%;
  width: 100%;
  height: auto;
  margin: 0 auto;
  transform: translateX(-50%);
}

.megamenu-column-1 {
  left: 65%;
  max-width: 22rem;
  width: 100%;
  height: auto;
}
.megamenu-column-2{
  display: flex;
  flex-wrap: wrap;
  max-width: 750px;
  height: auto;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: space-between;
  
}
.megamenu-column-4 {
  display: flex;
  max-width: 900px;
  flex-wrap: wrap;
  /* max-width: 62rem; */
  height: auto;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: space-between;
  
}

/* start */
/* Only target the solutions dropdown */
/* Ensure parent menu item is positioned */
.solutions-item {
  position: relative !important;
}

.solutions-item:hover .solutins {
  display: flex !important;
}


.submenu.megamenu.solutins {
  position: absolute !important;
  top: 100% !important;
  left: 20% !important;
  width: 800px !important;
  display: none !important;
  background: rgba(0, 53, 245, 0.1) !important; /* transparent blue overlay */
  backdrop-filter: blur(12px) !important;
  border-radius: 10px !important;
  padding: 20px !important;
  z-index: 9999 !important;
  gap: 30px !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
  color: #fff !important;
}


.submenu.megamenu.solutins .submenu-inner {
  display: flex !important;
  gap: 30px !important;
  flex: 2 !important;
}


.submenu.megamenu.solutins .submenu-column {
  flex: 1 !important;
}


.submenu.megamenu.solutins .submenu-title {
  font-size: 16px !important;
  font-weight: 600 !important; 
  margin-bottom: 10px !important;
  color: #fff;
}


.submenu.megamenu.solutins .submenu-list {
  list-style: none !important;
  padding: 0 !important; 
  margin: 0 !important;
}

.submenu.megamenu.solutins .submenu-list li a {
  color: #fff !important;
  padding: 6px 0 !important;
  text-decoration: none!important;
  display: block !important;
  transition: color 0.3s ease !important;
}

.submenu.megamenu.solutins .submenu-list li a:hover {
  color: #ffc107 !important;
}


.submenu.megamenu.solutins .submenu-image-wrapper {
  flex: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.submenu.megamenu.solutins .submenu-image {
  max-width: 100% !important;
  height: auto !important;
  border-radius: 8px !important;
}

/* end */


@media only screen and (max-width: 992px) {
  .megamenu {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    min-width: auto;
    margin: 0;
    padding: 1rem;
    padding-top: 4rem;
    opacity: 1;
    overflow-y: auto;
    visibility: visible;
    transform: translateX(0%);
    box-shadow: none;
  }
}

.switch {
  position: relative;
  display: block;
  cursor: pointer;
  user-select: none;
  margin-right: 0.5rem;
}

.switch-light,
.switch-dark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in;
}

.switch-light {
  font-size: 1.3rem;
  visibility: visible;
  color: var(--black-300);
}

.darkmode .switch-light {
  font-size: 0rem;
  visibility: hidden;
}

.switch-dark {
  font-size: 0rem;
  visibility: hidden;
  color: var(--white-100);
}

.darkmode .switch-dark {
  font-size: 1.3rem;
  visibility: visible;
}

.overlay {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.7);
  transition: all 0.45s ease-in-out;
}

@media only screen and (max-width: 992px) {
  .overlay.is-active {
    opacity: 1;
    visibility: visible;
  }
}

.burger {
  position: relative;
  display: block;
  cursor: pointer;
  width: 1.6rem;
  height: 1rem;
  margin-right: 1rem;
  opacity: 0;
  visibility: hidden;
  background: transparent;
}

@media only screen and (max-width: 992px) {
  .burger {
    opacity: 1;
    visibility: visible;
    position: absolute;
    right: 0;
    /* margin-top: 15px;
    margin-bottom: 15px; */
    width: 50px;
    height: 50px;
    background-color: #ffffff !important;
  }

  .burger-line {
    position: absolute;
    display: block;
    right: 0;
    top: 2px;
    /* right:0; */
    color: #000000 !important;
    width: 100%;
    height: 2px;
    opacity: 1;
    margin-top: 15px;
    border-radius: 1rem;
    z-index: 10;
    /* background: var(--black-400); */
  }
}

.burger-line {
  position: absolute;
  display: block;
  left: 0;
  top: 2px;

  width: 100%;
  height: 2px;
  opacity: 1;
  margin-top: 15px;
  border-radius: 1rem;
  background: var(--black-400);
}

.darkmode .burger-line {
  background: var(--white-100);
}

.burger-line:nth-child(1) {
  top: 0px;
}

.burger-line:nth-child(2) {
  top: 0.5rem;
  width: 70%;
}

.burger-line:nth-child(3) {
  top: 1rem;
}

/* mega menu css */
.connect-link {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 20px !important;
  border: 2px solid #0035f5 !important;
  background-color: #0035f5;
  margin-left: 50px;
}

.connect-link:hover {
  color: #0035f5;
  background-color: #ffffff;
}

.header-logo-wrapper {
  max-width: 280px;
}

.header-logo-wrapper img {
  width: 100%;
  height: auto;
}

/* hero section css */
.hero-section {
  /* margin-top: 94px;
  height: calc(100vh - 94px); */
  position: relative;
  overflow: hidden;
  background-color: #000;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.7;
  transition: transform 0.1s ease-out;
  /* ✅ for smooth parallax */
}

.hero-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 53, 245, 0.6) 100%);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.hero-content {
  height: 100vh;
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


.animate-text {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease forwards;

  /* background: linear-gradient(90deg, #E66155 2.06%, #B162D8 26.36%, #588EFA 56.85%, #54B6CE 97.35%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; */

}

.animate-text.delay-1 {
  animation-delay: 0.5s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.btn-primary {
  margin-top: 20px;
  background-color: #0035f5;
  border-color: #0035f5;
}

.btn-primary:hover {
  background-color: #002ee6;
  border-color: #002ee6;
}

.features-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  color: white;
}

.features-column {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 220px;
  /* adjust as needed */
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.features-column li {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease;

  /* 👇 Make height uniform */
  min-height: 80px;
  /* Adjust as needed */
  justify-content: flex-start;
  text-align: left;
}

.features-column li i {
  color: #00d084;
  margin-right: 10px;
  font-size: 1.2rem;
}

.features-column li:hover {
  transform: translateY(-4px);
}

.hero-content p {
  margin-top: 22px;
}

.btn-cta {
  margin-top: 25px;
  display: inline-block;
  background: linear-gradient(135deg, #0035f5, #1ec8ff);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 14px 36px;
  border: none;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(30, 200, 255, 0.3);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  transform: scale(0);
  transition: transform 0.5s ease;
  border-radius: 50%;
  z-index: 0;
}

.btn-cta:hover::before {
  transform: scale(1);
}

.btn-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(30, 200, 255, 0.4);
}

/* Launch offer */
.launch-offer-section {
  background-color: #fff;
}

.offer-box {
  /* background: #ffffff; */
  background: linear-gradient(135deg, #f3ecff 0%, #e9f2ff 100%);
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease-in-out;
}

.offer-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.text-gradient {
  background: linear-gradient(90deg, #E66155, #B162D8, #588EFA, #54B6CE);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

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

.free-badge {
  display: inline-block;
  background: linear-gradient(90deg, #E66155, #B162D8, #588EFA, #54B6CE);
  color: white;
  padding: 4px 10px;
  font-size: 14px;
  border-radius: 999px;
  font-weight: 600;
  margin-left: 6px;
  vertical-align: middle;
}

.get-start {
  background-color: #0035f5;
  border: 1px solid #0035f5;
  padding: 12px;
  color: #ffffff;
}

.book-demo {
  background-color: #ffffff;
  border: 1px solid #0035f5;
}

/* Launch offer */
/* why */
.why-pravartan-section {
  background: #fff;
  padding: 80px 20px;
}

.section-heading {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
}

.gradient-text {
  background: linear-gradient(90deg, #E66155, #B162D8, #588EFA, #54B6CE);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  text-align: center;
  font-size: 20px;
  color: #666;
  margin-bottom: 30px;
}

.description {
  text-align: center;
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #444;
  line-height: 1.6;
}

.why-pravartan-section .row {
  /* display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2px; */
  margin-bottom: 60px;
}

.flip-card {
  background: transparent;
  max-width: 285px;
  height: 320px;
  /* perspective: 1000px; */
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.flip-card-front {
  background: #f8f9ff;
  border: 1px solid #e3e8f0;
}


.flip-card-back {
  background: linear-gradient(135deg, #4a78ff, #2e56f2, #0035f5);
  color: #ffffff;
  transform: rotateY(180deg);
}

.feature-card .icon {
  font-size: 36px;
  color: #0035f5;
  margin-bottom: 16px;
}

.feature-card h4 {
  font-size: 20px;
  margin-bottom: 12px;
  color: inherit;
}

.feature-card p {
  font-size: 16px;
  color: inherit;
  line-height: 1.5;
}


.bold-text {
  font-size: 16px;
  padding-top: 15px;
  font-weight: 800;
}


.comparison-table-wrapper {
  overflow-x: auto;
  font-family: 'Inter', sans-serif;
  padding: 30px;
  background: #f8faff;
  border-radius: 16px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.04);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.comparison-table thead {
  background: #e6ecff;
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
}

.comparison-table thead th {
  padding: 20px 30px;
  text-align: center;
  border-bottom: 1px solid #d9e1f0;
  white-space: nowrap;
}

.comparison-table tbody td {
  padding: 18px 30px;
  font-size: 16px;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
  background-color: #fff;
  color: #333;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.highlight {
  background: linear-gradient(to right, #f857a6, #6b92e6, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

.ai-text {
  color: #00c6ff;
}

.bold-text {
  font-weight: 600;
}

.bottom-content-wrapper-comparison {
  text-align: center;
  margin-top: 30px;
}

.bottom-content-wrapper-comparison h5 {
  margin-top: 15px;
  font-size: 18px;
}

.table-wrapper-holder .row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  /* gap: 10px; */
  flex-wrap: wrap;
}

.right-image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
}

.right-image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .comparison-table-wrapper {
    padding: 20px;
  }

  .comparison-table thead {
    display: none;
  }

  .comparison-table,
  .comparison-table tbody,
  .comparison-table tr,
  .comparison-table td {
    display: block;
    width: 100%;
  }

  .comparison-table tbody tr {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
  }

  .comparison-table tbody td {
    text-align: center;
    padding: 15px 20px;
    border: none;
    border-bottom: 1px solid #eee;
    background-color: #fff;
  }

  .right-image-wrapper {
    padding-top: 0;
    margin-top: 20px;
  }
}

/* Why */

/* .ai-tools-section {
    background-color: #0c0c0c;
   
    color: #ffffff;
    padding: 40px 20px;
    font-family: 'Segoe UI', sans-serif;
    border-radius: 12px;
   
    margin-top: 15px;
}

.section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: #ffffff;
}

.ai-table {
    display: flex;
    flex-direction: column;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
}

.ai-row {
    display: flex;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid #2a2a2a;
    transition: background 0.3s;
}

.ai-row:last-child {
    border-bottom: none;
}

.ai-row:hover {
    background: rgba(255, 255, 255, 0.05);
}

.ai-head {
    background: #1a1a1a;
    font-weight: 600;
    color: #00aaff;
}

.ai-col {
    flex: 1;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    line-height: 1.6;
}

.badge {
    background: #0035f5;
    color: #fff;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 12px;
    margin-left: auto;
}

@media (max-width: 768px) {

    .ai-row,
    .ai-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .ai-col {
        width: 100%;
        padding: 10px 0;
    }

    .badge {
        margin-left: 0;
        margin-top: 4px;
    }
} */

/* .ai-tools-section {
    background-color: #0c0c0c;
    color: #ffffff;
    padding: 40px 20px;
    font-family: 'Segoe UI', sans-serif;
    border-radius: 12px;
    margin-top: 15px;
} */
 .ai-tools-section .section-title{
  font-size: 70px;
 }
.ai-tools-section {
  background: url('../images/background-new.png');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  /* Show full image */
  /* background-color: #0c0c0c; */
  /* Fallback background */
  color: #ffffff;
  padding: 60px 20px;
  /* More vertical padding */
  font-family: 'Segoe UI', sans-serif;
  border-radius: 12px;
  margin-top: 15px;
  position: relative;
  z-index: 1;
}
.ai-tools-section::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.1)); */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.01));
  border-radius: 12px;
  z-index: -1;
}
.section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  color: #ffffff;
}
/* .ai-tools-section .container{
  margin: 0 !important;
  
} */
.table-wrapper {
  /* width:1400px; */
  width:100% !important;
  /* max-width: 1400px !important; */
  overflow-x: auto;
  border-radius: 10px;
  /* margin-left: 10px;
  margin-right: 10px; */
}

.ai-tools-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  overflow: hidden;
  background-color: transparent;
  font-size: 16px;
  line-height: 1.4;
}

.ai-tools-table thead {
  background: rgba(255, 255, 255, 0.08);
  /* light translucent white */
  color: #00aaff;
  font-weight: 600;
}

.ai-tools-table td {
  max-width: 320px;
}

.ai-tools-table th,
.ai-tools-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid #2a2a2a;
  vertical-align: middle;
}

.ai-tools-table tr:last-child td {
  border-bottom: none;
}

.ai-tools-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.05);
}

.badge {
  background: linear-gradient(90deg, #E66155, #B162D8, #588EFA, #54B6CE);
  ;
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 12px;
  margin-left: 8px;
}

@media (max-width: 768px) {
  .ai-tools-table thead {
    display: none;
  }

  .ai-tools-table,
  .ai-tools-table tbody,
  .ai-tools-table tr,
  .ai-tools-table td {
    display: block;
    width: 100%;
  }

  .ai-tools-table td {
    text-align: left;
    padding: 12px 16px;
    border-bottom: 1px solid #2a2a2a;
    position: relative;
  }

  .ai-tools-table tr {
    margin-bottom: 20px;
  }
}


/* .coming-icon-wrapper i {
    font-size: 48px;
    color: #0035f5;
}

.coming-title {
    font-size: 32px;
    font-weight: bold;
    color: #000000;
}

.coming-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coming-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.card-icon {
    font-size: 40px;
    color: #0035f5;
    margin-bottom: 15px;
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.card-text {
    font-size: 16px;
    color: #666;
    margin: 10px 0 20px;
}

.coming-badge {
    background-color: #0035f5;
    color: #fff;
    padding: 14px 14px;
    border-radius: 50px;
    font-size: 13px;
} */

.coming-title {
  font-size: 32px;
  font-weight: bold;
  color: #000000;
}

.coming-icon-wrapper i {
  font-size: 48px;
  color: #0035f5;
}

.coming-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.card-front .content-card {
  min-height: 100px;
}

/* Hover elevation */
.coming-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* Card icon */
.card-icon {
  font-size: 40px;
  color: #0035f5;
  margin-bottom: 15px;
}

/* Card title */
.card-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
}

/* Card text */
.card-text {
  font-size: 16px;
  color: #666;
  margin: 10px 0 20px;
}

/* Badge */
.coming-badge {
  background-color: #0035f5;
  color: #fff;
  padding: 14px 14px;
  border-radius: 50px;
  font-size: 13px;
}

/* --- NEW: Front Content (text, icon, etc.) --- */
.card-front {
  transition: opacity 0.3s ease;
  position: relative;
  z-index: 2;
}

/* --- NEW: Hover Image Wrapper --- */
.card-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  overflow: hidden;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* --- NEW: Image Styling --- */
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- NEW: On Hover, show image / hide content --- */
.coming-card:hover .card-front {
  opacity: 0;
}

.coming-card:hover .card-image {
  opacity: 1;
  transform: scale(1.05);
}


.enterprise-support-section {
  position: relative;
  background-image: url('../images/business-metting.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  color: #fff;
  overflow: hidden;
}

.enterprise-support-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right,
      rgba(0, 53, 245, 0.7),
      rgba(255, 255, 255, 0.3));
  z-index: 1;
}

.enterprise-support-section .container {
  position: relative;
  z-index: 2;
  /* max-width: 1200px; */
  margin: auto;
  text-align: center;
}

.enterprise-support-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.enterprise-support-section p {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 30px;
}

.cta-btn {
  display: inline-block;
  padding: 12px 30px;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background-color: #fff;
  color: #0035f5;
}

.card-row {
  /* display: flex; */
  flex-wrap: wrap;
  justify-content: center;
  /* gap: 5px; */
  margin-top: 50px;
}

.card-row .card {
  position: relative;
  background: linear-gradient(135deg, #ffffff, #f9f9f9);
  /* subtle default */
  /* background: #fff; */
  color: #000;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  text-align: left;
  /* flex: 1 1 300px;
    max-width: 360px; */
  transition: transform 0.3s ease;
  margin-bottom: 15px;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #0035f5;
  text-align: left;
}

.card ul {
  /* list-style-type: disc !important; */
  padding-left: 20px;
  margin: 0;

}

.card ul li {
  font-size: 16px;
  margin-bottom: 8px;
  text-align: left;
  list-style: disc;
}

@media screen and (max-width: 768px) {
  .enterprise-support-section h2 {
    font-size: 28px;
  }

  .enterprise-support-section p {
    font-size: 16px;
  }

  .card {
    max-width: 100%;
  }
}

.card-slider .col-md-4 {
  padding: 15px;
}

.card-slider-wrapper {
  position: relative;
}

.card-slider .card {
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: none;
  padding: 20px;
  background: white;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.card-slider .card:hover {
  transform: translateY(-5px);
}

.arrow {
  background: #0035f5;
  color: #fff;
  border: none;
  font-size: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 53, 245, 0.3);
}

.arrow:hover {
  background: #001fa3;
}

.arrow.left {
  margin-right: 10px;
}

.arrow.right {
  margin-left: 10px;
}

.btn-holder {
  position: relative;
}

.slick-arrow-btn {
  position: absolute;
  top: 50% !important;
  transform: translateY(-50%);
  background-color: #0d6efd;
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
  transition: background 0.3s ease;
}

.slick-arrow-btn:hover {
  background-color: #084298;
}

.left-arrow {
  left: -50px;

}

.right-arrow {
  right: -50px;
}

.card:hover {
  transform: scale(1.03);
  background: linear-gradient(135deg, #f0f9ff, #ffffff);
  /* light blue to white */
  border-color: #007bff33;
  /* soft blue border on hover */
  box-shadow: 0 10px 25px rgba(0, 123, 255, 0.15);
}

.card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.bundle-offer-section {
  background: linear-gradient(135deg, #fdfbfb, #ebedee);
  padding: 80px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.bundle-container {
  max-width: 900px;
  margin: 0 auto;
}

.bundle-badge {
  display: inline-block;
  background: #0035f5;
  color: #fff;
  font-weight: bold;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.85;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.bundle-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #222;
}

.bundle-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  padding: 40px 30px;
  transition: transform 0.3s ease;
}

.bundle-card:hover {
  transform: translateY(-8px);
}

.bundle-name {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.bundle-price {
  font-size: 22px;
  color: #0035f5;
  font-weight: bold;
  margin-bottom: 20px;
}

.bundle-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  text-align: center !important;
}

.bundle-includes li {
  font-size: 16px;
  margin: 10px 0;
  display: flex;
  align-items: center;
}

.bundle-includes li span {
  color: #2ecc71;
  margin-right: 10px;
  text-align: center;
}

.bundle-button {
  display: inline-block;
  background: #0035f5;
  color: #fff;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  margin-top: 16px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.bundle-button:hover {
  background: #0035f5;
}

.bundle-card {
  text-align: center;
  /* Center all inside content */
}

.bundle-includes {
  display: inline-block;
  text-align: left;
  /* Keep items left-aligned inside */
  margin: 0 auto;
  /* Auto margins center it */
}

.why-choose-us {
  padding: 60px 20px;
  /* background: linear-gradient(to bottom right, #f8f9fc, #ffffff); */
  background: linear-gradient(135deg, #f3ecff 0%, #e9f2ff 100%);
  text-align: center;
}

.why-choose-us .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 40px;
}

.why-choose-us .reasons-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 800px;
  text-align: left;
}

.reasons-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 18px;
  margin-bottom: 20px;
  background: #fff;
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reasons-list li:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.reasons-list .icon {
  font-size: 22px;
  color: #2ecc71;
  flex-shrink: 0;
  margin-top: 3px;
}

.reasons-list .text {
  flex: 1;
  line-height: 1.5;
  color: #333;
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.6rem;
  }

  .reasons-list li {
    flex-direction: column;
    align-items: flex-start;
  }

  .reasons-list .icon {
    margin-bottom: 6px;
  }
}

.use-cases-section {
  padding: 60px 20px;
  /* background: linear-gradient(to bottom right, #f0f4ff, #ffffff); */
  background: linear-gradient(135deg, #f3ecff 0%, #e9f2ff 100%);
  text-align: center;
}

.use-cases-section .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #1d1d1f;
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}


.accordion-item {
  margin-bottom: 1.5rem;
  padding: 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fdfdfd, #f1f1f1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.accordion-item:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.accordion-header {
  font-size: 1.25rem;
  font-weight: bold;
  background: none;
  border: none;
  text-align: left;
  width: 100%;
  padding: 0;
  cursor: pointer;
}

.accordion-header::after {
  content: "+";
  position: absolute;
  right: 24px;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header::after {
  content: "−";
  transform: rotate(180deg);
}

.accordion-body {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-item.active .accordion-body {
  padding: 16px 24px;
  max-height: 500px;
}

.accordion-body p {
  margin: 0;
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.6rem;
  }

  .accordion-header {
    font-size: 16px;
    padding: 14px 18px;
  }

  .accordion-body {
    padding: 12px 18px;
  }
}

.cta-section {
  /* background: linear-gradient(135deg, #090e21, #1c2331); */
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  /* border-radius: 12px; */
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.cta-section {
    position: relative;
    background-image: url('../images/still-not-convinced.png');
    background-size: cover;
    background-position: center;
    color: white; 
    padding-bottom: 8%;
}

.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: rgba(0, 0, 0, 0.1);  */
    background: rgba(0, 53, 245, 0.15);
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
}
.cta-content h2 {
  font-size: 2.2rem;
  margin-bottom: 25px;
  color: #00e6e6;
}

.cta-points {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  font-size: 1.1rem;
}

.cta-points li {
  margin: 12px 0;
  transition: transform 0.3s ease;
}

.cta-points li:hover {
  transform: scale(1.05);
  color: #00e6e6;
}

.cta-tagline {
  font-size: 1rem;
  line-height: 1.6;
  color: #ccc;
}


.footer-section {
  font-family: 'Segoe UI', sans-serif;
  color: white;
}

.footer-top {
  background: linear-gradient(180deg, #43185a, #4e1f87, #4c3cbf);
  padding: 60px 0 40px;
}

.footer-top h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-top ul {
  list-style: none;
  padding-left: 0;
}

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

.footer-top ul li a {
  color: #dcdcdc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease-in-out;
}

.footer-top ul li a:hover {
  color: #ffffff;
}

.footer-bottom {
  background-color: #0e0619;
  padding: 20px 0;
  font-size: 14px;
}

.footer-bottom .social-icons a {
  color: white;
  margin: 0 8px;
  font-size: 18px;
  transition: color 0.2s ease;
}

.footer-bottom .social-icons a:hover {
  color: #0d6efd;
}

.footer-bottom .footer-links a {
  color: #dcdcdc;
  margin: 0 5px;
  text-decoration: none;
}

.footer-bottom .footer-links a:hover {
  color: white;
}

.ai-blog-section {
  background-color: #f3ddf8;
  /* background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 53, 245, 0.6) 100%); */
}

.ai-blog-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c1453;
}

.ai-blog-section .section-subtitle {
  font-size: 1rem;
  color: #4c4c4c;
}

.blog-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-content .label {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.8rem;
  color: #0035f5;
  margin-bottom: 8px;
}

.blog-content h5 {
  font-size: 1.1rem;
  color: #0035f5;
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-content p {
  color: #444;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.blog-content a {
  color: #0035f5;
  text-decoration: none;
  font-weight: 500;
}

.blog-content a:hover {
  text-decoration: underline;
}

.blog-content .meta {
  font-size: 0.85rem;
  color: #666;
  margin-top: auto;
}

.rotating-words {
  display: inline-block;
  position: relative;
  height: 1em;
  width: auto;
}

.rotating-words span {
  position: absolute;
  opacity: 0;
  animation: rotateWords 6s linear infinite;
  white-space: nowrap;
}

.rotating-words span:nth-child(1) {
  animation-delay: 0s;
}

.rotating-words span:nth-child(2) {
  animation-delay: 2s;
}

.rotating-words span:nth-child(3) {
  animation-delay: 4s;
}

@keyframes rotateWords {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }

  10% {
    opacity: 1;
    transform: translateY(0);
  }

  30% {
    opacity: 1;
    transform: translateY(0);
  }

  40% {
    opacity: 0;
    transform: translateY(-100%);
  }

  100% {
    opacity: 0;
  }
}



.counter-section {
  background: linear-gradient(135deg, #f4f9ff 0%, #eaf2fb 100%);
  color: #1a1a1a;
  position: relative;
  overflow: hidden;
  padding: 60px 20px;
}

.counter-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.5), transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.counter-card {
  background: rgba(255, 255, 255, 0.85);
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 30px 25px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(6px);
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

.counter-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

.counter-card .icon {
  font-size: 2.8rem;
  margin-bottom: 12px;
  color: #0074D9;
}

.counter-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 10px 0;
  color: #222;
  letter-spacing: 0.3px;
}

.counter-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
  opacity: 0.9;
}

/* Border Accent Variants */
.border-pink {
  border-color: #ff69b4;
}

.border-orange {
  border-color: #ffa500;
}

.border-cyan {
  border-color: #00bcd4;
}

.border-green {
  border-color: #4caf50;
}

/* Chetan Section */


/* Background Gradient */
.chetan-holder .bg-gradient {
  background: linear-gradient(120deg, #f7f9ff, #ffffff);
  padding: 60px 0;
}

/* Main Container */
.chetan-holder .container-fluid {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 25px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.05);
  padding: 60px 40px;
  overflow: hidden;
}

.chetan-holder .image-container {
  overflow: hidden;
  /* Ensures the zoom effect stays within the rounded corners */
  position: relative;
  border-radius: 15px;
  /* Rounds the corners of the container */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  /* Adds a subtle shadow around the container */
}

/* Image Styling */
.chetan-holder .zoom-image {
  transition: transform 0.3s ease-in-out;
  /* Smooth transition for the zoom effect */
  width: 100%;
  height: auto;
  border-radius: 15px;
  /* Ensures the image corners are rounded */
}

/* Zoom Effect on Hover */
.chetan-holder .zoom-image:hover {
  transform: scale(1.1);
  /* Zooms the image in by 10% on hover */
}

/* Headings */
.chetan-holder h4 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #0035f5;
  margin-bottom: 20px;
}

.chetan-holder h5.section-heading {
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #0035f5;
  text-align: left;
}

/* Paragraphs */
.chetan-holder p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 15px;
}

.chetan-holder .lead {
  font-size: 1.3rem;
  color: #444;
}

/* Highlight Important Words */
.chetan-holder .highlight {
  color: #0035f5;
  font-weight: 600;
}

/* Animated Button */
.chetan-holder .animated-button {
  margin-top: 25px;
  display: inline-block;
  background: linear-gradient(135deg, #0035f5, #1ec8ff);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 14px 36px;
  border: none;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(30, 200, 255, 0.3);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.chetan-holder .animated-button:hover {
  transform: translateY(-4px);
  background: #005be5;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Animated List Items */
.animated-list {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.animated-list li {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: #333;
  display: flex;
  align-items: start;
  gap: 10px;
  position: relative;
  opacity: 0;
  animation: fadeInList 0.8s ease forwards;
}

.animated-list li:nth-child(1) {
  animation-delay: 0.1s;
}

.animated-list li:nth-child(2) {
  animation-delay: 0.3s;
}

.animated-list li:nth-child(3) {
  animation-delay: 0.5s;
}

.animated-list li:nth-child(4) {
  animation-delay: 0.7s;
}

@keyframes fadeInList {
  from {
    transform: translateY(15px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .chetan-holder h4 {
    font-size: 2rem;
  }

  .chetan-holder .animated-button {
    width: 100%;
    padding: 12px;
  }
}


/* Chetak Section */
.chetak-section {
  background-color: #f9f9f9;
  /* Light background color for the section */
  padding: 50px 0;
}

/* Image Container Styling */
.chetak-section .image-container {
  overflow: hidden;
  position: relative;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  /* Soft shadow */
}

/* Image Zoom Effect */
.chetak-section .zoom-image {
  transition: transform 0.3s ease-in-out;
  border-radius: 15px;
  object-fit: cover;
  width: 100%;
  height: auto;
}

.chetak-section .zoom-image:hover {
  transform: scale(1.1);
  /* Zoom effect on hover */
}

/* Animated Text */
.chetak-section .animated-text {
  animation: fadeInUp 1.5s ease-in-out;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Title Styling */
.chetak-section h2 {
  font-size: 2.5rem;
  color: #1a73e8;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.4;
}

.chetak-section h5 {
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 15px;
  font-size: 19px !important;
}

.chetak-section h6 {
  font-size: 1rem;
  color: #0035f5;
  margin-bottom: 15px;
  font-size: 19px !important;
  font-weight: 600;
}

.chetak-section p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.chetak-section ul {
  padding-left: 20px;
}

.chetak-section ul li {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: #555;
}

/* Button Styling */
.chetak-section .animated-button {

  margin-top: 25px;
  display: inline-block;
  background: linear-gradient(135deg, #0035f5, #1ec8ff);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 14px 36px;
  border: none;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(30, 200, 255, 0.3);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;

}

.chetak-section .animated-button:hover {
  transform: translateY(-5px);
  background-color: #007bb5;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Span Text Styling (Gradient Effect) */
.highlight-text {
  background: linear-gradient(120deg, #ff7a00, #00bcd4, #9c27b0);
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 700;
}

/* Responsive Design */
@media (max-width: 992px) {
  .chetak-section .col-md-6 {
    margin-bottom: 30px;
  }

  .chetak-section h2 {
    font-size: 2.4rem;
  }

  .chetak-section h4 {
    font-size: 1.3rem;
  }

  .chetak-section .animated-button {
    padding: 12px 25px;
  }
}

@media (max-width: 768px) {
  .chetak-section .col-md-6 {
    margin-bottom: 30px;
  }

  .chetak-section h2 {
    font-size: 2.2rem;
  }

  .chetak-section .animated-button {
    width: 100%;
    padding: 12px;
  }
}

/* Chirag */
/* Chirag Section */
.chirag-section {
  background-color: #ffffff;
  padding: 50px 0;
}

/* Image Container */
.chirag-section .image-container {
  overflow: hidden;
  position: relative;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.chirag-section .zoom-image {
  transition: transform 0.3s ease-in-out;
  border-radius: 15px;
  object-fit: cover;
  width: 100%;
  height: auto;
}

.chirag-section .zoom-image:hover {
  transform: scale(1.1);
}

/* Animated Heading */
.chirag-section .animated-text {
  animation: fadeInUp 1.5s ease-in-out;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Headings */
.chirag-section h2 {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.4;
  color: #1a73e8;
}
.chirag-content-holder{
  padding-left: 20px;
}
.chirag-section h4 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #6c757d;
}

.chirag-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}

.chirag-section ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.chirag-section ul li {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

/* Button */
/* .chirag-section .animated-button {
    font-size: 1.1rem;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    background-color: #007bff;
    color: #fff;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
} */

.chirag-section .animated-button {
  margin-top: 25px;
  display: inline-block;
  background: linear-gradient(135deg, #0035f5, #1ec8ff);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 14px 36px;
  border: none;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(30, 200, 255, 0.3);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;

}
.chirag-section h6{
  color: #0035f5;
  margin-bottom: 15px;
  font-size: 19px !important;
  font-weight: 600;
}


.chirag-section .animated-button:hover {
  transform: translateY(-5px);
  background-color: #0056b3;
}

/* Highlight Text Gradient */
.highlight-text {
  background: linear-gradient(120deg, #ff6b6b, #00bcd4, #9c27b0);
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
  .chirag-section h2 {
    font-size: 2.2rem;
  }

  .chirag-section .animated-button {
    width: 100%;
    padding: 12px;
  }
} 

/* Chanakya Section */
.chanakya-section {
    background-color: #ffffff;
    padding: 50px 0;
}

/* Image Container */
.chanakya-section .image-container {
    overflow: hidden;
    position: relative;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.chanakya-section .zoom-image {
    transition: transform 0.3s ease-in-out;
    border-radius: 15px;
    width: 100%;
    height: auto;
}

.chanakya-section .zoom-image:hover {
    transform: scale(1.08);
}

/* Animated Text */
.chanakya-section .animated-text {
    animation: fadeInUp 1.5s ease-in-out;
}

/* Keyframes */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Heading and Paragraph */
.chanakya-section h2 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #111;
}

.chanakya-section h4 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #666;
}

.chanakya-section p,
.chanakya-section li {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
}

.chanakya-section ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

/* CTA Button */
.chanakya-section .animated-button {
    margin-top: 25px;
  display: inline-block;
  background: linear-gradient(135deg, #0035f5, #1ec8ff);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 14px 36px;
  border: none;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(30, 200, 255, 0.3);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.chanakya-section .animated-button:hover {
    transform: translateY(-5px);
    background-color: #0056b3;
}

/* Gradient Highlight Text */
.highlight-text {
    background: linear-gradient(120deg, #f12711, #f5af19, #00c9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .chanakya-section h2 {
        font-size: 2rem;
    }

    .chanakya-section .animated-button {
        width: 100%;
        padding: 12px;
    }
}

/* chatur */
/* Chatur Section */
.chatur-section {
    background-color: #ffffff;
    padding: 50px 0;
}

/* Image Styling */
.chatur-section .image-container {
    overflow: hidden;
    position: relative;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.chatur-section .zoom-image {
    transition: transform 0.3s ease-in-out;
    border-radius: 15px;
    width: 100%;
    height: auto;
}

.chatur-section .zoom-image:hover {
    transform: scale(1.08);
}

/* Animated Heading */
.chatur-section .animated-text {
    animation: fadeInUp 1.5s ease-in-out;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Heading & Text Styling */
.chatur-section h2 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #1a73e8;
}

.chatur-section h4 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #6c757d;
}

.chatur-section p,
.chatur-section li {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
}

.chatur-section ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

/* Button Styling */
.chatur-section .animated-button {
    margin-top: 25px;
  display: inline-block;
  background: linear-gradient(135deg, #0035f5, #1ec8ff);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 14px 36px;
  border: none;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(30, 200, 255, 0.3);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.chatur-content-holder{
  padding-left: 20px;
}
.chatur-section .animated-button:hover {
    transform: translateY(-5px);
    background-color: #0056b3;
}

/* Highlight Gradient Text */
.highlight-text {
    background: linear-gradient(120deg, #f857a6, #ff5858, #00c9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .chatur-section h2 {
        font-size: 2rem;
    }

    .chatur-section .animated-button {
        width: 100%;
        padding: 12px;
    }
} 

.video-holder{
  margin-top: 100px;
  padding-top: 30px;
}
.video-holder .ai-section {
    background-color: #f8f9fa; /* Light background */
}

.video-holder .ai-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333; /* Dark text for contrast */
}

.video-holder .ai-description {
    font-size: 1.1rem;
    color: #666; /* Light grey for description */
    margin-bottom: 20px;
}

.video-holder .ai-btn {
    font-size: 1rem;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
}

.video-holder .ai-btn:hover {
    background-color: #007bff;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.video-holder .video-container {
    position: relative;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.video-holder .ai-video {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    /*height: 100%;*/
    /*object-fit: cover;*/
} 
.video-container{
  position: relative;
  
} 
.hero-section .video-wrapper{
  position: relative;
  padding-top: 20%;
  padding-bottom: 22%;
} 
.hero-section .video-wrapper video{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
} 
.hero-section{
  margin-top: 40px;
} 
.chetan-image-wrapper{
  padding-right: 30px;
} 
.chetak-image-wrapper{
  padding-left: 30px;
} 
.chirag-image-wrapper{
  padding-right: 30px;
} 
.chanayak-image-wrapper{
  padding-left: 30px;
} 
.chatur-image-wrapper{
  padding-right: 30px;
} 

.submenu-link i {
    margin-right: 8px;
    transition: opacity 0.3s ease;
    color:#0035f5;
}

.submenu-item:hover .submenu-link i {
    /* opacity: 0;  */
    /* display: none; */
}

#typewriter {
  border-right: 2px solid #00e6e6;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  font-style: normal;
  animation: blink-caret 0.75s step-end infinite;
  color: #00e6e6; 
}

/* Cursor blinking effect */
@keyframes blink-caret {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: #00e6e6;
  }
}

.company-menu .horizontal-menu{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap:335px;
} 
.company-menu .horizontal-menu .submenu-list{
  text-align: end !important;
  /* padding-left: 70px; */
}
/* contact page */
.contact-banner{
  margin-top: 62px !important;
  padding-top: 30px;
}
.contact-banner {
    min-height: 420px;
    background-image: url('../images/contact/contact_banner_image.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-banner-content-wrapper {
    max-width: 520px;
}
.contact-banner-content-wrapper h1{
  font-size: 37px;
  margin-bottom: 10px;
}

.contact-info-card {
    background: linear-gradient(180deg, #0b2fa5 0%, #4c8fe8 100%);
    border-radius: 14px;
    padding: 40px;
}
.contact-info-card h2 {
    line-height: 1.3;
}
.contact-info-card a {
    color: #ffffff;
    text-decoration: none;
}
.contact-info-card a:hover {
    text-decoration: underline;
}
/* .contact-form-wrapper .form-control,
.contact-form-wrapper .form-select {
    background: #f8f9fa;
    border: none;
    padding: 14px 16px;
    border-radius: 8px;
}

.contact-form-wrapper .form-control:focus,
.contact-form-wrapper .form-select:focus {
    box-shadow: none;
    outline: 2px solid #e5e7eb;
} */
 /* Input group wrapper */
.contact-form-wrapper .input-group {
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    align-items: stretch;
}

/* Icon box */
.contact-form-wrapper .input-group-text {
    background: transparent;
    border: none;
    padding: 0 16px;
    color: #6b7280; /* muted gray */
    font-size: 15px;
}

/* Input & select */
.contact-form-wrapper .form-control,
.contact-form-wrapper .form-select {
    background: transparent;
    border: none;
    padding: 14px 16px;
    font-size: 15px;
    box-shadow: none;
}

/* Textarea icon alignment */
.contact-form-wrapper textarea.form-control {
    resize: none;
}

/* Focus state (whole group) */
.contact-form-wrapper .input-group:focus-within {
    outline: 2px solid #e5e7eb;
    background: #ffffff;
}

/* Remove default Bootstrap focus */
.contact-form-wrapper .form-control:focus,
.contact-form-wrapper .form-select:focus {
    box-shadow: none;
}

/* Placeholder style */
.contact-form-wrapper ::placeholder {
    color: #9ca3af;
    font-size: 14px;
}

/* Select arrow fix */
.contact-form-wrapper .form-select {
    padding-right: 40px;
}

/* Button enhancement (optional but recommended) */
.contact-form-wrapper .btn-primary {
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-form-wrapper .btn-primary:hover {
    transform: translateY(-1px);
}

.contact-submit{
  background-color: #ffffff;
  color:#0035f5;
  border:1px solid #0035f5;
}
.contact-btn-wrapper{
  text-align: right;
}
.contact-info h6{
  margin-bottom: 2px;
}
.advanced-map-section {
    background: #f9fafb;
}

/* Map container */
.map-container {
    position: relative;
    background: #fff;
}

/* Floating info card */
.map-info-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #ffffff;
    padding: 20px;
    width: 280px;
    font-size: 14px;
}

/* Icons inside card */
.map-info-card i {
    color: #0d6efd;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .map-info-card {
        position: static;
        width: 100%;
        margin-top: 20px;
        border-radius: 12px;
    }
    .map-container iframe {
        height: 350px;
    }
}

/* .map-section {
    background: #f9fafb;
}

.map-wrapper {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
} */

.contact-info h6{
  font-size: 23px;
}
.contact-info p{
  font-size: 23px;
}

.ai-cta-section {
    background: #f8fafc;
}

.ai-cta-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #0d6efd;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ai-cta-title {
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.ai-cta-title span {
    color: #0d6efd;
}

.ai-cta-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.ai-cta-list li {
    position: relative !important;
    padding-left: 28px !important;
    margin-bottom: 14px !important;
    font-size: 16px !important;
    color: #334155 !important;
}

.ai-cta-list li::before {
    content: "✓";
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    color: #0d6efd !important;
    font-weight: 700 !important;
}

/* LinkedIn Card */
.ai-linkedin-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.ai-linkedin-card h5 {
    font-size: 20px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 12px;
}

.ai-linkedin-card p {
    font-size: 15px;
    color: #475569;
    margin-bottom: 20px;
}

.ai-linkedin-card .btn {
    padding: 12px;
    font-weight: 600;
    border-radius: 10px;
}


/* pricing page css */
/* BANNER */
.pricing-banner {
  padding-top: 130px;
  background: linear-gradient(
    180deg,
    rgba(0,53,245,0.1),
    rgba(0,53,245,0)
  );
}

.pricing-banner h1 {
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
}

.pricing-banner p {
  font-size: 18px;
  color: #64748b;
  margin-top: 8px;
}

/* PRICING */
.pricing-section {
  padding: 80px 0;
}

.pricing-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 40px 36px;
  height: 100%;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  position: relative;
}

.pricing-card h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
}

.price {
  font-size: 46px;
  font-weight: 700;
  color: #0035f5;
  margin-bottom: 24px;
}

.price span {
  font-size: 16px;
  color: #64748b;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.pricing-features li {
  margin-bottom: 12px;
  font-size: 15px;
  color: #0f172a;
}

.pricing-features i {
  color: #0035f5;
  margin-right: 8px;
}

.muted {
  color: #64748b;
  font-size: 14px;
}

/* FEATURED CARD */
.featured {
  border: 2px solid #0035f5;
  transform: scale(1.03);
}

.badge-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #0035f5;
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
}

/* LIFETIME INFO */
.lifetime-info p {
  margin-bottom: 10px;
}

.highlight {
  color: #0035f5;
  font-size: 18px;
}

/* BUTTONS */
.btn-primary {
  background-color: #0035f5;
  border-color: #0035f5;
  padding: 14px;
  border-radius: 12px;
}

.btn-outline-primary {
  color: #0035f5;
  border-color: #0035f5;
  padding: 14px;
  border-radius: 12px;
}

.btn-outline-primary:hover {
  background-color: #0035f5;
  color: #ffffff;
}

/* CONTACT */
.pricing-contact {
  padding: 50px 0;
  background: #f8fafc;
}

.pricing-contact .question {
  font-size: 16px;
  color: #64748b;
  margin-bottom: 6px;
}

.pricing-contact a {
  font-size: 18px;
  color: #0035f5;
  text-decoration: none;
}
.plan-tagline {
  font-size: 16px;
  color: #000000;
  margin: 6px 0 18px;
}
.lifetime-description {
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
  margin-bottom: 66px;
}
/* pricing page css */

/* about page css */
/* HERO */
.about-hero {
  padding-top: 140px;
  background: radial-gradient(circle at top, rgba(0,53,245,0.12), #ffffff 60%);
}

.eyebrow {
  color: #0035f5;
  font-weight: 600;
  letter-spacing: 1px;
}

.about-hero h1 {
  font-size: 46px;
  font-weight: 700;
  margin-top: 10px;
}

.hero-subtext {
  font-size: 18px;
  color: #64748b;
  margin-top: 16px;
  margin-bottom: 60px;
}

/* VALUE CARDS */
.value-card {
  background: #ffffff;
  padding: 36px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  margin-bottom: 50px;
}
.value-card h5{
  font-size: 22px;
}
.value-card i {
  font-size: 32px;
  color: #0035f5;
  margin-bottom: 16px;
}

/* WHY */
.about-why {
  padding: 90px 0;
  background: #f8fafc;
}

.why-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.06);
}

.why-card i {
  font-size: 24px;
  color: #0035f5;
}

/* BELIEFS */
.about-beliefs {
  padding: 90px 0;
}

.belief-card {
  padding: 28px;
  border-radius: 16px;
  border-left: 4px solid #0035f5;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(0,0,0,0.06);
}

/* CAPABILITIES */
.about-capabilities {
  padding: 90px 0;
  background: #f8fafc;
}

.cap-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 16px 36px rgba(0,0,0,0.07);
}

.cap-card i {
  font-size: 26px;
  color: #0035f5;
  margin-bottom: 12px;
}

/* FOUNDER */
.about-founder {
  padding: 90px 0;
}

.founder-box {
  max-width: 760px;
  margin: auto;
  padding: 44px;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(0,53,245,0.08),
    #ffffff
  );
  box-shadow: 0 24px 48px rgba(0,0,0,0.1);
}

/* VISION */
.about-vision {
  padding: 100px 0;
  background: linear-gradient(
    180deg,
    rgba(0, 53, 245, 0.05),
    rgba(0, 53, 245, 0.01)
  );
}

/* Main Card */
.vision-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 70px 60px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
  position: relative;
}

/* Badge */
.vision-badge {
  display: inline-block;
  background: rgba(0, 53, 245, 0.1);
  color: #0035f5;
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 20px;
}

/* Title */
.vision-title {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.vision-title span {
  color: #0035f5;
}

/* Description */
.vision-description {
  font-size: 18px;
  color: #475569;
  max-width: 700px;
  margin: 0 auto 35px;
}

/* Brand Line */
.vision-brand {
  margin-bottom: 35px;
}

.vision-brand strong {
  display: block;
  font-size: 20px;
  color: #0f172a;
}

.vision-brand span {
  font-size: 15px;
  color: #64748b;
}

/* Actions */
.vision-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.vision-link {
  color: #0035f5;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.vision-link:hover {
  text-decoration: underline;
}

/* Button Override */
.about-vision .btn-primary {
  background-color: #0035f5;
  border: none;
  padding: 14px 30px;
  font-weight: 600;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 53, 245, 0.3);
}
.about-vision .btn-primary:hover {
  background-color: #0028c4;
}

/* about page css */
.founder-box span{
  color: #0035f5;
}
.founder-box h4{
  font-size: 32px;
}
.about-page h2{
  font-size: 40px;
}
.demo-btn{
 margin-top:0;
}





