/* **********************************************************************/
/* **********************************************************************/
/* ROOT */
/* **********************************************************************/
/* **********************************************************************/

:root {
  --logo-color: #501481;
  --dark: #0f0f0f;
  --light: #ffffff;
  --gray: #777;


  --section-bg: rgb(215 203 203);


  --border-radius: 20px;
}

/* **********************************************************************/
/* **********************************************************************/
/* GLOBAL */
/* **********************************************************************/
/* **********************************************************************/

body {
  font-family: Inter, sans-serif;
  margin-top: 90px;
}

::selection {
  background-color: black;
  color: rgb(255, 255, 255);
}

ul,
li {
  margin: 0px;
  padding: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px;
  padding: 0px;
  text-transform: uppercase;
}

a:focus,
a:hover {
  text-decoration: none;
}

p {
  margin-bottom: 5px;
  font-size: 20px;
}

section {
  padding-top: 100px;
  padding-bottom: 100px;
}

svg,
img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

/* **********************************************************************/
/* **********************************************************************/
/* SCROLLBAR */
/* **********************************************************************/
/* **********************************************************************/

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: var(--logo-color);
  border-radius: 6px;
  border: 2px solid white;
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgb(85, 85, 85);
}

/* **********************************************************************/
/* **********************************************************************/
/* FIXED BUTTONS */
/* **********************************************************************/
/* **********************************************************************/

.fixed-phone-btnn,
.fixed-wtsapp-btnn {
  color: white;
  background-color: rgb(44, 107, 178);
  border-radius: 10px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 10px 15px;
  z-index: 100;
  text-decoration: none;
}

.fixed-wtsapp-btnn {
  bottom: 95px;
  background: rgb(129, 215, 66);
  border: 1px solid rgb(129, 215, 66);
}

.fixed-phone-btnn i,
.fixed-wtsapp-btnn i {
  font-size: 25px;
}

.fixed-wtsapp-btnn:hover {
  color: rgb(129, 215, 66);
  border: 1px solid rgb(129, 215, 66);
  background-color: white;
  transition: 0.4s;
}

.fixed-phone-btnn:hover {
  color: rgb(44, 107, 178);
  border: 1px solid rgb(44, 107, 178);
  background-color: white;
  transition: 0.4s;
}

/* **********************************************************************/
/* **********************************************************************/
/* ALL BUTTON */
/* **********************************************************************/
/* **********************************************************************/

.all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--logo-color);
  color: rgb(255, 255, 255);
  text-decoration: none;
  border-radius: 50px;
  border: 1px solid transparent;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}

.all-btn:hover {
  color: rgb(255, 255, 255);
  border: 1px solid var(--logo-color);
  transform: translateY(-3px);
  box-shadow: rgba(80, 20, 129, 0.2) 0px 10px 20px;
}

.all-btn::before {
  content: "";
  position: absolute;
  top: 0px;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: 0.5s;
}

.all-btn:hover::before {
  left: 100%;
}

/* **********************************************************************/
/* **********************************************************************/
/* SECTION TITLE */
/* **********************************************************************/
/* **********************************************************************/

.section-title {
  margin-bottom: 40px;
}

.section-title .section-heading {
  font-size: 18px;
  letter-spacing: 2px;
  font-weight: bold;
  color: var(--logo-color);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.section-title .section-heading i {
  font-size: 16px;
}

.section-title .section-sub-heading {
  font-size: 50px;
  margin-top: 10px;
  line-height: 1.2;
  font-weight: bold;
}

.section-title .section-sub-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--logo-color);
  margin: 15px auto 0px;
  border-radius: 10px;
}





















/* **********************************************************************/
/* **********************************************************************/
/* header */
/* **********************************************************************/
/* **********************************************************************/

/* **********************************************************************/
/* **********************************************************************/
/* header */
/* **********************************************************************/
/* **********************************************************************/
/* **********************************************************************/
/* **********************************************************************/
/* HEADER */
/* **********************************************************************/
/* **********************************************************************/
/* **********************************************************************/
/* HEADER */
/* **********************************************************************/

/* **********************************************************************/
/* HEADER */
/* **********************************************************************/

#header {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: 90px;

  background: #d7cbcb;

  z-index: 999;

  overflow: visible;

  box-shadow:
    rgba(0, 0, 0, 0.08) 0px 4px 20px,
    rgba(0, 0, 0, 0.06) 0px 1px 4px;
}

/* grid bg */
#header::before {
  content: "";

  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);

  background-size: 20px 20px;

  z-index: 0;
}

/* **********************************************************************/
/* CONTAINER */
/* **********************************************************************/

#header .container {
  height: 100%;

  display: grid;
  grid-template-columns: 1fr auto 1fr;

  align-items: center;

  position: relative;
  z-index: 2;
}

/* **********************************************************************/
/* LOGO */
/* **********************************************************************/

#header .logo {
  height: 50%;
  justify-self: start;
  position: relative;
  z-index: 1002;
}

#header .logo img {
  height: 100%;

  display: block;
}

/* **********************************************************************/
/* NAV */
/* **********************************************************************/

#header nav {
  justify-self: center;

  position: relative;
}

/* nav list */
#header nav ul {
  gap: 35px;
}

/* nav item */
#header nav ul li {
  position: relative;
}

/* nav link */
#header nav ul li>a {
  display: flex;
  align-items: center;
  gap: 5px;

  text-decoration: none;

  color: var(--logo-color);

  font-size: 18px;
  font-weight: 500;

  position: relative;

  padding: 5px 0;

  transition: 0.3s ease;
}

/* underline */
#header nav ul li>a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -4px;

  width: 0%;
  height: 2px;

  background: var(--logo-color);

  transition: 0.3s ease;
}

/* hover */
#header nav ul li>a:hover::after {
  width: 100%;
}

/* **********************************************************************/
/* DROPDOWN */
/* **********************************************************************/

.dropdown-box {
  position: absolute;
  top: calc(100% + 20px);
  left: 0;
  min-width: 240px;
  padding: 12px;
  background: var(--section-bg);
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow:
    0 20px 50px rgba(0,0,0,0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: 0.35s ease;
  z-index: 999;
}

/* desktop hover */
@media(min-width: 993px){

  .dropdown-menu-custom:hover .dropdown-box {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
  }

  .dropdown-menu-custom:hover > a i {
    transform: rotate(180deg);
  }

}

/* dropdown link */
.dropdown-box li a {
  display: flex;
  align-items: center;

  padding: 14px 16px;

  border-radius: 12px;

  color: #111 !important;

  transition: 0.3s ease;
}

/* hover */
.dropdown-box li a:hover {
  background: rgba(80,20,129,0.08);

  color: var(--logo-color) !important;

  padding-left: 22px;
}

/* arrow */
.dropdown-menu-custom > a i {
  transition: 0.3s ease;
}






#header .mobile-view{
  display: none;
}

/* **********************************************************************/
/* BUTTON */
/* **********************************************************************/

#header .header-btn {
  justify-self: end;
}

#header .all-btn {
  margin-top: 0;

  padding: 10px 34px;

  font-size: 14px;
}

/* **********************************************************************/
/* MOBILE TOGGLE */
/* **********************************************************************/

