.elementor-750 .elementor-element.elementor-element-88acc05{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-750 .elementor-element.elementor-element-faca0a6{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-750 .elementor-element.elementor-element-bd4889b{text-align:center;margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:10px 20px 0px 20px;}.elementor-750 .elementor-element.elementor-element-bd4889b .elementor-heading-title{font-family:"Yellowtail", Sans-serif;font-size:45px;font-weight:400;font-style:normal;mix-blend-mode:luminosity;color:#FFD85B;}.elementor-750 .elementor-element.elementor-element-bd4889b.elementor-element{--align-self:center;}.elementor-750 .elementor-element.elementor-element-5977d0f{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-9d6858d *//* --- Grid Layout --- */
  .profile-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 25px;
    padding: 25px;
    font-family: 'Poppins', sans-serif;
  }

  @media screen and (max-width: 768px) {
    .profile-showcase {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
  }

  /* --- Profile Card --- */
  .profile-card {
    position: relative;
    border: 0.5px solid #FFD700;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(180deg, #111, #000);
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.25);
    transition: all 0.4s ease-in-out;
  }

  .profile-card:hover {
    transform: scale(1.04);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.45);
  }

  .profile-card img {
    width: 100%;
    height: 100%;
    aspect-ratio: 9/16;
    object-fit: cover;
    transition: opacity 0.4s ease;
  }

  .profile-card:hover img {
    opacity: 0.9;
  }

  /* --- Transparent Golden Ribbon --- */
  .tag-label {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #FFD700;
    background: rgba(0, 0, 0, 0.3); /* transparent golden overlay */
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    border: 0.5px solid #FFD700;
    border-radius: 6px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(3px);
    animation: softGlow 2s infinite ease-in-out;
  }

  @keyframes softGlow {
    0% { box-shadow: 0 0 6px rgba(255, 215, 0, 0.2); }
    50% { box-shadow: 0 0 14px rgba(255, 215, 0, 0.6); }
    100% { box-shadow: 0 0 6px rgba(255, 215, 0, 0.2); }
  }

  /* --- Info Section --- */
  .profile-details {
    text-align: center;
    color: #FFD700;
    padding: 12px;
    background: rgba(0, 0, 0, 0.85);
  }

  .profile-details h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.5px;
  }

  .profile-details p {
    margin: 6px 0 0;
    font-size: 13px;
    color: #ccc;
    letter-spacing: 0.3px;
  }/* End custom CSS */
/* Start custom CSS for heading, class: .elementor-element-bd4889b */@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}

.feature_e {
  animation: blink 2.5s linear infinite;
text-shadow: 3px 3px 0 #000;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-8878c1c */.escort-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    font-family: 'Lato', sans-serif;
    padding: 20px;
    box-sizing: border-box;
  }

  @media screen and (max-width: 1024px) {
    .escort-gallery {
      grid-template-columns: repeat(2, 1fr) !important;
    }
  }

  @media screen and (max-width: 480px) {
    .escort-gallery {
      grid-template-columns: repeat(2, 1fr) !important;
    }
  }

  .escort-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }

  .escort-card:hover {
    transform: scale(1.03);
  }

  .escort-card img {
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    display: block;
  }

  .ribbon {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #FFD700;
    color: #000;
    padding: 6px 12px;
    font-weight: bold;
    font-size: 13px;
    border-radius: 4px;
    animation: pulse 1.5s infinite;
    z-index: 2;
  }

  @keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.9; }
    100% { transform: scale(1); opacity: 1; }
  }

  .escort-info {
    padding: 10px;
    color: #000;
    text-align: center;
  }

  .escort-info h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 300;
  }

  .escort-info p {
    margin: 5px 0 0;
    font-size: 13px;
    font-weight: 100;
  }/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-d27119b */.escort-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    font-family: 'Lato', sans-serif;
    padding: 20px;
    box-sizing: border-box;
  }

  @media screen and (max-width: 1024px) {
    .escort-gallery {
      grid-template-columns: repeat(2, 1fr) !important;
    }
  }

  @media screen and (max-width: 480px) {
    .escort-gallery {
      grid-template-columns: repeat(2, 1fr) !important;
    }
  }

  .escort-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }

  .escort-card:hover {
    transform: scale(1.03);
  }

  .escort-card img {
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    display: block;
  }

  .ribbon {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #FFD700;
    color: #000;
    padding: 6px 12px;
    font-weight: bold;
    font-size: 13px;
    border-radius: 4px;
    animation: pulse 1.5s infinite;
    z-index: 2;
  }

  @keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.9; }
    100% { transform: scale(1); opacity: 1; }
  }

  .escort-info {
    padding: 10px;
    color: #000;
    text-align: center;
  }

  .escort-info h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 300;
  }

  .escort-info p {
    margin: 5px 0 0;
    font-size: 13px;
    font-weight: 100;
  }/* End custom CSS */