  :root {
    --background-image-blog: linear-gradient(rgba(5, 5, 5, 0.1), rgba(5, 5, 5, 0.1)), url(../images/blog-bg.jpg);
} 
   
	  /* General Styling */
        body {
            background-color: #262626;
            color: #ddd;
        }

a {
    color: rgb(220 53 69);
    text-decoration: underline;
    font-weight: 700;
}

.blgimg body:after {
    content: "";
    position: fixed;
    top: 0;
    height: 100vh;
    left: 0;
    right: 0;
    z-index: -1;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.blgimg body:after {
    background-image: var(--background-image-blog);
}


        /* Navbar */
        .navbar {
    background-color: #000;
    border-bottom: 1px solid #621534;
        } 

        .navbar-brand {
            color: #ff4081 !important;
            font-weight: bold;
			    padding-top: 0;
			    padding-bottom: 0;
        }
		        .navbar-brand img{width: 190px;}

        .navbar-brand:hover {
            color: #fff !important;
        }

/*laction list css*/

.header-drop .city-prime {
    width: 100%;
    background: #222;
    padding: 20px 20px;
    position: absolute;
    top: 94px;
    z-index: 100;
    display: none;
	    overflow-y: auto;
    height: auto;
    max-height: 600px;
}

.header-drop .closes {
    width: 30px;
    height: 30px;
    background: url(../images/close-circle.png) no-repeat left center / 100% 100%;
    position: absolute;
    top: 20px;
    right: 30px;
    z-index: 100;
    cursor: pointer;
}
.header-drop .city-prime ul {padding:0px;}
.header-drop .city-prime ul li a {
    line-height: 20px;
    display: block;
    color: #fff;
    margin-bottom: 10px;
		text-decoration: none;
	font-size: 15px;
}
.header-drop .city-prime ul li a:hover {
    color: #ff0064;

}

.header-drop .city-prime ul li {
list-style:none;
    width: 20%;
	text-transform: uppercase;

}

/* For inputs with the .cus-search class */
.cus-search::placeholder {
  color: #fff; /* Change to your desired color */
  opacity: 1; /* Ensure it's fully opaque */
}

/* For Firefox */
.cus-search:-moz-placeholder {
  color: #fff;
  opacity: 1;
}

/* For Internet Explorer */
.cus-search:-ms-input-placeholder {
  color: #fff;
}
.cus-search {
    background: none;
    border-radius: 0;
    border: 0;
    text-transform: uppercase;
    border-bottom: 2px solid #757575;
    color: #fff;
    min-width: 270px;
	    padding-left: 2px;
}



        /* Filters popup */
		
		.filter-popup .modal-content {
      background-color: #1e1e1e;
      border-radius: 12px;
      padding: 20px;
    }
    .filter-section-pop h6 {
      font-weight: bold;
      margin-bottom: 10px;
      color: #ff4c4c;
    }
    .filter-section-pop label {
      display: flex;
      align-items: center;
      margin-bottom: 8px;
      font-size: 0.95rem;
      cursor: pointer;
      padding: 4px 6px;
      border-radius: 6px;
      transition: background-color 0.3s ease, transform 0.2s ease;
    }
    .filter-section-pop label:hover {
      background-color: rgba(255, 76, 76, 0.15);
      transform: translateX(4px);
    }
    .filter-section-pop input[type="checkbox"] {
      accent-color: #ff4c4c;
      margin-right: 8px;
      width: 18px;
      height: 18px;
    }
    .btn-apply {
      background-color: #ff4c4c;
      color: white;
      border-radius: 25px;
      padding: 8px 25px;
      border: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }
    .btn-apply:hover {
      background-color: #e33b3b;
    }
    @media (max-width: 768px) {
      .filter-section-pop {
        border-right: none !important;
        border-bottom: 1px solid #333;
        padding-bottom: 10px;
        margin-bottom: 10px;
      }
    }
		
        /* Filters popup */
		
		
        /* Filters Sidebar */
		
		.accordion-button::after {
 background-image:url("../images/arrow.svg");}
		
.accordion-button:not(.collapsed)::after {
    background-image:url("../images/arrow.svg");
    transform: var(--bs-accordion-btn-icon-transform);
}
		
        .filter-section {
            /* background-color: #111;*/
            color: #ddd;
            padding: 15px;
            height: 100vh;
            position: sticky;
            top: 0;
        }

        .filter-section h4 {
            color: #ff4081;
        }

.accordion-button {
    background:none;
    color: #ddd;
    padding: 13px 15px;
	text-transform:uppercase;
}

.accordion-item {
    color: var(--bs-accordion-color);
    background: none;
    border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}
		
.accordion-item {
    border-radius: 0;
    border: none;
    margin-bottom: 1px;
}

.accordion-item:first-of-type>.accordion-header .accordion-button {
    border-radius: 0;
}
.accordion-item:last-of-type>.accordion-header .accordion-button.collapsed {
    border-radius: 0;
}

        .accordion-button:not(.collapsed) {
            background:none;
            color: #fff;
        }
		
	
.accordion-body {
    padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
    color: #ffffff;
}

        /* Escort Cards Grid */
        .escort-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr); /* 4 equal-width columns */
            gap: 15px; /* Space between cards */
        }

        .escort-card {
            background:none;
            color: #fff;
            padding: 10px;
            border-radius: 0px;
            transition: transform 0.3s ease;
           /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); */
		    box-shadow: none;
        }

        .escort-card:hover {
            transform: translateY(-10px);
          /*   box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);*/
		   box-shadow: none;
        }

        .escort-card img {
            width: 100%;
            height: auto;
            border-radius: 0px;
        }

        .escort-card h5 {
            color: #ff4081;
            font-size: 18px;
            margin-top: 15px;
        }

        .escort-card p {
            margin: 5px 0;
            font-size: 14px;
        }

        .escort-card .price {
            font-weight: bold;
            color: #fff;
        }

        .escort-card .verified {
            color: #ff4081;
            font-weight: bold;
        }

        /* Custom scroll for sidebar */
        .filter-section {
            max-height: 100vh;
            overflow-y: auto;
        }

        /* Styling scrollbar */
        .filter-section::-webkit-scrollbar {
            width: 6px;
        }

        .filter-section::-webkit-scrollbar-thumb {
            background-color: #ff4081;
            border-radius: 10px;
        }


