/* Base Theme */
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #0c0807;
    color: #fff;
    overflow-x: hidden;

}

p{
	font-size:15px;
}



@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1240px;
    }
}

/* Header Background & Glassmorphism */
.custom-header {
    background: rgb(12 8 7 / 85%);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar-nav .nav-link {
    color: #ccc !important;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover, 
.navbar-nav .nav-link.active {
    color: #ff0055 !important;
}

/* Force Open Mega Menu on Hover (Desktop Only) */
@media (min-width: 992px) {
    .navbar-nav .dropdown:hover > .dropdown-menu {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin-top: 0 !important;
    }
}

/* 3-Column Mega Menu Container Sizing & Positioning Fix */
.mega-menu-3col {
    display: none; /* Keep hidden by default until hover */
    width: 750px !important;
    max-width: 95vw !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background-color: #0c0807 !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 12px;
    z-index: 9999 !important; /* Forces it to sit above all other header elements */
    position: absolute !important;
}


.p-1 {
    padding: .001rem !important;
}

.custom-header .navbar {
    position: relative;
}

.mega-menu-3col .dropdown-item:hover {
    background-color: rgba(255, 0, 85, 0.15) !important;
    color: #ff0055 !important;
}

.mega-menu-3col .dropdown-item:hover {
    background-color: rgba(255, 0, 85, 0.15) !important;
    color: #ff0055 !important;
}

/* Hero Section with Rich Gradient Ambient Background */
.hero-banner {
    min-height: 100vh;
    background: linear-gradient(rgb(221 8 8 / 84%), rgb(133 12 12 / 85%)), url(../image/mmodel.jpg) center / cover no-repeat;
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
}

/* Typography styles */
.hero-subtext {
font-size: 1.5rem;
    max-width: 780px;
    margin: 0 auto;
    font-weight: 700;
    line-height: 1.1;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff085;
	font-style: italic;
}

.hero-main-title {
    font-size: clamp(4rem, 10vw, 9rem);
    font-weight: 800;
    letter-spacing: -2px;
    background: linear-gradient(180deg, #ffffff 40%, rgba(255,255,255,0.3) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
	font-size:75px;
	padding-bottom:5px;
}

/* Infinite Marquee Slider Settings */
.marquee-container {
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scrollRightToLeft 25s linear infinite;
}

/* Pause animation on mouse hover */
.marquee-track:hover {
    animation-play-state: paused;
}

/* 4 Cards displayed layout dimensions */
.marquee-card {
    width: 260px;
    height: 340px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.marquee-card:hover {
    transform: translateY(-8px);
    border-color: #ff0055;
}

/* Animation Keyframes (Scroll Right to Left) */
@keyframes scrollRightToLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 1rem));
    }
}


/* Signing Text Container */
.signing-heading-wrapper {
    display: inline-block;
    position: relative;
    max-width: 100%;
}

/* The Signing / Typewriter Animation for H1 */
.signing-text {
    font-size: clamp(2rem, 5vw, 5rem);
    white-space: nowrap;
    overflow: hidden;
    width: 0; 
    border-right: 4px solid #ff0055; 
    display: inline-block;
    animation: signingEffect 3.5s steps(22, end) forwards, 
               blinkCursor 0.75s step-end infinite;
    background: linear-gradient(180deg, #ffffff 40%, rgba(255,255,255,0.3) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes signingEffect {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blinkCursor {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: #ff0055;
    }
}



/* Futuristic Glass Search Input */
.search-glass-wrapper {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-glass-wrapper:hover {
    border-color: rgba(255, 0, 85, 0.5);
    box-shadow: 0 0 30px rgba(255, 0, 85, 0.2);
}

.form-select option {
    background-color: #121218;
    color: white;
}

/* Luxury Buttons */
.btn-luxury-gradient {
    background: #000;
    border: none;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(255, 0, 85, 0.4);
}

.btn-luxury-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 0, 85, 0.6);
    filter: brightness(1.1);
}