.menu-toggle {
  display: none;

  font-size: 34px;

  color: var(--logo-color);

  cursor: pointer;

  position: relative;
  z-index: 1002;
}



/* **********************************************************************/
/* **********************************************************************/
/* header end*/
/* **********************************************************************/
/* **********************************************************************/


















/* **********************************************************************/
/* **********************************************************************/
/* banner */
/* **********************************************************************/
/* **********************************************************************/
#banner {
  height: calc(-90px + 100vh);
  padding: 0px;
}

#banner .carousel,
#banner .carousel-inner,
#banner .carousel-item {
  height: 100%;
  display: flex;
  align-items: center;
}

#banner .carousel-item:nth-child(1) {
  background: url("../images/home/banner/banner1.jpg") center center / cover;
}

#banner .carousel-item:nth-child(2) {
  background: url("../images/home/banner/banner2.jpg") center center / cover;
}

#banner .carousel-item:nth-child(3) {
  background: url("../images/home/banner/banner3.jpg") center center / cover;
}

#banner .carousel-item::before {
  content: "";
  position: absolute;
  inset: 0px;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
}

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

#banner h1 {
  font-size: 60px;
  font-weight: bold;
  letter-spacing: 5px;
  max-width: 560px;
  margin: auto auto 20px;
  color: white;
}

#banner p {
  color: rgb(204, 204, 204);
}

#banner .animate {
  opacity: 0;
  transform: translateY(40px);
}

#banner .carousel-item.active .animate {
  animation: 1s ease 0s 1 normal forwards running fadeUp;
}

#banner .carousel-item.active .delay-1 {
  animation-delay: 0.3s;
}

#banner .carousel-item.active .delay-2 {
  animation-delay: 0.6s;
}

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

/* **********************************************************************/
/* **********************************************************************/
/* banner end*/
/* **********************************************************************/
/* **********************************************************************/





















/* **********************************************************************/
/* **********************************************************************/
/* about */
/* **********************************************************************/
/* **********************************************************************/
#about-home {
  position: relative;
  background: var(--section-bg);
  overflow: hidden;
}

#about-home::before {
  content: "";
  position: absolute;
  inset: 0px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
}

#about-home .container {
  position: relative;
  z-index: 2;
}

#about-home .about-center-text {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

#about-home .about-center-text span {
  display: block;
  font-size: 18px;
  letter-spacing: 4px;
  color: var(--logo-color);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}

#about-home .about-center-text h2 {
  font-size: 90px;
  font-weight: 800;
  letter-spacing: 8px;
  line-height: 1;
  background: linear-gradient(90deg, rgb(0, 0, 0), rgb(85, 85, 85)) text;
  -webkit-text-fill-color: transparent;
}

#about-home .about-text {
  color: rgb(85, 85, 85);
  margin-top: 15px;
  margin-bottom: 20px;
}

#about-home .about-features div {
  margin-bottom: 10px;
  color: rgb(68, 68, 68);
  font-size: 20px;
}

#about-home .about-features i {
  color: var(--logo-color);
  margin-right: 8px;
}

#about-home .about-img-stack {
  position: relative;
  height: 450px;
}

#about-home .main-img {
  width: 70%;
  border-radius: var(--border-radius);
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 2;
}

#about-home .secondary-img {
  width: 60%;
  border-radius: var(--border-radius);
  position: absolute;
  bottom: 0px;
  right: 0px;
  opacity: 0.9;
}

#about-home .about-card {
  position: absolute;
  bottom: 30px;
  left: 20px;
  background: rgb(255, 255, 255);
  padding: 20px;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 30px;
  max-width: 220px;
  z-index: 3;
  border: 3px solid rgb(232, 232, 232);
}

#about-home .about-card h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: var(--logo-color);
  font-weight: bold;
}

#about-home .about-card p {
  font-size: 14px;
  color: rgb(72, 72, 72);
}

#about-home .section-title .section-sub-heading::after {
  margin-left: 0px;
}

/* **********************************************************************/
/* **********************************************************************/
/* about end */
/* **********************************************************************/
/* **********************************************************************/




















/* **********************************************************************/
/* **********************************************************************/
/* PRODUCTS */
/* **********************************************************************/
/* **********************************************************************/

#products {
  background: rgb(17, 17, 17);
}

/* heading */
#products .section-sub-heading {
  color: white;

  max-width: 800px;

  margin: 10px auto auto;
}

/* equal height columns */
#products .row > div {
  display: flex;
}

/* **********************************************************************/
/* PRODUCT CARD */
/* **********************************************************************/

#products .product-card {
  background: rgb(26, 26, 26);

  padding: 40px;

  border-radius: var(--border-radius);

  transition: 0.3s;

  width: 100%;

  display: flex;
  flex-direction: column;

  height: 100%;

  position: relative;

  overflow: hidden;

  border: 1px solid transparent;
}

/* glow */
#products .product-card::before {
  content: "";

  position: absolute;

  top: -100px;
  right: -100px;

  width: 200px;
  height: 200px;

  background: rgba(80,20,129,0.15);

  border-radius: 50%;

  filter: blur(80px);

  opacity: 0;

  transition: 0.4s ease;
}

/* hover */
#products .product-card:hover {
  transform: translateY(-10px);

  border-color: var(--logo-color);

  box-shadow:
    0 20px 50px rgba(0,0,0,0.35);
}

/* glow hover */
#products .product-card:hover::before {
  opacity: 1;
}

/* **********************************************************************/
/* IMAGE */
/* **********************************************************************/

#products .product-img {
  margin-bottom: 30px;

  position: relative;
  z-index: 2;
}

/* image */
#products .product-img img {
  max-width: 100%;

  transition: 0.4s ease;
}

/* hover */
#products .product-card:hover .product-img img {
  transform: translateY(-5px) scale(1.02);
}

/* **********************************************************************/
/* CONTENT */
/* **********************************************************************/

#products .product-card h3 {
  color: var(--logo-color);

  margin-bottom: 15px;

  font-weight: bold;

  position: relative;
  z-index: 2;
}

/* text */
#products .product-card p {
  color: rgb(204, 204, 204);
  line-height: 1.8;
  max-width: 500px;
  flex-grow: 1;
  position: relative;
  z-index: 2;
  margin: auto;
}

/* button */
#products .product-card .all-btn {
  position: relative;
  z-index: 2;
}

/* **********************************************************************/
/* RESPONSIVE */
/* **********************************************************************/

@media (max-width: 768px) {

  #products .product-card {
    padding: 30px;
  }

}
/* **********************************************************************/
/* **********************************************************************/
/* products end */
/* **********************************************************************/
/* **********************************************************************/























/* **********************************************************************/
/* **********************************************************************/
/* why-us */
/* **********************************************************************/
/* **********************************************************************/
#why-us {
  position: relative;
  background: var(--section-bg);
  overflow: hidden;
}

#why-us::before {
  content: "";
  position: absolute;
  inset: 0px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
}

#why-us .container {
  position: relative;
  z-index: 2;
}

#why-us .section-sub-heading {
  color: rgb(17, 17, 17);
}

