
@charset "UTF-8";

@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,600,700");
@import url("https://fonts.googleapis.com/css?family=Roboto:400,500,700");
@import url("https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700");
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500;600;700&display=swap");

/*pricing plans*/
.plans-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
}

.plan-card {
    background-color: #ffffff;
    border-radius: 2px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-height: fit-content;
    border: 0.5px solid #482a80;
}

.plan-title {
    font-size: 1.70975rem;
    margin-bottom: 10px;
    color: #482a80;
    font-weight: 700;
    font-family:'Roboto' sans-serif;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.plan-features li {
    font-size: 1em;
    color: #482a80;
    margin-bottom: 8px;
    text-align: left;
}

.plan-features li i{
  color: #000000;
}

.plan-price {
    font-size: 20px;
    color: #6f42c1;
    margin-bottom: 20px;
    font-weight: bold;
}

.plan-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #6f42c1;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.plan-button:hover {
    color:#fdfeff;
    background-color: #411280
}


.icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 5px;
}

.rplan-list h2{
    color: #000000;
    font-size: 40px;
    font-weight: 900;
}

.rplan-list p{
  color: #000000;
}

@media (max-width: 768px) {
    .plans-container {
        grid-template-columns: 1fr; 
    }
}

/*why us expandble boxes*/

.main-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; 
    position: relative;
  }

.expandable-box {
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    width: 600px;
    margin: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.37);
    overflow: hidden;
  }

  .expandable-box-container {
    padding-left: 20px;
    flex: 1;
}
  
  .box-header {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    justify-content: space-between !important;
  }

  .left-content h3{
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: .08px;
      line-height: 24px;
      justify-content: center;
      margin: 0 auto;
  }
  .left-content{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .arrow {
    font-size: 1.2em;
    transition: transform 0.3s ease;
    transform:rotate(180deg);
  }
  
  .box-description {
    height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: height 0.3s ease, padding 0.3s ease;
  }

  .box-description p{
    font-size: 0.9rem;
  }
  
  .box-description.show {
    height: auto;
    padding: 15px 20px;
  }
  
  .box-header.expanded .arrow {
    transform: rotate(0deg);
  }


  @media (max-width: 768px) { 
    .expandable-box {
      width: 95%;
      margin: 15px auto; 
    }
  
    .expandable-boxes-container {
      padding-left: 0;
    }
  }

  @media (max-width: 768px) { 
    .expandable-box .box-header .arrow {
    }
  }

  @media (max-width: 768px) {
    .box-header h3 {
        font-size: 0.9rem;
    }
}


.right-aligned-image {
  margin-top: 100px;
  float: right;
  margin-left: 10px;
  margin-right: 30px;
  width: 27%;
  height: 60vh;
  position: inherit;
  margin-bottom: 100px;
  border: 2px solid transparent;
  border-radius: 20px;
  max-width: 50% !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.384);
  /*max-height: 150%*/
}

  .main-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    position: relative;
  }
  
  .expandable-box-container {
    flex: 1;
    margin-right: 20px;
  }

  @media (max-width: 768px) {
    .right-aligned-image {
        display: none;
    }
}

  .features-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    grid-auto-rows: minmax(300px, 300px);
  }
  
  .feature-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.274);
    max-height: 500px;
    border: 2px solid rgba(111, 175, 236, 0.363);
  }
  
  .card-content {
    flex: 1;
  }
  
  .feature-title {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #333;
  }
  
  .feature-description {
    font-size: 0.9em;
    color: #666;
    line-height: 1.6;
    text-align:left  !important;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
}
  
  .feature-image {
    width: 100px; 
    height: 100px; 
    margin-left: 20px;
  }
  
  .feature-image img {
    max-width: 100%;
    height: auto;
  }
  
  @media (max-width: 600px) {
    .features-container {
      grid-template-columns: 1fr;
    }
  
    .feature-card {
      flex-direction: column;
    }
  }

  @media (max-width: 768px) { 
    .feature-image {
      width: 50px; 
      height: 50px; 
      margin-left: 10px; 
      margin-bottom: 100px;
    }
  }


  @media (max-width: 768px) { 
    .feature-description {
      font-size: 0.55em; 
      overflow: scroll;
    }
  }


  /*additiona fratures*/

  .a-features-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px; 
    margin: 20px auto;
    padding: 20px;
  }
  
  .a-feature-card {
    background-color: #ffffff;
    border: 2px solid rgba(111, 175, 236, 0.363); 
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.281);
  }
  
  .a-feature-icon {
    margin-bottom: 15px;
    font-size: 2em; 
    color: #9c27b0;
  }
  
  .a-feature-title {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #333;
  }
  
  .a-feature-description {
    font-size: 0.9em;
    color: #666;
    line-height: 1.6;
  }
  
  
  @media (max-width: 768px) {
    .a-features-container {
      grid-template-columns: 1fr;
    }
  }

  
  /*operating systems*/

  .os-container {
    display: flex;
    width: 100%;
    max-width: 1400px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.034);
    border-radius: 10px;
    overflow: hidden;
    flex-direction: column;
    margin: 0 auto;
    height: 620px;
    background-color: #dddddd2f;
}

