/* =========================================
   1. GLOBAL VARIABLES & RESET
   ========================================= */
:root {
    --primary-red: #dc3545;
    --primary-purple: #a855f7;
    --primary-blue: #0d6efd;
    --dark-bg: #1a1a1a;
    --light-dark-bg: #2c2c2c;
    --text-dark: #f8f9fa;
    --light-bg: #f8f9fa;
    --light-secondary-bg: #ffffff;
    --text-light: #212529;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-dark);
    transition: background-color 0.3s, color 0.3s;
    padding-top: 76px;
    /* Account for fixed navbar */
}

body.light-mode {
    background-color: var(--light-bg);
    color: var(--text-light);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

a {
    text-decoration: none;
}

/* =========================================
   2. NAVBAR
   ========================================= */
.navbar {
    background-color: rgba(44, 44, 44, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transition: background-color 0.3s;
    backdrop-filter: blur(10px);
}

body.light-mode .navbar {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.6rem;
    font-weight: 700;
    background: -webkit-linear-gradient(45deg, var(--primary-purple), var(--primary-red));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-link {
    color: var(--text-dark) !important;
}

body.light-mode .nav-link {
    color: var(--text-light) !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-red) !important;
}

/* =========================================
   3. HERO & PARTICLES
   ========================================= */
#hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    margin-top: -76px;
    z-index: 1;
    background: transparent !important;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: var(--dark-bg);
}

body.light-mode #particles-js {
    background-color: var(--light-bg);
}

.particles-js-canvas-el {
    width: 100% !important;
    height: 100% !important;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.hero-content {
    z-index: 10;
    position: relative;
    text-align: left;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 700;
    color: var(--text-dark);
}

body.light-mode .hero-content h1,
body.light-mode .hero-content p {
    color: var(--text-light);
}

.hero-title-gradient {
    background: -webkit-linear-gradient(45deg, var(--primary-purple), var(--primary-red));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.1rem;
    max-width: 600px;
    margin-top: 20px;
    margin-bottom: 30px;
}

/* =========================================
   4. BUTTONS
   ========================================= */
.btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    padding: 12px 30px;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
    padding: 12px 30px;
    font-weight: 600;
    margin-left: 15px;
}

body.light-mode .btn-secondary {
    border: 2px solid var(--text-light);
    color: var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--text-dark);
    color: var(--dark-bg);
}

body.light-mode .btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--light-bg);
}

/* =========================================
   5. SECTIONS & CARDS
   ========================================= */
.section {
    padding: 80px 0;
    transition: background-color 0.3s;
}

.section.bg-light {
    background-color: var(--light-dark-bg) !important;
}

body.light-mode .section.bg-light {
    background-color: var(--light-secondary-bg) !important;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
    font-size: 2.5rem;
}

