*{box-sizing:border-box;}

h1{
    font-size:70px;
    margin:0px;
    font-weight:100;
}

h2 {
    font-size:35px;
    font-weight:800;
    margin-bottom:10px;
}

h3 {
    font-weight:300;
    font-size:30px;
    margin:0px;
}

h3 span {
    font-size:20px;
    font-weight:500;
    color:rgb(218, 218, 218);
}

p {
    font-size:18px;
    font-weight:250;
}

.column2 li{
    position:relative;
    padding-left:5px;
    margin-left:5px;
    margin-bottom:10px;
    list-style:none;

}

.column2 li::after {
    content:url("../../public/icons/blank_check.svg");
    position:absolute;
    left:-30px;
    top:50%;
    transform: translateY(-40%); 
    margin-bottom:10px;

}

.subhead {
    font-size: 15px;
    text-align:center;
    font-style:italic;
}

.container {
    display: flex;
    width: 100%;  
    overflow: hidden; 

}

.conheight{
    min-height:900px;
    overflow:visible;
}

.column{
    flex: 1; 
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
}

.leftcol {
    flex: 1; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-left:65px;
    
}

.leftcol p {
    max-width:400px;
}

.rightcol {
    flex: 2; 
    display: flex;
    flex-direction: column;
    justify-content:center;
    position: relative;
    height:500px;
    
}

.rightcol img {
    width:100%;
    height:100%;
    object-fit: cover;
    object-position:center 100%;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, white, transparent);
    pointer-events: none; 
}

.column2{ 
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    border: solid 1px black;
    border-radius: 20px;
    margin: 10px;
    max-height: 0; /* Initially collapsed */
    opacity:0;
    overflow:hidden; /* Hide content */
    transition: max-height 1s ease-out, opacity 0.2s ease-out; /* Smooth transition */
    
}

.column2.show {
  opacity:1;
  }
  
  /* Staggered delays for each column */
  .column2:nth-child(1) {
    transition-delay: 0.2s;
  }
  .column2:nth-child(2) {
    transition-delay: 0.4s;
  }
  .column2:nth-child(3) {
    transition-delay: 0.6s;
  }
  .column2:nth-child(4) {
    transition-delay: 0.8s;
  }

.column2 p {
    max-width:400px;
    padding-left: 30px;
    padding-right:30px;
}

.material-symbols-outlined{
    font-size:150px; 
    color:rgb(60, 140, 175);
}

.colsub{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    flex-direction:column;
    text-align:center;
    background-color:rgb(60, 140, 175);
    width:100%;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    color:white;
    padding:15px;
}

.colsub p {
    font-size:16px;
    font-style: italic;
}

/* Style the first column (all row headers) */
#pricingTable tbody tr td:first-child {
    background-color: #f2f2f2;
    text-align: left;
    padding: 10px;
    
    margin:0px;

}

/* Custom styling for the specific cell */
.highlight-cell {
    font-weight: bold;
    border-bottom: 2px solid rgb(0, 0, 0);
}

.highlight-cell2 {
    background-color:rgb(60, 140, 175);
}

section{
    margin:30px;
    margin-left:90px;
    margin-right:90px;
}

#pricingTable {
    width:100%;
    border:none;
    border-collapse:collapse;
    border-color:rgb(0,0,0, 0.2);
}

#pricingTable td {
    text-align:center;
}

#mainsec {
    text-align:left;
    display:flex;
    
    align-content: flex-start;
    flex: 1; 
    flex-direction: column;
    justify-content: left;
}

#headsec{
    margin-top:55px;
    height:300px;
}

.form-group {
    margin-bottom: 1rem;
}

.form-row {
    display: flex;
    gap: 1rem; 
}

.form-row .form-group {
    flex: 1; 
    min-width: 0;
}

select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1rem;
    background-color: white;
}
select:invalid {
    color: gray; 
}

option[disabled] {
    color: #999;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

input, textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1rem;
}

textarea {
    resize: vertical;
}

.error-message {
    color: red;
    font-size: 0.875rem;
    display: none;
}

.submit-button {
    background-color: rgb(60, 140, 175);
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: rgb(43, 121, 154);
}

#contactForm{
    width:90%;
}

#form-sec{
    margin-top:100px;
}

/* Style for the popup background */
.popup {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

/* Popup content box */
.popup-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}

.popup-content p{
    margin-top:30px;
}

/* Close button */
.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

.freetrial-form{
    text-align:left;
}

@media only screen and (max-width: 1024px) {
    .container{
        flex-direction:column;
        height:auto;
    }

    .leftcol{
        padding:20px;
        margin:10px;  
      }
  
      #logo {
          max-width:300px;
      }
  
      .gradient-overlay{
          background: linear-gradient(to bottom, white, transparent);
          width:100%;
          height:50%;
      }

      #mainsec{
        margin:10px;
      }

      #form-sec{
        margin:10px;

      }

      .rightcol{
        height:auto;
      }

      #headsec{
        height:auto;
      }

      .column{
        justify-content:center;
        align-items:center;
        text-align:center;
      }

    

}