#why-us .why-card {
  background: linear-gradient(rgb(255, 255, 255), rgb(250, 250, 250));
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgb(238, 238, 238);
  height: 100%;
  position: relative;
  transition: 0.3s;
}

#why-us .why-card:hover {
  transform: translateY(-8px);
  border-color: var(--logo-color);
  box-shadow: rgba(0, 0, 0, 0.08) 0px 10px 30px;
}

#why-us .why-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

#why-us .why-card h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  color: var(--logo-color);
}

#why-us .why-card h4 i {
  width: 40px;
  height: 40px;
  background: rgba(80, 20, 129, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

#why-us .why-card p {
  color: rgb(85, 85, 85);
  line-height: 1.6;
  margin-top: 10px;
}

#why-us .why-content {
  max-height: 0px;
  overflow: hidden;
  transition: 0.4s;
}

#why-us .accordion-item.active .why-content {
  max-height: 500px;
  margin-top: 10px;
}

#why-us .icon {
  font-size: 20px;
  color: var(--logo-color);
  transition: 0.3s;
}

#why-us .accordion-item.active .icon {
  transform: rotate(45deg);
}

#why-us .accordion-item.active h4 i {
  background: var(--logo-color);
  color: rgb(255, 255, 255);
  transition: 0.8s;
}

/* **********************************************************************/
/* **********************************************************************/
/* why-us end */
/* **********************************************************************/
/* **********************************************************************/




















/* **********************************************************************/
/* **********************************************************************/
/* actcad */
/* **********************************************************************/
/* **********************************************************************/
#actcad {
  background: rgb(10, 10, 10);
  padding: 100px 0px;
  color: rgb(255, 255, 255);
}

#actcad .actcad-desc {
  color: rgb(187, 187, 187);
  margin-top: 15px;
}

#actcad .actcad-features {
  margin-top: 20px;
}

#actcad .actcad-features div {
  margin-bottom: 10px;
  color: rgb(221, 221, 221);
  font-size: 20px;
}

#actcad .actcad-features i {
  color: var(--logo-color);
  margin-right: 8px;
}

#actcad .actcad-img img {
  border-radius: var(--border-radius);
  box-shadow: rgba(0, 0, 0, 0.5) 0px 20px 60px;
}

#actcad .highlight-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.3s;
}

#actcad .highlight-card:hover {
  transform: translateY(-8px);
  border-color: var(--logo-color);
}

#actcad .highlight-card i {
  font-size: 60px;
  color: var(--logo-color);
  margin-bottom: 10px;
  display: inline-block;
}

#actcad .highlight-card h5 {
  margin-bottom: 10px;
}

#actcad .highlight-card p {
  color: rgb(170, 170, 170);
}

/* **********************************************************************/
/* **********************************************************************/
/* actcad */
/* **********************************************************************/
/* **********************************************************************/


























/* **********************************************************************/
/* **********************************************************************/
/* cadempvd-info */
/* **********************************************************************/
/* **********************************************************************/
#cadempvd-info {
  position: relative;
  background: var(--section-bg);
  overflow: hidden;
}

#cadempvd-info::before {
  content: "";
  position: absolute;
  inset: 0px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
}

#cadempvd-info .container {
  position: relative;
  z-index: 2;
}

#cadempvd-info .cadem-desc {
  max-width: 800px;
  margin: 10px auto 0px;
  color: rgb(102, 102, 102);
}

#cadempvd-info .cadem-card {
  background: linear-gradient(rgb(255, 255, 255), rgb(250, 250, 250));
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgb(238, 238, 238);
  height: 100%;
  transition: 0.3s;
}

#cadempvd-info .cadem-card:hover {
  transform: translateY(-6px);
  border-color: var(--logo-color);
  box-shadow: rgba(0, 0, 0, 0.08) 0px 10px 30px;
}

#cadempvd-info .cadem-card span {
  font-size: 20px;
}

#cadempvd-info .cadem-card ul li {
  font-size: 20px;
}

#cadempvd-info .cadem-title {
  font-size: 18px;
  margin-bottom: 20px;
  color: white;
  display: inline-block;
  padding: 9px 15px 6px;
  background: var(--logo-color);
  border-radius: var(--border-radius);
}

#cadempvd-info .icon {
  width: 40px;
  height: 40px;
  background: rgba(80, 20, 129, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--logo-color);
  font-size: 18px;
  flex-shrink: 0;
  transition: 0.3s;
}

#cadempvd-info .cadem-card:hover .icon {
  background: var(--logo-color);
  color: rgb(255, 255, 255);
}

#cadempvd-info .cadem-list {
  list-style: none;
}

#cadempvd-info .cadem-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgb(238, 238, 238);
  color: rgb(68, 68, 68);
}

#cadempvd-info .cadem-list li:last-child {
  border-bottom-width: medium;
  border-bottom-style: none;
  border-bottom-color: currentcolor;
}

#cadempvd-info .cadem-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 15px;
  padding: 12px;
  border-radius: 10px;
  transition: 0.3s;
  color: rgb(68, 68, 68);
}

#cadempvd-info .cadem-feature:hover {
  background: rgba(80, 20, 129, 0.05);
}

#cadempvd-info .simple {
  align-items: center;
  font-weight: 500;
}

/* **********************************************************************/
/* **********************************************************************/
/* cadempvd-info end */
/* **********************************************************************/
/* **********************************************************************/





















/* **********************************************************************/
/* **********************************************************************/
/* footer */
/* **********************************************************************/
/* **********************************************************************/
#footer {
  background: rgb(10, 10, 10);
  padding: 80px 0px 0px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

#footer .logo-text {
  font-size: 32px;
  color: rgb(255, 255, 255);
}

#footer p {
  color: rgb(170, 170, 170);
  margin-top: 15px;
}

#footer a {
  color: rgb(170, 170, 170);
  text-transform: capitalize;
  text-decoration: none;
}
#footer .iso-text {
  color: var(--logo-color);
  font-size: 14px;
  margin-top: 10px;
}

#footer h5 {
  color: rgb(255, 255, 255);
  margin-bottom: 20px;
  position: relative;
}

#footer h5::after {
  content: "";
  width: 40px;
  height: 2px;
  background: var(--logo-color);
  display: block;
  margin-top: 8px;
}

#footer ul {
  padding: 0px;
  list-style: none;
}

#footer ul li {
  margin-bottom: 10px;
}

#footer ul li a {
  color: rgb(170, 170, 170);
  text-decoration: none;
  transition: 0.3s;
  position: relative;
}

#footer ul li a::after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: -2px;
  width: 0%;
  height: 1px;
  background: var(--logo-color);
  transition: 0.3s;
}

#footer ul li a:hover {
  color: var(--logo-color);
}

#footer ul li a:hover::after {
  width: 100%;
}

#footer .footer-contact p {
  line-height: 1.6;
}

#footer .copyrights-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0px;
  color: rgb(255, 255, 255);
  border-top: 1px solid white;
  margin-top: 30px;
}

/* **********************************************************************/
/* **********************************************************************/
/* footer end */
/* **********************************************************************/
/* **********************************************************************/

























/* **********************************************************************/
/* **********************************************************************/
/* about page */
/* **********************************************************************/
/* **********************************************************************/
#about-hero {
  position: relative;
  overflow: hidden;
  background: var(--section-bg);
}

