/* ✅ Import Inter Font */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@200;300;400;600;700;900&display=swap');
*{
	margin: 0;
	padding: 0;
}
:root {
    --primary: #E6E6FA;
    --light: #fff;
    --dark: #000;
	--secondary: #ff0000;
	--yellow: #f8d809;
}
h1, h2, h3, h4, h5, h6{
	font-family: 'Merriweather', serif;
}
body {
    font-family: 'Titillium Web', sans-serif;
    margin: 0;
    padding: 0;
	background: #fff;
}
.container{
	max-width: 1250px;
}
/* ================================
   Desktop Navigation
================================ */
.top-bar{
	background: var(--primary);
	color: #fff;
	padding: 5px 0;
}
.top-bar i{
	color: #fff;
	font-size: 16px;
}
.top-bar a{
	text-decoration: none;
	color: #fff;
}
.top-bar-inner{
	display: flex;
	gap: 20px;
}
.top-bar-icon {
    display: flex;
    gap: 12px;
    align-items: center;
}
.top-bar-icon p{
    margin: 0 !important;
}
.top-bar-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.site-header .main-header {
	 position: absolute;
      left: 0;
      width: 100%;
      z-index: 10;
      background: #fff !important;
	padding: 20px 0;
}
.site-header.sticky .main-header {
    position: fixed !important;
    top: 0;
    background: #fff !important;
    padding: 12px 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); 
    animation: slideDown 0.4s ease;
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.site-header .nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header .nav > li {
  position: relative;
}
.logo-box {
    position: absolute;
    top: 0px;
    z-index: 20;
    background: #ffffff;
    padding: 25px 10px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0px 5px 20px rgba(0,0,0,0.3);
}
.logo-box img {
    width: 120px;
    height: auto;
}
.wpcf7-submit {
    background: var(--primary);
    padding: 10px 30px;
    color: #fff;
    text-decoration: none;
    border-radius: 20px 0;
    transition: all 0.3s ease;
	display: inline-block;
	border: none;
}
.wpcf7-submit:hover {
    border-radius: 0 20px;
}
.site-header .nav > li > a {
  text-decoration: none;
  padding: 5px 15px;
  font-weight: 600 !important;
  transition: all 0.3s ease;
  display: inline-block;
  color: #000 !important;
}
.site-header .nav > li > a:hover,
.site-header .nav > li.current-menu-item > a,
.site-header .nav > li.current_page_item > a {
    background: var(--primary);
    padding: 5px 15px;
}
.site-header .nav li ul.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px 0;
  list-style: none;
  margin: 0;
  display: none;
  z-index: 9999;
}
.site-header .nav li ul.sub-menu li a {
  padding: 8px 15px;
  color: #333;
  display: block;
  font-weight: 400;
}
.site-header .nav li ul.sub-menu li a:hover {
  background: #f8f9fa;
  color: #0d6efd;
}
.site-header .nav > li:hover > ul.sub-menu {
  display: block;
}
.site-header .nav li ul.sub-menu li {
  position: relative;
}
.site-header .nav li ul.sub-menu li ul.sub-menu {
  top: 0;
  left: 100%;
  margin-left: 1px;
}
@media (max-width: 991px) {
  .site-header .nav {
    display: none; 
  }
}
button#mobileMenuBtn {
    border: 1px solid red;
	color: red;
}
/* ================================
   Mobile Menu
================================ */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100%;
  background: #fff;
  transition: right 0.3s ease;
  z-index: 1050;
}
.mobile-menu.open {
  right: 0;
}
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 1040;
}
.mobile-menu-overlay.active {
  display: block;
}
.mobile-menu-btn .btn-primary{
	margin-top: 2rem;
	display: inline-block;
	border: 1px solid #fff;
}
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: var(--primary)!important;
    transition: right 0.3s ease;
    z-index: 1050;
}
.mobile-menu-header {
    background-color: #fff;
}
#menu-primary-1 li {
    padding: 10px;
    border-bottom: 1px solid #fff;
}
#menu-primary-1 li a {
    color: var(--white);
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
}
.top-bar-icon .social-icons a i {
    border: 1px solid #ffffff;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.top-bar-inner-box {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* New Header */
.custom-header {
/*   background: linear-gradient(to bottom, #1e5799, #2c8ed6); */
  color: var(--secondary);
}

.header-title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
}

.main-header {
  background: transparent;
}

.nav li a {
  color: #000;
  font-weight: 500;
  text-decoration: none;
}

.nav li a:hover {
  color: #fff;
}

.logo img {
  max-height: 60px;
}

/* Mobile fix */
@media (max-width: 767px) {
  .logo {
    text-align: center;
  }
}


