
/* ================= GLOBAL BASE ================= */


body {
  margin-top: 0;
  font-family: Arial, sans-serif;
  background: url('assets/images/body-bg.jpg') repeat !important;
  background-color: #2B2B2B !important;
  
}


/* ================= TYPOGRAPHY ================= */


h1, h2, h3, h4, h5, h6,p {
  font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  color: #fff;               
  margin-top: 0;
  margin-bottom: 0.75em;
  line-height: 1.3;
  font-weight: 600;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25em;
}

h2 {
  font-size: 1.3rem;
  font-weight: 400;
  color:#E4B584;
}

h3 {
  font-size: 1.75rem;
  font-weight: 600;
}

h4 {
  font-size: 1.5rem;
  font-weight: 500;
}

h5 {
  font-size: 1.25rem;
  font-weight: 500;
}

h6 {
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

p {
  font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-size: .9rem;
  font-weight: normal;
  line-height: 1.4rem;;
  letter-spacing: 0.3px;
  color:#D1CFCE;
}


/* ================= BUTTONS ================= */

.btn-primary {
  background-color: #E4B584 !important;
  border-color: #fff !important;
  color: #000 !important;
}

.btn-primary:hover {
  background-color: #A12349 !important;
  border-color: #fff !important;
  color: #fff !important;
}


/* ================= Breadcrumb SECTION ================= */


.breadcrumb a {
  color: #a05b7f;
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb .active {
  color: #fff;;
}


/* ================= HEADER SECTION ================= */



.top-bar  {
  font-size: 14px;
  background-color: #A12349;
  padding: 5px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.top-bar .contact-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-bar .social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-bar .contact-info a,
.top-bar .contact-info i {
  font-size: 14px;
}

.top-bar .social-icons a {
  font-size: 16px;
}

/* --- Responsive Fix for Top Bar --- */


@media (max-width: 768px) {

  .top-bar {
    text-align: center !important;
  }

  .top-bar .container {
    display: block;
    text-align: center;
  }

  .top-bar .contact-info {
    display: block;
    margin-bottom: 5px;
  }
  .top-bar .social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  
}


/* --- Navbar --- */


.navbar .nav-link {
  padding: 10px 15px;
  color: #fff;
  font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  font-size:16px;
  font-weight:300;
}

.navbar .nav-link:hover{
  color: #E4B584;
  font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  font-size:16px;
  font-weight:500;
}


.navbar-nav .nav-item{
  padding: 10px 10px;
}

.navbar .btn {
  margin-left: 10px;
}


/* --- Sticky Navbar --- */


header nav.navbar {
  width: 100%;
  z-index: 1050;
  background-color: #421B29;
  transition: all 0.3s ease;
}

.navbar-brand img{
  width: 150px;
}

nav.navbar.sticky {
  position: fixed;
  top: 0; 
  left: 0;
  width: 100%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

nav.navbar.scrolled {
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}


/* --- Navbar Toggler --- */

.navbar-toggler-icon1 {
  display: inline-block;
  width: 30px;
  height: 3px;
  background-color: #ffffff; 
  position: relative;
  transition: all 0.3s ease;
}

.navbar-toggler-icon1::before,
.navbar-toggler-icon1::after {
  content: '';
  position: absolute;
  left: 0;
  width: 30px;
  height: 3px;
  background-color: #ffffff; 
  transition: all 0.3s ease;
}

.navbar-toggler-icon1::before {
  top: -8px;
}

.navbar-toggler-icon1::after {
  top: 8px;
}

/* When active (menu open) */
.navbar-toggler.active .navbar-toggler-icon1 {
  background-color: transparent;
}

.navbar-toggler.active .navbar-toggler-icon1::before {
  transform: rotate(45deg);
  top: 0;
}

.navbar-toggler.active .navbar-toggler-icon1::after {
  transform: rotate(-45deg);
  top: 0;
}

/* ================= Fullscreen Mobile Menu ================= */

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #fff;
  z-index: 9999;
  display: none;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-menu-header {
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: flex-end;
  padding: 15px;
}

#mobileMenuClose {
  font-size: 28px;
  cursor: pointer;
}

.mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 50px 0 0;
  text-align: center;
}

.mobile-menu-list li {
  margin: 20px 0;
}

.mobile-menu-list li a {
  text-decoration: none;
  font-size: 20px;
  color: #000;
  display: block;
  padding: 10px 0;
}

.dropdown-mobile .submenu-mobile {
  display: none;
  list-style: none;
  padding-left: 20px;
}

.dropdown-mobile.active .submenu-mobile {
  display: block;
}

/* Hide desktop collapse menu on mobile */
@media (max-width: 991px) {
  .navbar .d-lg-flex {
    display: none !important;
  }
}




/* ================= Dropdown Hover for Desktop ================= */

@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    background-color: #A12349;
  }

  .navbar .dropdown:hover .dropdown-item {
    color:#fff;   
  }

  .navbar .dropdown:hover .dropdown-item:hover {
    color:#000;   
    background-color: #D9235A;
  }
}


