/* ================= GLOBAL & BASE STYLES ================= */
:root {
    --brand-pink: #e6007e;
    --brand-dark: #0b0f19;
    --brand-blue: #0066cc;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
    background-color: #ffffff;
    color: #333333;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    padding-top: 115px; /* Pushes content down so it doesn't hide behind the fixed header */
}

/* Container Utility */
.site-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
    width: 100%;
}

#hero-container-box {
    position: relative;
    width: 100%;
    min-height: 90vh;
    background-color: var(--brand-dark);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#hero-wrapper-box {
    overflow: hidden;
    position: absolute;
    width: 130%;
    height: 130%;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#hero-wrapper-box div {
    position: absolute;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-p1 {
    width: 100%;
    height: 100%;
    z-index: 6;
    background-image: url('/assets/hero.png');
    left: 0;
    top: 0;
}

.hero-word {
    font-weight: 900;
    font-size: 16vw;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    z-index: 7;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    pointer-events: none;
    position: absolute;
    color: rgba(255, 255, 255, 0.03); /* Subtle background watermark */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* background: rgba(11, 15, 25, 0.82);  */
    z-index: 5;
}

.hero-content {
    position: relative;
    z-index: 20;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 1rem;
    text-align: center; /* Centered content alignment */
    color: #ffffff;
    display: flex;
    justify-content: center;
}

.hero-content-inner {
    width: 100%;
}

.hero-badge {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #f472b6;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.4);
    padding: 0.35rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(244, 114, 182, 0.3);
    display: inline-block;
    margin-bottom: 1.25rem;
}

.hero-desc {
    font-size: 1.15rem;
    color: #e5e7eb;
    max-width: 700px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    justify-content: center; /* Centered buttons */
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: var(--brand-pink);
    color: #ffffff;
    font-weight: 600;
    padding: 0.85rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    transition: background-color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background-color: #c7006b;
}

.btn-secondary {
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-weight: 600;
    padding: 0.85rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: border-color 0.2s;
}

.btn-secondary:hover {
    border-color: var(--brand-pink);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 1.25rem;
    border-radius: 1rem;
    max-width: 800px;
    margin: 0 auto; /* Centered stats container */
}

@media(min-width: 640px) {
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    display: flex;
    align-items: center;
    justify-content: center; /* Centered items inside stat boxes */
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #e5e7eb;
}

.stat-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(230, 0, 126, 0.2);
    color: #f472b6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ================= SERVICES SECTION ================= */


