/* ============================================
   COMPLETE CSS - Deep Purple + Bright Pink Theme
   Cleaned Version (No Duplicates)
============================================ */


:root {
--bg: #050510;
--card: #0d0a18;
--card2: #151025;
--pink: #ff2d95;
--red: #ff1a4b;
--purple: #b026ff;
--blue: #00e5ff;
--white: #fff;
--muted: #c9b8e0;
--gradient: linear-gradient(135deg, #ff2d95, #ff1a4b, #b026ff);
}

* {
box-sizing: border-box;
margin: 0;
padding: 0;
}

body {
font-family: Arial, Helvetica, sans-serif;
background: var(--bg);
color: var(--white);
line-height: 1.7;
}

a {
color: inherit;
text-decoration: none;
}

/* ================= NAVBAR ================= */

.navbar {
background: linear-gradient(90deg, #090614, #1a0a2e);
border-bottom: 1px solid rgba(255,45,149,.35);
padding: 15px 5%;
position: sticky;
top: 0;
z-index: 1000;
}

.nav-inner {
max-width: 1200px;
margin: auto;
display: flex;
align-items: center;
justify-content: space-between;
}

.logo {
font-size: 25px;
font-weight: 900;
background: var(--gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.nav-links {
display: flex;
gap: 25px;
list-style: none;
}

.nav-links a {
color: #fff;
font-weight: 600;
}

.nav-links a:hover {
color: #ff2d95;
}

.menu-btn {
display: none;
background: transparent;
color: white;
border: 1px solid #ff2d95;
padding: 8px 14px;
border-radius: 6px;
cursor: pointer;
}

/* ================= HERO ================= */


.hero::before {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(90deg, rgba(5,5,16,.72), rgba(5,5,16,.28), rgba(5,5,16,.68));
z-index: 0;
pointer-events: none;
}

.hero {
min-height: 560px;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
padding: 70px 20px;
position: relative;
overflow: hidden;
background-image: url("images/banner.webp");
background-size: cover;
background-position: center;
background-repeat: no-repeat;

}

.hero-content {
max-width: 850px;
position: relative;
z-index: 2;
padding: 35px 25px;
border-radius: 24px;
}

.hero h1 {
font-size: 32px;
font-weight: 700;
line-height: 1.1;
text-transform: uppercase;
background: #fff5fc;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
margin-bottom: 20px;
}

.hero p {
color: var(--muted);
font-size: 18px;
margin-bottom: 30px;
}

/* ================= SEARCH ================= */

.search-box {
max-width: 700px;
margin: auto;
display: flex;
background: #171025;
border: 1px solid rgba(255,45,149,.5);
border-radius: 12px;
overflow: hidden;
}

.search-box input {
flex: 1;
min-width: 0;
height: 55px;
border: none;
outline: none;
padding: 0 18px;
background: transparent;
color: white;
font-size: 16px;
}

.search-box input::placeholder {
color: #9e8daf;
}

.search-box button {
width: 130px;
border: none;
background: var(--gradient);
color: white;
font-weight: 800;
cursor: pointer;
}

/* ================= BUTTONS ================= */

.hero-buttons {
margin-top: 25px;
}

.btn {
display: inline-block;
border: 2px solid #ff2d95;
padding: 10px 25px;
border-radius: 50px;
margin: 5px;
font-weight: 700;
}

.btn:hover {
background: #ff2d95;
}


/* ========== DISCOVER MORE ========== */

.discover-section {
background: #050510;
padding: 70px 5%;
}

.discover-grid {
max-width: 1200px;
margin: auto;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 55px;
align-items: center;
}

/* LEFT IMAGE */

.discover-left {
width: 100%;
}

.image-slider {
width: 100%;
height: 470px;
overflow: hidden;
border-radius: 15px;
border: 1px solid rgba(255,45,149,.35);
background: #0d0a18;
}

.image-slider img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
display: block;
}

/* DOTS */

.slider-dots {
text-align: center;
margin-top: 15px;
}

.dot {
display: inline-block;
width: 9px;
height: 9px;
background: #51475d;
border-radius: 50%;
margin: 0 5px;
}

.dot.active {
background: #ff2d95;
}

/* RIGHT CONTENT */

.discover-content {
padding: 10px 0;
}

.discover-label {
color: #ff2d95;
font-size: 14px;
font-weight: 800;
letter-spacing: 2px;
}

.discover-content h2 {
color: #fff;
font-size: 36px;
line-height: 1.2;
margin: 12px 0 20px;
}

.discover-content p {
color: #fff;
font-size: 16px;
line-height: 1.8;
margin-bottom: 16px;
}

.discover-features {
margin-top: 25px;
margin-bottom: 25px;
}

.feature-box {
background: var(--card);
border: 1px solid rgba(255,45,149,.25);
border-radius: 9px;
padding: 13px 15px;
margin-bottom: 10px;
}

.feature-box strong {
display: block;
color: #fff;
font-size: 15px;
margin-bottom: 3px;
}

.feature-box span {
color: var(--muted);
font-size: 13px;
}

.discover-btn {
display: inline-block;
padding: 12px 28px;
background: var(--gradient);
color: #fff !important;
border-radius: 50px;
font-weight: 700;
font-size: 14px;
text-decoration: none;
}

/* TABLET */

@media(max-width: 900px) {

.discover-grid {
grid-template-columns: 1fr;
gap: 35px;
}

.image-slider {
height: 420px;
}

.discover-content h2 {
font-size: 30px;
}
}

/* MOBILE */

@media(max-width: 550px) {

.discover-section {
padding: 50px 15px;
}

.image-slider {
height: 330px;
}

.discover-content h2 {
font-size: 26px;
}

.discover-content p {
font-size: 15px;
}
}


/* ================= GENERAL ================= */

section {
padding: 65px 5%;
}

.container {
max-width: 1200px;
margin: auto;
}

.title {
text-align: center;
font-size: 32px;
text-transform: uppercase;
margin-bottom: 45px;
}


/* ================= IMAGE SECTION 1 ================= */

.image-section {
background: #08061a;
}

.image-banner {
width: 100%;
height: 430px;
object-fit: cover;
display: block;
border-radius: 16px;
border: 1px solid rgba(255,45,149,.35);
}

/* ================= CONTENT SECTION ================= */

.content-section {
background: var(--bg);
}

.content-box {
max-width: 1000px;
margin: auto;
text-align: center;
}

.content-box h2 {
color: #fff;
font-size: 32px;
margin-bottom: 18px;
}

.content-box h3 {
color: #ff2d95;
font-size: 23px;
margin: 25px 0 10px;
}

.content-box p {
color: #fff;
font-size: 17px;
line-height: 1.8;
margin-bottom: 15px;
}

/* ================= IMAGE + CONTENT ================= */

.content-image-section {
background: #08061a;
}

.two-column {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 45px;
align-items: normal;
}

.two-column.reverse .column-image {
order: 2;
}

.column-image img {
width: 100%;
height: auto;
object-fit: cover;
display: block;
border-radius: 15px;
border: 1px solid rgba(255,45,149,.35);
}

.column-content h2 {
color: #fff;
font-size: 31px;
margin-bottom: 18px;
}

.column-content h3 {
color: #ff2d95;
font-size: 22px;
margin-bottom: 10px;
}

.column-content p {
color: #fff;
font-size: 16.5px;
line-height: 1.8;
margin-bottom: 15px;
}

.content-list {
margin: 15px 0 0 20px;
color: var(--muted);
}

.content-list li {
margin-bottom: 8px;
}

/* ================= PROFILES ================= */

/* =====================================================
NEON RANDOM PROFILE DESIGN
Separate CSS - Existing Design Ko Affect Nahi Karega
===================================================== */

.neon-profile-list {
max-width: 1050px;
margin: 0 auto;

display: flex;
flex-direction: column;
gap: 16px;
}


/* PROFILE CARD */

.neon-profile-card {
position: relative;

display: flex;

min-height: 205px;

background:
linear-gradient(
135deg,
rgba(255,45,149,.07),
rgba(176,38,255,.05)
),
#0d0a18;

border: 1px solid rgba(255,45,149,.28);

border-radius: 14px;

overflow: hidden;

transition: .25s ease;
}

.neon-profile-card:hover {
border-color: #ff2d95;

box-shadow:
0 0 18px rgba(255,45,149,.18),
0 0 35px rgba(176,38,255,.10);

transform: translateY(-2px);
}


/* PROFILE IMAGE */

.neon-profile-photo {
width: 210px;
min-width: 210px;

height: 205px;

object-fit: cover;

object-position: center;

display: block;

background: #171025;
}


/* CONTENT */

.neon-profile-body {
padding: 18px 22px;

flex: 1;

min-width: 0;
}


/* TOP ROW */

.neon-profile-heading {
display: flex;

align-items: center;

gap: 7px;

margin-bottom: 5px;
}

.neon-profile-name {
color: #fff;

font-size: 21px;

font-weight: 800;

margin: 0;
}

.neon-profile-check {
color: var(--blue);

font-size: 13px;

font-weight: bold;
}


/* TOP BADGE */

.neon-profile-badge {
margin-left: auto;

background: var(--gradient);

color: #fff;

font-size: 9px;

font-weight: 900;

letter-spacing: .5px;

padding: 4px 9px;

border-radius: 4px;
}


/* META */

.neon-profile-meta {
display: flex;

flex-wrap: wrap;

gap: 14px;

color: var(--muted);

font-size: 12px;

margin-bottom: 7px;
}


/* RATING */

.neon-profile-rating {
color: #ffd700;

font-size: 14px;

margin-bottom: 8px;
}

.neon-profile-reviews {
color: var(--muted);

font-size: 12px;

margin-left: 5px;
}


/* DESCRIPTION */

.neon-profile-description {
color: var(--muted);

font-size: 14px;

line-height: 1.55;

max-width: 750px;

margin-bottom: 11px;
}


/* TAGS */

.neon-profile-tags {
display: flex;

flex-wrap: wrap;

gap: 6px;

margin-bottom: 13px;
}

.neon-profile-tag {
color: #ff2d95;

background: rgba(255,45,149,.08);

border: 1px solid rgba(255,45,149,.35);

border-radius: 20px;

padding: 3px 9px;

font-size: 10px;
}


/* BUTTONS */

.neon-profile-actions {
display: flex;

gap: 8px;
}

.neon-profile-action {
display: inline-flex;

align-items: center;

justify-content: center;

min-width: 115px;

padding: 8px 14px;

border-radius: 7px;

font-size: 12px;

font-weight: 700;

transition: .2s ease;
}


/* VIEW */

.neon-profile-view {
color: #fff;

background: var(--gradient);
}

.neon-profile-view:hover {
box-shadow:
0 0 15px rgba(255,45,149,.35);
}


/* CONTACT */

.neon-profile-contact {
color: #25d366;

border: 1px solid #25d366;

background: rgba(37,211,102,.04);
}

.neon-profile-contact:hover {
background: #25d366;

color: #fff;
}


/* MOBILE */

@media(max-width: 650px) {

.neon-profile-card {
display: block;
}

.neon-profile-photo {
width: 100%;

min-width: 100%;

height: 280px;
}

.neon-profile-body {
padding: 16px;
}

.neon-profile-name {
font-size: 18px;
}

.neon-profile-description {
font-size: 13px;
}

.neon-profile-actions {
width: 100%;
}

.neon-profile-action {
flex: 1;
min-width: 0;
}
}

.profiles-section {
background: #e12360;
}

.profiles-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 22px;
}

.profile {
background: var(--card);
border: 1px solid rgba(255,45,149,.28);
border-radius: 14px;
overflow: hidden;
}

.profile:hover {
border-color: #ff2d95;
}

.profile-image {
width: 100%;
height: 280px;
object-fit: cover;
object-position: top;
display: block;
background: #171025;
}

.profile-info {
padding: 18px;
}

.profile-info h3 {
font-size: 21px;
margin-bottom: 5px;
}

.meta {
color: var(--muted);
font-size: 13px;
margin-bottom: 10px;
}

.stars {
color: #ffd700;
margin-bottom: 10px;
}

.description {
color: var(--muted);
font-size: 14px;
margin-bottom: 15px;
}

.tags {
display: flex;
flex-wrap: wrap;
gap: 5px;
margin-bottom: 15px;
}

.tag {
border: 1px solid rgba(255,45,149,.4);
color: #ff2d95;
background: rgba(255,45,149,.1);
padding: 3px 8px;
border-radius: 20px;
font-size: 11px;
}

.profile-buttons {
display: flex;
gap: 8px;
}

.profile-buttons a {
flex: 1;
padding: 9px;
text-align: center;
border-radius: 7px;
font-size: 13px;
font-weight: 700;
}

.call {
border: 1px solid #ff1a4b;
color: #ff1a4b;
}

.whatsapp {
border: 1px solid #25d366;
color: #25d366;
}

.call:hover {
background: #ff1a4b;
color: white;
}

.whatsapp:hover {
background: #25d366;
color: white;
}

/* ================= RATES & PRICING ================= */

.pricing-section {
background: #08061a;
}

.pricing-intro {
max-width: 900px;
margin: -15px auto 40px;
text-align: center;
}

.pricing-intro p {
color: var(--muted);
font-size: 17px;
line-height: 1.8;
}

.pricing-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 25px;
}

.price-card {
background: var(--card);
border: 1px solid rgba(255,45,149,.3);
border-radius: 14px;
padding: 30px 25px;
text-align: center;
}

.price-card h3 {
color: #fff;
font-size: 22px;
margin-bottom: 15px;
}

.price {
font-size: 34px;
font-weight: 900;
color: #ff2d95;
margin-bottom: 15px;
}

.price-card p {
color: var(--muted);
font-size: 15px;
margin-bottom: 20px;
}

.price-list {
list-style: none;
color: var(--muted);
text-align: left;
margin-bottom: 20px;
}

.price-list li {
padding: 7px 0;
border-bottom: 1px solid rgba(255,255,255,.06);
}

.price-btn {
display: inline-block;
padding: 10px 25px;
border: 1px solid #ff2d95;
color: #ff2d95;
border-radius: 30px;
font-weight: 700;
}

.price-btn:hover {
background: #ff2d95;
color: #fff;
}

/* ================= SECOND IMAGE SECTION ================= */

.gallery-section {
background: var(--bg);
}

.gallery-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}

