/*hero section*/

.colocation-section {
    display: flex;
    align-items: center;
    height: auto;
    padding: 50px;
    background-color: #007bffea;
    margin:0 ;
    margin-bottom: 30px;
    color: #fff;
    margin-top: 100px;
}

.h-left-content {
    flex: 1;
    padding-right: 40px;
    border-top-left-radius: 40px;
    border-bottom-right-radius:40px ;
    background-color: #ffffffc9;
}

.h-right-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.h-right-content img {
    width: 80%;
    height: auto;
    display: block;
    margin:0 auto;
}

.stph1 {
    font-size: 56px;
    font-weight: bold;
    margin-bottom: 20px;
    font-family: "Montserrat", sans-serif;
    margin-left: 13px;
}

.subheading {
    font-size: 1.2em;
    color: #000000;
    margin-bottom: 40px;
    font-family: "inter", sans-serif;
    font-weight: 500;
    line-height: 28px;
    margin-left: 13px;

}

@media (max-width: 768px) {
    .colocation-section {
        flex-direction: column-reverse; 
        padding: 30px;
    }

    .h-left-content {
        padding-right: 0; 
        margin-bottom: 20px;
        border-radius: 20px;
    }

    .h-right-content img {
        width: 70%;
        margin-bottom: 20px;
    }

    .stph1 {
        font-size: 40px; 
        margin-left: 0px;
        text-align: center;
    }

    .subheading {
        font-size: 1em; 
        margin-left: 0px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .colocation-section {
        padding: 20px; 
        flex-direction: column-reverse;
    }

    .h-right-content img {
        width: 60%; 
        margin-bottom: 20px;
    }

    .stph1 {
        font-size: 32px; 
    }

    .subheading {
        font-size: 0.9em;
        line-height: 24px;
    }
}


/*new jersy colocation*/

.cards-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: auto;
    flex-wrap: wrap;
}

.new-jersey h1{
    font-size: 42px;
    font-family: 'Inter', sans-serif;
    text-align: center;
    font-weight: bold;
}

.new-jersey p{
    font-family: 'Inter', sans-serif;
    text-align: center;
    margin-bottom: 20px;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    margin: 10px;
    border-radius: 8px;
    border: 1px solid rgb(206, 217, 230);
    width: 245px;
    margin-bottom: 40px;
}

.card i {
    width: 50px;
    margin-bottom: 20px;
}

.card p {
    margin: 0;
    color: #333;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
}


@media (max-width: 768px) {
    .card {
        width: 45%;
    }
}

@media (max-width: 480px) {
    .card {
        width: 90%;
    }
}


/*colocation features*/

.features-container {
    position: relative;
    background: url('../images/server-room.jpg') no-repeat center/cover;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    overflow: hidden;
  }
  
  .features-container .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
  }
  
  .features-container h2 {
    position: relative;
    z-index: 2;
    font-size: 42px;
    margin-bottom: 40px;
    font-weight: bold;
    font-family: "Montserrat", sans-serif;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
  }
  
  .feature-item {
    border-bottom: 2px solid #fff;
    padding: 20px;
  }
  
  .feature-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
  }
  
  .feature-title img {
    width: 25px;
    height: 25px;
  }
  
  .feature-title h3 {
    font-size: 21px;
    font-weight: 700;
    font-family: 'inter', sans-serif;
  }
  
  .feature-item p {
    font-size: 16px;
    color: #fff;
    text-align: left;
    line-height: 24px;
    font-family: 'inter', sans-serif;
  }

  @media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr; 
    }
}


/*pricing cards*/

.pricing-container {
    width: 90%;
    max-width: fit-content;
    text-align: center;
    padding: 40px;
    margin: 0 auto;
}

.pricing-container h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #000000;
    font-weight: bold;
    font-family: "Montserrat", sans-serif;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    margin: 0 auto;
}

.pricing-card {
    background-color: white;
    border-radius: 9px;
    box-shadow:2px 3px 34px #d9d9d9;
    padding: 10px;
    margin: 20px;
    width: 235px; 
    text-align: center;
    flex-shrink: 0;
}

.pricing-card h3 {
    font-size: 16px;
    color: #3c3c3c;
    margin-bottom: 20px;
}

.pricing-card .price {
    font-size: 40px;
    color: #3464e0;
    margin-bottom: 10px;
    font-weight: bold;
}

.pricing-card .price span {
    font-size: 16px;
    color: #000000;
}

.pricing-card p {
    color: #000000;
    line-height: 1.6;
    margin-bottom: 15px;
    border-bottom: 1px solid #e2dede;
}

.pricing-card .more-info {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

@media (max-width: 768px) {
    .pricing-cards {
        flex-direction: column; 
        align-items: center; 
    }

    .pricing-card {
        width: 80%; 
        margin-left: 0;
        margin-right: 0;
    }
}


/*final*/

.final p{
    font-size: 20px;
    text-align: center;
}

.final p a{
    text-decoration: none;
}

.final h2{
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    background-color: #f4f4f4;
    padding: 10px;
    width: 55%;
    margin: 0 auto;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .final p {
        font-size: 18px; 
    }

    .final h2 {
        font-size: 20px;
        width: 90%; 
        margin-bottom: 30px; 
    }
}

@media (max-width: 480px) {
    .final p {
        font-size: 16px; 
    }

    .final h2 {
        font-size: 18px; 
        padding: 8px; 
    }
}