.escort-container {
    margin-bottom: 15px;
    background: #111;
    padding: 30px 20px 0;
}

/*form search*/


/* profile page start */

  .carousel img {
      height: 400px;
      object-fit: cover;
      width: 100%;
    }

    .main-section {
      display: flex;
      gap: 20px;
      padding: 20px;
      flex-wrap: wrap;
    }

    .sidebar {
      flex: 1;
      min-width: 100%;
      max-width: 300px;
      background-color: #1f1f1f;
      border-radius: 12px;
      padding: 20px;
      height: fit-content;
    }

    .content {
      flex: 3;
      min-width: 300px;
    }

    .section-box {
      background-color: #1c1c1c;
      border-radius: 12px;
      padding: 25px;
      margin-bottom: 30px;
      box-shadow: 0 0 10px rgba(255,255,255,0.05);
    }

    h5, h6 {
      color: #ffcc00;
      margin-bottom: 15px;
    }

    .profile-table td {
      padding: 6px 12px;
      vertical-align: top;
    }

    .star { color: gold; }

    .specialty-badge {
      display: inline-block;
      background-color: #dc143c;
      color: white;
      padding: 5px 12px;
      border-radius: 20px;
      font-size: 0.9rem;
      margin: 5px 6px 5px 0;
    }

    .rate-table td {
      padding: 8px 16px;
      color: #f0f0f0;
    }

    .rate-table td:first-child {
      font-weight: bold;
      color: #fff;
    }

    .show-phone-btn {
      background-color: crimson;
      border: none;
      color: white;
      padding: 5px 10px;
      border-radius: 4px;
    }

    .available-tag {
      background-color: #28a745;
      color: white;
      padding: 4px 10px;
      font-size: 0.9rem;
      border-radius: 5px;
    }

   .main-section a {
      color: #ffc107;
      text-decoration: none;
    }

 .main-section    a:hover {
      text-decoration: underline;
    }

    .location-list span {
      display: inline-block;
      margin-right: 10px;
      margin-bottom: 5px;
    }

.section-box {
    
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }

.section-box h5 {
    font-weight: bold;
    margin-bottom: 20px;
    border-bottom: 1px solid #515151;
    padding-bottom: 10px;
}

  .detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px 25px;
  }

  .detail-item {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
  }

  .detail-item span:first-child {
    font-weight: 500;
    color: #777777;
  }

  .star {
    color: gold;
  }

  @media (max-width: 576px) {
    .detail-item {
      flex-direction: row;
      align-items: flex-start;
    }
  }
  


  .rate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 15px;
  }

.rate-card {
    border-radius: 8px;
    padding: 15px 20px;
    border-left: 4px solid #dc143c;
}

  .rate-card h6 {
    font-size: 17px;
    margin-bottom: 5px;
    font-weight: 600;
  }

.rate-card p {
    margin: 0;
    font-size: 17px;
    color: #ffffff;
}

.phone-number {
    font-size: 20px;
    font-weight: bold;
    color: #ff0033;
    display: none;
  }

  .btn-show {
    padding: 8px 20px;
    font-weight: 500;
  }

