

/* New color: dark gray */
p {
    color: #5D5D5D; /* Change to dark gray */
    font-size: medium;
}

.desc {
    color: #5D5D5D;
    font-size: medium;
}

.rev_slider .tp-leftarrow, .rev_slider .tp-rightarrow {
    display: block; /* Ensure arrows are not set to display: none; */
    /* Other styles */
}

.iframe-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* Aspect ratio 16:9 */
    overflow: hidden;
}
.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

 .sub-menu {
  /* ... other styles ... */
  text-align: center;
     font-size: 14px;
}

.sub-menu a {
  /* ... other styles ... */
  color: #11393A; 
}

/* Member Directory */

.directory-grid > .member-card {
    display: block !important;
    float: none !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 0 !important;
}

.read-more-btn {
    display: inline-block;
    margin-top: 10px;
    color: #29AEAE;
    font-weight: 600;
    text-decoration: none;
}

.read-more-btn:hover {
    text-decoration: underline;
}
/* JOIN FORM STYLING */

.join-shell {
    max-width: 700px;
    margin: 0 auto 60px;
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.join-shell h1 {
    text-align: center;
    color: #29AEAE;
    margin-bottom: 25px;
}

/* Inputs */
.join-shell input,
.join-shell textarea,
.join-shell select {
    width: 100%;
    padding: 12px;
    margin: 8px 0 18px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    box-sizing: border-box;
}

/* Labels */
.join-shell label {
    font-weight: 600;
    color: #133a3a;
}

/* Checkbox row */
.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 15px 0 20px;
    font-size: 14px;
}

.checkbox-row input {
    width: auto;
    margin-top: 4px;
}

/* Button */
.join-shell button {
    background: #29AEAE;
    color: #fff;
    border: none;
    padding: 14px;
    width: 100%;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.join-shell button:hover {
    background: #1f8c8c;
}

/* Mobile */
@media (max-width: 640px) {
    .join-shell {
        padding: 20px;
    }
}

.thank-you-shell {
    max-width: 650px;
    margin: 60px auto;
    text-align: center;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.thank-you-shell h1 {
    color: #29AEAE;
}

.thank-you-actions {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}

.btn-primary {
    background: #29AEAE;
    color: #fff;
}

.btn-secondary {
    background: #133a3a;
    color: #fff;
}