.navbar {
    background-color: #1a1a1a;
    border-bottom: 2px solid crimson;
}

.navbar-brand {
    color: crimson !important;
    font-weight: bold;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    margin-left: 15px;
}

.navbar-nav .nav-link:hover {
    color: crimson !important;
}

.nav-button {
    background-color: crimson;
    border: none;
    padding: 6px 14px;
    border-radius: 20px;
    color: white;
    font-weight: bold;
    transition: 0.3s;
}

.nav-button:hover {
    background-color: #e60026;
}

/* BANNER */

.hero h1,
.hero h2 {
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.hero-banner {
    background: url('images/taaft.com-image-generator-by-taaft-1750759956.png') center center/cover no-repeat;
    padding: 120px 20px 100px;
    text-align: center;
    position: relative;
    animation: fadeIn 2s ease-in-out;
}

.hero-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    /* dark overlay */
    z-index: 1;
}

.hero-banner .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    color: #ff1463;
    font-size: 38px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: slideDown 1s ease forwards;
}

.hero-subtitle {
    color: #fff;
    font-size: 18px;
    margin-bottom: 30px;
    animation: fadeIn 2.5s ease;
}

.hero-btn {
    background-color: #ff1463;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.3s;
}

.hero-btn:hover {
    background-color: #e60026;
}

/* Animations */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* content below headline */

.tagline-strip {
    background: #000;
    color: crimson;
    font-weight: 600;
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
    text-transform: uppercase;
}

.tagline-strip span {
    display: inline-block;
    animation: slideLeft 18s linear infinite;
}

@keyframes slideLeft {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}

.glass-section {
    background: url('images/blutrf.jpeg') center center/cover no-repeat;
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glass-overlay.full-glass {
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    width: 100%;
    padding: 40px 20px;
}

.glass-card.wide {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid crimson;
    border-radius: 0;
    padding: 40px 20px;
    color: #fff;
    text-align: center;
    box-shadow: inset 0 0 40px rgba(255, 0, 80, 0.1);
    animation: fadeInUp 1.2s ease forwards;
    width: 100%;
}

.glass-card.wide h2 {
    font-size: 30px;
    color: crimson;
    margin-bottom: 12px;
    font-weight: bold;
}

.glass-card.wide p {
    font-size: 16px;
    color: #ddd;
    margin-bottom: 20px;
}

.glass-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.glass-tags span {
    background: rgba(255, 0, 60, 0.2);
    border: 1px solid crimson;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    color: white;
}

.glass-card.wide {
    /* existing styles... */
    animation: fadeInUp 1s ease-in-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-divider {
    height: 3px;
    background: linear-gradient(to right, #ff0040, #ff3370);
    width: 100%;
    border-radius: 6px;
}

/* Vertical spacoing*/

/* SPLIT IMAGE + TEXT SECTION */

.split-section {
    margin-top: 0;
}

.split-img {
    background: url('images/Adityaraj_Singh_A_stunning\,_glamorous_Indian_escort_woman_standing_confidently_in_cdac74ba-ecb2-47b1-90ee-c4c1421a4f4b.png') center center/cover no-repeat;
    min-height: 320px;
}

.second-img {
    background: url('images/Adityaraj_Singh_A_gorgeous_Indian_escort_woman_standing_in_a_dimly_lit_luxury_apa_bf0a50bc-5047-4757-a4d6-ef3b15a645ea.png') center center/cover no-repeat;
    min-height: 320px;
}

.split-text {
    background: #000;
    color: white;
}

.split-text h2 {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 15px;
}

.split-text p {
    font-size: 15px;
    color: #ccc;
    line-height: 1.6;
}

.features-section {
    background: #111;
    color: white;
    border-top: 1px solid crimson;
    border-bottom: 1px solid crimson;
}

.features-section h2 {
    font-weight: bold;
    animation: fadeIn 1.2s ease-in-out;
}

.features-section h4 {
    color: crimson;
    margin-bottom: 10px;
}

.features-section p {
    font-size: 15px;
    color: #ccc;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.buzz-strip {
    background: linear-gradient(to right, #220011, #110011);
    font-weight: bold;
    letter-spacing: 0.5px;
    border-top: 1px solid crimson;
    border-bottom: 1px solid crimson;
    animation: scrollIn 1s ease;
}

@keyframes scrollIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tease-intro {
    background: #0a000a;
    border-top: 2px solid crimson;
    border-bottom: 2px solid crimson;
    /*text-shadow: 0 0 6px #ff0033;*/
}

/* content */

.luxury-section {
    background-color: #0a0a0a;
    border-top: 1px solid crimson;
    padding-bottom: 60px;
}

.luxury-section h2,
.luxury-section h3 {
    font-weight: bold;
}

.luxury-section .icon-box h4 {
    color: #ff3366;
    margin-bottom: 10px;
}

.luxury-section .icon-box p {
    color: #ccc;
    font-size: 15px;
}

.full-paragraph p,
.full-paragraph ul {
    color: #f0f8ff;
    font-size: 15px;
    line-height: 1.6;
}

.full-paragraph ul {
    padding-left: 1.2rem;
}

.animate-fadein {
    animation: fadeInUp 1s ease-in-out;
}

.animate-fadein-slow {
    animation: fadeInUp 1.4s ease-in-out;
}

.animate-zoom {
    animation: zoomIn 1s ease-in-out;
}

.animate-zoom.delay-1 {
    animation-delay: 0.2s;
}

.animate-zoom.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Footer Styling */

.footer-title {
    color: #ff1a1a;
    font-size: 1.25rem;
    font-weight: 700;
    position: relative;
    margin-bottom: 1rem;
}

.footer-title::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 3px;
    background: #ff1a1a;
    bottom: -8px;
    left: 0;
    border-radius: 50px;
}

.footer-text {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.6;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #ff1a1a;
    padding-left: 5px;
}

.social-icons a {
    color: white;
    font-size: 1.4rem;
    margin-right: 20px;
    transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}

.glow-icon:hover {
    color: #ff1a1a;
    transform: scale(1.2);
    text-shadow: 0 0 8px #ff1a1a;
}

/* Fade In Animation */

.animate-fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Escort Pro Card Styling */

.escort-pro-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 400px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 20, 147, 0.15);
}

.escort-pro-card:hover {
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.5);
    transform: scale(1.02);
}