/* gallery */

  .carousel-wrapper {
      overflow: hidden;
      position: relative;
      border-radius: 10px;
      padding: 10px;
    }

    .gallery-track {
      display: flex;
      transition: transform 0.5s ease;
    }

    .gallery-item {
      padding: 10px;
      box-sizing: border-box;
      transition: all 0.3s ease;
    }

    .gallery-item a {
      display: block;
      overflow: hidden;
      border-radius: 8px;
    }

    .gallery-item img {
      width: 100%;
      height: 370px;
      object-fit: cover;
      display: block;
      border-radius: 8px;
    }

/* gallery end*/

/* order */

.flex-container {
  display: flex;
  flex-wrap: wrap;
}

/* Default (Mobile first): Show as first */
.order-mobile-first {
  order: 1;
}

/* Show after in mobile */
.order-mobile-last {
  order: 3;
}

/* Show in middle in mobile */
.order-mobile-middle {
  order: 2;
}

/* Desktop view (768px and up) */
@media (min-width: 768px) {
  .order-desktop-first {
    order: 1;
  }

  .order-desktop-middle {
    order: 2;
  }

  .order-desktop-last {
    order: 3;
  }
}


/* order */




/* profile page end */

/* ad saple box */

.home-adv-banner-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 6px;
}



.image-spot-banner-home {
    width: auto;
    position: relative;
    overflow: hidden;
    background: url(../images/ads-default-img.jpg);
    background-size: cover;
    height: 200px;
    margin: 3px 3px 0 3px;
}

.box-spot-banner-home {
    position: absolute;
    bottom: 0;
    left: 0;
    top: -10px;
    text-align: center;
    width: 100%;
    color: #fff;
    font-weight: 700;
    padding-bottom: 15px;
}

.box-spot-banner-txt-t-home, .box-spot-banner-txt-st-home {
    color: #fff;
    text-align: center;
    margin-bottom: 3px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 24px;
    margin-top: 10px;
}

