:root{
  --bg:#121216;
  --card:#1b1b22;
  --accent:#d81b60;
  --muted:#b0b0b0;
}
body{
  background:var(--bg);
  color:#fff;
  font-family:Poppins,Arial,sans-serif;
}

.container-fluid {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 95%!important;}

/* NAVBAR */
.navbar{
  background:rgba(0,0,0,.85);
  backdrop-filter:blur(6px);
}
.navbar-brand{
  font-weight:700;
  color:var(--accent)!important;
}
.nav-link{color:#ddd!important;font-size:14px;}

/* HERO */
.hero {
    padding: 150px 0 90px;
    background: linear-gradient(rgb(244 67 54 / 65%), rgba(10, 10, 15, .9)), url(../images/bg-banner.jpg) center / cover no-repeat;
}
.hero h1{font-size:42px;font-weight:700;}
.hero p{color:var(--muted);}
.hero-search{
  background:rgba(27,27,34,.9);
  border-radius:18px;
  padding:25px;
  box-shadow:0 20px 60px rgba(0,0,0,.6);
}
/* .form-select{background:#0f0f14;border:1px solid #222;color:#fff;} */
.section-heading {
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
}
/* FILTER */
.filter-box{
  background:var(--card);
  border-radius:16px;
  padding:20px;
  position:sticky;
  top:90px;
}

.btn-primary-red {
    border-color: #ccc;
    background: #ff0b62;
    color: #fff;
    font-size: 14px;
    padding: 4px 9px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 1px;
    margin: 1px;
    height: 30px;
    line-height: inherit;
}

.btn-primary-red:hover {
    color: #fff;
    background-color: #ff0b62;
    border-color: var(--bs-btn-hover-border-color);
}

.h40 {
    height: 40px !important;
}

/* CARDS */
.profile-card{
  background:var(--card);
  border-radius:22px;
  overflow:hidden;
  transition:.3s;
  box-shadow:0 15px 40px rgba(0,0,0,.5);
}
.profile-card:hover{transform:translateY(-6px);}
.profile-img{position:relative;}
.profile-img img{width:100%;height:300px;object-fit:cover;}
.tag{
  position:absolute;top:15px;left:15px;
  background:var(--accent);
  padding:5px 12px;
  border-radius:30px;
  font-size:12px;
}




/*Profile card css*/

.location {
  display: block;
  font-size: 13px;
  color: #bfbfbf;
  margin-bottom: 8px;
}

.profile-meta {
  font-size: 13px;
  color: #d0d0d0;
  line-height: 1.6;
  margin-bottom: 10px;
}

.profile-meta div {
  position: relative;
  padding-left: 14px;
}

.profile-meta div::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ff4b8f;
}

.price {
  font-size: 18px;
  font-weight: 600;
  color: #ff4b8f;
  margin: 10px 0;
}

.services {
  font-size: 12.5px;
  color: #bdbdbd;
  line-height: 1.5;
}

.top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.title-area h5 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.price-inline {
  font-size: 16px;
  font-weight: 600;
  color: #ff4b8f;
  white-space: nowrap;
}

.location {
  display: block;
  font-size: 13px;
  color: #bfbfbf;
}


/*Profile card css end*/

/*content section css */


.escort-content-section {
  background: #ffffff;
  padding: 40px 0;
  font-family: Arial, Helvetica, sans-serif;
}

.escort-content-section .container {
  max-width: 1100px;
  margin: auto;
}

.escort-content-section h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000;
}

.escort-content-section p {
  font-size: 15px;
  line-height: 1.8;
  color: #000;
  margin-bottom: 18px;
}

.highlight-red {
  color: #e60023;
  font-size: 18px;
  font-weight: 700;
  margin: 30px 0 15px;
}

.highlight-blue {
  color: #0a58ca;
}

.content-link {
  color: #0a58ca;
  text-decoration: underline;
}

.content-link:hover {
  color: #084298;
}
.text-justify {
  text-align: justify;
}
/*content section css */