/* Cards (Services, Features, Projects) */
.service-card,
.feature-card,
.project-card {
    background: var(--light-dark-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform .3s, box-shadow .3s, background-color 0.3s;
    height: 100%;
    border: 1px solid #444;
    display: flex;
    flex-direction: column;
}

body.light-mode .service-card,
body.light-mode .feature-card,
body.light-mode .project-card {
    background: var(--light-secondary-bg);
    border-color: #ddd;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.service-card:hover,
.feature-card:hover,
.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-card .icon,
.feature-card .icon {
    font-size: 3.5rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

/* Project Cards Specific */
.project-card {
    padding: 0;
    /* Reset padding for project cards to let image fill width */
    overflow: hidden;
}

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #444;
}

body.light-mode .project-card img {
    border-bottom: 1px solid #ddd;
}

.project-card .card-body {
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.project-card h4 {
    margin-bottom: 15px;
    color: var(--primary-purple);
}

/* =========================================
   6. PAGE HEADERS & FOOTER
   ========================================= */
.page-header {
    padding: 160px 0 80px;
    text-align: center;
    background-color: var(--light-dark-bg);
    margin-top: -76px;
    padding-top: 180px;
}

body.light-mode .page-header {
    background-color: var(--light-secondary-bg);
}

/* Site Footer */
.site-footer {
    background-color: #111;
    color: #bbb;
    padding: 70px 0 30px;
    font-size: 0.95rem;
    border-top: 1px solid #222;
}

body.light-mode .site-footer {
    background-color: #f1f3f5;
    color: #666;
    border-top: 1px solid #ddd;
}

.footer-logo {
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
}

body.light-mode .footer-logo {
    color: #333;
}

.footer-heading {
    color: #fff;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

body.light-mode .footer-heading {
    color: #333;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-red);
    border-radius: 2px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

body.light-mode .footer-links a {
    color: #666;
}

.footer-links a:hover {
    color: var(--primary-red);
    transform: translateX(5px);
}

.contact-info li {
    display: flex;
    margin-bottom: 15px;
    align-items: flex-start;
}

.contact-info i {
    color: var(--primary-red);
    margin-right: 15px;
    font-size: 1.1rem;
    margin-top: 3px;
}

.contact-info a {
    color: #bbb;
    text-decoration: none;
    transition: 0.3s;
}

body.light-mode .contact-info a {
    color: #666;
}

.contact-info a:hover {
    color: var(--primary-red);
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
    font-size: 1rem;
}

body.light-mode .social-icons a {
    background-color: rgba(0, 0, 0, 0.05);
    color: #555;
}

.social-icons a:hover {
    background-color: var(--primary-red);
    color: #fff;
    transform: translateY(-3px);
}

.border-secondary {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

body.light-mode .border-secondary {
    border-color: rgba(0, 0, 0, 0.1) !important;
}

/* =========================================
   7. EXTRAS (Home Page Components)
   ========================================= */
.tech-icon {
    font-size: 4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    display: inline-block;
    line-height: 1;
}

body.light-mode .tech-icon {
    color: var(--text-light);
}

.process-step {
    text-align: center;
    margin-bottom: 30px;
}

.process-step .icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-dark-bg);
    color: var(--primary-red);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    border: 2px solid var(--primary-red);
}

body.light-mode .process-step .icon {
    background-color: var(--light-secondary-bg);
}

.accordion-item {
    background-color: var(--light-dark-bg);
    border: 1px solid #444;
    color: var(--text-dark);
}

body.light-mode .accordion-item {
    background-color: var(--light-secondary-bg);
    border-color: #ddd;
    color: var(--text-light);
}

.accordion-button {
    background-color: var(--light-dark-bg);
    color: var(--text-dark);
    font-weight: 600;
}

body.light-mode .accordion-button {
    background-color: var(--light-secondary-bg);
    color: var(--text-light);
}

.accordion-button:not(.collapsed) {
    background-color: rgba(220, 53, 69, 0.1);
    color: var(--primary-red);
    box-shadow: none;
}

.testimonial-item {
    background: rgba(44, 44, 44, 0.4);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    margin: 20px auto;
    max-width: 800px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    text-align: center;
}

body.light-mode .testimonial-item {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.testimonial-item::before {
    content: '\201C';
    /* Quote Character */
    font-family: serif;
    font-size: 8rem;
    line-height: 1;
    color: var(--primary-red);
    opacity: 0.1;
    position: absolute;
    top: -20px;
    left: 20px;
    pointer-events: none;
}

.testimonial-item img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 3px solid var(--primary-red);
    padding: 3px;
    background-color: var(--light-dark-bg);
}

body.light-mode .testimonial-item img {
    background-color: #fff;
}

.testimonial-item p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.8;
    color: #ddd;
}

body.light-mode .testimonial-item p {
    color: #555;
}

.testimonial-item .name {
    font-weight: 700;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 5px;
}

body.light-mode .testimonial-item .name {
    color: #333;
}

.testimonial-item .company {
    font-size: 0.9rem;
    color: var(--primary-red) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

#cta {
    background: linear-gradient(45deg, var(--primary-purple), var(--primary-red));
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

/* =========================================
   Neumorphic Theme Toggle
   ========================================= */
.neumorphic-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    margin-bottom: 0;
}

.neumorphic-switch input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
    /* Force out of flow */
    z-index: -1;
    appearance: none;
    -webkit-appearance: none;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #2c2c2c;
    transition: .4s;
    border-radius: 34px;
    z-index: 1;
    /* Ensure visible on top */
    display: block !important;
    /* Force display */
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.5),
        inset -2px -2px 5px rgba(255, 255, 255, 0.05);
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: #2c2c2c;
    transition: .4s;
    border-radius: 50%;
    z-index: 2;
    /* User's Neumorphic Knob Shadows (Scaled) */
    box-shadow:
        -1.5px -1.5px 4px 1px rgba(255, 255, 255, 0.05),
        2px 2px 4px 1px rgba(0, 0, 0, 0.4),
        inset 1px 1px 2px rgba(255, 255, 255, 0.05),
        inset -1px -1px 2px rgba(0, 0, 0, 0.4);
}

/* Light Mode Styles */
body.light-mode .slider {
    background-color: #e0e0e0;
    box-shadow: inset 3px 3px 6px #bebebe,
        inset -3px -3px 6px #ffffff;
}

body.light-mode .slider:before {
    background-color: #e0e0e0;
    /* Light Mode Neumorphic Shadows */
    box-shadow:
        -2px -2px 5px rgba(255, 255, 255, 0.8),
        2px 2px 5px rgba(0, 0, 0, 0.1),
        inset 1px 1px 2px rgba(255, 255, 255, 0.8),
        inset -1px -1px 2px rgba(0, 0, 0, 0.1);
}

/* Toggle Logic */
input:checked+.slider:before {
    transform: translateX(30px);
}

/* Icons Adjustment */
#sun-icon,
#moon-icon {
    font-size: 1.2rem;
    transition: all 0.3s ease;
    padding: 5px;
}