#about-hero::before {
  content: "";
  position: absolute;
  inset: 0px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
}

#about-hero .container {
  position: relative;
  z-index: 2;
}

#about-hero .about-hero-top {
  max-width: 1100px;
  margin: 0px auto 70px;
}

#about-hero .hero-title {
  font-size: 60px;
  line-height: 1;
  background: linear-gradient(90deg, rgb(17, 17, 17), rgb(85, 85, 85)) text;
  -webkit-text-fill-color: transparent;
  margin-top: 20px;
}

#about-hero .hero-text {
  max-width: 700px;
  margin: 20px auto 0px;
  color: rgb(102, 102, 102);
  font-size: 18px;
}

#about-hero .about-hero-images {
  position: relative;
  margin: auto;
  width: 100%;
}

#about-hero .hero-main-img img {
  width: 100%;
  border-radius: 30px;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 30px 60px;
}

#about-hero .hero-floating-img {
  position: absolute;
  bottom: -60px;
  left: -40px;
  width: 300px;
}

#about-hero .hero-floating-img img {
  border-radius: 25px;
  border: 8px solid var(--section-bg);
}

/* **********************************************************************/
/* HERO INFO CARD */
/* **********************************************************************/

#about-hero .hero-info-card {
  position: absolute;
  top: 40px;
  right: 40px;

  max-width: 400px;

  padding: 30px;

  border-radius: 24px;

  /* glass effect */
  background: rgba(255,255,255,0.18);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255,255,255,0.25);

  overflow: hidden;

  box-shadow:
    0 20px 40px rgba(0,0,0,0.12),
    inset 0 1px 0 rgba(255,255,255,0.2);

  z-index: 5;
}

/* top glow line */
#about-hero .hero-info-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 4px;

  background:
    linear-gradient(
      90deg,
      transparent,
      var(--logo-color),
      transparent
    );
}

/* purple glow */
#about-hero .hero-info-card::after {
  content: "";

  position: absolute;

  width: 180px;
  height: 180px;

  background: rgba(80,20,129,0.18);

  border-radius: 50%;

  filter: blur(70px);

  top: -60px;
  right: -60px;

  z-index: -1;
}

/* title */
#about-hero .hero-info-card h4 {
  position: relative;
  color: #ffffff;
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 15px;
  font-weight: 700;
}

/* highlight word */
#about-hero .hero-info-card h4 span {
  color: var(--logo-color);
}

/* text */
#about-hero .hero-info-card p {
  position: relative;
  color: #ffffff;
  margin: 0;
  line-height: 1.8;
  font-size: 15px;
}

/* small badge */
#about-hero .hero-info-card .mini-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 30px;
  background: rgb(255 255 255);
  color: var(--logo-color);
  font-size: 13px;
  font-weight: 600;
}

/* icon */
#about-hero .hero-info-card .mini-tag i {
  font-size: 16px;
}















#company-intro {
  background: var(--section-bg);
}

#company-intro .section-title .section-sub-heading::after {
  margin-left: 0px;
}

#company-intro .intro-img img {
  border-radius: 25px;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 20px 50px;
}

#company-intro .intro-text {
  color: rgb(85, 85, 85);
  margin-bottom: 18px;
  line-height: 1.8;
}











/* **********************************************************************/
/* MISSION VISION */
/* **********************************************************************/
#mission-vision {
  position: relative;
  background: var(--section-bg);
  overflow: hidden;
}

/* grid bg */
#mission-vision::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(0, 0, 0, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.08) 1px, transparent 1px);

  background-size: 40px 40px;
  z-index: 0;
}

/* purple glow blob */
#mission-vision::after {
  content: "";
  position: absolute;

  width: 400px;
  height: 400px;

  background: rgba(80, 20, 129, 0.08);

  border-radius: 50%;

  filter: blur(120px);

  top: -100px;
  right: -100px;

  z-index: 0;
}

/* container */
#mission-vision .container {
  position: relative;
  z-index: 2;
}

/* **********************************************************************/
/* CARD */
/* **********************************************************************/

#mission-vision .mv-card {
  position: relative;

  background: rgba(255, 255, 255, 0.75);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  padding: 45px 35px;

  border-radius: 24px;

  border: 1px solid rgba(255, 255, 255, 0.6);

  transition: 0.4s ease;

  height: 100%;

  overflow: hidden;

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* top glow line */
#mission-vision .mv-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 4px;

  background: linear-gradient(90deg,
      transparent,
      var(--logo-color),
      transparent);

  opacity: 0;

  transition: 0.4s;
}

/* hover */
#mission-vision .mv-card:hover {
  transform: translateY(-10px);

  border-color: rgba(80, 20, 129, 0.25);

  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(80, 20, 129, 0.08);
}

/* show glow line */
#mission-vision .mv-card:hover::before {
  opacity: 1;
}

/* **********************************************************************/
/* ICON */
/* **********************************************************************/

#mission-vision .mv-icon {
  width: 75px;
  height: 75px;

  background:
    linear-gradient(135deg,
      var(--logo-color),
      #6e2aa7);

  border-radius: var(--border-radius);

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 25px;

  box-shadow:
    0 10px 25px rgba(80, 20, 129, 0.25);

  transition: 0.4s;
}

/* icon hover */
#mission-vision .mv-card:hover .mv-icon {
  transform: rotate(-6deg) scale(1.05);
}

/* icon */
#mission-vision .mv-icon i {
  font-size: 32px;
  color: #fff;
}

/* **********************************************************************/
/* TITLE */
/* **********************************************************************/

#mission-vision .mv-card h4 {
  margin-bottom: 15px;

  color: var(--logo-color);

  font-weight: 700;

  font-size: 24px;
}

/* **********************************************************************/
/* TEXT */
/* **********************************************************************/

#mission-vision .mv-card p {
  color: #555;
  line-height: 1.8;
}















/* **********************************************************************/
/* engineering-expertise */
/* **********************************************************************/
#engineering-expertise {
  background: rgb(17, 17, 17);
  color: rgb(255, 255, 255);
}

#engineering-expertise .section-sub-heading {
  color: rgb(255, 255, 255);
}

#engineering-expertise .section-title .section-sub-heading::after {
  margin-left: 0px;
}

#engineering-expertise .expertise-item {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

#engineering-expertise .expertise-item:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--logo-color);
}

#engineering-expertise .expertise-item i {
  color: var(--logo-color);
  font-size: 20px;
}

#engineering-expertise .expertise-img img {
  border-radius: 25px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 50px;
}






#about-cta {
  background: rgb(15, 15, 15);
  background-image: url(../images/cta/cta-bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-size: cover;
}

#about-cta .cta-box {
  text-align: center;
  padding: 90px 40px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgb(140 0 255 / 15%), rgb(255 255 255 / 3%));
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(40px);
  border: 1px solid #ffffff42;
  -webkit-backdrop-filter: blur(40px);
}

#about-cta .cta-box::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(80, 20, 129, 0.15);
  border-radius: 50%;
  filter: blur(100px);
  top: -100px;
  right: -100px;
}

#about-cta h2 {
  color: rgb(255, 255, 255);
  font-size: 60px;
  line-height: 1.1;
  position: relative;
  z-index: 2;
}