.btn-glass-border {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.btn-glass-border:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.btn-luxury-outline {
    background: transparent;
    border: 1px solid rgba(255, 0, 85, 0.6);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-luxury-outline:hover {
    background: #ff0055;
    color: #fff;
    border-color: #ff0055;
    box-shadow: 0 0 20px rgba(255, 0, 85, 0.4);
}








/* Section Background */
.about-frame-section {
    background-color: #0c0807;
    position: relative;
    overflow: hidden;
}

/* Text Line Height Adjustment */
.line-height-lg {
    line-height: 1.4;
}

/* Framed Image Styles */
.image-frame-wrapper {
    max-width: 480px;
    position: relative;
}

/* The Border Frame Effect Behind the Image */
.frame-backdrop {
    position: absolute;
    top: -15px;
    right: -15px;
    bottom: 15px;
    left: 15px;
    border: 2px solid rgba(255, 0, 85, 0.4);
    border-radius: 20px;
    z-index: 1;
    pointer-events: none;
    transition: all 0.4s ease;
}

/* The Main Image Box */
.framed-image-box {
    position: relative;
    z-index: 2;
    height: 480px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: #150905;
    transition: transform 0.4s ease;
}

.framed-image-box img {
    height: 100%;
    transition: transform 0.6s ease;
}

/* Hover Effects */
.image-frame-wrapper:hover .framed-image-box img {
    transform: scale(1.05); /* Smooth zoom-in on hover */
}

.image-frame-wrapper:hover .frame-backdrop {
    top: -20px;
    right: -20px;
    border-color: #ff0055; /* Highlights frame border on hover */
}

/* Internal frame overlay gradient */
.frame-overlay {
    background: linear-gradient(to top, rgba(12, 8, 7, 0.4), transparent);
    pointer-events: none;
}


.text-muted {
    --bs-text-opacity: 1;
    color: rgb(255 246 21) !important;
}





/* Section Background Styling */
.lorem-content-section {
    background: radial-gradient(circle at center, #150905 0%, #0c0807 100%);
    position: relative;
}

/* Attractive Divider Design */
.attractive-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
}

.divider-line {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff0055, transparent);
}

.divider-icon {
    padding: 0 12px;
    font-size: 0.9rem;
}

/* Content Container Box */
.lorem-box {
    background: rgba(18, 12, 10, 0.7);
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

/* Text Formatting */
.line-height-lg {
    line-height: 1.4;
    font-size: 1.02rem;
}






/* Model Cards Layout Section */
.models-grid-section {
    background-color: #0c0807;
}

.model-card {
    height: 420px;
    background-color: #150905;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.model-img {
    height: 100%;
    transition: transform 0.5s ease;
}

.model-card:hover .model-img {
    transform: scale(1.08);
}

.model-name-badge {
    background: rgba(12, 8, 7, 0.75);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.95rem;
    z-index: 2;
    letter-spacing: 1px;
}

/* Hover details sliding up from the bottom */
.model-hover-details {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 8, 7, 0.96) 70%, rgba(12, 8, 7, 0.85) 100%);
    backdrop-filter: blur(8px);
    z-index: 3;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.model-card:hover .model-hover-details {
    transform: translateY(0);
}

/* Call and WhatsApp Button Styles */
.btn-call {
    background-color: #212529;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: background-color 0.3s ease;
}

.btn-call:hover {
    background-color: #343a40;
    color: #fff;
}

.btn-whatsapp {
    background-color: #25d366;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #1ebe5d;
    color: #fff;
}

/* Luxury Gradient Button for Center Action */
.btn-luxury-gradient {
    background: linear-gradient(135deg, #df1d1d 0%, #f1023f 100%);
    border: none;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(255, 0, 85, 0.4);
}

.btn-luxury-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 0, 85, 0.6);
    filter: brightness(1.1);
}






/* Services Section Background */
.services-section {
    background-color: #0c0807;
    position: relative;
}

/* Individual Service Card Style */
.service-card {
    background: rgba(21, 9, 5, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hover Animation & Glow */
.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 0, 85, 0.4);
    box-shadow: 0 15px 35px rgba(255, 0, 85, 0.15);
    background: rgba(25, 11, 7, 0.85);
}