/* ================= PAGE CONTENT ================= */


.welcome-section {
  background-color: #1e1e1e; 
  color: #fff;
}

.welcome-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #f7c14d; 
  text-transform: uppercase;
}

.welcome-subheading {
  font-size: 1.2rem;
  color: #e0e0e0;
  font-weight: 400;
}

.welcome-text {
  font-size: 1rem;
  max-width: 700px;
  line-height: 1.7;
  color: #cccccc;
}


.page-content-section {
  background-color: #1A1B1B;
  color: #AEAEAE;
}

.page-content-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #D6D5BD;
  text-transform: uppercase;
}

.page-content-subheading {
  font-size: 1.2rem;
  color: #fff; 
  font-weight: 500;
}

.page-content-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: #7A7A79;
  margin-bottom: 1.5rem;
  text-align: justify;
}

@media (min-width: 768px) {
  .page-content-text {
    margin: 0 auto;
  }
}

/* ================= PROFILES WRAPPER ================= */

.profiles-wrapper {
  background-color: #162226;              
  padding: 75px 0;                   
  position: relative;
  z-index: 1;
}

.profiles-wrapper h3 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 5px;
}


/* ================= PROFILES GRID ================= */

.profile-card {
  position: relative;
  background: #9c0d0d !important;
  border: 1px solid #fff;
  border-radius: 18px;
  overflow: hidden;
  margin: 15px 0;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.profile-image {
  position: relative; 
  overflow: hidden;
  border-radius: 18px 18px 0px  0px ;
}


.ribbon {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(135deg, #ff4081, #e91e63);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 8px ;
  z-index: 5;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
  
}

.profile-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;

}


.profile-content {
  background: linear-gradient(to bottom, #4A0E24, #2B0B15);
  border-top: 1px solid #A12349;
  padding: 25px 15px 30px;
  text-align: center;
  color: #fff;
  transition: all 0.3s ease;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.profile-card:hover .profile-content {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 64, 129, 0.2);
}

.profile-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px; 
  position: relative;
  display: inline-block;
  padding-bottom: 8px; 
}

.profile-name::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #ff4081, #e91e63);
  border-radius: 2px;
}

.profile-age {
  font-size: 0.95rem;
  color: #bbb;
  margin-bottom: 10px;
}

.profile-about {
  color: #E9E6E5;
  font-size: 0.9rem;
  margin-top: 8px; 
  margin-bottom: 15px;
  line-height: 1.5;
}
.profile-status {
  font-size: 0.9rem;
  font-weight: 600;
  color: #3fbf5e;
  margin-bottom: 18px;
}

.status-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #3fbf5e;
  border-radius: 50%;
  margin-right: 5px;
  animation: blink-dot 1s infinite alternate;
}


.blink {
  animation: blink 1s infinite;
}

@keyframes blink-dot {
  0% { opacity: 1; transform: scale(1); }
  100% { opacity: 0.4; transform: scale(0.8); }
}

/* --- Action Buttons --- */
.profile-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
}

.action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 18px;
  transition: all 0.3s ease;
  color: #fff;
  text-decoration: none;
}

.action-btn.whatsapp {
  background-color: #25d366;
}

.action-btn.call {
  background-color: #007bff;
}

.action-btn.appointment {
  background-color: #ff4081;
}