#about-cta p {
  color: rgb(255 255 255);
  margin-top: 18px;
  position: relative;
  z-index: 2;
}

#about-cta .all-btn-cover {
  position: relative;
  z-index: 2;
}

@media (max-width: 991px) {
  #about-hero .hero-title {
    font-size: 60px;
  }

  #about-hero .hero-floating-img {
    position: relative;
    inset: unset;
    width: 100%;
    max-width: 100%;
    margin-top: 20px;
  }

  #about-cta h2 {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  #about-hero .hero-title {
    font-size: 45px;
  }

  #about-stats .stats-card h3 {
    font-size: 42px;
  }

  #about-cta h2 {
    font-size: 34px;
  }
}

/* **********************************************************************/
/* **********************************************************************/
/* about page */
/* **********************************************************************/
/* **********************************************************************/












































/* **********************************************************************/
/* **********************************************************************/
/* ACTCAD PRODUCTS */
/* **********************************************************************/
/* **********************************************************************/

#actcad-products {
  position: relative;
  background: var(--section-bg);
  overflow: hidden;
}

/* grid bg */
#actcad-products::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(0,0,0,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.08) 1px, transparent 1px);

  background-size: 40px 40px;

  z-index: 0;
}

/* glow */
#actcad-products::after {
  content: "";
  position: absolute;

  width: 450px;
  height: 450px;

  background: rgba(80,20,129,0.08);

  border-radius: 50%;

  filter: blur(120px);

  top: -120px;
  right: -120px;

  z-index: 0;
}

/* container */
#actcad-products .container {
  position: relative;
  z-index: 2;
}










/* ********************************************************************** */
/* ACTCAD INTRO TEXT */
/* ********************************************************************** */

#actcad-products .actcad-intro-text {
  max-width: 1100px;

  margin: 0 auto 50px;

  text-align: center;
}

/* text */
#actcad-products .actcad-intro-text p {
  font-size: 18px;

  line-height: 2;

  color: #555;

  margin: 0;
}

/* highlight */
#actcad-products .actcad-intro-text strong {
  color: var(--logo-color);

  font-weight: 700;
}











/* **********************************************************************/
/* CARD */
/* **********************************************************************/

#actcad-products .actcad-card {
  position: relative;

  background:
    linear-gradient(
      180deg,
      #fff,
      #fafafa
    );

  border-radius: 28px;

  overflow: hidden;

  border: 1px solid #eee;

  transition: 0.4s ease;

  height: 100%;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.04);
}

/* hover */
#actcad-products .actcad-card:hover {
  transform: translateY(-10px);

  border-color: rgba(80,20,129,0.2);

  box-shadow:
    0 25px 50px rgba(0,0,0,0.08);
}

/* featured */
#actcad-products .featured-card {
  border-color: rgba(80,20,129,0.2);

  transform: scale(1.03);
}

/* **********************************************************************/
/* BADGE */
/* **********************************************************************/

#actcad-products .popular-badge {
  position: absolute;

  top: 20px;
  right: 20px;

  padding: 10px 18px;

  border-radius: 30px;

  background:
    linear-gradient(
      135deg,
      var(--logo-color),
      #6c2ba2
    );

  color: #fff;

  font-size: 13px;
  font-weight: 600;

  z-index: 5;

  box-shadow:
    0 10px 25px rgba(80,20,129,0.25);
}

/* **********************************************************************/
/* IMAGE */
/* **********************************************************************/

#actcad-products .actcad-img {
  position: relative;

  padding: 40px 40px 0;
}

#actcad-products .actcad-img img {
  width: 100%;

  border-radius: 18px;

  transition: 0.4s ease;
}

/* image hover */
#actcad-products .actcad-card:hover .actcad-img img {
  transform: scale(1.04);
}

/* **********************************************************************/
/* CONTENT */
/* **********************************************************************/

#actcad-products .actcad-content {
  padding: 35px;
}

/* tag */
#actcad-products .product-tag {
  display: inline-flex;

  padding: 8px 16px;

  border-radius: 30px;

  background: rgba(80,20,129,0.08);

  color: var(--logo-color);

  font-size: 13px;
  font-weight: 600;

  margin-bottom: 18px;
}

/* **********************************************************************/
/* PRODUCT TITLE */
/* **********************************************************************/

#actcad-products .actcad-content h4 {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  line-height: 1.1;
  color: #111;
  font-size: 38px;
  font-weight: 900;
  text-transform: capitalize;
}

/* top text */
#actcad-products .actcad-content h4 small {
  font-size: 15px;

  font-weight: 600;

  letter-spacing: 3px;

  text-transform: uppercase;

  color: #888;
}

/* premium hover */
#actcad-products .actcad-card:hover h4 {
  color: var(--logo-color);

  transition: 0.3s;
}





/* **********************************************************************/
/* ACTCAD CAPABILITIES */
/* **********************************************************************/

#actcad-capabilities {
  position: relative;
  background: rgb(17, 17, 17);
  overflow: hidden;
}

/* grid */
#actcad-capabilities::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);

  background-size: 40px 40px;

  z-index: 0;
}

#actcad-capabilities .section-title .section-sub-heading{
  color: white;
}
#actcad-capabilities .container {
  position: relative;
  z-index: 2;
}

/* **********************************************************************/
/* TABS */
/* **********************************************************************/

#actcad-capabilities .capability-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;

  justify-content: center;

  margin-top: 50px;
}

/* tab button */
#actcad-capabilities .cap-tab {
  border: none;
  outline: none;

  padding: 18px 28px;

  border-radius: 18px;

  background: rgba(255,255,255,0.04);

  border: 1px solid rgba(255,255,255,0.1);

  display: flex;
  align-items: center;
  gap: 10px;

  color: #fff;

  transition: 0.3s;

  font-weight: 600;

  backdrop-filter: blur(10px);
}

/* hover */
#actcad-capabilities .cap-tab:hover {
  transform: translateY(-3px);

  border-color: var(--logo-color);

  color: #fff;

  background: rgba(80,20,129,0.15);
}

/* active */
#actcad-capabilities .cap-tab.active {
  background:
    linear-gradient(
      135deg,
      var(--logo-color),
      #6e2aa7
    );

  color: #fff;

  border-color: transparent;

  box-shadow:
    0 10px 30px rgba(80,20,129,0.25);
}

/* icon */
#actcad-capabilities .cap-tab i {
  font-size: 18px;
}

/* **********************************************************************/
/* CONTENT */
/* **********************************************************************/

#actcad-capabilities .tab-content-wrap {
  margin-top: 50px;
}

/* hidden */
#actcad-capabilities .tab-pane {
  display: none;
}

/* active */
#actcad-capabilities .tab-pane.active {
  display: block;
}

/* **********************************************************************/
/* CARD */
/* **********************************************************************/

#actcad-capabilities .cap-card {
  height: 100%;

  padding: 35px;

  border-radius: 24px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.05),
      rgba(255,255,255,0.03)
    );

  border: 1px solid rgba(255,255,255,0.08);

  transition: 0.3s;

  backdrop-filter: blur(12px);
}