/* Default (Dark Mode): Sun dim, Moon active */
/* Using user's logic where checked = Light Mode, so unchecked = Dark Mode */
body:not(.light-mode) #moon-icon {
    color: #f8f9fa;
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.5));
}

body:not(.light-mode) #sun-icon {
    color: #555;
    opacity: 0.5;
}

/* Light Mode: Sun active, Moon dim */
body.light-mode #sun-icon {
    color: #ffc107;
    filter: drop-shadow(0 0 2px rgba(255, 193, 7, 0.6));
    transform: scale(1.1);
    opacity: 1;
}

body.light-mode #moon-icon {
    color: #adb5bd;
    opacity: 0.5;
}

/* =========================================
   8. PAGE SPECIFIC STYLES
   ========================================= */

/* Index Page */
.profile-img {
    max-width: 350px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 3px solid var(--light-dark-bg);
}

.design-card {
    background: var(--light-dark-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform .3s, box-shadow .3s, background-color 0.3s;
    height: 100%;
}

body.light-mode .design-card {
    background: var(--light-secondary-bg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.design-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.design-card-body {
    padding: 25px;
}

.blog-card {
    background: var(--light-dark-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform .3s, box-shadow .3s, background-color 0.3s;
    height: 100%;
}

body.light-mode .blog-card {
    background: var(--light-secondary-bg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-body {
    padding: 20px;
}

.blog-card-body h5,
.blog-card-body a {
    color: var(--primary-red);
}

.blog-card-body a {
    text-decoration: none;
    font-weight: 600;
}

.carousel-indicators [data-bs-target] {
    background-color: var(--primary-red);
}

.why-us-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.why-us-item .icon {
    font-size: 1.5rem;
    color: var(--primary-red);
    margin-right: 15px;
    margin-top: 5px;
}

/* About Page */
.team-card {
    background: var(--light-dark-bg);
    border-radius: 10px;
    text-align: center;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform .3s, box-shadow .3s, background-color 0.3s;
    height: 100%;
}

body.light-mode .team-card {
    background: var(--light-secondary-bg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 5px solid var(--primary-red);
}

.team-card h5 {
    color: var(--primary-red);
}

.value-card {
    text-align: center;
}

.value-card .icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 15px;
}

#story video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: .5rem;
}

/* Services Page */
.service-detail-card {
    background-color: var(--light-dark-bg);
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
    border: 1px solid #444;
}

body.light-mode .service-detail-card {
    background-color: var(--light-secondary-bg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-color: #ddd;
}

.service-detail-card .icon {
    font-size: 4rem;
    color: var(--primary-red);
}

.service-features li {
    margin-bottom: 10px;
}

.service-features .fa-check-circle {
    color: var(--primary-red);
    margin-right: 10px;
}

/* =========================================
   UPDATED PRICING SECTION (Cyber-Minimalist)
   ========================================= */
.pricing-card {
    background: #111;
    border: 1px solid #333;
    border-radius: 20px;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Hover Effect: Glow */
.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-purple);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.2);
}

/* Light Mode Override */
body.light-mode .pricing-card {
    background: #ffffff;
    border-color: #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

body.light-mode .pricing-card:hover {
    border-color: var(--primary-purple);
    box-shadow: 0 20px 40px rgba(168, 85, 247, 0.15);
}

/* Popular Card - Always Glowing */
.pricing-card.popular {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border: 2px solid transparent;
    background-image: linear-gradient(#111, #111), linear-gradient(45deg, var(--primary-purple), var(--primary-red));
    background-origin: border-box;
    /*background-clip: content-box, border-box; 
    box-shadow: 0 10px 40px rgba(168, 85, 247, 0.3);*/
}

/* Light Mode Popular */
body.light-mode .pricing-card.popular {
    background-image: linear-gradient(#fff, #fff), linear-gradient(45deg, var(--primary-purple), var(--primary-red));
}

@media (min-width: 992px) {
    .pricing-card.popular {
        transform: scale(1.1);
        z-index: 10;
        margin-top: 25px;
        /* Slight lift */
    }
}

.pricing-title {
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    color: #fff;
    text-align: center;
}

body.light-mode .pricing-title {
    color: #333;
}

.pricing-desc {
    text-align: center;
    color: #888;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.pricing-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin: 1rem 0 2rem;
    text-align: center;
}

body.light-mode .pricing-price {
    color: #111;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.6;
}

.pricing-features {
    text-align: left;
    margin-top: 1rem;
    margin-bottom: 2rem;
    padding-left: 0;
    flex-grow: 1;
    list-style: none;
    /* Removed default bullets */
}

.pricing-features li {
    margin-bottom: 12px;
    color: #aaa;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

body.light-mode .pricing-features li {
    color: #555;
}

.pricing-features i {
    color: var(--primary-purple);
    margin-right: 12px;
    font-size: 1.1rem;
    min-width: 20px;
    /* Aligns icons */
}

/* Buttons */
.btn-pricing {
    width: 100%;
    padding: 1rem;
    border-radius: 50px;
    /* Pill shape */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    background: transparent;
    border: 2px solid #444;
    color: #fff;
    margin-top: auto;
}

body.light-mode .btn-pricing {
    border-color: #ddd;
    color: #333;
}

.btn-pricing:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

body.light-mode .btn-pricing:hover {
    background: #333;
    color: #fff;
    border-color: #333;
}

.pricing-card.popular .btn-pricing {
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-red));
    border: none;
    box-shadow: 0 5px 20px rgba(220, 53, 69, 0.4);
    color: #fff;
}

.pricing-card.popular .btn-pricing:hover {
    filter: brightness(1.2);
    transform: scale(1.02);
}

.most-popular-badge {
    background: var(--primary-red);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    position: absolute;
    top: 15px;
    right: 15px;
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.4);
}


/* Contact Page */
.contact-info-card {
    text-align: center;
    margin-bottom: 30px;
}

.contact-info-card .icon {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 15px;
}


/* =========================================
    9. FLOATING BUTTONS & MODAL
    ========================================= */
.floating-btn-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #fff;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
}

.floating-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    color: #fff;
}

.whatsapp-btn {
    background-color: #25d366;
}

.contact-btn {
    background-color: var(--primary-blue);
}

/* Inquiry Modal */
.inquiry-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
}

.inquiry-modal-content {
    background: rgba(44, 44, 44, 0.95);
    margin: auto;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    animation: fadeIn 0.4s ease-out;
}

body.light-mode .inquiry-modal-content {
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-light);
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.inquiry-modal-content h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    background: -webkit-linear-gradient(45deg, var(--primary-purple), var(--primary-red));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.inquiry-modal-content .form-control {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 10px;
    padding: 12px 15px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.inquiry-modal-content .form-control:focus {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.1);
}

/* Fix for Select Options Visibility */
.inquiry-modal-content option {
    background-color: var(--light-dark-bg);
    color: var(--text-dark);
}

body.light-mode .inquiry-modal-content .form-control {
    background-color: #f8f9fa;
    border-color: #ddd;
    color: var(--text-light);
}

body.light-mode .inquiry-modal-content .form-control:focus {
    background-color: #fff;
    border-color: var(--primary-purple);
}

body.light-mode .inquiry-modal-content option {
    background-color: #ffffff;
    color: var(--text-light);
}

.inquiry-modal-content .btn-primary {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
    border-radius: 10px;
    background: linear-gradient(45deg, var(--primary-blue), #0b5ed7);
    border: none;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.inquiry-modal-content .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.4);
}

.close-modal {
    color: #fff;
    position: absolute;
    top: 15px;
    right: 20px;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    line-height: 1;
}

body.light-mode .close-modal {
    color: #333;
    background: rgba(0, 0, 0, 0.05);
}

.close-modal:hover {
    background: var(--primary-red);
    color: #fff;
    transform: rotate(90deg);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}
/* Theme Gradient Button */
.btn-gradient {
    background: #dc3545;
    border: none;
    color: #fff !important;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
    color: #fff !important;
}