/* Icon Box Background */
.service-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(255, 0, 85, 0.1);
    border: 1px solid rgba(255, 0, 85, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-box {
    background: #ff0055;
}

.service-card:hover .service-icon-box i {
    color: #ffffff !important;
}

/* Number Tag Styling */
.service-number {
    font-size: 1.25rem;
    opacity: 0.2;
    letter-spacing: 1px;
}

/* Read More Link Arrow Hover Effect */
.service-link {
    transition: color 0.3s ease;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: #fff !important;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Typography Line Heights */
.line-height-lg {
    line-height: 1.7;
}






/* FAQ Section Base */
.faq-section {
    background-color: #0c0807;
    position: relative;
}

/* Custom Accordion Background */
.bg-dark-card {
    background-color: #150905 !important;
    color: #ffffff;
}

/* Accordion Item Styling */
.custom-accordion .accordion-item {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    transition: all 0.3s ease;
}

.custom-accordion .accordion-item:hover {
    border-color: rgba(255, 0, 85, 0.3) !important;
}

/* Button & Active States */
.custom-accordion .accordion-button {
    background-color: #150905;
    color: #fff;
    padding: 20px 24px;
    font-size: 1.05rem;
    transition: background-color 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background-color: #1f0d08;
    color: #ff0055;
    box-shadow: none;
}

/* Custom Chevron Arrow Indicator */
.custom-accordion .accordion-button::after {
    filter: invert(1) brightness(200%);
    transition: transform 0.3s ease;
}

/* Accordion Body Text Styling */
.custom-accordion .accordion-body {
    padding: 20px 24px;
    line-height: 1.7;
    font-size: 0.95rem;
}






/* Price Table Section Background */
.price-table-section {
    background: radial-gradient(circle at center, #ff0000 0%, #0c0807 100%);
    position: relative;
}

/* Custom Table Wrapper Style */
.table-responsive {
    background: rgba(18, 12, 10, 0.85);
    backdrop-filter: blur(15px);
}

/* Vibrant Header Row (Matching your theme) */
.table-header-row {
    background: linear-gradient(135deg, #ff0055 0%, #c20041 100%) !important;
    color: #ffffff !important;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: none;
}

/* Table Body Styling */
.table-dark {
    background-color: transparent !important;
    border-color: rgba(255, 255, 255, 0.08);
}

.table-dark td {
    background-color: transparent !important;
    border-color: rgba(255, 255, 255, 0.08);
    font-size: 0.95rem;
}

/* Row Hover Effect */
.table-hover > tbody > tr:hover > * {
    background-color: rgba(255, 0, 85, 0.1) !important;
    color: #fff !important;
    transition: background-color 0.3s ease;
}





/* Contact Section Wrapper Background */
.contact-section {
  background: linear-gradient(rgb(221 8 8 / 65%), rgb(133 12 12 / 85%)), url(../image/model-banner.jpg) center / cover no-repeat;
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
}

.contact-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12, 8, 7, 0.92) 0%, rgba(21, 9, 5, 0.88) 100%);
}

/* Contact Info Icon Boxes */
.contact-icon-box {
    width: 50px;
    height: 50px;
    background: #ff0055;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(255, 0, 85, 0.3);
    flex-shrink: 0;
}

.hover-pink:hover {
    color: #ff0055 !important;
    transition: color 0.3s ease;
}

/* Glassmorphism Form Card */
.contact-form-card {
    background: rgba(18, 12, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Custom Input Field Styling */
.custom-input {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.custom-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.custom-input:focus {
    background-color: rgba(255, 255, 255, 0.08) !important;
    border-color: #ff0055 !important;
    box-shadow: 0 0 15px rgba(255, 0, 85, 0.25) !important;
    color: #fff !important;
}

/* Button & Spacing Accents */
.line-height-lg {
    line-height: 1.8;
}

.tracking-wider {
    letter-spacing: 1px;
}






/* Locations Section Background */
.locations-section {
    background: radial-gradient(circle at center, #150905 0%, #0c0807 100%);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Individual Location Tag Design */
.location-tag {
   display: inline-block;
    background-color: #ff0055;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 1rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 0, 85, 0.3);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Hover Animation for Location Tags */
.location-tag:hover {
    background-color: #d90048;
    color: #ffffff;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 8px 25px rgba(255, 0, 85, 0.5);
    border-color: #ffffff;
}








/* Footer Section Background */
.footer-section {
    background: radial-gradient(circle at center top, #150905 0%, #0c0807 100%);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Disclaimer Box Styling */
.disclaimer-box {
    background: rgba(18, 12, 10, 0.7);
    backdrop-filter: blur(15px);
}

.line-height-lg {
    line-height: 1.8;
}

/* Footer Navigation Links */
.footer-link {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-link:hover {
    color: #ff0055;
    transform: translateY(-2px);
}





/* Bright Neon Pink Section Background */
.demand-section {
    background-color: #ff0055;
    position: relative;
    overflow: hidden;
}



/* Typography Line Heights */
.line-height-lg {
    line-height: 1.4;
    font-size: 1.02rem;
}


.demand-content-box{
	font-weight:600;
}








/* Luxury About Banner Section */
.luxury-about-banner {
    position: relative;
    min-height: 30vh;
    background: url('../image/mmodel2.jpg') center/cover no-repeat;
    background-attachment: fixed;
    overflow: hidden;
    padding-top: 40px;
    padding-bottom: 40px;
}

/* Multi-layer Dark Gradient Overlay for Depth */
.banner-overlay {
    position: absolute;
    inset: 0;
    
    z-index: 1;
}

/* Ambient Neon Glow Behind Title */
.ambient-glow-banner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 0, 85, 0.25) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 2;
    pointer-events: none;
}

/* Glass Pill Breadcrumb Badge */
.glass-pill {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
}

.glass-pill:hover {
    border-color: rgba(255, 0, 85, 0.4);
    box-shadow: 0 0 20px rgba(255, 0, 85, 0.2);
}

.hover-pink:hover {
    color: #ff0055 !important;
    opacity: 1 !important;
}

/* Typography Adjustments */
.tracking-wider {
    letter-spacing: 2px;
}

.text-gradient {
    background: linear-gradient(135deg, #ff0055 0%, #ff5e99 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}




/* About Hero Showcase Section */
.about-hero-showcase {
    position: relative;
    min-height: 70vh;
    background: url('../image/model-banner.jpg') center/cover no-repeat;
    background-attachment: fixed;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 100px;
}

/* Deep Red/Black Overlay for Readability */
.about-hero-overlay {
    position: absolute;
    inset: 0;
  
    z-index: 1;
}

/* Typography Enhancements */
.tracking-wide {
    letter-spacing: 1px;
}

.line-height-lg {
    line-height: 1.8;
}

/* Custom Outline Button for Booking */
.btn-outline-luxury {
    background-color: transparent;
    border: 2px solid rgba(255, 0, 85, 0.7);
    transition: all 0.3s ease;
}

.btn-outline-luxury:hover {
    background-color: #ff0055;
    border-color: #ff0055;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 85, 0.4);
}






/* Section Background */
.filter-models-section {
    background-color: #0c0807;
}

/* Left Sidebar Styling */
.location-sidebar {
    background: rgba(18, 12, 10, 0.85);
    backdrop-filter: blur(15px);
    max-height: 500px;
    overflow-y: auto;
}

/* Location Filter Buttons */
.location-btn {
    display: block;
    width: 100%;
    text-align: left;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ccc;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.95krem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.location-btn:hover {
    background: rgba(255, 0, 85, 0.15);
    color: #fff;
    border-color: rgba(255, 0, 85, 0.4);
}

/* Active Filter Button (Matches your signature pink) */
.location-btn.active {
    background: #ff0055 !important;
    color: #ffffff !important;
    border-color: #ff0055 !important;
    box-shadow: 0 4px 15px rgba(255, 0, 85, 0.4);
}

/* Custom Scrollbar for Location List */
.location-sidebar::-webkit-scrollbar {
    width: 5px;
}
.location-sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

/* Model Card styling (3 columns width consistency) */
.model-card {
    height: 420px;
    background-color: #150905;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.model-img {
    height: 100%;
    transition: transform 0.5s ease;
}

.model-card:hover .model-img {
    transform: scale(1.08);
}

.model-name-badge {
    background: rgba(12, 8, 7, 0.75);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.95rem;
    z-index: 2;
    letter-spacing: 1px;
}

/* Hover Details Sliding Panel */
.model-hover-details {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 8, 7, 0.96) 70%, rgba(12, 8, 7, 0.85) 100%);
    backdrop-filter: blur(8px);
    z-index: 3;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.model-card:hover .model-hover-details {
    transform: translateY(0);
}

/* Action Buttons inside cards */
.btn-call {
    background-color: #212529;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-call:hover {
    background-color: #343a40;
    color: #fff;
}
.btn-whatsapp {
    background-color: #25d366;
    border: none;
}
.btn-whatsapp:hover {
    background-color: #1ebe5d;
    color: #fff;
}







/* Contact Section Background */
.contact-section {
    background: url('image/model-banner.jpg') center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
}

.contact-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12, 8, 7, 0.94) 0%, rgba(21, 9, 5, 0.90) 100%);
}

/* Contact Info Icon Boxes */
.contact-icon-box {
    width: 50px;
    height: 50px;
    background: #ff0055;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(255, 0, 85, 0.3);
    flex-shrink: 0;
}

.hover-pink:hover {
    color: #ff0055 !important;
    transition: color 0.3s ease;
}

/* Glassmorphism Form Card */
.contact-form-card {
    background: rgba(18, 12, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Custom Input Field Styling */
.custom-input {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.custom-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.custom-input:focus {
    background-color: rgba(255, 255, 255, 0.08) !important;
    border-color: #ff0055 !important;
    box-shadow: 0 0 15px rgba(255, 0, 85, 0.25) !important;
    color: #fff !important;
}

/* Typography & Layout Spacing */
.line-height-lg {
    line-height: 1.8;
}

.tracking-wider {
    letter-spacing: 1px;
}