.os-selection {
    display: flex;
    flex-direction: row;
    background-color: #f0373700;
    padding: 20px;
    justify-content: center;
    gap: 50px;
}

.os-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
    margin: 0 10px;
    width: 200px;
    height: 150px;
  }

.os-item:hover {
    background-color: #e0e0e000;
    filter: grayscale(0%);
}

.os-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 5px;
    cursor: pointer;
    filter: grayscale(100%);
}

.os-item span {
    font-size: 16px;
    font-weight: bold;
    flex: 1 1 auto;
    min-height: 1px;
    padding: 1.25rem;
}


.os-item.selected {
    border: 1px solid #007bff;
}

.os-item.selected span{
  color: #007bff;
}

.os-item.selected img {
    filter: none;
}

.os-details {
   display: grid;
   grid-template-columns: 400px 1600px;
    flex-grow: 1;
}

.os-descriptions {
    padding: 20px;
}

.os-description {
    padding: 20px;
}

.os-description h2{
  font-size: 28px;
  font-weight: 600;
  color: #007BFF;
}

.os-description h3{
  font-size: 1.5rem;
  font-weight: 600;
  color: #007BFF
}

.os-description p{
  align-content: flex-start;
}


@media (max-width: 768px) {
  .os-container {
      height: auto;
      width: 95%;
  }

  .os-selection {
      flex-direction: column;
      align-items: center;
      gap: 20px; 
  }

  .os-item {
      width: 90%;
      height: auto;
  }

  .os-details {
      flex-direction: column;
  }

  .os-description h2 {
      font-size: 24px;
  }

  .os-description h3 {
      font-size: 1.2rem;
  }
}

/*supreme features new*/

.sup-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.sup-description {
  font-size: 16px;
  font-weight: 400;
}

.sup-description h2{
  font-size: 51px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    margin: auto;
    line-height: 1.3;
    color: #15358f;
}

.sup-description h2 span{
  font-size: 51px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    margin: auto;
    line-height: 1.3;
    color: #1248da;
}

.sup-description h3{
  font-size: 1.3rem;
  font-weight: 600;
  color:#6c757d;
}

.sup-description p{
  color:#063568de;
  font-family: "Poppins", sans-serif;
}


.sup-grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 20px; 
  height: auto;
  margin-bottom: 50px;
}

/*cards*/

.card-nw {
  position: relative;
  width: 400px;
  border: 1px solid #06356844;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  padding-right: 70px;
}
.card-nw img {
  width: 65px;
  height: 65px;
  position: absolute;
  top: 15px;
  right: 15px;
}