/* ================================
   Breadcrumb Section
=============================== */
.breadcrumb-section .container {
    display: flex;
    flex-direction: column;
    align-items: left;
    position: relative;
    top: 40%;
	z-index: 2;
}
section.breadcrumb-section {
/*     background: url(https://webzensys.com/work/aureusuniversity.ca/wp-content/uploads/2026/03/breadcrumb-scaled.jpg); */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 60vh;
	position: relative;
}
.breadcrumb-item.active {
    color: var(--secondary) !important;
}
ol.breadcrumb {
    font-size: 18px;
    font-weight: 700;
}
.breadcrumb-item+.breadcrumb-item::before{
	color: var(--primary) !important;
}
.breadcrumb-title h2 {
    color: var(--primary);
}
li.breadcrumb-item a {
    color: var(--primary);
    text-decoration: none;
}
/*===============================
      FOOTER SECTION CSS
================================= */
.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 8px rgba(195,180,186,.49);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 200ms linear;
  z-index: 99;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.progress-wrap::after {
  position: absolute;
  content: "\f102";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  line-height: 50px;
  text-align:center;
  font-size:16px;
  color: var(--secondary);
  inset:0;
}
.progress-wrap svg path {
  fill: none;
}
.progress-wrap svg.progress-circle path {
  stroke: var(--primary);
  stroke-width: 4;
}
ul.ftricons figure img {
    width: 15px;
    filter: brightness(100);
}
.underline1 {
    height: 2px;
    width: 100px;
    background: var(--secondary);
    margin: auto;
    margin-top: 8px;
}
.underline2 {
    height: 4px;
    width: 30px;
    background: var(--yellow);
    margin: auto;
    margin-top: -3px;
}
.no-margin {
    margin-left: 0px;
}
footer {
    position: relative;
    background: url(https://webzensys.com/work/aureusuniversity.ca/wp-content/uploads/2026/03/footer-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #000;
    z-index: 1;
	padding-top: 30px;
}
footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000; 
    z-index: -1;
}
footer > * {
    position: relative;
    z-index: 2;
}
footer .btn-primary {
    padding: 8px 20px;
    margin-top: 8px;
    letter-spacing: 1px;
    font-size: 14px;
    border: 1px solid var(--secondary);
}
.footertop-cnt ul.smoicons li a i {
    font-size: 16px;
}
.footer_top {
    background: #009f0726;
    border-radius: 0 0 15px 15px;
    padding: 0 15px;
}
.footertop-cnt {
    padding-left: 0;
    border-right: 1px solid #ffffff14;
}
.footertop-cnt p a {
    font-size: 15px;
    color: var(--white);
    font-weight: 400;
}
.footertop-cnt p {
    color: var(--white);
    font-weight: 600;
    font-size: 18px;
    padding-left: 62px;
    letter-spacing: 1px;
}
.footer_top .row {
    margin: 0;
}
.footer_top .col-md-6 {
    padding: 0;
}
footer a.footer-logo {
    margin-bottom: 15px;   
}
footer a.footer-logo img {
    width: 155px;
    display: block;
}
.footer_menu {
    padding: 40px 0 0 0;
}
.footer-details li {
    display: flex;
    margin-bottom: 15px;
    position: relative;
    gap: 20px;
}
ul.footer-details li i {
    background: var(--secondary);
    padding: 10px;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
ul{
	padding-left: 0rem !important;
	list-style-type: none;
}
ul.ftricons li a {
    border: 1px solid #ffffff36;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    font-size: 14px;
    margin-top: 8px;
}
footer ul li.menu-item a {
    display: inline-block;
}
footer ul li.menu-item:last-child a {
    margin: 0;
}
.menu,.footer-details {
    margin-top: 25px;
}
footer h3 {
    margin-bottom: 15px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
footer p {
    margin-bottom: 6px;
    line-height: 27px;
}
footer .menu li {
    position: relative;
    padding-left: 0 !important;
    list-style-type: none;
}
footer a{
	color: var(--dark) !important;
}
footer .menu li{
	padding-left: 0 !important;
	color: var(--dark) !important;
	transition: transform 0.3s ease;
	line-height: 40px;
}
footer .menu li::after {
  content: "\f061"; 
  font-family: "Font Awesome 5 Free";
  font-weight: 900; 
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%) translateX(-10px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  color: var(--primary);
}

footer .menu li:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
footer .menu li:hover{
	color: var(--primary) !important;
	transform: translateX(20px);
}
footer .social-icons {
    display: flex;
    transition: 0.3s;
}
footer .social-icons a:hover{
	background: var(--primary);
}
footer .social-icons a {
    display: flex;
    text-decoration: none;
    color: var(--light);
    background-color: #bcc6cc;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
}
footer ul li, footer ul li a, footer p, footer p a {
    font-weight: 600;
    position: relative;
    text-decoration: none;
    color: #000;
}
footer a.viewmore {
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 500;
    margin-top: 12px;
    display: inline-block;
    font-size: 14px;
}
.copyright {
    padding: 15px 0;
    border-top: 1px solid var(--secondary);
}
.copyright .row {
    align-items: center;
}
.copyright p {
    margin: 0 !important;
    color: var(--white);
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 300;
}
.copyright p a {
    color: var(--white);
    font-weight: 400;
    text-decoration: underline;
    text-underline-offset: 4px;
}
footer ul.socialicon li a {
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #c98d830f;
    width: 40px;
    height: 40px;
    color: var(--secondary);
    transition: .5s;
    margin-right: 5px;
    backdrop-filter: blur(2px);
    border-radius: 50%;
}
#GoToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary);
    color: #fff;
    font-size: 20px;
    padding: 12px 20px;
    border-radius: 50%;
    z-index: 999;
    transition: all 0.3s ease-in-out;
}
#GoToTop i{
	color: #fff;
}
#GoToTop:hover {
  background: var(--primary);
  transform: scale(1.1);
}
#whatsappbtn {
    cursor: pointer;
    position: fixed;
    bottom: 4%;
    left: 20px;
    z-index: 99999999;
    padding: 0 9px;
    background: #4fcc5d;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 32px;
    color: var(--white);
    z-index: 1;
}
#whatsappbtn:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #4fcc5d;
    box-shadow: 0 0 10px #4fcc5d;
    animation: playbtn 3s linear infinite forwards;
    z-index: -3;
}
@keyframes playbtn {
    from {
        transform: scale(1.0);
        opacity: 1;
    }
    to {
        transform: scale(1.5);
        opacity: 0;
    }
}
#whatsappbtn img {
    width: 30px;
}
a.btn-primary {
    background: var(--primary);
    padding: 10px 30px;
    color: #fff;
    text-decoration: none;
    border-radius: 20px 0;
    transition: all 0.3s ease;
	display: inline-block;
}