/* hover */
#actcad-capabilities .cap-card:hover {
  transform: translateY(-8px);

  border-color: rgba(80,20,129,0.4);

  box-shadow:
    0 20px 40px rgba(0,0,0,0.35);
}

/* title */
#actcad-capabilities .cap-card h4 {
  margin-bottom: 20px;

  color: #fff;

  text-transform: capitalize;

  font-weight: 700;
}

/* list */
#actcad-capabilities .cap-card ul {
  padding-left: 18px;
  margin: 0;
}

/* list item */
#actcad-capabilities .cap-card ul li {
  margin-bottom: 14px;

  color: rgba(255,255,255,0.75);

  line-height: 1.7;
}

/* **********************************************************************/
/* AEC TAB */
/* **********************************************************************/

/* top */
#actcad-capabilities .aec-top h3 {
  font-weight: 600;

  max-width: 900px;

  margin: auto;

  line-height: 1.2;

  color: #fff;
}

/* **********************************************************************/
/* CLIENT BOX */
/* **********************************************************************/

#actcad-capabilities .aec-client-box {
  margin-top: 50px;

  padding: 45px;

  border-radius: 30px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.04),
      rgba(255,255,255,0.02)
    );

  border: 1px solid rgba(255,255,255,0.08);

  backdrop-filter: blur(12px);
}

/* heading */
#actcad-capabilities .client-heading {
  text-align: center;

  margin-bottom: 35px;
}

/* title */
#actcad-capabilities .client-heading h4 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #fff;
  text-transform: capitalize;
  font-weight: 700;
}

/* text */
#actcad-capabilities .client-heading p {
  color: rgba(255,255,255,0.7);
}

/* **********************************************************************/
/* CLIENT GRID */
/* **********************************************************************/

#actcad-capabilities .client-grid {
  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(160px, 1fr));

  gap: 18px;
}

/* client */
#actcad-capabilities .client-item {
  padding: 22px;

  border-radius: 18px;

  background: rgba(255,255,255,0.04);

  border: 1px solid rgba(255,255,255,0.08);

  text-align: center;

  font-weight: 700;

  color: rgba(255,255,255,0.85);

  transition: 0.3s;
}

/* hover */
#actcad-capabilities .client-item:hover {
  transform: translateY(-5px);

  color: #fff;

  border-color: rgba(80,20,129,0.4);

  background: rgba(80,20,129,0.15);

  box-shadow:
    0 10px 25px rgba(0,0,0,0.35);
}

/* **********************************************************************/
/* RESPONSIVE */
/* **********************************************************************/

@media (max-width: 768px) {

  #actcad-capabilities .capability-tabs {
    justify-content: flex-start;
  }

}












/* **********************************************************************/
/* VALUE PROPOSITION */
/* **********************************************************************/

#value-proposition {
  position: relative;
  background: var(--section-bg);
  overflow: hidden;
}

/* grid */
#value-proposition::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(0,0,0,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.08) 1px, transparent 1px);

  background-size: 40px 40px;

  z-index: 0;
}

/* glow */
#value-proposition::after {
  content: "";

  position: absolute;

  width: 450px;
  height: 450px;

  background: rgba(80,20,129,0.08);

  border-radius: 50%;

  filter: blur(120px);

  top: -100px;
  left: -100px;

  z-index: 0;
}

/* container */
#value-proposition .container {
  position: relative;
  z-index: 2;
}

/* **********************************************************************/
/* VALUE LIST */
/* **********************************************************************/

#value-proposition .value-list {
  max-width: 1000px;

  margin: 60px auto 0;
}

/* item */
#value-proposition .value-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 30px;
  margin-bottom: 18px;
  border-radius: 22px;
  background:
    linear-gradient(
      135deg,
      var(--logo-color),
      #6c2ba2
    );
  position: relative;
  overflow: hidden;
  transition: 0.4s;
  box-shadow:
    0 10px 30px rgba(80,20,129,0.12);
}

/* hover */
#value-proposition .value-item:hover {
  transform: translateY(-6px);

  box-shadow:
    0 20px 40px rgba(80,20,129,0.2);
}

/* shine */
#value-proposition .value-item::before {
  content: "";

  position: absolute;

  top: 0;
  left: -120%;

  width: 100%;
  height: 100%;

  background:
    linear-gradient(
      120deg,
      transparent,
      rgba(255,255,255,0.2),
      transparent
    );

  transition: 0.8s;
}

#value-proposition .value-item:hover::before {
  left: 120%;
}

/* left */
#value-proposition .value-left {
  display: flex;
  align-items: center;
  gap: 18px;

  position: relative;
  z-index: 2;
}

/* icon */
#value-proposition .value-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

/* icon */
#value-proposition .value-icon i {
  color: #fff;
  font-size: 20px;
}

/* title */
#value-proposition .value-item h4 {
  color: #fff;

  font-size: 24px;

  font-weight: 700;

  text-transform: capitalize;

  margin: 0;
}

/* percentage */
#value-proposition .value-item span {
  font-size: 25px;
  font-weight: 800;
  color: #fff;
  position: relative;
  z-index: 2;
}

/* **********************************************************************/
/* RESPONSIVE */
/* **********************************************************************/

@media (max-width: 768px) {

 

}



















/* **********************************************************************/
/* ACTCAD SOFTWARE INFO */
/* **********************************************************************/

#actcad-software-info {
  position: relative;
  background: rgb(17, 17, 17);
  overflow: hidden;
}

/* grid */
#actcad-software-info::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);

  background-size: 40px 40px;

  z-index: 0;
}

/* glow */
#actcad-software-info::after {
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  background: rgba(80,20,129,0.12);

  border-radius: 50%;

  filter: blur(120px);

  top: -150px;
  right: -100px;

  z-index: 0;
}

/* container */
#actcad-software-info .container {
  position: relative;
  z-index: 2;
}

/* **********************************************************************/
/* CONTENT */
/* **********************************************************************/

#actcad-software-info .section-title .section-sub-heading {
  color: #fff;
}

#actcad-software-info .section-title .section-sub-heading::after {
  margin-left: 0;
}

#actcad-software-info .software-text {
  color: rgba(255,255,255,0.7);

  margin-top: 20px;

  line-height: 1.8;

  max-width: 900px;

  font-size: 18px;
}

/* **********************************************************************/
/* HIGHLIGHT */
/* **********************************************************************/

#actcad-software-info .software-highlight {
  margin-top: 35px;

  padding: 30px;

  border-radius: 24px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.06),
      rgba(255,255,255,0.03)
    );

  border: 1px solid rgba(255,255,255,0.08);

  backdrop-filter: blur(12px);
}

/* title */
#actcad-software-info .software-highlight h4 {
  color: #fff;

  margin-bottom: 12px;

  font-weight: 800;

  font-size: 34px;
}

/* text */
#actcad-software-info .software-highlight p {
  color: rgba(255,255,255,0.7);

  margin: 0;

  line-height: 1.8;
}

/* **********************************************************************/
/* FEATURES */
/* **********************************************************************/

#actcad-software-info .software-features {
  margin-top: 45px;

  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(320px, 1fr));

  gap: 18px;
}