.services-section {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-title::before, .section-title::after {
    content: '';
    width: 3rem;
    height: 2px;
    background-color: var(--brand-pink);
}

.section-subtitle {
    font-size: 0.875rem;
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media(min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: #ffffff;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    /* Smooth transition for hover lift effect */
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.service-banner {
    color: #ffffff;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-banner-1 { background: linear-gradient(90deg, #ff007f 0%, #7b00ff 100%); }
.service-banner-2 { background: linear-gradient(90deg, #7b00ff 0%, #3b008a 100%); }
.service-banner-3 { background: linear-gradient(90deg, #0055ff 0%, #002288 100%); }
.service-banner-4 { background: linear-gradient(90deg, #ff7b00 0%, #b34200 100%); }
.service-banner-5 { background: linear-gradient(90deg, #009944 0%, #004d22 100%); }
.service-banner-6 { background: linear-gradient(90deg, #00a8cc 0%, #005f73 100%); }

.service-icon-box {
    font-size: 1.25rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.6rem;
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon-box {
    transform: scale(1.1) rotate(5deg);
}

.service-banner h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
}

.service-banner p {
    margin: 0;
    font-size: 0.7rem;
    opacity: 0.9;
}

.service-body {
    padding: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.75rem;
    color: #374151;
    width: 60%;
}

.service-list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.service-thumb {
    width: 40%;
    display: flex;
    justify-content: center;
    overflow: hidden;
    border-radius: 0.375rem;
}

.service-thumb img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    border-radius: 0.375rem;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    transition: transform 0.5s ease;
}

.service-card:hover .service-thumb img {
    transform: scale(1.08);
}

.service-footer {
    padding: 0 1.25rem 1.25rem 1.25rem;
}

.service-link {
    font-size: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.service-link i {
    transition: transform 0.2s ease;
}

.service-link:hover i {
    transform: translateX(4px);
}

/* Dark mode section override */
html.dark .services-section {
    background-color: #030712;
}

html.dark .service-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
    border-color: rgba(230, 0, 126, 0.4);
}

/* ================= PORTFOLIO SECTION ================= */
.portfolio-section {
    background-color: #030712;
    color: #ffffff;
    padding: 4rem 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media(min-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(12, 1fr);
    }
}

.portfolio-info {
    grid-column: span 5;
}

.portfolio-subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--brand-pink);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.portfolio-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.portfolio-desc {
    font-size: 0.875rem;
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.portfolio-gallery {
    grid-column: span 7;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media(min-width: 640px) {
    .portfolio-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

.portfolio-gallery img {
    width: 100%;
    height: 7rem;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}


/* ================= WHY CHOOSE US & PROCESS SECTIONS ================= */
.custom-card-section {
    padding: 4rem 0;
    background-color: #ffffff;
    overflow-x: hidden;
}

.custom-box {
    background: #ffffff;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    padding: 1.5rem 1rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    box-sizing: border-box;
    width: 100%;
    overflow: hidden;
}

@media(min-width: 1024px) {
    .custom-box {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        padding: 2rem;
        gap: 2rem;
        align-items: center;
    }
}

.features-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr; 
    gap: 2rem;
}

@media(min-width: 1024px) {
    .features-grid {
        grid-column: span 9;
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

@media(min-width: 1024px) {
    .feature-item {
        align-items: flex-start;
        text-align: left;
    }
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: #fdf2f8;
    color: var(--brand-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid #fce7f3;
}

.feature-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.25rem;
}

.feature-desc {
    font-size: 0.75rem;
    color: #6b7280;
    line-height: 1.5;
}

.quote-box {
    width: 100%;
    background: #f9fafb;
    border: 1px dashed #d1d5db;
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

@media(min-width: 1024px) {
    .quote-box {
        grid-column: span 3;
    }
}

.quote-text {
    font-family: serif;
    font-style: italic;
    font-size: 1.125rem;
    color: #1f2937;
    line-height: 1.4;
}

/* Process Specifics */
.process-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media(min-width: 1024px) {
    .process-grid {
        grid-column: span 8;
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-badge {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #db2777 0%, #7c3aed 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.process-cta-box {
    width: 100%;
    background: #0a1128;
    color: #ffffff;
    padding: 1.5rem;
    border-radius: 0.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

@media(min-width: 1024px) {
    .process-cta-box {
        grid-column: span 4;
        align-items: flex-start;
        text-align: left;
    }
}


/* ================= TESTIMONIALS & CTA ================= */
.testimonials-section {
    padding: 4rem 0;
    background-color: #111827;
    color: #ffffff;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    text-align: left;
}

@media(min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: #1f2937;
    padding: 1.5rem;
    border-radius: 0.75rem;
}

.testimonial-text {
    font-size: 0.75rem;
    color: #d1d5db;
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.6;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.client-info img {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    object-fit: cover;
}

.client-info h4 {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 700;
}

.client-info p {
    margin: 0;
    font-size: 0.625rem;
    color: #9ca3af;
}

.cta-banner {
    background-color: var(--brand-pink);
    color: #ffffff;
    padding: 3rem 0;
}

.cta-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    gap: 1.5rem;
}

@media(min-width: 768px) {
    .cta-flex {
        flex-direction: row;
        text-align: left;
    }
}


/* ================= EXACT FOOTER STYLING ================= */
.footer-wrapper {
    background-color: #050811;
    color: #ffffff;
    font-family: 'Lato', sans-serif;
}

.footer-top-banner {
    background: linear-gradient(90deg, #ff007f 0%, #7b00ff 50%, #3b008a 100%);
    padding: 2.5rem 1rem;
    position: relative;
}

.footer-top-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
}

@media(min-width: 1024px) {
    .footer-top-grid {
        flex-direction: row;
    }
}

.footer-brand-col {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
}

@media(min-width: 1024px) {
    .footer-brand-col {
        justify-content: flex-start;
        width: 35%;
        border-right: 1px solid rgba(255, 255, 255, 0.3);
        padding-right: 1.5rem;
    }
}

.footer-logo {
    height: 150px;
    object-fit: contain;
}

.footer-center-col {
    width: 100%;
    text-align: center;
}

@media(min-width: 1024px) {
    .footer-center-col {
        width: 40%;
        text-align: left;
    }
}

.footer-center-col h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 0.35rem 0;
    color: #ffffff;
}

.footer-center-col p {
    font-size: 0.75rem;
    color: #f3e8ff;
    margin: 0;
    line-height: 1.5;
}

.footer-right-col {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

@media(min-width: 1024px) {
    .footer-right-col {
        width: 25%;
        align-items: flex-end;
    }
}

.footer-btn-pill {
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.footer-btn-pill:hover {
    background-color: #ffffff;
    color: #ff007f;
}

.footer-contact-info {
    font-size: 0.75rem;
    color: #f3e8ff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact-info i {
    color: #ffffff;
}

.footer-bottom-bar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media(min-width: 768px) {
    .footer-bottom-bar {
        flex-direction: row;
    }
}

.footer-copy {
    font-size: 0.75rem;
    color: #9ca3af;
    margin: 0;
}

.footer-nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.75rem;
    color: #9ca3af;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-nav-links a:hover {
    color: #ffffff;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.social-circle {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: #111827;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.2s;
}

.social-circle:hover {
    background-color: var(--brand-pink);
    border-color: var(--brand-pink);
}

.social-icon-pink {
    color: #e6007e;
    transition: all 0.2s ease-in-out;
}

.social-icon-pink:hover {
    background-color: #e6007e !important;
    color: #ffffff !important;
    border-color: #e6007e !important;
}

/* ================= DARK MODE STYLES ================= */
html.dark body {
    background-color: #0b0f19;
    color: #f3f4f6;
}

/* Services Section */
html.dark .services-section {
    background-color: #030712;
}

html.dark .service-card {
    background-color: #111827;
    border-color: #1f2937;
    color: #f3f4f6;
}

html.dark .service-card ul {
    color: #d1d5db;
}

/* Why Choose Us & Working Process Sections */
html.dark .custom-card-section {
    background-color: #0b0f19;
}

html.dark .custom-box {
    background-color: #111827;
    border-color: #1f2937;
}

html.dark .feature-title {
    color: #ffffff;
}

html.dark .feature-desc {
    color: #9ca3af;
}

html.dark .feature-icon {
    background-color: rgba(230, 0, 126, 0.1);
    border-color: rgba(230, 0, 126, 0.2);
}

html.dark .quote-box {
    background-color: #1f2937;
    border-color: #374151;
}

html.dark .quote-text {
    color: #f3f4f6;
}

/* Header & Mobile Menu in Dark Mode */
html.dark header {
    background-color: #0b0f19 !important;
    border-bottom: 1px solid #1f2937;
}

html.dark header nav a {
    color: #f3f4f6;
}

html.dark #mobile-menu {
    background-color: #0b0f19 !important;
    border-color: #1f2937 !important;
}

/* Contact Page Form Inputs in Dark Mode */
html.dark input, 
html.dark select, 
html.dark textarea {
    background-color: #1f2937 !important;
    color: #ffffff !important;
    border-color: #374151 !important;
}

html.dark .bg-white {
    background-color: #111827 !important;
    color: #ffffff !important;
}

html.dark .border-gray-200, 
html.dark .border-gray-300 {
    border-color: #374151 !important;
}

html.dark .text-gray-900 {
    color: #ffffff !important;
}

html.dark .text-gray-600, 
html.dark .text-gray-700 {
    color: #9ca3af !important;
}

html.dark .bg-gray-50 {
    background-color: #030712 !important;
}

/* ================= ENHANCED DARK MODE CONTRAST FIXES ================= */
html.dark .section-title {
    color: #ffffff !important;
}

html.dark .section-subtitle,
html.dark .portfolio-desc,
html.dark .service-card p,
html.dark .service-card li {
    color: #9ca3af !important;
}

html.dark #about .section-header h2,
html.dark #about .section-header p,
html.dark .custom-card-section .section-header h2,
html.dark .custom-card-section .section-header p {
    color: #ffffff !important;
}

html.dark #about .section-header p,
html.dark .custom-card-section .section-header p {
    color: #9ca3af !important;
}

html.dark .service-card {
    background-color: #111827 !important;
    border-color: #1f2937 !important;
}

html.dark .service-card h3 {
    color: #ffffff !important;
}

html.dark .testimonials-section h2,
html.dark .testimonials-section p {
    color: #ffffff !important;
}

html.dark .testimonial-card {
    background-color: #1f2937 !important;
    border: 1px solid #374151;
}

html.dark .testimonial-text {
    color: #e5e7eb !important;
}

/* ================= UNIFIED CONTACT & ABOUT CARD DARK MODE FIX ================= */
html.dark .bg-white.p-5,
html.dark .bg-white.p-6 {
    background-color: #111827 !important;
    border-color: #1f2937 !important;
}

html.dark .bg-white.p-5 .rounded-full,
html.dark .bg-white.p-6 .rounded-full {
    background-color: rgba(230, 0, 126, 0.15) !important;
    color: var(--brand-pink) !important;
    border-color: rgba(230, 0, 126, 0.3) !important;
}

html.dark .bg-white.p-5 .rounded-full i,
html.dark .bg-white.p-6 .rounded-full i {
    color: var(--brand-pink) !important;
}

html.dark .bg-white.p-5 h4,
html.dark .bg-white.p-6 h3 {
    color: #ffffff !important;
}

html.dark .bg-white.p-5 p,
html.dark .bg-white.p-6 p {
    color: #9ca3af !important;
}
html.dark .grid.grid-cols-1.sm\:grid-cols-2.gap-3.text-xs {
    color: #f3f4f6 !important;
}

html.dark .grid.grid-cols-1.sm\:grid-cols-2.gap-3.text-xs span {
    color: #e5e7eb !important;
}
html.dark .bg-\[\#0b0f19\] {
    background-color: #030712 !important;
}

/* ================= PORTFOLIO PAGE DARK MODE STYLING ================= */
html.dark .bg-gray-50 {
    background-color: #030712 !important;
}

html.dark .bg-white.rounded-2xl {
    background-color: #111827 !important;
    border-color: #1f2937 !important;
}

html.dark .bg-white.rounded-2xl h3 {
    color: #ffffff !important;
}

html.dark .bg-white.rounded-2xl p {
    color: #9ca3af !important;
}

html.dark .bg-white.text-gray-700 {
    background-color: #1f2937 !important;
    color: #d1d5db !important;
    border-color: #374151 !important;
}

/* ================= PORTFOLIO NEW SECTIONS DARK MODE FIX ================= */
html.dark .bg-white.border-t {
    background-color: #030712 !important;
    border-color: #1f2937 !important;
}

html.dark .bg-gray-50.border-t {
    background-color: #0b0f19 !important;
    border-color: #1f2937 !important;
}

html.dark .p-6.rounded-2xl.bg-gray-50 {
    background-color: #111827 !important;
    border-color: #1f2937 !important;
}

html.dark .p-6.rounded-2xl.bg-gray-50 h3 {
    color: #ffffff !important;
}

html.dark .p-6.rounded-2xl.bg-gray-50 p {
    color: #9ca3af !important;
}

html.dark .opacity-70 div {
    color: #d1d5db !important;
}
/* ================= PORTFOLIO FILTER BUTTON STYLES ================= */
.filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
    background-color: #ffffff;
    color: #374151;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
    cursor: pointer;
}

.filter-btn:hover {
    border-color: var(--brand-pink);
    color: var(--brand-pink);
}

.filter-btn.active {
    background-color: var(--brand-pink);
    color: #ffffff;
    border-color: var(--brand-pink);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Dark mode support for filter buttons */
html.dark .filter-btn {
    background-color: #1f2937;
    color: #d1d5db;
    border-color: #374151;
}

html.dark .filter-btn:hover {
    border-color: var(--brand-pink);
    color: var(--brand-pink);
}

html.dark .filter-btn.active {
    background-color: var(--brand-pink);
    color: #ffffff;
    border-color: var(--brand-pink);
}
/* ================= SERVICES PAGE ICONS DARK MODE FIX ================= */

/* Highlights strip icon circles dark mode styling */
html.dark .py-8.bg-white .rounded-full {
    background-color: rgba(230, 0, 126, 0.15) !important;
    color: var(--brand-pink) !important;
    border: 1px solid rgba(230, 0, 126, 0.3) !important;
}

html.dark .py-8.bg-white h4 {
    color: #ffffff !important;
}

html.dark .py-8.bg-white p {
    color: #9ca3af !important;
}

/* Service card banners and icon boxes in dark mode */
html.dark .service-banner {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

html.dark .service-icon-box {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
}

/* Service card list item checkmarks and text contrast */
html.dark .service-list li {
    color: #d1d5db !important;
}

html.dark .service-list li i {
    color: var(--brand-pink) !important;
}

/* Service card footer link and helper text */
html.dark .service-footer span {
    color: #9ca3af !important;
}

/* ================= FLOATING WHATSAPP PULSE ANIMATION =0================ */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.fixed.bottom-6.right-6 {
    animation: whatsapp-pulse 2s infinite;
}