.box-spot-banner-btn-home {
    margin: 10px auto 0 auto;
    text-align: center;
    display: table;
    font-size: 16px;
    background: #a5313173;
    padding: 10px 12px;
    color: #fff;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.box-spot-banner-btn-home:hover {
background: #a53131eb;}


.box-spot-banner-txt-t-home, .box-spot-banner-txt-st-home {
    color: #fff;
    text-align: center;    font-weight: normal;
    margin-bottom: 3px;
    font-size: 18px;
    text-transform: uppercase;
    font-size: 24px;
    margin-top: 10px;
}
.box-spot-banner-txt-t-home b {
    color: #fc0;
    display: block;    font-weight: normal;
    width: 100%;
    font-size: 32px;
}

/* ad saple box end*/

/* package PAGE */

 .grid-container {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }
    .location-box {
      background-color: #2a2a2a;
      text-align: center;
      padding: 20px;
      border: 1px solid #444;
      border-radius: 10px;
    }
    .flag-circle {
      background: white;
      width: 120px;
      height: 120px;
      border-radius: 50%;
      margin: 0 auto 10px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .flag-circle img {
      width: 70%;
      height: auto;
    }
    .see-prices {
      margin-top: 10px;
    }

    /* Responsive fallback for small devices */
    @media (max-width: 992px) {
      .grid-container {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media (max-width: 576px) {
      .grid-container {
        grid-template-columns: repeat(2, 1fr);
      }
    }
	
	
	/* price page start */
	
	 .pricing-card {
      border: 2px solid #dee2e6;
      border-radius: 12px;
      padding: 20px;
      transition: transform 0.3s ease;
    }
    .pricing-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    .pricing-title {
      font-size: 1.5rem;
      font-weight: bold;
      color: #333;
    }
    .price {
      font-size: 2rem;
      font-weight: bold;
      color: red;
    }
    .feature-list {
      list-style: none;
      padding: 0;
    }
.feature-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    color: #000;
}
    .btn-pay {
      background-color: red;
      color: #fff;
      border-radius: 25px;
      padding: 8px 20px;
      margin-top: 15px;
    }
	
	/* price page end */


/* escort main listing strat */

.escort-listbox{}

 .card-profile {
      border: none;
      border-radius: 10px;
      overflow: hidden;
      position: relative;
      background-color: #000;
      color: white;
      cursor: pointer;
    }

    .badge-custom {
      position: absolute;
      top: 10px;
      left: 10px;
      z-index: 10;
    }

    .badge-custom .badge {
      margin-bottom: 4px;
      display: inline-block;
    }

    .badge-vip {
      position: absolute;
      top: 10px;
      right: 10px;
      z-index: 10;
    }

    .card-img {
      width: 100%;
      height: auto;
      display: block;
    }

    .slide-info {
      position: absolute;
      bottom: -100%;
      left: 0;
      width: 100%;
      background: rgba(0, 0, 0, 0.9);
      padding: 1rem;
      transition: bottom 0.4s ease-in-out;
      z-index: 9;
    }

    .card-profile:hover .slide-info {
      bottom: 0;
    }

    .slide-info h5 {
      color: #ffc107;
      font-weight: bold;
    }

    .slide-info i {
      color: #ffc107;
      margin-right: 5px;
    }

    .footer-icons i {
      margin-right: 10px;
      color: #f44336;
    }

    .footer-icons i.available {
      color: #4caf50;
    }

/* escort main listing strat end*/
/* ads side */

.adsboxside{width:100%}

.adsbox-in {margin-bottom:10px}
.adsbox-in img{width:100%}

.escort-directory .accordion-button:focus {
  box-shadow: none;
  outline: none;
}


.accordion-button:not(.collapsed) {

    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 #535353;
}

/* ads side end */




/* small card */


/* Main card style */
.escort-cardbox {
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  position: relative;
}

/* Badge and Name base styles */
.escort-cardbox .escort-badge,
.escort-cardbox .escort-name {
  transition: opacity 0.4s ease, transform 0.4s ease;
  opacity: 1;
}

/* Hover effect: fade and slide down */
.escort-cardbox:hover .escort-badge,
.escort-cardbox:hover .escort-name {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}



.smallcard-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
	margin-bottom:15px;
}

.smallcard img {
  object-fit: cover;
  height: 200px;
}


/* second list */

 /* pagination start  */
 
.primedark-pagination .page-link {
  background-color: #1e1e1e;
  color: #fff;
  border: 1px solid #444;
  transition: background-color 0.3s, color 0.3s;
}

.primedark-pagination .page-link:hover {
  background-color: #333;
  color: #fff;
}

.primedark-pagination .page-item.active .page-link {
    background-color: #F44336;
    color: #fff;
    border-color: #E91E63;
}

.primedark-pagination .page-item.disabled .page-link {
  background-color: #2b2b2b;
  color: #777;
  border-color: #444;
}

.nav-link {
    display: block;
    padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
    font-size: var(--bs-nav-link-font-size);
    font-weight: var(--bs-nav-link-font-weight);
    color: rgb(255 255 255);
    text-decoration: none;
    background: 0 0;
    border: 0;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}

 /* pagination start end */

/* sgn up start  */

.card-custom {
    background-color: #f06292;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    color: #fff;
}
    .card-custom h5 {
      font-weight: bold;
    }
    .card-custom .btn-primary {
      background-color: #007bff;
      border: none;
    }
    .card-img-top {
      height: 220px;
      object-fit: cover;
    }
    .heading {
      text-align: center;
      font-size: 2rem;
      margin: 30px 0;
      color: #dcdcdc;
    }

/* form */

.signup-form {
      background-color: #2a2a2a;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 0 20px rgba(0,0,0,0.4);
      max-width: 500px;
      width: 100%;
	   border: 1px solid #444;
    }
	

    .form-check-label {
      font-size: 0.9rem;
    }

    .form-text {
      font-size: 0.85rem;
      color: #555;
    }

    .how-to-do {
      margin-top: 30px;
    }

    .how-to-do h6 {
      font-weight: bold;
      margin-bottom: 10px;
    }

    .how-to-do ul {
      padding-left: 18px;
      font-size: 0.9rem;
      color: #444;
    }
	
	    .how-to-do ul li{
    
      color: #fff;
    }

/* sgn up End */

/* Main card style */

.top-20 {
    top: 20% !important;
}
.bg-light-red {
  background-color: red !important;
}
.escort-cardbox2 {
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  position: relative;
}

/* Badge and Name base styles */
.escort-cardbox2 .escort-badge,
.escort-cardbox2 .escort-name {
  transition: opacity 0.4s ease, transform 0.4s ease;
  opacity: 1;
}

/* Hover effect: fade and slide down */
.escort-cardbox2:hover .escort-badge,
.escort-cardbox2:hover .escort-name {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}



/* smal card */
.newsmall-grid{    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
	margin-bottom:15px;}
.search-mid{ padding:1px 5px;}

.formbx select {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 16px;
    font-weight: 400;
    line-height: 17px;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    box-shadow: none;
    margin: 0;
}

.new-input input {
    display: block;
    width: 100%;
 
    padding: 0.375rem 0.75rem;
    font-size: 16px;
    font-weight: 400;
    line-height: 17px;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    box-shadow: none;
    margin: 0;
}

.formbx .form-control {
    display: block;
    width: 100%;
    height: 40px !important;
    padding: 0.375rem 0.75rem;
    font-size: 16px;
    font-weight: 400;
    line-height: 17px;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    border-radius: 0 !important;
    box-shadow: none;
    margin: 0;
}

.btn-primary-red {
    border-color: #ccc;
    background: #d32a6c;
    color: #fff;
    font-size: 14px;
    padding: 4px 9px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 3px;
    margin: 1px;
    line-height: inherit;
}

.btn-primary-red:hover{
    background: #ff0064;
    color: #fff;
}



.text-theme {
    font-weight: 700;
    color: #d32a6c !important;
    text-decoration: none;
    text-transform: uppercase;
}

.text-theme:hover {
    font-weight: 700;
    color: #ff0045 !important;
}


.findbtn {
    background-color: #d32a6c !important;
    border-radius: 3px;
    color: #fff !important;
    font-weight: normal !important;
    text-transform: uppercase;
    border: 0 !important;
    border-radius: 2px;
}
.radius3{border-radius: 2px!important;}
.pink{background:#d32a6c!important;}

        /* Font sizing */
        .escort-container h1 {
            font-size: 28px;
            color: #ff4081;
            font-weight:normal;
        }

        .escort-container p {
            font-size: 14px;
            color: #ddd;
        }
		
		.gallery-holder {
    position: relative;
    display: block;
}

ul.tag-holder li.available {
    background-color: #d4b657;
    color: black;
}
		
		.gallery-image::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.17);
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.17) 83%, rgba(0, 0, 0, 0.22) 84%, #000 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(83%, rgba(0, 0, 0, 0.17)), color-stop(84%, rgba(0, 0, 0, 0.22)), color-stop(100%, #000));
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.17) 83%, rgba(0, 0, 0, 0.22) 84%, #000 100%);
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0.17) 83%, rgba(0, 0, 0, 0.22) 84%, #000 100%);
    background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.17) 83%, rgba(0, 0, 0, 0.22) 84%, #000 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.17) 83%, rgba(0, 0, 0, 0.22) 84%, #000 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000', GradientType=0 );
}

	
	.profile-thumbnail .gallery-item-availebility {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    border-top: #ff2f86 1px solid;
    border-bottom: #ff2f86 1px solid;
    text-align: center;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2.6px;
    font-style: italic;
    font-weight: 400;
    padding: 4px 0;
    z-index: 12;
    color: #fff;
}