.card-body-custom{padding:20px;}
.card-body-custom h5{margin:0;font-weight:600;}
.card-body-custom span{font-size:13px;color:var(--muted);}
.btn-main{background:var(--accent);border:none;border-radius:12px;color:#fff;}
.btn-outline{border:1px solid #333;color:#fff;border-radius:12px;}

/* LIST VIEW */
.list-view{--bs-gutter-x:0;}
.list-view > [class*="col-"]{width:100%!important;max-width:100%!important;}
.list-view .profile-card{display:flex;height:220px;}
.list-view .profile-img{flex:0 0 260px;}
.list-view .profile-img img{height:260px;}
.list-view .card-body-custom{flex:1;}

/* BLOG */

.blog-card {
  background: #0b0b0b;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.8);
}

/* Image */
.blog-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(90deg, #ff4b8f, #ff005a);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}

/* Body */
.blog-body {
  padding: 15px;
}

.blog-body h5 {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.blog-body .meta {
  display: block;
  font-size: 12px;
  color: #bfbfbf;
  margin-top: 4px;
}

/* Excerpt */
.blog-excerpt {
  font-size: 13.5px;
  color: #d0d0d0;
  line-height: 1.6;
  margin-top: 10px;
}

/* Button reuse */
.btn-main {
  background: linear-gradient(90deg, #ff4b8f, #ff005a);
  border: none;
  color: #fff;
  border-radius: 25px;
}

/* sidebar */

/* STICKY SIDEBAR */
.col-md-2 {
    position: sticky;
    top: 20px;
}

/* SIDEBAR BOX */
.blog-sidebar {
    background: #0f1115;
    border-radius: 14px;
    padding: 18px 14px;
    border: 1px solid #1e222a;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
}

/* TITLE */
.sidebartitle-heading {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid #252a34;
    position: relative;
}

/* GRADIENT LINE */
.sidebartitle-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, #ff4b8f, #ff005a);
}

/* LIST */
.blog-sidebar ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.blog-sidebar ul li {
    margin-bottom: 10px;
}

/* LINK */
.blog-sidebar ul li a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    font-size: 14px;
    color: #cfd3dc;
    text-decoration: none;
    border-radius: 10px;
    background: #161a22;
    border: 1px solid #232836;
    transition: all 0.3s ease;
}

/* ICON */
.blog-sidebar ul li a::before {
    content: "▸";
    font-size: 14px;
    color: #ff005a;
    transition: transform 0.3s ease;
}

/* HOVER GRADIENT */
.blog-sidebar ul li a:hover {
    background: linear-gradient(90deg, #ff4b8f, #ff005a);
    color: #ffffff;
    padding-left: 16px;
    box-shadow: 0 0 18px rgba(255, 0, 90, 0.6);
    border-color: transparent;
}

.blog-sidebar ul li a:hover::before {
    color: #ffffff;
    transform: translateX(4px);
}

/* ACTIVE */
.blog-sidebar ul li a.active {
    background: linear-gradient(90deg, #ff4b8f, #ff005a);
    color: #ffffff;
    font-weight: 500;
}

/* MOBILE */
@media (max-width: 768px) {
    .col-md-2 {
        position: static;
    }

    .sidebartitle-heading {
        font-size: 15px;
    }

    .blog-sidebar ul li a {
        font-size: 13px;
    }
}


/* sidebar end*/

/* blog details page */

/* HERO IMAGE */
.blog-details-hero {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 25px;
}

.blog-details-hero img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.blog-details-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 20px;
    color: #fff;
    background: linear-gradient(90deg, #ff4b8f, #ff005a);
}

/* HEADER */
.blog-details-header h1 {
    color: #ffffff;
    font-size: 32px;
    margin-bottom: 10px;
}

.blog-meta {
    color: #9aa0ac;
    font-size: 14px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* BODY */
.blog-details-body {
    margin-top: 30px;
    color: #d1d5db;
    line-height: 1.8;
    font-size: 16px;
}

.blog-details-body h3 {
    margin-top: 35px;
    margin-bottom: 12px;
    color: #ffffff;
    position: relative;
}

.blog-details-body h3::after {
    content: "";
    display: block;
    width: 45px;
    height: 2px;
    margin-top: 6px;
    background: linear-gradient(90deg, #ff4b8f, #ff005a);
}

.blog-details-body .lead {
    font-size: 18px;
    color: #e5e7eb;
	    text-align: justify;
}

/* BLOCKQUOTE */
.blog-details-body blockquote {
    margin: 30px 0;
    padding: 20px 25px;
    background: #161a22;
    border-left: 4px solid #ff005a;
    font-style: italic;
    color: #f1f1f1;
    border-radius: 8px;
}

/* FOOTER */
.blog-details-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #262a35;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.blog-details-footer a {
    color: #ff4b8f;
    margin-left: 8px;
    text-decoration: none;
    font-size: 14px;
}

.blog-details-footer a:hover {
    color: #ff005a;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .blog-details-hero img {
        height: 260px;
    }

    .blog-details-header h1 {
        font-size: 24px;
    }
}


/* blog details page end */

/* BLOG */

/* new Ads PAGE */


/* escorts-profile post */


		/* escort profile post */
		
		


/* progress bar */

.selser {  filter: hue-rotate(231deg);}

.advertiser-in-list ul li {
    list-style: none;
    width: 100%;
    float: left;
    line-height: inherit;
    font-weight: normal;
    background-color: #fff;
    box-shadow: 0 1px 4.75px 0.25px rgb(0 0 0 / 7%);
    padding: 7px 10px 7px 10px;
    margin: 1px 0;
    text-align:left;
	
}
.advertiser-in-list ul li a span{ color:#f52577;}

a.adbtn {
    border: 1px solid #d32a6c;
    padding: 1px 6px;
    background: #d32a6c;
    color: #fff!important;
    border-radius: 0px;
    cursor: pointer;
    font-size: 12px;
}

.advertiser-in-list ul li a{ font-weight: normal; text-decoration:none;  color: #000;}

.green-color { background: #ff075f; color: #ffffff !important; border: none;}
.green-color:hover { background: #13a735;}
.txt-green{color:#000}
    
	#progress-bar {
    border-radius: 2px;
    width: 50%;
    height: 24px;
    background-color: #ddd;
    margin: 0 auto;
}

    #progress {    border-radius:2px;
      width: 50%;
      height: 100%;
      background-color: #EF5350;
	  background-color: #4CAF50;
      text-align: center;
      color: white;
      transition: width 1s ease-in-out;

    }
	
	.slidedown-content {
     display: none;
    }
	
.slidedown-content #accordion-postad .panel-heading a::after {
    content: "";
    border: solid #000;
    border-width: 0 4px 4px 0;
    display: inline-block;
    padding: 3px;
    position: absolute;
    right: 40px;
    top: 13px;
    transform: rotate(45deg);
}
.dot-red{color: #ff2f2f!important; padding-top: 5px; font-size: 10px;  float: right;  position: absolute; top: 31%; right: 15px;  z-index: 99;}
	.dot-green {
    padding-top: 5px;
    color: green!important;
    font-size: 10px;
    float: right;
    position: absolute;
    top: 31%;
    right: 15px;
    z-index: 99;
}

.pointer{cursor:pointer;}
.advertiser-in-list ul.esc-pro-pst {
    background: #f8f9fa;
    padding: 10px 7px;
    border-radius: 4px;
}

/* /* progress bar */


.profile-box {
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .profile-box h4 {
      font-weight: bold;
      color: #000;
    }

.progress {
    background-color: #e9ecef;
    border-radius: 20px;
    height: 25px;
}

    .progress-bar {
      background-color: #ff075f;
      font-size: 16px;
      line-height: 35px;
      font-weight: bold;
    }

.main-content .list-group-item {
    border: none;
    padding: 2px 10px;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

  .main-content .list-group-item:hover {
      background-color: #e9ecef;
      cursor: pointer;
    }

    .main-content .list-group-item a {
      font-weight: bold;
      color: #343a40; font-size:14px;
      text-decoration: none;
    }

    .main-content .list-group-item a:hover {
      color: #28a745;
    }

.btn-success {
    font-size: 18px;
    padding: 6px 0;
    background-color: #28a745;
    border: none;
    border-radius: 50px;
}

    .btn-success:hover {
      background-color: #218838;
    }

    .main-content h2 {
      font-weight: bold;
      color: #343a40;
    }

    .main-content p {
      color: #6c757d;
      font-size: 16px;
    }

.main-content h5 {
    margin-top: 10px;
    font-size: 16px;
    color: #343a40;
}


/* accordian */
#accordionPanelsStayOpen .accordion-item{
	border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
	border-radius:0;
	margin-bottom:3px;
}

#accordionPanelsStayOpen .accordion-item h2{
display: block;
    position: relative;
    font-weight: bold;
    text-decoration: none;
    
    background-color: #fff;
    box-shadow: 0 1px 4.75px 0.25px rgb(0 0 0 / 7%);
	border-radius:0;
}

#accordionPanelsStayOpen .accordion-item h2 button{
	padding:6px 15px; color: #000;
}

.accordion-button:focus{box-shadow:none;}

#accordionPanelsStayOpen .accordion-item h2 button {
    padding: 6px 40px 6px 15px;
    color: #000;
}


/* services list ul */

.checklist ul { list-style: none; padding: 5px 0px 0; margin-bottom:0}
.checklist ul li {width: 20%; float: left; line-height: 27px; font-weight: normal;  margin-bottom: 5px;}
.checklist ul li input{width:19px; height:19px; border-radius:0;}
.checklist ul li a {color: #f41010;  font-size: 13px;  text-transform: uppercase;}

/* services list ul */

.accordion-item{position:relative;}

.slidedown-content .accordion-button {
    background-color: #ffffff;
    color: #ddd;
    padding: 13px 15px;
    text-transform: uppercase;
}
		
		/* escort profile post  end*/
		
		 
  /* =========ADS PAGE======== */

.tabbx .nav-tabs>li>a {
    border-radius: 0;
    font-size: 15px;
    font-weight: 700;
    color: #00397a;
    padding: 7px 15px;
    margin: 10px 0 0;
    background: #fff;
    border: 1px solid #ccc;
    line-height: 19px;
	height:auto;
}


.tabbx .nav-tabs>li.active>a {
    background: var(--logy-nav-tabs-link-active-color);
    color: #fff;
}

.ads-page .nav-tabs .nav-link {
	font-weight:700;
	border-radius:0;
    color:var(--logy-nav-tabs-link-color);
	border-color: var(--enb-nav-tabs-link-active-border-color);
}

.ads-page .nav-tabs .nav-link.active {
    color:#fff;
    background-color: var(--logy-nav-tabs-link-active-color);
    border-color: var(--enb-nav-tabs-link-active-border-color);
}
.tab-content h3{color:#111;}
.tab-content span.red{color:#d32a6c ;}
.content-in p{color:#333;}
.offer-card {
    border-width: 1px;
    border-color: #ccc;
    border-style: solid;
    background-color: #041c38;
    color: #fff;
    padding: 10px 5px;
    font-size: 15px;
    line-height: 29px;
    text-transform: uppercase;
    margin: 10px 0;
    display: inline-block;
}

.adinfo-btn {  padding: 4px 0px; font-size: 13px;  border-radius: 0;}
.adinfo-btn span {
    background: #ededed;
    border-radius: 2px; padding:2px 10px;	
    margin:0px 7px 5px 0;
    border: 1px solid #dbdbdb; cursor:pointer;
}

.ads-page .list-view .escbx-data{ max-height: inherit;}
.ads-page .list-view .fullhalf .esc-grid { max-height: 259px; height:auto;}



.tox-notification--warning, .tox-notification{display:none!important;}


.offer-card {
    border-width: 1px;
    border-color: #ccc;
    border-style: solid;
    background-color: #d32a6c;
    color: #fff;
    padding: 10px 5px;
    font-size: 15px;
    line-height: 29px;
    text-transform: uppercase;
    margin: 10px 0;
    display: inline-block;
}


		/*Ads end*/
		.svg-inline--fa {
    display: inline-block;
    font-size: inherit;
    height: 1em;
    overflow: visible;
    vertical-align: -0.125em;
    color: #fff;
    font-size: 14px;
}

.text-theme {
    font-weight: 700;
    color: #d32a6c !important;
    text-decoration: none;
    text-transform: uppercase;
}

/* escorts-profile post end*/

/* ===== PAGE BASE ===== */


.adpage{background: #fff;
    float: left;
    padding: 10px;}

/* ===== TOP MAIN TABS ===== */
.tabbable-line > .nav-tabs {
    border: none;
    background: #fff;
    padding: 10px;
    justify-content: center;
}

.tabbable-line > .nav-tabs > li {
    margin: 0 3px;
}

.tabbable-line > .nav-tabs > li > a {
    border: 1px solid #ccc;
    padding: 8px 18px;
    font-weight: 700;
    color: #e10000;
    background: #fff;
}

.tabbable-line > .nav-tabs > li > a.active {
    background: #e10000;
    color: #fff;
    border-color: #e10000;
}

/* ===== WELCOME DASHED BOX ===== */
.retro-box {
    background: #fff2f2;
    border: 3px dashed #ff0066;
    border-radius: 12px;
    padding: 25px 30px;
    margin: 20px auto 40px;
    max-width: 95%;
}

.retro-box h5 {
    font-size: 22px;
    font-weight: 700;
}

.retro-box h5 span {
    color: #ff0000;
}

.retro-box p {
    font-size: 15px;
    line-height: 1.7;
}

.retro-box a {
    color: #00a650;
    font-weight: 700;
}

/* remove inner dashed lines */
.retro-box .line {
    display: none;
}

/* ===== MANAGE ADS TITLE ===== */
#tab_default_1 h1 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* ===== ACTION BUTTONS ===== */
.tabin-tab {
    display: flex;
    justify-content: center;
    border: none;
    margin-bottom: 20px;
}

.tabin-tab li {
    margin: 0 5px;
}

.tabin-tab li a {
    border: 1px solid #ccc;
    padding: 8px 14px;
    font-weight: 700;
    background: #fff;
    color: #e10000;
}

.tabin-tab li.active a {
    background: #e10000;
    color: #fff;
    border-color: #e10000;
}

.tabin-tab img {
    height: 18px;
    margin-right: 6px;
}

/* ===== NO ADS TEXT ===== */
.simpl-txt {
    font-size: 18px;
    font-weight: 700;
    color: #ff0000;
    margin: 25px 0;
}

/* ===== GREY EMPTY BOX ===== */
.profile-adslst {
    background: #d9d9d9;
    padding: 30px 10px;
    text-align: center;
}

.profile-adslst span,
.profile-adslst a {
    color: #ff0000;
    font-size: 16px;
    font-weight: 700;
}

.profile-adslst a {
    display: block;
    margin-top: 10px;
    text-decoration: none;
}

/* ===== REMOVE EXTRA BORDERS ===== */
.tab-content {
    border: none;
    background: transparent;
    padding: 0;
}



/* new Ads PAGE end */

/*PROFILE PAGE*/

.profile-page {
  /* background: #000; */
  color: #fff;
  padding: 40px 0;
}

/* Gallery */
.profile-gallery img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

/* Info Box */
.profile-info {
  background: #0b0b0b;
  border-radius: 16px;
  padding: 25px;
}

.profile-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.profile-header h1 {
  font-size: 28px;
  margin: 0;
}

.verified {
  background: #1e1e1e;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
}

.price {
  margin-left: auto;
  font-size: 20px;
  font-weight: 700;
  color: #ff4b8f;
}

.location {
  margin: 15px 0;
  color: #bfbfbf;
}

.quick-info {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 17px;
  color: #d0d0d0;
}

.availability {
  margin: 15px 0;
  font-size: 14px;
}

/* Buttons */
.cta-buttons {
  display: flex;
  gap: 10px;
}

.btn-main {
  background: linear-gradient(90deg, #ff4b8f, #ff005a);
  border: none;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
}

.btn-outline {
  border: 1px solid #444;
  color: #fff;
  background: transparent;
  padding: 10px 20px;
  border-radius: 25px;
}

/* Sections */
.profile-section {
  margin-top: 40px;
}

.profile-section h2 {
  font-size: 22px;
  margin-bottom: 15px;
}

.service-list {
  list-style: none;
  padding: 0;
}

.service-list li {
  padding: 6px 0;
  color: #d0d0d0;
}

/* Utility */
.text-justify {
  text-align: justify;
}


.dark-contact {
  background: #0b0b0b;
  border-radius: 12px;
  padding: 18px;
  margin-top: 30px;
  color: #d0d0d0;
  box-shadow: 0 8px 25px rgba(0,0,0,0.6);
}

/* Note text */
.dark-contact .contact-note {
  font-size: 13px;
  line-height: 1.7;
  color: #bfbfbf;
  margin-bottom: 15px;
}

/* Table */
.dark-contact .contact-table {
  border-top: 1px solid #222;
}

.dark-contact .row-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 6px;
  border-bottom: 1px solid #222;
}

/* Labels & values */
.dark-contact .label {
  color: #d0d0d0;
}

.dark-contact .value {
  color: #ffffff;
  font-weight: 600;
}

/* Links */
.dark-contact .link {
  color: #ff4b8f;
  font-weight: 600;
  text-decoration: none;
}

.dark-contact .link:hover {
  text-decoration: underline;
}

/* Highlight row */
.dark-contact .row-item.highlight {
  background: rgba(255, 75, 143, 0.08);
  border-radius: 6px;
  margin-top: 6px;
}


.profile-section {
  margin-top: 40px;
}

/* Headings */
.section-heading {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

/* About */
.about-section p {
  color: #d0d0d0;
  line-height: 1.8;
}

/* Services */
.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  padding: 8px 0;
  color: #d0d0d0;
  font-size: 14px;
  position: relative;
  padding-left: 18px;
}

.service-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ff4b8f;
}

/* Grid version */
.service-list.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 20px;
}

/* Preferences */
.preference-text {
  color: #d0d0d0;
  line-height: 1.7;
}

/* GALLERY */


/* Profile page  */
.blck-btn {
    color: #fff!important;
    background-color: #383838;
    border-color: #000;
}




.blck-btn:hover {opacity: 0.7;}
.smpl-btn:hover {opacity: 0.8;}
.profile-main {
  background-color: rgb(255, 255, 255);
    padding: 10px;
    border: 1px solid #222;

}

.blck-btn {
    color: #fff!important;
    background-color: #383838;
    border-color: #000;
}


#mySelfieGallery a:nth-child(n+2) {
    /* width: 33.333333% */
	 width: 25%;
  }
  
  #mySelfieGallery a{ padding-left:0!important; }
 
  #mySelfieGallery a:nth-child(n+2) img {
    width: 100%;
    padding: 10px 0px 0;
  }


  .divider-line {
    border-top: 1px solid #eee;
    margin-top: 10px;
    margin-bottom: 10px;
    float: left;
    width: 100%;
}

.naughty-sec h2 {
  color: #000;
  font-size: 22px;
  margin: 5px 0;
  font-weight: 500;
  text-transform: capitalize;
}
.naughty-sec h2.subtitle {
  font-size: 18px;
}

.naughty-sec .col-4 {
  padding: 0;
}
.naughty-sec .small-thumbnail {
  margin: 2px;
}
.naughty-sec .img-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ccc;
}
.naughty-sec .small-thumbnail .img-box img {
  height: 90px;
  width: 100%;
  object-fit: cover;
  padding: 2.5px;
  -webkit-filter: blur(4px);
  filter: blur(4px);
}
.naughty-sec .play-icon {
  color: #fff;
  position: absolute;
  z-index: 1;
  font-size: 20px;
  background: 0 0!important;
}
.gallery-note {
  clear: left;
  padding: 4px 0;
  font-size: 12px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}


.videos-sec h2 {
  color: #000;
  font-size: 22px;
  margin: 5px 0;
  font-weight: 500;
  text-transform: capitalize
}

.videos-sec .play-icon .-big {
  font-size: 50px!important
}

.videos-sec .share-btn {
  color: #000;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  margin-top: 5px
}

.videos-sec .share-btn .fa {
  font-size: 20px;
  text-align: center;
  text-decoration: none;
  color: #e50003
}

.videos-sec .share-btn .img-box {
  margin-left: 5px
}

.videos-sec .share-btn .img-box img {
  height: 25px;
  width: 25px;
  border-radius: 100%;
  margin: 0 3px
}

.videos-sec .img-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width:100%;
}
.video-thumb{margin: 2px;}

.videos-sec .play-icon.-big {
  font-size: 50px
}

.videos-sec .play-icon {
  color: #fff;
  position: absolute;
  z-index: 1;
  font-size: 20px;
  background: 0 0!important
}

.videos-sec .play-icon svg {
  background: 0 0!important
}

.videos-sec .img-box.big img {
  width: 100%;
  height: 225px;
  padding: 2.5px;
  object-fit: cover
}

.videos-sec .col-4 {
  padding: 0
}

.videos-sec .small-thumbnail .img-box img {
  height: 90px;
  width: 100%;
  object-fit: cover;
  padding: 2.5px
}

.videos-sec .small-thumbnail .img-box.nauty-vid {
  border: 1px solid #ccc;
  margin: 2px
}

.videos-sec .small-thumbnail .img-box.nauty-vid img {
  height: 90px;
  width: 100%;
  object-fit: cover;
  padding: 2.5px;
  -webkit-filter: blur(4px);
  filter: blur(4px)
}

.videos-sec .img-box.big {
  position: relative
}

.videos-sec .img-box.big::after {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.5)
}

.videos-sec h2.subtitle {
  font-size: 18px
}

.videos-sec h2.subtitle b {
  font-size: 20px
}

.videos-sec h2 a {
  color: #000
}


/* GALLERY */


/*PROFILE PAGE*/


/*LOGIN & REGISTER*/

/* =========================
   AUTH PAGES – ISOLATED CSS
   Parent: .auth-wrapper
========================= */

.auth-wrapper { text-align:center;
}

/* Login page width (small) */
.auth-wrapper .auth-box.auth-login {
  max-width: 420px;
}

/* Register page width (large) */
.auth-wrapper .auth-box.auth-register {
  max-width: 800px;
}

/* Page layout */
.auth-wrapper .auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 15px;
}

/* Box */
.auth-wrapper .auth-box {
  background: #0b0b0b;
  padding: 35px;
  border-radius: 16px;
  width: 100%;
  max-width: 420px;
  /* box-shadow: 0 15px 40px rgba(0,0,0,0.7); */
  color: #fff;
  margin: 0 auto;
}

/* Titles */
.auth-wrapper .auth-title {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 5px;
}

.auth-wrapper .auth-subtitle {
  font-size: 13px;
  color: #bfbfbf;
  text-align: center;
  margin-bottom: 25px;
}

/* Form */
.auth-wrapper .form-group {
  margin-bottom: 15px;
}

.auth-wrapper .form-group label {
  font-size: 13px;
  margin-bottom: 5px;
  display: block;
  color: #d0d0d0;
}

.auth-wrapper .form-group input {
  width: 100%;
  padding: 10px 14px;
  border-radius: 25px;
  border: none;
  outline: none;
  background: #1a1a1a;
  color: #fff;
  font-size: 14px;
}

.auth-wrapper .form-group input::placeholder {
  color: #888;
}

/* Links */
.auth-wrapper .auth-links {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
}

.auth-wrapper .auth-links a {
  font-size: 12.5px;
  color: #ff4b8f;
  text-decoration: none;
}

.auth-wrapper .auth-links a:hover {
  text-decoration: underline;
}

/* Button override safe */
.auth-wrapper .btn-main {
  background: linear-gradient(90deg, #ff4b8f, #ff005a);
  border: none;
  color: #fff;
  border-radius: 25px;
}

.auth-wrapper .terms-check {
  font-size: 12.5px;
  color: #bfbfbf;
  display: flex;
  gap: 8px;
  align-items: center;
}

.auth-wrapper .terms-check input {
  accent-color: #ff4b8f;
}

/* =====================================
   REGISTER PAGE ONLY
   Parent: .auth-wrapper
===================================== */


/* Register card */
.auth-wrapper .auth-box {
  background: #0b0b0b;
  padding: 35px;
  border-radius: 18px;
  width: 100%;
  max-width: 800px;
  /* box-shadow: 0 15px 40px rgba(0,0,0,0.7); */
  color: #fff;
}

/* Title */
.auth-wrapper .auth-title {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 6px;
}

.auth-wrapper .auth-subtitle {
  font-size: 13px;
  color: #bfbfbf;
  text-align: center;
  margin-bottom: 25px;
}

/* Form fields */
.auth-wrapper .auth-form input,
.auth-wrapper .auth-form select {
  width: 100%;
  padding: 12px 16px;
  border-radius: 25px;
  border: none;
  outline: none;
  background: #1a1a1a;
  color: #fff;
  font-size: 14px;
  margin-bottom: 12px;
}

.auth-wrapper .auth-form input::placeholder {
  color: #888;
}

.auth-wrapper .auth-form select {
  appearance: none;
  cursor: pointer;
}

/* RADIO BUTTON – USER TYPE */
.auth-wrapper .user-type {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}

.auth-wrapper .type-option {
  flex: 1;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 25px;
  padding: 12px 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.auth-wrapper .type-option input {
  display: none;
}

.auth-wrapper .type-option span {
  color: #bfbfbf;
  font-size: 13px;
  font-weight: 600;
}

/* ✅ FULL ACTIVE BOX */
.auth-wrapper .type-option:has(input:checked) {
  background: linear-gradient(90deg, #ff4b8f, #ff005a);
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(255, 75, 143, 0.45);
}

.auth-wrapper .type-option:has(input:checked) span {
  color: #fff;
}

/* Hint text */
.auth-wrapper .hint-text {
  font-size: 12px;
  color: #9a9a9a;
  margin: -5px 0 12px;
}

/* Terms */
.auth-wrapper .terms-text {
  font-size: 12px;
  color: #bfbfbf;
  text-align: center;
  margin: 12px 0;
}

.auth-wrapper .terms-text a {
  color: #ff4b8f;
  text-decoration: none;
}

/* Register button */
.auth-wrapper .btn-main {
  background: linear-gradient(90deg, #ff4b8f, #ff005a);
  border: none;
  color: #fff;
  padding: 12px;
  border-radius: 25px;
  font-weight: 600;
}

/* Bottom links */
.auth-wrapper .auth-links {
  margin-top: 16px;
  text-align: center;
}

.auth-wrapper .auth-links a {
  color: #ff4b8f;
  font-size: 13px;
  text-decoration: none;
}

.auth-wrapper .auth-links a:hover {
  text-decoration: underline;
}



/*LOGIN & REGISTER END*/

/* =========================================
   PREMIUM ADS POSTING FORM
   Parent: .ad-post-wrapper
========================================= */


/* ad posting end */




/* FOOTER */
footer{background:#0a0a0f;padding:60px 0;color:#aaa;}
footer h6{color:#fff;font-weight:600;}
footer a{text-decoration:none;color:#aaa;font-size:14px;}
footer a:hover{color:#fff;}

.mega-footer {
  background: #0b0b0b;
  padding: 70px 0 30px;
  color: #bfbfbf;
}

.footer-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.footer-title-sm {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

.footer-text {
  font-size: 14px;
  line-height: 1.7;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #bfbfbf;
  font-size: 14px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ff4b8f;
}

/* Social */
.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  transition: 0.3s;
}

.footer-social a:hover {
  background: linear-gradient(90deg, #ff4b8f, #ff005a);
}

/* Newsletter */
.footer-form input {
  width: 100%;
  padding: 8px 12px;
  border-radius: 20px;
  border: none;
  margin-bottom: 8px;
  font-size: 13px;
}

.footer-form button {
  width: 100%;
  border: none;
  border-radius: 20px;
  padding: 8px;
  font-size: 13px;
  color: #fff;
  background: linear-gradient(90deg, #ff4b8f, #ff005a);
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid #222;
  margin-top: 40px;
  padding-top: 20px;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
}

.footer-bottom a {
  color: #bfbfbf;
  font-size: 13px;
  margin-left: 15px;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #ff4b8f;
}

