:root {
  /* typography weights & sizes */
  --extra-bold: 900;
  --bold: 800;
  --semi-bold: 700;
  --light-bold: 600;
  --super-extra--font: 60px;
  --extra-large-font: 32px;
  --large-font: 24px;
  --semi-large-font: 18px;
  --medium-font: 16px;
  --small-font: 14px;
  --extra-small-font: 13px;
  --tiny-font: 12px;
  --extra-tiny-font: 10px;

  --primary-color: #6D28D9;                    
  --primary-dark-color: #4C1D95;               
  --secondary-color: rgba(196,181,253,0.38);   
  --accent-color: #FB7185;                     
  --prime-color: var(--primary-color);          

  --bg-color: #F6F3FF;                         
  --ivory-color: #F8F6FF;                      
  --white-color: #FFFFFF;                      
  --dull-color: #94A3B8;                       
  --border-color: #ECEBFF;
  --red-color: #EF4444;                        
  --black-color: #0F172A;                      
}

hr {
  height: 1px;
  background-color: var(--white-color);
  border: none;
}

.prime-text-color {
  color: var(--ivory-color);
}

.input-important {
  color: var(--red-color);
}

.secondary-text-color {
  color: var(--white-color);
}

.extra-bold {
  font-weight: 900;
}
.bold {
  font-weight: 800;
}
.semi-bold {
  font-weight: 700;
}
.light-bold {
  font-weight: 600;
}
.super-extra-font {
  font-size: 60px;
}
.extra2-large-font {
  font-size: 45px;
}
.extra-large-font {
  font-size: 32px;
}
.large-font {
  font-size: 24px;
}
.semi-large-font {
  font-size: 18px;
}
.medium-font {
  font-size: 16px;
}
.small-font {
  font-size: 14px;
}
.extra-small-font {
  font-size: 13px;
}
.tiny-font {
  font-size: 12px;
}

.winky-font {
  font-family: "Winky Rough", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.exo-font {
  font-family: "Exo 2", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.light-fade-bg {
  width: 100%;
  background-color: var(--secondary-color);
}

.image-frame {
  border-radius: 2px;
  border: 10px solid var(--white-color);
  width: 100%;
  overflow: hidden;
}

.image-frame img {
  height: 500px;
  width: 100%;
  object-fit: cover;
}

ul li {
  list-style: none;
}

.arrow li {
  position: relative;
  padding-left: 25px;
}

.arrow li::before {
  content: "\f178";
  font-family: "FontAwesome";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: var(--white-color);
}

.arrow-button {
  position: relative;
  padding: 7px 15px 7px 35px;
  font-family: inherit;
  color: var(--white-color);
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-family: "Exo 2", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  text-transform: uppercase;
  text-decoration: none;
}

.arrow-button::before {
  content: "\f178";
  font-family: "FontAwesome";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: var(--white-color);
}

.arrow-button:hover {
  background-color: var(--secondary-color);
  border-radius: 8px;
}

.banner {
  position: relative;
  width: 100%;
  height: 75vh;
  opacity: 0.5;
  background: url("../assets/images/all-page-bnnr.jpg");
}

.banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to top,
    var(--primary-color) 0%,
    transparent 100%
  );
  pointer-events: none;
}

.website-card {
  position: relative;
  background: var(--primary-color);
  padding: 2rem;
  transition: transform 0.3s ease;
}

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

.website-card .extra-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--secondary-color);
  color: white;
  padding: 0.3rem 0.8rem;
  font-family: "Winky Rough", sans-serif;
  font-size: 0.9rem;
}

/********** HEADER CSS *********/

header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--primary-dark-color);
  padding: 10px 0;
  box-shadow: 10px 20px 100px 28px var(--primary-color);
}

header a {
  text-decoration: none !important;
}

header .mobile-header {
  display: none;
}

header .mobile-header button {
  display: none;
}

header .mobile-header .mobile-menu {
  display: none;
}

@media only screen and (max-width: 992px) {
  header .pc-header {
    display: none;
  }
  header .mobile-header {
    display: block;
  }
  header .mobile-header button {
    display: inline-block;
    justify-content: end;
    background-color: transparent;
    border-radius: 50%;
    width: 40px;
    border: 4px solid var(--white-color);
  }

  header .mobile-header .mobile-menu {
    display: none;
    width: 263px;
    height: 100vh;
    position: fixed;
    top: 70px;
    right: 0;
    background-color: var(--primary-dark-color);
    border-left: 3px solid var(--white-color);
  }

  header #menu-close-icon {
    display: none;
  }
}

/********** HOME CSS **********/

.home .home-carousel-item {
  position: relative;
  overflow: hidden;
}

.home .home-carousel-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, var(--primary-color) 0%, transparent 90%);
  pointer-events: none;
}

.home .home-carousel-item img {
  width: 100%;
  height: 75vh;
  object-fit: cover;
}

/********* CONTACT-FORM CSS **********/

.contact-form input {
  width: 100%;
  padding: 10px;
  border: none;
  margin-bottom: 15px;
  background-color: transparent;
  border-bottom: 1px solid var(--white-color);
  color: var(--white-color);
  font-size: var(--small-font);
  font-family: "Exo 2", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  outline: none;
}

.contact-form input::placeholder {
  color: var(--dull-color);
}

/* =========
package page 
========= */

.price-comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.price-comparison-table th,
.price-comparison-table td {
  padding: 1rem;
  border: 1px solid #ddd;
  text-align: center;
}

.price-comparison-table th {
  background-color: var(--prime-color);
  color: white;
}

/********* FOOTER CSS **********/
footer {
  background: var(--primary-dark-color);
  border-top: 1px solid var(--white-color);
}

@media only screen and (max-width: 1200px) {
  footer .pc-footer {
    display: none;
  }
}