ul.tag-holder {
    position: absolute;
    display: flex;
    list-style: none;
    bottom: 32px;
    left: 10px;
    flex-direction: row;
    flex-wrap: wrap;
    z-index: 12;
    padding-left: 0;
}

ul.tag-holder li.available {
    background-color: #ff006b;
    color: black;
}
ul.tag-holder li {
    margin-right: .25rem;
    padding: .25rem .5rem .1rem .5rem;
}

ul.tag-holder li {
    font-weight: 500;
    color: #ff006b;
    background-color: black;
    margin-right: 5px;
    margin-top: 3px;
    padding: 3px 5px 3px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0px;
}

.lst-item {padding-top: 15px; position:relative}
.lst-item .esc-info-name {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.4px;;
	color:#ff4081;
}

.lst-item .esc-info div {
    text-align: left;
    font-size: 12px !important;
    line-height: 1.5;
	text-transform:uppercase;
}

.lst-item .sort-content {
    text-align: left;
    font-size: 12px !important;
    line-height: 1.5;
}

/*review*/
.profile-grid{
	display: grid;
	grid-template-columns: repeat(4, 1fr); /* 5 equal-width columns */
	gap: 6px; /* Space between cards */
}
 .profile-card {
      background-color: #000;
      color: #fff;
      text-align: center;
      padding: 20px;
      border-radius: 10px;
      margin: 20px auto;
    }
    
    .profile-card img {
      border-radius: 50%;
      width: 100px;
      height: 100px;
    }
    
    .profile-card h4 {
      margin-top: 15px;
      font-size: 1.2rem;
    }
    
    .profile-card .reviewed-by {
      font-size: 0.9rem;
      color: #ccc;
    }

    .profile-card .more {
      color: #d62b70;
      font-weight: normal;
      text-decoration: none;
    }

    .profile-card .more:hover {
      text-decoration: underline;
    }


ul.sidelist {
    list-style: none;
    padding-left: 0;
    text-transform: uppercase;
}
ul.sidelist li a{color: #000; text-decoration: none; line-height: 30px;}
ul.sidelist li a:hover{color: var(--bs-pink); text-decoration: none;}
/*review*/



    /* Style for the content section */
    .content-section {
      padding: 40px 20px;
     
	  text-align:justify;
	  text-transform:uppercase;
	font-size:15px;
	line-height:29px;
    }


    .content-section h1, .content-section h2, .content-section h3 {
      margin-bottom: 20px;
	      font-size: 24px;
	  
    }

    .content-section p {
      margin-bottom: 15px;
    }


    /* Style for the content section */

		/*slider*/
		
		.newly-listed-bg {
    background-color: #000;
    padding: 20px;
    width: 100%;
}

#newly-listed .box {
    background: #222222;
    text-transform: uppercase;
    border: 1px solid #333333;
}