.gallery-grid img {
width: 100%;
height: 300px;
object-fit: cover;
display: block;
border-radius: 12px;
border: 1px solid rgba(255,45,149,.3);
}

/* ================= FAQ ================= */

.faq-section {
background: #08061a;
}

.faq {
max-width: 850px;
margin: auto;
}

.faq-item {
background: var(--card);
border: 1px solid rgba(255,45,149,.25);
border-radius: 10px;
margin-bottom: 12px;
overflow: hidden;
}

.faq-question {
width: 100%;
background: transparent;
color: white;
border: none;
padding: 18px;
text-align: left;
font-size: 16px;
font-weight: 700;
cursor: pointer;
}

.faq-answer {
display: none;
padding: 0 18px 18px;
color: var(--muted);
}

.faq-item.active .faq-answer {
display: block;
}

/* ================= FOOTER ================= */

footer {
background: #030308;
border-top: 1px solid rgba(255,45,149,.25);
padding: 30px 5%;
text-align: center;
}

footer p {
color: var(--muted);
}

/* ================= FLOATING BUTTONS ================= */

.float-btn {
position: fixed;
right: 20px;
width: 55px;
height: 55px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 25px;
z-index: 999;
}

.float-wa {
bottom: 90px;
background: #25d366;
}

.float-call {
bottom: 25px;
background: #007bff;
}