.action-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.btn-profile {
  background: linear-gradient(135deg, #ff4081, #e91e63);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 10px 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-profile:hover {
  background: linear-gradient(135deg, #e91e63, #c2185b);
  transform: translateY(-3px);
}

/* MODEL PAGE STYLING */
.model-profile-section {
  background-color: #1a1a1a;
  color: #f5f5f5;
}

/* Model Profile */
.model-name {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.model-tagline {
  color: #d79bb5;
  font-size: 1.1rem;
  font-weight: 500;
}


.profile-gallery .main-image img {
  max-height: 480px;
  object-fit: cover;
  border-radius: 10px;
}

.thumb-gallery .thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 2px solid transparent;
  cursor: pointer;
  border-radius: 6px;
  transition: 0.3s;
}

.thumb-gallery .thumb.active,
.thumb-gallery .thumb:hover {
  border-color: #d79bb5;
}

.profile-table {
  border-collapse: separate !important;
  border-spacing: 0;
  background-color: #2a2a2a;
  color: #f1f1f1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.profile-table th,
.profile-table td {
  padding: 12px 15px;
  border: none;
  vertical-align: middle;
}

.profile-table th {
  background-color: #333;
  color: #ffb347;
  font-weight: 600;
}

.profile-table tr:nth-child(even) td {
  background-color: #242424;
  color:#fff;
}

.profile-table tr:nth-child(odd) td {
  background-color: #151515;
  color:#fff;
}


@media (max-width: 992px) {
  
  .profile-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.profiles-wrapper h3 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 5px;
  font-size:1.0rem;
}

.profile-name {
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px; 
  position: relative;
  display: inline-block;
  padding-bottom: 8px; 
}

.profile-name::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #ff4081, #e91e63);
  border-radius: 2px;
}


.profile-about {
  color: #E9E6E5;
  font-size: 0.7rem;
  margin-top: 1px; 
  margin-bottom: 2px;
  line-height: 1.5;
}

.action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 12px;
  transition: all 0.3s ease;
  color: #fff;
  text-decoration: none;
}

.btn-profile{
  padding:5px 5px 5px 5px;
  
}

.ribbon {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(135deg, #ff4081, #e91e63);
  color: #fff;
  font-size: 0.60rem;
  font-weight: 300;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 8px ;
  z-index: 5;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
  
}



}


/* Tables */
/* ===== Improved Profile & Pricing Tables ===== */


@media (max-width: 767px) {
  .model-name {
    font-size: 1.6rem;
  }
}


/* === Responsive Action Buttons === */
.action-buttons .btn {
  font-weight: 600;
  border-radius: 50px;
  padding: 10px 18px;
  transition: all 0.3s ease;
}

.action-buttons .btn:hover {
  transform: translateY(-3px);
}


.blink {
  animation: blinkText 1.5s infinite;
}
@keyframes blinkText {
  50% { opacity: 0.4; }
}

/* Responsive */
@media (max-width: 991px) {
  .action-buttons .btn {
    flex: 1 1 100%;
  }
}


/* ================= CTA SECTION ================= */


.cta-section h3 {
  font-weight: bold;
}

.icon-box {
  transition: all 0.3s ease;
}
.icon-box:hover {
  background: #f8f9fa;
  transform: translateY(-5px);
}

/* ================= Responsive ================= */

/* Tablets */
@media (max-width: 992px) {
  .navbar .btn {
    margin-top: 10px;
  }
  .profiles-grid .col-md-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}





/* ===== Featured Profiles Section ===== */

.featured-profiles {
  background: #000;
  border-top: 5px solid #A12349;
  border-bottom: 5px solid #A12349;
  overflow: hidden;
}

.featured-profiles h3 {
  color: #fff;
  font-weight: 600;
}

/* Slider Container */
.slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* Track that moves */
.slide-track {
  display: flex;
  width: calc(250px * 12); /* Adjust if number of profiles changes */
  animation: scroll 40s linear infinite;
}

/* Each Profile */
.featured-profile {
  width: 200px;
  flex: 0 0 auto;
  text-align: center;
  margin: 0 15px;
}

.featured-profile img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e91e63;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.featured-profile img:hover {
  transform: scale(1.1);
  border-color: #ff4081;
}

.featured-profile h6 {
  color: #fff;
  margin-top: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.featured-profile .btn {
  margin-top: 5px;
  border-radius: 30px;
  border-color: #e91e63;
  color: #e91e63;
  transition: all 0.3s ease;
}

.featured-profile .btn:hover {
  background-color: #e91e63;
  color: #fff;
}

/* Animation for smooth scroll */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* Move half width (duplicates complete loop) */
}

/* ================= LOCATION SECTION ================= */

.locations-section {
  background: #000;
  border-top: 2px solid #A12349;
  border-bottom: 2px solid #A12349;
}

.locations-section h3 {
  color: #fff;
  font-weight: 600;
}

.section-subtitle {
  color: #D1CFCE;
  font-size: 1rem;
}

.locations-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.location-btn {
  background: transparent;
  border: 2px solid #e91e63;
  color: #e91e63;
  border-radius: 30px;
  padding: 10px 25px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.location-btn i {
  color: #ff4081;
  transition: transform 0.3s ease;
}

.location-btn:hover {
  background: linear-gradient(135deg, #ff4081, #e91e63);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 4px 10px rgba(255, 64, 129, 0.3);
}

.location-btn:hover i {
  transform: scale(1.3);
  color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .location-btn {
    padding: 8px 18px;
    font-size: 0.9rem;
  }
  .locations-grid {
    gap: 15px;
  }
}


/* ================= Featured Categories Section ================= */

.featured-categories-section {
  background-color: #000;
  border-top: 2px solid #A12349;
  border-bottom: 2px solid #A12349;
  color: #fff;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  border-left: 5px solid #e91e63;
  padding-left: 12px;
}

.section-text {
  font-size: 1rem;
  color: #d1cfce;
  margin-bottom: 25px;
  line-height: 1.6;
}

.btn-learn-more {
  background: linear-gradient(135deg, #ff4081, #e91e63);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 10px 25px;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-learn-more:hover {
  background: linear-gradient(135deg, #e91e63, #c2185b);
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(255, 64, 129, 0.3);
}

/* --- Grid Layout --- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 15px;
}

.category-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  border: 2px solid #ff4081;
}

.category-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-item:hover img {
  transform: scale(1.1);
}

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.category-item:hover .category-overlay {
  background: rgba(0, 0, 0, 0.65);
}

.category-btn {
  background: linear-gradient(135deg, #ff4081, #e91e63);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 10px 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-btn:hover {
  background: linear-gradient(135deg, #e91e63, #c2185b);
  transform: scale(1.1);
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .category-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, 180px);
  }
}

@media (max-width: 768px) {
  .featured-categories-section .row {
    text-align: center;
  }
  .section-title {
    border: none;
    padding-left: 0;
  }
  .category-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 200px);
  }
}


/* ================= Call To Action Section ================= */

.cta-banner {
  position: relative;
  background: url('assets/images/cta-bg.jpg') center center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
  border-top: 2px solid #A12349;
  border-bottom: 2px solid #A12349;
  overflow: hidden;
  margin-bottom:0px !important;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 0, 20, 0.6); /* Dark overlay for readability */
  z-index: 1;
}

.cta-banner .container {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
}

.cta-subtitle {
  font-size: 1.1rem;
  color: #f0f0f0;
  margin-bottom: 30px;
  line-height: 1.6;
}

.cta-btn {
  background: linear-gradient(135deg, #ff4081, #e91e63);
  color: #fff;
  padding: 12px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(255, 64, 129, 0.3);
}

.cta-btn:hover {
  background: linear-gradient(135deg, #e91e63, #c2185b);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 64, 129, 0.5);
}

/* ================= Responsive ================= */
@media (max-width: 768px) {
  .cta-banner {
    padding: 80px 20px;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  .cta-subtitle {
    font-size: 1rem;
  }

  .cta-btn {
    padding: 10px 28px;
    font-size: 1rem;
  }
}


/* ================= Featured Image Section ================= */

.featured-image-section {
  position: relative;
  overflow: hidden;
  border-top: 2px solid #A12349;
  border-bottom: 2px solid #A12349;
}

.featured-image-wrapper {
  position: relative;
  width: 100%;
  height: 500px; /* adjust height as needed */
}

.featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured-image-wrapper:hover .featured-img {
  transform: scale(1.05); /* subtle zoom on hover */
}

/* Overlay content */
.featured-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55); /* dark overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  transition: background 0.3s ease;
}

.featured-image-wrapper:hover .featured-overlay {
  background: rgba(0, 0, 0, 0.7);
}

.featured-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.featured-subtitle {
  font-size: 1.1rem;
  color: #ddd;
  margin-bottom: 25px;
}

.featured-btn {
  background: linear-gradient(135deg, #ff4081, #e91e63);
  color: #fff;
  padding: 10px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(255, 64, 129, 0.3);
}

.featured-btn:hover {
  background: linear-gradient(135deg, #e91e63, #c2185b);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 64, 129, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
  .featured-image-wrapper {
    height: 350px;
  }

  .featured-title {
    font-size: 1.6rem;
  }

  .featured-subtitle {
    font-size: 1rem;
  }

  .featured-btn {
    padding: 8px 22px;
    font-size: 0.9rem;
  }
}



/* ================= Modern Footer ================= */

.modern-footer {
  position: relative;
  background: linear-gradient(135deg, #1a0a13 0%, #000 100%);
  color: #ddd;
  overflow: hidden;
  padding-top: 70px;
}

.footer-overlay {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top left, rgba(255, 64, 129, 0.1), transparent 60%),
              radial-gradient(circle at bottom right, rgba(255, 64, 129, 0.1), transparent 60%);
  z-index: 1;
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-brand img.footer-logo {
  width: 160px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #ccc;
}

.footer-links h5,
.footer-contact h5,
.footer-newsletter h5 {
  color: #E4B584;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li,
.footer-contact ul li {
  margin-bottom: 10px;
  color: #bbb;
  font-size: 0.95rem;
}

.footer-links a {
  text-decoration: none;
  color: #bbb;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #ff4081;
  padding-left: 4px;
}

.footer-contact i {
  color: #ff4081;
  margin-right: 8px;
}

/* --- Newsletter --- */
.footer-newsletter p {
  color: #bbb;
  font-size: 0.9rem;
}

.newsletter-form {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  overflow: hidden;
  margin-top: 10px;
}

.newsletter-form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 15px;
  color: #fff;
  font-size: 0.95rem;
  outline: none;
}

.newsletter-form input::placeholder {
  color: #999;
}

.newsletter-form button {
  background: linear-gradient(135deg, #ff4081, #e91e63);
  border: none;
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  transform: scale(1.1);
  background: linear-gradient(135deg, #e91e63, #c2185b);
}

/* --- Social Icons --- */
.social-icons a {
  color: #ff4081;
  font-size: 1.2rem;
  margin-right: 12px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: #fff;
  transform: scale(1.2);
}

/* --- Footer Bottom --- */
.footer-bottom {
  position: relative;
  background: #0d0d0d;
  border-top: 1px solid #222;
  margin-top: 50px;
  padding: 15px 0;
  z-index: 2;
}

.footer-bottom p {
  color: #aaa;
  font-size: 0.9rem;
}

.footer-credit {
  color: #e91e63;
  text-decoration: none;
}

.footer-credit:hover {
  color: #ff4081;
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .footer-brand {
    text-align: center;
  }

  .footer-links,
  .footer-contact,
  .footer-newsletter {
    text-align: center;
  }

  .newsletter-form {
    justify-content: center;
  }

  .social-icons a {
    margin: 0 8px;
  }
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #ff4081, #e91e63);
  color: #fff;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  z-index: 999;
}
.back-to-top:hover {
  background: linear-gradient(135deg, #e91e63, #c2185b);
  transform: translateY(-3px);
}



/* ================= BLOGS  ================= */

 .blogs-section {
      background-color: #0f1115;
  }

  .blogs-section h1,
  .blogs-section p {
      color: #fff;
  }

  .blog-card {
      background: #1b1f27;
      border: none;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 0 15px rgba(0,0,0,0.6);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .blog-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.8);
  }

  .blog-card img {
      border-bottom: 3px solid #ff4c8b;
      object-fit: cover;
  }

  .blog-card .card-body {
      padding: 1.5rem;
  }

  .blog-card .card-title a {
      color: #fff;
      text-decoration: none;
      transition: color 0.2s ease;
  }

  .blog-card .card-title a:hover {
      color: #ff4c8b;
  }

  .blog-card .card-text {
      color: #bcbcbc;
  }

  .blog-card .btn-read {
      background-color: transparent;
      border: 1px solid #ff4c8b;
      color: #ff4c8b;
      font-weight: 500;
      transition: all 0.3s ease;
  }

  .blog-card .btn-read:hover {
      background-color: #ff4c8b;
      color: #fff;
  }

  .blog-card .card-footer {
      border-top: 1px solid #2a2f3a;
      color: #999;
      font-size: 0.85rem;
      background: #16191f;
  }

  .pagination .page-link {
      background-color: transparent;
      border-color: #ff4c8b;
      color: #ff4c8b;
  }

  .pagination .page-link:hover {
      background-color: #ff4c8b;
      color: #fff;
  }

  .pagination .active .page-link {
      background-color: #ff4c8b;
      color: #fff;
      border-color: #ff4c8b;
  }

  /* ===== Fix dark modal select text color ===== */
.enquiry-modal select.form-select,
.enquiry-modal select.form-control,
.enquiry-modal select {
  color: #fff !important;
  background-color: #222 !important;
  border: 1px solid #555 !important;
}

/* Dropdown options background/text */
.enquiry-modal select option {
  background-color: #222 !important;
  color: #fff !important;
}

/* For Bootstrap dark theme consistency */
.enquiry-modal label {
  color: #ddd !important;
}

/* Placeholder color (e.g., 'Select Duration') */
.enquiry-modal select:invalid {
  color: #bbb !important;
}