#newly-listed .box .img-box {
    position: relative;
    overflow: hidden;
}

#newly-listed .img-box img {
    width: 100%;
    height: 260px;
    object-fit: cover
}

#newly-listed .text-box {
    text-align: left;
    padding: 5px;
}

#newly-listed .text-box .featured-box .featured {
    display: flex;
    align-items: center;
    text-transform: uppercase;
}

#newly-listed .featured-box .featured .title {
    background: #e50004;
    display: inline-block;
    width: 115px;
    font-size: 12px;
    text-align: center;
    rotate: -40deg;
    transform: translate(43px, 30px);
    position: absolute;
    right: 20px;
    bottom: 0px;
}

#newly-listed .featured-box .featured .play-icon svg {
    border-radius: 100%;
    font-size: 15px;
}

#newly-listed .text-box .name {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--prime-clr);
}

#newly-listed .text-box .av-now {
    color: #01cf01;
    float: right;
    text-transform: uppercase;
    padding: 0;
    font-size: 14px;
}

#newly-listed .text-box .name a {
    color: #fff
}

#newly-listed .text-box .verified svg {
    margin-right: 5px;
    vertical-align: middle
}

#newly-listed {
    position: relative
}

#newly-listed .text-box .type {
    font-size: 15px;
    color: #fff;
    text-transform: uppercase;
}

#newly-listed .text-box .type span {
    display: block;
}

#newly-listed .text-box .type a {
    color: #333
}

#newly-listed .text-box .rate {
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 700
}

#newly-listed .owl-theme .owl-nav {
    margin-top: 0;
	display:none;
}

#newly-listed .owl-theme .owl-nav button.owl-prev,#newly-listed .owl-theme .owl-nav button.owl-next {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    font-size: 30px;
    background: 0 0;
    outline: none;
    box-shadow: none
}

#newly-listed .owl-theme .owl-nav button.owl-prev {
    left: -50px;
    border: none;
    border-radius: 50%;
    height: 34px;
    width: 34px;
    background: #bb0003;
}

#newly-listed .owl-theme .owl-nav button.owl-next {
    right: -50px;
    border: none;
    border-radius: 50%;
    height: 34px;
    width: 34px;
    background: #bb0003;
}

#newly-listed .owl-theme .owl-nav button.owl-prev i, #newly-listed .owl-theme .owl-nav button.owl-next i {
    font-size: 19px;
    color: #000;
    padding-top: 2px;
}

#newly-listed .owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
    display: none;
}

.featured-box {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 5px;
    padding-right: 5px;
}

.featured-box .verified-pics {
    font-size: 13px;
    text-transform: uppercase;
    text-shadow: 2px 4px 5px rgb(0 0 0 / 95%);
}

.featured-box .featured {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    position: absolute;
    right: 0;
}

.featured-box .featured .title {
    font-family: var(--prime-font);
    background: #e50004;
    display: inline-block;
    width: 200px;
    font-size: 14px;
    text-align: center;
    rotate: -40deg;
    transform: translate(81px, 40px);
}

.featured-box .featured .play-icon svg {
    overflow: visible;
    background: #ffffff;
    border-radius: 100%;
    font-size: 20px;
    color: #e50004;
}