/* ================= MOBILE ================= */

@media(max-width: 1000px) {

.profiles-grid {
grid-template-columns: repeat(2, 1fr);
}

.pricing-grid {
grid-template-columns: repeat(2, 1fr);
}

.nav-links {
display: none;
}

.menu-btn {
display: block;
}

.two-column {
grid-template-columns: 1fr;
gap: 30px;
}

.two-column.reverse .column-image {
order: 0;
}

.gallery-grid {
grid-template-columns: repeat(2, 1fr);
}
}

@media(max-width: 550px) {

.profiles-grid,
.pricing-grid,
.gallery-grid {
grid-template-columns: 1fr;
}

.search-box {
flex-direction: column;
}

.search-box input {
width: 100%;
}

.search-box button {
width: 100%;
height: 50px;
}

.hero {
min-height: 500px;
padding: 50px 15px;
}

section {
padding: 45px 15px;
}

.profile-image {
height: 320px;
}

.image-banner {
height: 250px;
}

.column-image img {
height: 300px;
}

.content-box h2,
.column-content h2 {
font-size: 26px;
}

.content-box p,
.column-content p {
font-size: 15px;
}
}

@media (max-width: 600px) {
.hero {
min-height: 620px;
padding: 55px 15px;
background-position: 58% center;
}
.hero-content {
padding: 25px 14px;
background: rgba(5, 5, 16, .38);
}
}