/* item */
#actcad-software-info .feature-item {
  display: flex;
  align-items: center;
  gap: 14px;

  padding: 18px 20px;

  border-radius: 18px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.05),
      rgba(255,255,255,0.03)
    );

  border: 1px solid rgba(255,255,255,0.08);

  transition: 0.3s;

  backdrop-filter: blur(10px);
}

/* hover */
#actcad-software-info .feature-item:hover {
  transform: translateY(-5px);

  border-color: rgba(80,20,129,0.4);

  box-shadow:
    0 15px 35px rgba(0,0,0,0.35);
}

/* icon */
#actcad-software-info .feature-item i {
  width: 45px;
  height: 45px;

  border-radius: 14px;

  background: rgba(80,20,129,0.15);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;

  font-size: 20px;

  flex-shrink: 0;

  transition: 0.3s;
}

/* hover icon */
#actcad-software-info .feature-item:hover i {
  background: var(--logo-color);

  transform: rotate(-6deg);
}

/* text */
#actcad-software-info .feature-item span {
  color: rgba(255,255,255,0.85);

  font-size: 16px;

  line-height: 1.6;
}

/* **********************************************************************/
/* RESPONSIVE */
/* **********************************************************************/

@media (max-width: 768px) {

  #actcad-software-info .software-features {
    grid-template-columns: 1fr;
  }

  #actcad-software-info .software-highlight h4 {
    font-size: 28px;
  }

}
























/* ********************************************************************** */
/* CADEMPVD INTRO */
/* ********************************************************************** */

#cadem-intro {
  position: relative;
  background: var(--section-bg);
  overflow: hidden;
}

/* grid */
#cadem-intro::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(0,0,0,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.06) 1px, transparent 1px);

  background-size: 40px 40px;

  z-index: 0;
}

/* container */
#cadem-intro .container {
  position: relative;
  z-index: 2;
}









/* ********************************************************************** */
/* ACTCAD INTRO TEXT */
/* ********************************************************************** */

#cadem-intro .actcad-intro-text {
  max-width: 1100px;

  margin: 0 auto 50px;

  text-align: center;
}

/* text */
#cadem-intro .actcad-intro-text p {
  font-size: 18px;

  line-height: 2;

  color: #555;

  margin: 0;
}

/* highlight */
#cadem-intro .actcad-intro-text strong {
  color: var(--logo-color);

  font-weight: 700;
}











/* ********************************************************************** */
/* INTRO BOX */
/* ********************************************************************** */

#cadem-intro .intro-box {
  max-width: 950px;

  margin: 50px auto 0;

  text-align: center;
}

/* title */
#cadem-intro .intro-box h2 {
  font-size: 52px;

  line-height: 1.2;

  margin-bottom: 20px;

  color: #111;
}

/* text */
#cadem-intro .intro-box p {
  color: #666;

  line-height: 1.9;

  font-size: 17px;
}








/* ********************************************************************** */
/* PRODUCT SHOWCASE */
/* ********************************************************************** */

/* ********************************************************************** */
/* CADEMPVD CARD */
/* ********************************************************************** */

#cadem-intro .cadem-card {
  max-width: 500px;
  margin: auto;
  background: linear-gradient(180deg, #fff, #fafafa);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid #eee;
  border-radius: 20px;
}

#cadem-intro .actcad-img{
  
  padding: 40px 40px 0;
}

#cadem-intro .actcad-content {
    padding: 35px;
}





#cadem-intro .product-tag {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 30px;
  background: rgba(80, 20, 129, 0.08);
    color: var(--logo-color);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
  }

  #cadem-intro h4  {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #888;
}
















/* ********************************************************************** */
/* FEATURE CARD */
/* ********************************************************************** */

#cadem-intro .cadem-feature-card {
  height: 100%;

  padding: 35px;

  border-radius: 24px;

  background:
    linear-gradient(
      180deg,
      #fff,
      #fafafa
    );

  border: 1px solid #eee;

  transition: 0.3s;

  position: relative;
}

/* hover */
#cadem-intro .cadem-feature-card:hover {
  transform: translateY(-8px);

  border-color: var(--logo-color);

  box-shadow:
    0 20px 40px rgba(0,0,0,0.08);
}

/* icon */
#cadem-intro .feature-icon {
  width: 75px;
  height: 75px;

  border-radius: var(--border-radius);

  background: rgba(80,20,129,0.08);

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 25px;

  transition: 0.3s;
}

/* hover */
#cadem-intro .cadem-feature-card:hover .feature-icon {
  background: var(--logo-color);

  transform: rotate(-5deg);
}

/* icon */
#cadem-intro .feature-icon i {
  font-size: 32px;

  color: var(--logo-color);

  transition: 0.3s;
}

/* hover */
#cadem-intro .cadem-feature-card:hover .feature-icon i {
  color: #fff;
}

/* title */
#cadem-intro .cadem-feature-card h4 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #111;
  font-weight: 700;
}

/* text */
#cadem-intro .cadem-feature-card p {
  color: #666;

  line-height: 1.8;

  margin: 0;
}

/* ********************************************************************** */
/* DEMO WRAPPER */
/* ********************************************************************** */

#cadem-intro .demo-wrapper {
  margin-top: 70px;
}

/* item */
#cadem-intro .demo-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  padding: 35px;

  border-radius: 24px;

  background:
    linear-gradient(
      180deg,
      #fff,
      #fafafa
    );

  border: 1px solid #eee;

  margin-bottom: 25px;

  transition: 0.3s;
}

/* hover */
#cadem-intro .demo-item:hover {
  transform: translateY(-5px);

  border-color: var(--logo-color);

  box-shadow:
    0 15px 35px rgba(0,0,0,0.08);
}

/* tag */
#cadem-intro .demo-tag {
  display: inline-block;

  padding: 8px 16px;

  border-radius: 50px;

  background: rgba(80,20,129,0.08);

  color: var(--logo-color);

  font-size: 14px;

  font-weight: 600;

  margin-bottom: 18px;
}

/* title */
#cadem-intro .demo-item h4 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #111;
  font-weight: 700;
}

/* text */
#cadem-intro .demo-item p {
  color: #666;

  line-height: 1.8;

  margin: 0;

  max-width: 800px;
}

/* ********************************************************************** */
/* RESPONSIVE */
/* ********************************************************************** */

@media (max-width: 992px) {

  #cadem-intro .demo-item {
    flex-direction: column;
    align-items: flex-start;
  }

}

@media (max-width: 768px) {

  #cadem-intro .intro-box h2 {
    font-size: 38px;
  }

  #cadem-intro .demo-item h4 {
    font-size: 24px;
  }

  #cadem-intro .trial-content h3 {
    font-size: 32px;
  }

}








































/* **********************************************************************/
/* **********************************************************************/
/* why us page */
/* **********************************************************************/
/* **********************************************************************/

#why-page {
  position: relative;
  background: var(--section-bg);
  overflow: hidden;
}

/* grid */
#why-page::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(0, 0, 0, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.08) 1px, transparent 1px);

  background-size: 40px 40px;

  z-index: 0;
}

/* container */
#why-page .container {
  position: relative;
  z-index: 2;
}

/* **********************************************************************/
/* TIMELINE */
/* **********************************************************************/