.svg-inline--fa {
    display: inline-block;
    font-size: inherit;
    height: 1em;
    overflow: visible;
    vertical-align: -0.125em;
    color: #fff;
    font-size: 14px;
}

		
		/*slider*/

		/*FOOTER*/
		
	
	footer{background-color: #000; color: #ccc; padding-top: 2rem;}
	
      footer a {
        color: #ccc;
        text-decoration: none;
        margin-right: 1rem;
        transition: color 0.3s ease;
      }

      footer a:hover {
        color: #fff;
        text-decoration: underline;
      }

      footer h5, footer h6 {
        margin-bottom: 1rem;
      }

      footer p {
        font-size: 0.9rem;
      }

      .footer-badges img {
        height: 40px;
        margin-right: 0.5rem;
      }

      .footer-bottom {
        font-size: 0.85rem;
        color: #888;
        margin-top: 1rem;
      }

      .footer-paragraph {
        font-size: 0.85rem;
        color: #bbb;
        margin-top: 2rem;
		text-align:justify;
      }

      hr {
        border-top: 1px solid #444;
      }
		
.footer {
    background-color: #121212;
    color: white;
    padding: 40px 0 0;
}
.border-line{;color: #303030;}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
}
.footer-card{text-transform: uppercase;}
.footer-card h5{font-weight: normal}
.footer-card ul li{line-height: 26px;}
.footer-card ul li a{font-size: 15px;}
.footer-card ul li a:hover{color: var(--bs-pink);}

    .footer a {
      color: #ccc;
      text-decoration: none;
    }
    .footer a:hover {
      color: #fff;
      text-decoration: underline;
    }
    .footer .logo {
      display: block;
	   
    }
    .footer .logo img {
      width: 200px;
      margin-right: 0px;
	   margin-bottom: 40px;
    }
    .footer .btn-contact {
		background-color: white;
		color: black;
		border-radius: 30px;
		font-weight: bold;
		text-transform: uppercase; 
		padding: 7px 20px;
		width: 170px;
		    margin: auto;
	  
    }

    .footer .btn-contact:hover {
		background-color: #ff4081;
		color: #fff;
    }
    .social-icons a {
      margin-right: 10px;
      font-size: 24px;
    }
    .social-icons a i {
      color: #ccc;
    }

/*social media*/
.social-share {
  list-style: none;
  padding: 0;
  margin: 4px 0;
  float: left
}

.svg-inline--fa {
    display: inline-block;
    font-size: inherit;
    height: 1em;
    overflow: visible;
    vertical-align: -0.125em;
    color: #fff;
    font-size: 14px;
}

ul.social-share li {
  float: left;
  padding: 5px
}
ul.social-share li a {
  color: #fff;
  float: left;
  margin: 3px;

  line-height: 30px;
  text-align: center;
  border-radius: 2px
}

.footer-bottomx{background-color: #0f0f0f;}
		
		/*FOOTER END -- HOMEPAGE CSS ENDE*/
		
		
		/*PROFILE PAGE CSS STRAT*/
	.h2, h2 {
        font-size: 1.7rem;
        font-weight: normal;
    }
	.stat-lable{line-height:29px; text-transform:uppercase;}
	/* Desktop layout */
#mySelfieGallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

#mySelfieGallery img {
  width: 100%;
  height: auto;
}

/* Mobile layout (responsive for smaller devices) */
@media (max-width: 768px) {
  #mySelfieGallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas: 
      "big big big"
      "small1 small2 small3"
      "small4 small5 small6";
    gap: 10px;
  }

  #mySelfieGallery a:nth-child(1) {
    grid-area: big;
  }

  #mySelfieGallery a:nth-child(2) {
    grid-area: small1;
  }

  #mySelfieGallery a:nth-child(3) {
    grid-area: small2;
  }

  #mySelfieGallery a:nth-child(4) {
    grid-area: small3;
  }

  #mySelfieGallery a:nth-child(5) {
    grid-area: small4;
  }


}

.info-block__heading {
    border-bottom: 2px solid #d32a6c;
    margin-bottom: 15px;
    padding: 10px 0;
}
.stat-facts-list {
    overflow: hidden;
    margin: 10px 0 0;
    font-size: 17px;
    line-height: 29px;
}

.stat-facts-list ul {
    padding: 0;
    /* margin-right: 27%; */
}
.stat-facts-list ul li {
    list-style: none;
    padding-left: 0;
    overflow: hidden;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 15px; color:#898989;
    text-transform: uppercase;
    line-height: 34px;
}

.stat-facts-list ul li a { text-decoration:none;
    font-weight: normal;
    color: #fff;font-weight: 700;
	    min-width: 250px;
}


.tag-clouds {
    list-style: none;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
}
.tag-clouds li {
    margin: 0 0 10px;
    padding: 0 10px 0 0;
}

.tag-clouds li a {
    display: block;
    padding: 10px 25px;
    font-size: 14px;
    background: none;
    color: #fff;
    border: #ffffff 1px solid;
    text-align: center;
    white-space: nowrap;
    font-weight: 300;
    border-radius: 0px;
	    text-decoration: none;
}


.content-profile {
    padding: 40px 20px;
    text-align: justify;
    text-transform: uppercase;
    font-size: 15px;
    line-height: 29px;
}

.content-profile h1, .content-profile h2, .content-profile h3, .content-profile h6 {
    margin-bottom: 20px;
    font-size: 24px;
}
	
	.content-profile p {
    margin-bottom: 15px;
}

.pnk-btn {
  border-radius: 2px; color:#fff; margin-bottom:15px;
  background-color: rgb(211, 42, 108);
}

.pnk-btn:hover { color:#fff;
  background-color:#ff0064;
}