a.btn-primary:hover {
    border-radius: 0 20px;
}


/* HOME PAGE */

section{
	background: #7D6BB6;
	padding: 80px 60px;
}

/* HERO SECTION CSS */
.hero-section {
  background: url('https://webzensys.com/work/hot-horny-female-escorts.org.uk/wp-content/uploads/2026/05/bg-image.png') no-repeat center center/cover;
  height: 100vh;
  position: relative;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); 
}
.hero-section .container {
  position: relative;
  z-index: 2;
  top: 30px;	
}
.hero-title {
  font-size: 50px;
  font-weight: 600;
}
.hero-text {
  font-size: 30px;
  line-height: 1.6;
   font-weight: 600;
}
.hero-btn {
  padding: 12px 28px;
  font-size: 18px;
  border-radius: 4px;
  background: var(--secondary) !important;
}
.hero-btn:hover{
	background: var(--primary) !important;
	color: var(--dark) !important;
}
a.btn.btn-danger.hero-btn {
    font-weight: bold !important;
	width: 35%;
}

/* ABOUT SECTION */

.about-section {
  overflow: hidden;
}
.about-image {
  height: 100vh;
  background-size: cover;
  background-position: center;
}
.about-content {
  color: #fff;
}
.about-content p {
    font-size: 20px;
    line-height: 1.7;
    font-weight: 600;
}
.width-less {
    width: 30%;
}

/* SERVICE SECTION */

.escort-services-section {
  text-align: left !important;
}
.service-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
}
.service-desc {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
}
.service-box img {
    width: 400px;
    height: 300px;
    object-fit: cover;
}
.escort-services-section p {
    font-weight: 600 !important;
    font-size: 22px;
}

/* Connect Escort Section */


p.section-description{
    font-size: 20px;
    color: #fff;
    line-height: 1.8;
    max-width: 1200px;
    margin: auto;

}


/* Gallery Section */

.gallery-item{
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
}
.gallery-item img{
    height:500px;
    object-fit:cover;
    transition:0.4s ease;
}
.gallery-item:hover img{
    transform:scale(1.03);
}

/* Testimonials Section */

.testimonial-card {
    padding: 30px 24px;
    color: #fff;
    height: 100%;
    text-align: center;
  }
  .quote-icon-box {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
  }
  .quote-icon-box svg {
    width: 32px;
    height: 32px;
    fill: #1a3a8f;
  }
  .testimonial-card .quote-text {
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #dce6ff;
    margin-bottom: 16px;
  }
  .testimonial-card .client-name {
    font-size: 0.85rem;
    color: #f0c040;
    font-weight: 500;
  }