.escort-pro-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.escort-info-glass {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 15px;
    backdrop-filter: blur(10px);
    background: rgba(255, 20, 147, 0.3);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

.escort-info-glass h5 {
    font-weight: bold;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.escort-whatsapp {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 10;
}

.escort-whatsapp img {
    width: 36px;
    height: 36px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .escort-pro-card {
        height: 320px;
    }
    .escort-info-glass {
        font-size: 13px;
        padding: 10px;
    }
    .escort-whatsapp img {
        width: 30px;
        height: 30px;
    }
}

.flip-card-wrapper {
    height: 370px;
    width: 100%;
    perspective: 1000px;
}

.flip-card {
    width: 100%;
    height: 100%;
    position: relative;
}

.flip-card-inner {
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    position: relative;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    backface-visibility: hidden;
    top: 0;
    left: 0;
}

.flip-card-back {
    transform: rotateY(180deg);
}

/* Image + Overlay Text */

.flip-card-front img,
.flip-card-back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.escort-name-bar {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    background: rgba(255, 20, 147, 0.3);
    backdrop-filter: blur(8px);
    padding: 8px 0;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    font-size: 16px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

/* Mobile support */

@media (max-width: 768px) {
    .flip-card-wrapper {
        height: 300px;
    }
    .escort-name-bar {
        font-size: 14px;
        padding: 6px 0;
    }
}

.neon-glow {
    color: #f8f9fa;
    transition: all 0.3s ease;
}

.neon-glow:hover {
    color: #f3291a;
    text-shadow: 0 0 8px #f3291a, 0 0 16px #ff69b4;
}

img:hover {
    transform: scale(1.03);
    transition: 0.4s ease;
}

/* Floating Button Container */

.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Base Button Style */

.float-btn {
    width: 55px;
    height: 55px;
    background: #111;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 55px;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.7);
    transition: transform 0.3s, box-shadow 0.3s;
}

/* Call Button Style */

.call-btn {
    background: radial-gradient(circle, red 40%, darkred 100%);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.9);
}

/* WhatsApp Button Style */

.whatsapp-btn {
    background: radial-gradient(circle, #25D366 40%, #128C7E 100%);
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.9);
}

/* Hover Effect */

.float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.9);
}