.card-content-nw {
  display: flex;
  align-items: center;
  gap: 10px;
}
.card-nw h3 {
  margin: 0;
  color: #063568de;
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.card-nw p {
  font-size: 16px;
  line-height: 1.3;
  margin-top: 10px;
  color: #063568de;
  font-family: "Poppins", sans-serif;
}

@media screen and (max-width: 1024px) {
  .sup-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .sup-description h2,
  .sup-description h3,
  .sup-description p {
    text-align: center;
  }

  .sup-grid-container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .card-nw {
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .sup-description h2 {
    font-size: 40px;
  }

  .sup-description h2 span {
    font-size: 40px;
  }

  .sup-grid-container {
    grid-template-columns: 1fr; 
  }

  .card-nw {
    padding-right: 50px;
  }
}

@media screen and (max-width: 480px) {
  .sup-description h2 {
    font-size: 32px;
  }

  .sup-description h2 span {
    font-size: 32px;
  }

  .card-nw img {
    width: 50px;
    height: 50px;
    top: 10px;
    right: 10px;
  }

  .card-nw p {
    font-size: 14px;
  }
}

/*powerful control pannels*/

.pf-control {
  font-family: Arial, sans-serif;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pf-control h1 {
  color: #1a1a1a;
  font-size: 40px;
  margin-bottom: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  line-height: 1.3;
  margin:0 auto;
  text-align: center;
}

.pf-control p {
  color: #666;
  font-size: 16px;
  margin-bottom: 40px;
  text-align: center;
}

.panels-container {
  display: flex;
  justify-content: space-between;
}

.panel {
  background-color: #fff;
  padding: 0;
  border-radius: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  width: 30%;
  overflow: hidden;
  border: 1px solid #D1FBE0;
  height: 250px;
}

.panel-header {
  padding: 10px;
  font-size: 20px;
  font-weight: bold;
  background-color: #D1FBE0; 
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 30px;
}

.panel-header h2 {
  color: #000000;
  font-size: 16px;
  margin-bottom: 10px;
  margin-left: 10px;
  font-weight: 700;
  margin-top: 10px;
}

.panel ul {
  list-style-type: none;
  padding: 0;
}

.panel ul li {
  color: #555;
  font-size: 16px;
  margin-bottom: 5px;
  margin-left: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 2;
}

.tooltip-container {
  position: relative;
  display: inline-block;
  margin-left: 5px;
}

.tooltip-icon {
  width: 20px;
  height: 20px;
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 20px;
  cursor: pointer;
}

.tooltip-text {
  visibility: hidden;
  width: 300px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -100px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip-container:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.panel ul li .price{
  margin-left: auto;
  margin-right: 10px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .panel {
    width: 100%;
  }

  .panels-container {
    flex-direction: column;
    align-items: center;
  }

  .tooltip-text {
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .pf-control h1 {
    font-size: 32px;
  }

  .pf-control p {
    font-size: 14px;
  }

  .panel-header h2 {
    font-size: 18px;
  }

  .panel ul li {
    font-size: 14px;
  }
}

/*server control panel*/

.scpi {
  display: flex;
  width: 100%;
  max-width: 1200px;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  margin: 0 auto;
}

.image-section1 {
  flex: 1;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-section1 img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.text-section1 {
  flex: 1;
  padding: 40px;
}

.easy-use {
  color: #6c757d;
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 700;
}

.scp {
  color: #6f42c1;
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: 700;
}

.scp-p {
  color: #482A80;
  line-height: 1.6;
  margin-bottom: 30px;
  font-size: 1.2rem;
  font-weight: 700;
}

.scp-ul {
  list-style: none;
  padding: 0;
}

.scp-ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: #000000;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .scpi {
      flex-direction: column;
  }

  .image-section1 {
      padding: 20px;
  }

  .text-section1 {
      padding: 20px;
  }

  h1 {
      font-size: 2em;
  }
}