/* Contact Form */

  .contact-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 28px;
  }
  .contact-section label {
    font-size: 0.9rem;
    color: #dce6ff;
    margin-bottom: 4px;
  }
  .contact-section .form-control {
    background-color: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    border-radius: 4px;
  }
  .contact-section .form-control:focus {
    background-color: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
    color: #fff;
    box-shadow: none;
  }
  
  .location-text h5 { color: #fff; font-size: 1.1rem; margin-top: 14px; margin-bottom: 4px; }
  .location-text p  { color: #dce6ff; font-size: 0.9rem; margin: 0; }
iframe.map-iframe {
    width: 100%;
    height: 300px;
}
.social-icons {
    display: flex;
    transition: 0.3s;
}
.social-icons a:hover{
	background: var(--primary);
}
.social-icons a {
    display: flex;
    text-decoration: none;
    color: var(--light);
    background-color: #bcc6cc;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
}
.social-icons a:nth-child(1) {
      background: #1877F2;
    }

    .social-icons a:nth-child(2) {
      background: #000000;
    }

    .social-icons a:nth-child(3) {
      background: #0A66C2;
    }

    .social-icons a:nth-child(4) {
      background: #E4405F;
    }

/* Footer */

.footer-text{
    color:#fff;
    font-size:18px;
    font-weight:700;
    letter-spacing:1px;
}

.copyright-text{
    color:#ccc;
    font-size:15px;
}

/* About Page Css */

.about-pg-heading {
    margin-top: 60px;
	padding-top: 80px !important;
}

/* Service Page Css */

section.services-hero.d-flex.align-items-center.text-center {
    margin-top: 75px;
}

/* Safety and Guidelines */

.info-card{
    color:#fff;
    height:100%;
}

.info-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:6px;
}

.info-content{
    padding-top:20px;
}
.info-content p.section-description {
    height: 100px;
}

/* Pricing page */

table {
    width: 55%;
    margin: 0 auto;
    border-collapse: collapse;
    border: 1px solid #ffffff1f;
}
 
    thead {
      background-color: red;
      color: white;
    }
 
    thead th {
      padding: 10px;
    }
 
    tbody {
      background-color: transparent;
      color: white;
    }
 
    tbody td {
      padding: 10px;
    }

/* Safety and Guidelines */

    .accordion-button {
      background-color: transparent;
      color: darkred;
      font-size: 1.3rem;
      font-weight: bold;
    }
    .accordion-button:not(.collapsed) {
      background-color: transparent;
      color: darkred;
      box-shadow: none;
    }
    .accordion-button::after {
      display: none;
    }
    .accordion-item {
      background-color: transparent;
      border: none;
      border-bottom: 1px solid rgba(255,255,255,0.2);
    }
    .accordion-body {
      color: white;
    }
    .faq-toggle-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: red;
      border: none;
      color: white;
      font-size: 1.2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
section.faqs {
    margin-top: 65px;
}


/* RESPONSIVE CSS */

@media (max-width: 767px){
	.hero-section{
	    height: unset;
	}
	section{
		padding: 80px 20px;
	}
	.hero-title {
    font-size: 38px;
	}
	.hero-text {
		font-size: 24px;
	}
	.escort-services-section a.btn.btn-danger.hero-btn {
    width: 75%;
}
	section.booking-section a.btn.btn-danger.hero-btn {
    width: 75%;
}
	section.qualities-section a.btn.btn-danger.hero-btn {
    width: 75%;
}
section.section-red	a.btn.btn-danger.hero-btn {
    width: 75%;
}
	section.services-hero	a.btn.btn-danger.hero-btn {
    width: 75%;
}
	section.connect-escorts-section a.btn.btn-danger.hero-btn {
    width: 75%;
}
	table {
		width: 100%;
	}
	.escort-services-section {
    text-align: center !important;
}
	section.qualities-section.py-5 {
    text-align: center !important;
}
	section.booking-section.py-5 {
    text-align: center;
}
	.about-section {
    text-align: center;
}
	.about-content{
		    align-items: center;
    gap: 10px;
	}
}

@media (max-width: 568px) {
    .hero-title {
        font-size: 30px;
    }
}
@media (max-width: 479px){
	a.btn.btn-danger.hero-btn {
		!important;
    width: 60%;
}
}
@media (max-width: 414px) {
    .hero-text {
        font-size: 18px;
    }
	    section.services-hero a.btn.btn-danger.hero-btn
 {
        width: 85%;
    }
	    .escort-services-section a.btn.btn-danger.hero-btn {
        width: 85%;
    }
	    section.qualities-section a.btn.btn-danger.hero-btn {
        width: 95%;
    }
}
@media (max-width: 375px) {
    .hero-text {
        font-size: 14px;
    }
	    .hero-title {
        font-size: 24px;
    }
	.escort-services-section p{
		font-size: 14px;
	}
	.about-content p {
		font-size: 14px;
	}
	    section {
        padding: 60px 20px;
    }
	a.btn.btn-danger {
        width: 100% !important;
    }
	p.section-description {
		font-size: 14px;
	}
	.footer-text {
		font-size: 16px;
	}
}