/* #mySelfieGallery a:nth-child(n+2) { width: 33.333333%  } 
  #mySelfieGallery a:nth-child(n+2) img {
    width: 100%;
    padding: 10px 0px 0;
  }


*/

 


		
		/*PROFILE PAGE CSS STRAT END*/
		
		
		/*blog PAGE CSS STRAT*/
 .blog-item {
      background-color: #1e1e1e;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(255,255,255,0.05);
      transition: all 0.3s;
	      text-align: justify;
    }
    .blog-item:hover {
      box-shadow: 0 6px 20px rgba(255,255,255,0.1);
    }
    .blog-image {
      height: 100%;
      object-fit: cover;
      border-top-left-radius: 12px;
      border-bottom-left-radius: 12px;
	  
	     height: 250px;
      object-fit: cover;
      aspect-ratio: 16 / 9;
	  
    }
	.post-date {
    font-size: 0.9rem;
    color: #9a9a9a; 
    margin-bottom: 0.5rem;
  }
    .read-more {
      color: #f06292;
      font-weight: 500;
      text-decoration: none;
    }
    .read-more:hover {
      text-decoration: underline;
    }
    .sidebar {
      background-color: #1a1a1a;
    }
    .sidebar a {
      color: #ccc;
    }
.sidebar a {
    color: #ccc;
    text-transform: uppercase;
    line-height: 36px;
}


.blog-details {
  background-color: #1e1e1e; /* Dark card-style background */
  padding: 1rem;
  border-radius: 12px; text-align:justify;

}

.blog-details .blog-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

		/*blog PAGE CSS STRAT END*/
		
		
		
		

        /* Responsive Grid */
        @media (max-width: 1200px) {
            .escort-grid {
                grid-template-columns: repeat(4, 1fr); /* Adjust to 4 columns on smaller screens */
            }
			
			.profile-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;}
			.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;}
			.header-drop .city-prime ul li {  list-style: none; width: 20%; text-transform: uppercase;}
			
				.home-adv-banner-grid {	grid-template-columns: repeat(3, 1fr); gap: 6px;}
			.smallcard-grid { grid-template-columns: repeat(3, 1fr); gap: 10px;  margin-bottom: 15px;}
			.newsmall-grid { grid-template-columns: repeat(3, 1fr);  gap: 10px; margin-bottom: 15px;}
			
        }

        @media (max-width: 992px) {
			
				.home-adv-banner-grid {	grid-template-columns: repeat(3, 1fr); gap: 6px;}
			.smallcard-grid { grid-template-columns: repeat(3, 1fr); gap: 10px;  margin-bottom: 15px;}
			.newsmall-grid { grid-template-columns: repeat(3, 1fr);  gap: 10px; margin-bottom: 15px;}
			
			
            .escort-grid {
                grid-template-columns: repeat(3, 1fr); /* Adjust to 3 columns on smaller screens */
            }
			
			.profile-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;}
			.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;}
			
		.content-section h1, .content-section h2, .content-section h3 {margin-bottom: 20px;font-size: 20px;}
			.header-drop .city-prime ul li {  list-style: none;    width: 25%; text-transform: uppercase;}
			
        }

        @media (max-width: 768px) {
			
			.home-adv-banner-grid {	grid-template-columns: repeat(3, 1fr); gap: 6px;}
			.smallcard-grid { grid-template-columns: repeat(3, 1fr); gap: 10px;  margin-bottom: 15px;}
			.newsmall-grid { grid-template-columns: repeat(3, 1fr);  gap: 10px; margin-bottom: 15px;}
			
			
			
            .escort-grid {
                grid-template-columns: repeat(2, 1fr); /* Adjust to 2 columns on smaller screens */
            }
			.footer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;}
			.profile-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;}
			
			.content-section h1, .content-section h2, .content-section h3 {font-size: 18px;		}
			
		.header-drop .city-prime ul li {
    list-style: none;
    width: 33%;
    text-transform: uppercase;
}
			
			
        }

        @media (max-width: 576px) {
			
			.home-adv-banner-grid {	grid-template-columns: repeat(2, 1fr); gap: 6px;}
			.smallcard-grid { grid-template-columns: repeat(3, 1fr); gap: 10px;  margin-bottom: 15px;}
			.newsmall-grid { grid-template-columns: repeat(3, 1fr);  gap: 10px; margin-bottom: 15px;}
			
			
            .escort-grid {
                grid-template-columns: repeat(2, 1fr); /* Adjust to 1 column on mobile */
            }
			.footer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;}
			.profile-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;}
			.content-section h1, .content-section h2, .content-section h3 {font-size: 17px;}
			#newly-listed { padding: 0;}
			
			
			.escort-container h1 {  font-size: 18px; color: #ff4081; font-weight: normal;}
			
				.filter-section { position:static;  height: auto;}
			.header-drop .city-prime ul li {
    list-style: none;
    width: 50%;
    text-transform: uppercase;
}

.stat-facts-list ul li a {
    min-width: 180px;
}

.h2, h2 {
    font-size: 1.2rem;
    font-weight: normal;
}

.findbtn {
    font-size: 12px;
}

.content-profile {
    padding: 20px 0px;
    text-align: justify;
    text-transform: uppercase;
    font-size: 15px;
    line-height: 29px;
}
			
        }
