

:root {

   --navy: rgb(26, 43, 109);

   --gray: #696969;

   --orange: rgb(255, 119, 0);

  }



  * {

   margin: 0;

   padding: 0;

   box-sizing: border-box;

  }



  body, html {


   font-family: 'Segoe UI', sans-serif;

   background: linear-gradient(135deg, var(--navy), var(--gray), var(--orange));

  


  }
button {
    background-color: transparent;
    color: #000;
    border: 2px solid #f6f8f9;
    padding: 10px 20px;
    border-radius: 10px !important;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s, color 0.3s;
}
.card-1 button,
.card-blue button {
    margin-top: 10% !important; /* push button to the bottom */
}
 button:hover {
    background-color: #0056b3;
    color: #fff;
}


.head h2 {
    color: rgb(26, 43, 109);
    font-size: 40px !important;
    width: 100%;
    font-family: spinnaker, sans-serif;
    line-height: 1.4em;
}

.head h3 {
    color: rgb(26, 43, 109);
    font-size: 30px !important;
    width: 100%;
    font-family: spinnaker, sans-serif;
    line-height: 1.4em;
}
.card-1 h3, .card-blue h3{
        font-size: 20px !important;
}
.box, .box-1 {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 20px;
    margin: 20px 0;
}

.box {
    background-color: #fff;
    color: #000;
}

.box-1 {
    background-color: #0056b3;
    color: #fff;
}

.card-1, .card-blue {
    border: none;
    border-radius: 20px !important;
    font-size: 0.9rem;
    font-weight: bold;
    padding: 20px;
    height:100%;
     margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
     
}

.card-1,.card-blue {
 background: rgba(255, 255, 255, 0.2);   /* transparent overlay */
    backdrop-filter: blur(12px);            /* glass blur */
    -webkit-backdrop-filter: blur(12px);    /* safari support */
    border-radius: 12px;                    /* smooth edges */
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        color: #fff;
}

.card-1:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
.card-blue:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 768px) {

  .card-1, .card-blue  {
height: auto;
}

}
.pricing-container{
    margin:2% 0% 0% 0%!important;
}