#why-page .why-timeline {
  position: relative;

  max-width: 1000px;

  margin: 80px auto 0;
}

/* vertical line */
#why-page .why-timeline::before {
  content: "";

  position: absolute;

  top: 0;
  left: 50px;

  width: 2px;
  height: 100%;

  background:
    linear-gradient(to bottom,
      transparent,
      var(--logo-color),
      transparent);
}

/* item */
#why-page .why-item {
  position: relative;

  display: flex;
  gap: 40px;

  margin-bottom: 60px;
}

/* number */
#why-page .why-number {
  min-width: 100px;
  height: 100px;

  border-radius: 50%;

  background: #fff;

  border: 2px solid rgba(80, 20, 129, 0.15);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 30px;
  font-weight: bold;

  color: var(--logo-color);

  position: relative;
  z-index: 2;

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.05);
}

/* content */
#why-page .why-content {
  flex: 1;

  background:
    linear-gradient(180deg,
      #fff,
      #fafafa);

  padding: 35px;

  border-radius: 25px;

  border: 1px solid #eee;

  display: flex;
  gap: 25px;

  transition: 0.4s;
}

/* hover */
#why-page .why-content:hover {
  transform: translateY(-8px);

  border-color: var(--logo-color);

  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.08);
}

/* icon */
#why-page .why-icon {
  width: 70px;
  height: 70px;

  background:
    linear-gradient(135deg,
      var(--logo-color),
      #6d2ea2);

  border-radius: var(--border-radius);

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  box-shadow:
    0 10px 25px rgba(80, 20, 129, 0.25);
}

/* icon */
#why-page .why-icon i {
  color: #fff;
  font-size: 28px;
}

/* title */
#why-page .why-content h4 {
  color: var(--logo-color);
  margin-bottom: 12px;
}

/* text */
#why-page .why-content p {
  color: #555;
  line-height: 1.8;
}

/* **********************************************************************/
/* RESPONSIVE */
/* **********************************************************************/

@media (max-width: 768px) {

  #why-page .why-timeline::before {
    display: none;
  }

  #why-page .why-item {
    flex-direction: column;
    gap: 20px;
  }

  #why-page .why-number {
    min-width: 80px;
    height: 80px;

    font-size: 24px;
  }

  #why-page .why-content {
    flex-direction: column;
  }

}

/* **********************************************************************/
/* **********************************************************************/
/* why us page */
/* **********************************************************************/
/* **********************************************************************/





















/* **********************************************************************/
/* **********************************************************************/
/* contact page */
/* **********************************************************************/
/* **********************************************************************/
#contact-hero {
  background: var(--section-bg);
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
}

/* grid */
#contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(0, 0, 0, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.08) 1px, transparent 1px);

  background-size: 40px 40px;

  z-index: 0;
}

#contact-hero .contact-sub-text {
  color: rgb(102, 102, 102);
  max-width: 600px;
  margin: 15px auto 0px;
}




#contact-main {
  background: var(--section-bg);
  padding-top: 0px;
  position: relative;
  overflow: hidden;
}

/* grid */
#contact-main::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(0, 0, 0, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.08) 1px, transparent 1px);

  background-size: 40px 40px;

  z-index: 0;
}

#contact-main .container {
  position: relative;
  z-index: 2;
} 



#contact-main .contact-form-box {
  padding: 40px;
  border-radius: var(--border-radius);
  border: 1px solid rgb(238, 238, 238);
  background: linear-gradient(rgb(255, 255, 255), rgb(250, 250, 250));
}

#contact-main .form-group {
  position: relative;
}

#contact-main input,
#contact-main textarea {
  width: 100%;
  padding: 18px 15px;
  border-radius: 10px;
  border: 1px solid rgb(221, 221, 221);
  background: rgb(255, 255, 255);
  outline: none;
  font-size: 14px;
  transition: 0.3s;
}

#contact-main input:hover,
#contact-main textarea:hover {
  border-color: rgb(187, 187, 187);
}

#contact-main input:focus,
#contact-main textarea:focus {
  border-color: var(--logo-color);
  box-shadow: rgba(80, 20, 129, 0.08) 0px 0px 0px 3px;
}

#contact-main label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  background: rgb(255, 255, 255);
  padding: 0px 5px;
  color: rgb(153, 153, 153);
  font-size: 14px;
  pointer-events: none;
  transition: 0.3s;
}

#contact-main textarea+label {
  top: 20px;
  transform: none;
}

#contact-main input:focus+label,
#contact-main input:valid+label,
#contact-main textarea:focus+label,
#contact-main textarea:valid+label {
  top: -8px;
  font-size: 12px;
  color: var(--logo-color);
}



/* ********************************************************************** */
/* CONTACT INFO BOX */
/* ********************************************************************** */

#contact-main .contact-info-box {
  position: relative;

  padding: 50px 40px;

  border-radius: 30px;

  background:
    linear-gradient(
      180deg,
      rgb(20, 20, 20),
      rgb(10, 10, 10)
    );

  color: rgb(255, 255, 255);

  height: 100%;

  overflow: hidden;

  border: 1px solid rgba(255,255,255,0.06);
}

/* top glow */
#contact-main .contact-info-box::before {
  content: "";

  position: absolute;

  top: -120px;
  right: -120px;

  width: 250px;
  height: 250px;

  background: rgba(80,20,129,0.18);

  border-radius: 50%;

  filter: blur(90px);
}

/* heading */
#contact-main .contact-info-box h4 {
  font-size: 34px;

  margin-bottom: 12px;

  font-weight: 700;

  position: relative;
  z-index: 2;
}

/* text */
#contact-main .contact-info-box p {
  color: rgb(180, 180, 180);
  line-height: 1.8;
  margin-bottom: 35px;
  position: relative;
  z-index: 2;
  font-size: 16px;
}

/* ********************************************************************** */
/* INFO ITEM */
/* ********************************************************************** */

#contact-main .info-item {
  display: flex;

  gap: 18px;

  margin-bottom: 25px;

  align-items: flex-start;

  position: relative;
  z-index: 2;
}

/* icon box */
#contact-main .info-item i {
  width: 55px;
  height: 55px;

  min-width: 55px;

  border-radius: 16px;

  background: rgba(80,20,129,0.15);

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--logo-color);

  font-size: 22px;

  transition: 0.3s;
}

/* hover */
#contact-main .info-item:hover i {
  background: var(--logo-color);

  color: #fff;

  transform: translateY(-3px);
}

/* text wrap */
#contact-main .info-item span {
  color: #fff;

  line-height: 1.9;

  font-size: 15px;
}

/* links */
#contact-main .info-item a {
  color: #fff;

  text-decoration: none;

  transition: 0.3s;
}

/* hover */
#contact-main .info-item a:hover {
  color: var(--logo-color);
}

/* spacing */
#contact-main .info-item:last-child {
  margin-bottom: 0;
}




/* map  */
#contact-map {
  padding: 0px;
}

#contact-map iframe {
  width: 100%;
  height: 400px;
  border-width: medium;
  border-style: none;
  border-color: currentcolor;
  border-image: initial;
}

/* **********************************************************************/
/* **********************************************************************/
/* contact page end */
/* **********************************************************************/
/* **********************************************************************/






