
/** page structure **/
#wrapper {
  display: block;
  max-width: 1100px;
  margin: 0 auto;
}

#portfolio {
  display: block;
}

#portfolio li {
  display: block;
  float: left;
  width: 23%;
  max-width: 400px;
  margin-right: 20px;
  margin-bottom: 20px;
}

#portfolio li a {
  display: block;
  padding: 8px;
  background: #f5b573;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 1px 2px 2px rgba(0,0,0,0.25);
  -moz-box-shadow: 1px 2px 2px rgba(0,0,0,0.25);
  box-shadow: 1px 2px 2px rgba(0,0,0,0.25);
}

.mfp-title {
  font-size: 1.2em;
  color: #ddd !important;
  font-weight: 700;
}

.flex-locations {
  display: flex;
  justify-content: center;
  gap: 80px; /* Spacing between Thrissur and Kochi cards */
  margin-top: 20px;
  flex-wrap: wrap; /* Allows wrapping on smaller screens */
}

.location-card {
  background-color: #2c3e50;
  padding: 20px 30px;
  border-radius: 10px;
  width: 300px;
  color: #fff;
  box-sizing: border-box;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .flex-locations {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .location-card {
    width: 90%;
    max-width: 400px;
    text-align: center;
  }
}


/** clearfix **/
.clearfix:after { content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0; }
.clearfix { display: inline-block; }
 
html[xmlns] .clearfix { display: block; }
* html .clearfix { height: 1%; }


/** media queries **/
@media screen and (max-width: 780px) {
  #portfolio li {
    width: 45%;
  }
}

@media screen and (max-width: 550px) {
  #portfolio { 
    text-align: center;
  }
  
  #portfolio li {
    float: none;
    display: inline-block;
    width: 80%;
    margin-bottom: 30px;
  }
}


/* Mobile scaling for reCAPTCHA */
@media screen and (max-width: 600px) {
  .g-recaptcha {
    transform: scale(0.85);
    transform-origin: 0 0;
  }
}
