/* =====================================================
   TATVEX.IN - Custom Styles
   AI Agency Website
   ===================================================== */

/* =====================================================
   1. CSS RESET & BASE STYLES
   ===================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: #0a0a0f;
}

/* Selection color */
::selection {
    background: rgba(255, 86, 34, 0.3);
    color: inherit;
}

/* =====================================================
   2. OFFER BANNER - Fixed Top Banner
   ===================================================== */
.offer-banner {
    background: linear-gradient(135deg, #ff5622 0%, #ff8a00 100%);
    color: white;
    text-align: center;
    padding: 14px 20px;
    font-weight: 600;
    font-size: 15px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    box-shadow: 0 2px 10px rgba(255, 86, 34, 0.3);
    line-height: 1.4;
}

.offer-banner a {
    color: white;
    text-decoration: underline;
    margin-left: 12px;
    font-weight: 700;
    transition: opacity 0.3s;
}

.offer-banner a:hover {
    opacity: 0.9;
}

/* Page wrapper offset for fixed banner - CRITICAL FIX */
.page-wrapper {
    margin-top: 50px !important;
    padding-top: 0;
}

/* =====================================================
   3. NAVIGATION - Logo & Navbar Fixes
   ===================================================== */
.navbar {
    position: relative !important;
    z-index: 9000;
    background-color: #0f0f14 !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Nav links - ensure visibility on dark background */
.nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    transition: color 0.3s !important;
}

.nav-link:hover,
.nav-link.w--current {
    color: #ff5622 !important;
}

/* Logo Sizing - Properly Fitted */
.navbar-logo-image {
    height: 45px !important;
    width: auto !important;
    max-width: 150px;
    object-fit: contain;
    display: block;
}

.navbar-logo {
    display: flex;
    align-items: center;
    padding: 10px 0;
}

/* Menu button for mobile */
.menu-button,
.w-nav-button {
    color: white !important;
}

.w-icon-nav-menu {
    color: white !important;
}

/* Book a Call Button in Navbar */
.book-call-btn {
    background: linear-gradient(135deg, #ff5622 0%, #ff8a00 100%) !important;
    color: white !important;
    padding: 12px 24px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    text-decoration: none !important;
    transition: transform 0.3s, box-shadow 0.3s !important;
    display: inline-block !important;
    white-space: nowrap;
}

.book-call-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(255, 86, 34, 0.4) !important;
}

/* =====================================================
   4. HERO SECTION
   ===================================================== */
.slogan-text {
    color: #ff5622;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ai-highlight {
    color: #ff5622;
    font-weight: 700;
    -webkit-text-fill-color: #ff5622 !important;
}

.banner-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.banner-description-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
}

/* =====================================================
   5. ABOUT SECTION CARDS
   ===================================================== */
.about-us-card h3 {
    font-size: 2.2rem !important;
    font-weight: 700 !important;
    color: #ff5622;
}

/* =====================================================
   6. SERVICES SECTION
   ===================================================== */
.services-name {
    font-size: 1.6rem !important;
}

.services-single {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-single:hover {
    transform: translateY(-5px);
}

/* Service Cards (services.html page) */
.service-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 16px;
    padding: 35px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 86, 34, 0.3);
}

.service-number {
    color: #ff5622;
    font-size: 2.5rem;
    font-weight: 800;
    opacity: 0.6;
    margin-bottom: 10px;
}

.service-title {
    color: white;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 10px 0 15px;
}

.service-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.7;
}

.service-features {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    background: rgba(255, 86, 34, 0.15);
    color: #ff5622;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 86, 34, 0.3);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

/* =====================================================
   7. FORMS - Contact & Book a Call
   ===================================================== */
.form-input,
.contact-us-form-input-field,
.contact-us-form-textarea {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    padding: 14px 16px !important;
    border-radius: 8px !important;
    font-size: 1rem !important;
    transition: border-color 0.3s, box-shadow 0.3s !important;
    width: 100% !important;
}

.form-input:focus,
.contact-us-form-input-field:focus,
.contact-us-form-textarea:focus {
    border-color: #ff5622 !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(255, 86, 34, 0.15) !important;
}

.form-input::placeholder,
.contact-us-form-input-field::placeholder,
.contact-us-form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

/* Select dropdowns */
select.form-input,
select.contact-us-form-input-field {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 14px center !important;
    background-size: 12px !important;
    padding-right: 40px !important;
}

/* Submit buttons */
.submit-btn,
.contact-us-form-submit-button {
    background: linear-gradient(135deg, #ff5622 0%, #ff8a00 100%) !important;
    color: white !important;
    padding: 16px 32px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    border: none !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: transform 0.3s, box-shadow 0.3s !important;
    width: 100% !important;
    margin-top: 10px !important;
}

.submit-btn:hover,
.contact-us-form-submit-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 30px rgba(255, 86, 34, 0.4) !important;
}

/* Form rows */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
    font-size: 0.95rem;
}

/* =====================================================
   8. CTA SECTION
   ===================================================== */
.section.cta {
    background: linear-gradient(135deg, #ff5622 0%, #ff7535 50%, #ff5622 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* =====================================================
   9. FOOTER
   ===================================================== */
.footer-logo-image {
    height: 60px !important;
    width: auto !important;
    max-width: 150px;
    object-fit: contain;
}

.footer-menu-text-link {
    transition: color 0.3s;
}

.footer-menu-text-link:hover {
    color: #ff5622;
}

/* =====================================================
   10. ABOUT PAGE STYLES
   ===================================================== */
.mission-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 80px 0;
}

.mission-title {
    color: #ff5622;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-align: center;
}

.mission-statement {
    color: white;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 25px;
    text-align: center;
}

.mission-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.value-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 86, 34, 0.4);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 18px;
}

.value-title {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.value-description {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Why Choose Grid */
.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    margin-top: 40px;
}

.why-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.why-number {
    color: #ff5622;
    font-size: 2.2rem;
    font-weight: 800;
    min-width: 55px;
    line-height: 1;
}

.why-content h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.why-content p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Expertise Tags */
.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 35px;
}

.expertise-tag {
    background: rgba(255, 86, 34, 0.1);
    border: 1px solid rgba(255, 86, 34, 0.3);
    color: #ff5622;
    padding: 10px 22px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background 0.3s;
}

.expertise-tag:hover {
    background: rgba(255, 86, 34, 0.2);
}

/* =====================================================
   11. BOOK A CALL PAGE
   ===================================================== */
.book-call-wrapper {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    padding: 50px;
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.book-call-title {
    color: white;
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}

.book-call-subtitle {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 35px;
    font-size: 1.05rem;
}

.offer-highlight {
    background: linear-gradient(135deg, rgba(255, 86, 34, 0.1) 0%, rgba(255, 138, 0, 0.1) 100%);
    border: 2px solid #ff5622;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin-bottom: 30px;
}

.offer-highlight-text {
    color: #ff5622;
    font-size: 1.25rem;
    font-weight: 700;
}

.benefits-list {
    margin-top: 35px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.benefits-list h4 {
    color: white;
    margin-bottom: 18px;
    font-size: 1.1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.benefit-icon {
    color: #ff5622;
    font-size: 1.1rem;
    font-weight: 700;
}

/* =====================================================
   12. RESPONSIVE DESIGN - TABLET
   ===================================================== */
@media screen and (max-width: 991px) {

    /* Offer Banner */
    .offer-banner {
        padding: 12px 15px;
        font-size: 13px;
    }

    .page-wrapper {
        margin-top: 45px !important;
    }

    /* Navigation */
    .navbar-logo-image {
        height: 40px !important;
    }

    .book-call-btn {
        padding: 10px 18px !important;
        font-size: 13px !important;
    }

    /* Hero */
    .banner-title {
        font-size: 2.4rem;
    }

    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Values Grid */
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Why Choose */
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* Book Call */
    .book-call-wrapper {
        padding: 35px 25px;
    }

    .book-call-title {
        font-size: 1.9rem;
    }

    /* Footer logo */
    .footer-logo-image {
        height: 50px !important;
    }
}

/* =====================================================
   13. RESPONSIVE DESIGN - MOBILE
   ===================================================== */
@media screen and (max-width: 767px) {

    /* Offer Banner - Mobile */
    .offer-banner {
        padding: 10px 12px;
        font-size: 12px;
        line-height: 1.5;
    }

    .offer-banner a {
        display: block;
        margin: 5px 0 0 0;
    }

    .page-wrapper {
        margin-top: 60px !important;
        /* Extra space for wrapped banner text */
    }

    /* Navigation */
    .navbar-logo-image {
        height: 35px !important;
    }

    .book-call-btn {
        padding: 8px 14px !important;
        font-size: 12px !important;
    }

    /* Hero Section */
    .slogan-text {
        font-size: 0.9rem;
    }

    .banner-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .banner-description-text {
        font-size: 1rem;
    }

    /* Services */
    .services-name {
        font-size: 1.3rem !important;
    }

    .service-card {
        padding: 25px 20px;
    }

    .service-title {
        font-size: 1.35rem;
    }

    .service-number {
        font-size: 2rem;
    }

    /* Forms */
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Values Grid */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .value-card {
        padding: 25px 20px;
    }

    .mission-statement {
        font-size: 1.7rem;
    }

    .mission-description {
        font-size: 1rem;
    }

    /* Book Call */
    .book-call-wrapper {
        padding: 25px 18px;
        margin: 0 10px;
        border-radius: 16px;
    }

    .book-call-title {
        font-size: 1.6rem;
    }

    .offer-highlight-text {
        font-size: 1.1rem;
    }

    /* About Cards */
    .about-us-card h3 {
        font-size: 1.8rem !important;
    }

    /* Container padding */
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

/* =====================================================
   14. RESPONSIVE DESIGN - SMALL MOBILE
   ===================================================== */
@media screen and (max-width: 479px) {
    .offer-banner {
        font-size: 11px;
        padding: 8px 10px;
    }

    .page-wrapper {
        margin-top: 70px !important;
    }

    .navbar-logo-image {
        height: 32px !important;
    }

    .banner-title {
        font-size: 1.5rem;
    }

    .book-call-wrapper {
        padding: 20px 15px;
    }

    .book-call-title {
        font-size: 1.4rem;
    }

    .service-card {
        padding: 20px 15px;
    }

    .feature-tag {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
}

/* =====================================================
   15. UTILITIES & FIXES
   ===================================================== */

/* Fix for WebFlow default opacity animation */
.page-wrapper {
    opacity: 1 !important;
}

/* Inner page banners */
.section.inner-banner {
    padding-top: 60px;
    padding-bottom: 60px;
}

.inner-banner-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.inner-banner-description {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.8;
}

@media screen and (max-width: 767px) {
    .inner-banner-title {
        font-size: 1.8rem;
    }

    .inner-banner-description {
        font-size: 1rem;
    }
}

/* Primary Button Enhancements */
.primary-button {
    transition: transform 0.3s, box-shadow 0.3s !important;
}

.primary-button:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(255, 86, 34, 0.3) !important;
}

/* Image responsiveness */
img {
    max-width: 100%;
    height: auto;
}

/* Navbar wrapper on mobile */
@media screen and (max-width: 767px) {
    .navbar-wrapper {
        flex-wrap: wrap;
        gap: 10px;
    }

    .navbar-contact-wrapper {
        order: 3;
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 10px 0;
    }
}

/* =====================================================
   16. SECTION BACKGROUNDS
   ===================================================== */

/* Services page background */
.section.services-bg {
    background: #0a0a0f;
    padding: 80px 0;
}

/* Book a call section */
.section.book-call-section {
    background: #0a0a0f;
    padding: 100px 0;
}

/* Mission section */
.mission-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 80px 0;
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Why choose section */
.why-choose-section {
    background: #0a0a0f;
    padding: 80px 0;
}

/* Expertise section */
.expertise-section {
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
    padding: 80px 0;
}

/* =====================================================
   17. SECTION HEADER UTILITIES
   ===================================================== */

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.section-header p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive adjustments for section backgrounds */
@media screen and (max-width: 767px) {

    .section.services-bg,
    .section.book-call-section {
        padding: 60px 0;
    }

    .mission-section,
    .why-choose-section,
    .expertise-section {
        padding: 60px 0;
    }
}

/* =====================================================
   18. TEXT VISIBILITY & COLOR FIXES
   ===================================================== */

/* Ensure all text on dark backgrounds is visible */
body,
.page-wrapper {
    color: rgba(255, 255, 255, 0.9);
}

/* Fix any default black text to white */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: white !important;
}

p {
    color: rgba(255, 255, 255, 0.75);
}

/* Section titles */
.section-title,
.inner-banner-title,
.cta-title {
    color: white !important;
}

/* Section subtitles */
.section-subtitle,
.cta-subtitle {
    color: #ff5622 !important;
}

/* Description text */
.section-description,
.inner-banner-description,
.services-description {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* Working process text */
.working-process-title,
.working-process-text {
    color: white !important;
}

.working-process-description {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* About section text */
.about-us-text,
.about-us-single-text {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Blue accent for highlights */
.blue-highlight {
    color: #3b82f6 !important;
}

/* Footer text */
.footer-details-text {
    color: rgba(255, 255, 255, 0.7) !important;
}

.footer-details-text-link {
    color: #ff5622 !important;
}

/* Form labels */
.contact-us-form-text-field {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Fix banner typography */
.banner-typography,
.inner-banner-typography {
    opacity: 1 !important;
}

/* Services content visibility */
.services-contenr,
.services-name,
.services-text {
    color: white !important;
}

/* Contact details */
.contact-us-details-title {
    color: white !important;
}

.contact-us-details-text {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* =====================================================
   19. PREMIUM ACCENTS & EFFECTS
   ===================================================== */

/* Orange glow effect for buttons */
.primary-button:hover,
.book-call-btn:hover {
    box-shadow: 0 0 30px rgba(255, 86, 34, 0.5) !important;
}

/* Blue accent borders for cards on hover */
.services-single:hover,
.value-card:hover {
    border-color: rgba(59, 130, 246, 0.3) !important;
}

/* Gradient text for special elements */
.gradient-text {
    background: linear-gradient(135deg, #ff5622, #ff8a00, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glass morphism effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* =====================================================
   20. WORKING PROCESS SECTION - DARK STYLING
   ===================================================== */

/* Force dark background for working process section */
.section.working-process {
    background: #0f0f1a !important;
    padding: 80px 0;
}

/* Section subtitle */
.section-subtitle {
    color: #ff5622 !important;
}

/* Section title in working process */
.section.working-process .section-title,
.section.working-process .section-title.mb0 {
    color: white !important;
}

/* Working process cards */
.working-process-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 16px !important;
}

.working-process-card:hover {
    border-color: rgba(255, 86, 34, 0.3) !important;
}

/* Card numbers */
.working-process-card-number {
    color: #ff5622 !important;
    font-weight: 800;
}

/* Card titles */
.working-process-card-title {
    color: white !important;
}

/* Card descriptions */
.working-process-card-description {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Primary button styling */
.primary-button {
    background: linear-gradient(135deg, #ff5622 0%, #ff8a00 100%) !important;
}

.primary-button-text-block {
    color: white !important;
}

/* =====================================================
   21. ADDITIONAL SECTION FIXES
   ===================================================== */

/* Services Tools Ticker */
.section.services-tools {
    background: #0a0a0f !important;
}

.services-tools-name {
    color: white !important;
}

/* About section */
.section.about-us {
    background: #0f0f1a !important;
}

.about-us-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.about-us-card-title,
.about-us-card h3 {
    color: white !important;
}

.about-us-card-description {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* Contact section */
.section.contact-us {
    background: #0a0a0f !important;
}

/* Footer section */
.section.footer {
    background: #0a0a0f !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Inner banner sections */
.section.inner-banner {
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%) !important;
}

/* =====================================================
   22. REDESIGNED PREMIUM FOOTER
   ===================================================== */

/* Main Footer Container */
.footer-new {
    background: linear-gradient(180deg, #0a0a0f 0%, #08080c 100%);
    position: relative;
    overflow: hidden;
}

.footer-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 86, 34, 0.3), transparent);
}

/* Footer Main Content */
.footer-main {
    padding: 80px 0 60px;
}

/* Footer Grid - 4 columns */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
}

/* Brand Column */
.footer-brand-col {
    max-width: 320px;
}

.footer-brand-link {
    display: inline-block;
    margin-bottom: 15px;
}

.footer-brand-logo {
    height: 55px;
    width: auto;
}

.footer-brand-tagline {
    color: #ff5622;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.footer-brand-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Newsletter */
.footer-newsletter {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;
}

.footer-newsletter-title {
    color: white;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
}

.footer-newsletter-form {
    display: flex;
    gap: 8px;
}

.footer-newsletter-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 15px;
    color: white;
    font-size: 14px;
    transition: all 0.3s;
}

.footer-newsletter-input:focus {
    outline: none;
    border-color: #ff5622;
    background: rgba(255, 86, 34, 0.05);
}

.footer-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.footer-newsletter-btn {
    background: linear-gradient(135deg, #ff5622 0%, #ff8a00 100%);
    border: none;
    border-radius: 8px;
    padding: 12px 18px;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
}

.footer-newsletter-btn:hover {
    transform: translateX(3px);
    box-shadow: 0 5px 20px rgba(255, 86, 34, 0.4);
}

/* Column Titles */
.footer-col-title {
    color: white;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #ff5622, #ff8a00);
    border-radius: 2px;
}

/* Links List */
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 14px;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links-list a:hover {
    color: #ff5622;
    transform: translateX(5px);
}

/* Contact Column */
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.footer-contact-icon {
    font-size: 18px;
}

.footer-contact-link,
.footer-contact-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact-link:hover {
    color: #ff5622;
}

/* CTA Button */
.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff5622 0%, #ff8a00 100%);
    color: white;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 22px;
    border-radius: 10px;
    text-decoration: none;
    margin-top: 15px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(255, 86, 34, 0.25);
}

.footer-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 86, 34, 0.4);
}

.footer-cta-badge {
    background: white;
    color: #ff5622;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 5px;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px 0;
}

.footer-bottom .footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin: 0;
}

.footer-copyright a {
    color: #ff5622;
    text-decoration: none;
    font-weight: 600;
}

.footer-made-with {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand-col {
        grid-column: span 2;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 60px 0 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-brand-col {
        grid-column: span 1;
        text-align: center;
    }

    .footer-brand-desc {
        max-width: 100%;
    }

    .footer-col-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links-col,
    .footer-contact-col {
        text-align: center;
    }

    .footer-links-list a:hover {
        transform: translateX(0);
    }

    .footer-contact-item {
        justify-content: center;
    }

    .footer-cta-btn {
        width: 100%;
        justify-content: center;
    }

    .footer-bottom .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* =====================================================
   23. HERO SECTION & BANNER FIXES
   ===================================================== */

/* Hero section */
.section.banner {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%) !important;
    padding: 100px 0 80px;
}

/* Banner title */
.banner-title {
    color: white !important;
    font-size: 3.2rem;
    line-height: 1.2;
}

/* Banner description */
.banner-description-text {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Banner video button - Explore Services */
.banner-video-button {
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    padding: 14px 28px !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
}

.banner-video-button:hover {
    border-color: #ff5622 !important;
    background: rgba(255, 86, 34, 0.1) !important;
}

.banner-video-button-text {
    color: white !important;
    font-weight: 600;
}

/* =====================================================
   24. CTA SECTION FIXES
   ===================================================== */

/* CTA Section */
.section.cta {
    background: linear-gradient(135deg, #ff5622 0%, #ff8a00 100%) !important;
    padding: 80px 0;
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.9) !important;
}

.cta-title {
    color: white !important;
    font-size: 2.5rem;
}

/* White variant button in CTA */
.primary-button[data-wf--primary-button--variant="white"],
.primary-button .w-variant-87a1fbc7-f066-f125-80d5-39847f18f3e6 {
    background: white !important;
}

.primary-button-text-block.w-variant-87a1fbc7-f066-f125-80d5-39847f18f3e6 {
    color: #ff5622 !important;
}

/* =====================================================
   25. ABOUT US CARDS FIX
   ===================================================== */

/* About section background */
.section.about-us {
    background: #0a0a0f !important;
}

/* About us cards - DARK background, not blue */
.about-us-card {
    background: #12121a !important;
    border: 1px solid rgba(255, 86, 34, 0.2) !important;
    border-radius: 16px !important;
    padding: 30px !important;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s !important;
}

.about-us-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 86, 34, 0.5) !important;
    box-shadow: 0 15px 40px rgba(255, 86, 34, 0.15) !important;
}

/* Card headings - orange */
.about-us-card h3 {
    color: #ff5622 !important;
    font-weight: 700 !important;
}

/* Card descriptions */
.about-us-card-description {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* About Us Card Icons - Make them ORANGE */
.about-us-card-icon {
    filter: brightness(0) saturate(100%) invert(41%) sepia(98%) saturate(1904%) hue-rotate(346deg) brightness(103%) contrast(102%) !important;
}

/* About Us card icon wrapper */
.about-us-card-icon-wrap {
    background: rgba(255, 86, 34, 0.1) !important;
    border-radius: 12px;
    padding: 15px;
    display: inline-flex;
}

/* About us bottom content */
.about-us-single {
    background: #12121a !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 16px !important;
}

.about-us-single-title {
    color: white !important;
}

.about-us-single-text {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* Get in Touch card fix */
.navbar-contact-title.about-us {
    color: white !important;
}

.navbar-contact-number.about {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* About image wrapper - dark background */
.about-us-image-wrapper {
    background: #0f0f1a !important;
    border-radius: 16px;
}

/* About top grid */
.about-us-top-grid {
    gap: 20px;
}

/* =====================================================
   26. SECTION SUBTITLE ICONS - ORANGE STYLE
   ===================================================== */

/* Make subtitle icons orange themed */
.section-subtitle-icon {
    filter: brightness(0) saturate(100%) invert(41%) sepia(98%) saturate(1904%) hue-rotate(346deg) brightness(103%) contrast(102%);
}

.section-subtitle-single {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 86, 34, 0.1);
    padding: 8px 16px;
    border-radius: 25px;
    border: 1px solid rgba(255, 86, 34, 0.3);
}

/* =====================================================
   27. COMPANY SECTION
   ===================================================== */

.section.company-section {
    background: #0f0f1a !important;
    padding: 40px 0;
}

.company-subtitle {
    color: rgba(255, 255, 255, 0.6) !important;
}

.company-subtitle-line {
    background: rgba(255, 255, 255, 0.2) !important;
}

/* =====================================================
   28. ANIMATIONS
   ===================================================== */

/* Fade in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Apply animations */
.banner-typography {
    animation: fadeInUp 0.8s ease-out;
}

.banner-image-wrapper {
    animation: slideInRight 0.8s ease-out;
}

.section-title-wrapper {
    animation: fadeIn 0.6s ease-out;
}

.about-us-card,
.services-single,
.working-process-card,
.value-card {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.about-us-card._01,
.services-single._1st {
    animation-delay: 0.1s;
}

.about-us-card._02 {
    animation-delay: 0.2s;
}

.about-us-card._03 {
    animation-delay: 0.3s;
}

.about-us-card._04 {
    animation-delay: 0.4s;
}

.working-process-card._01 {
    animation-delay: 0.1s;
}

.working-process-card._02 {
    animation-delay: 0.3s;
}

.working-process-card._03 {
    animation-delay: 0.5s;
}

/* Hover animations */
.primary-button {
    transition: all 0.3s ease !important;
}

.primary-button:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 40px rgba(255, 86, 34, 0.4) !important;
}

.book-call-btn:hover {
    transform: translateY(-3px) !important;
    animation: pulse 0.5s ease;
}

/* Card hover effects */
.services-single:hover,
.about-us-card:hover,
.working-process-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
}

/* Float animation for banner image */
.banner-image {
    animation: float 3s ease-in-out infinite;
}

/* =====================================================
   29. TRUST ELEMENTS
   ===================================================== */

/* Add subtle trust indicators */
.section.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.section.cta {
    position: relative;
}

/* Improved form styling for trust */
.contact-us-form-wrapper,
.book-call-wrapper {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3) !important;
}

/* =====================================================
   30. SERVICES SECTION DARK FIX
   ===================================================== */

.section.services {
    background: #0a0a0f !important;
}

.services-single {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.services-number {
    color: #ff5622 !important;
}

.services-name {
    color: white !important;
}

.services-description-text {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Services arrow icon - make it orange */
.services-arrow-icon {
    filter: brightness(0) saturate(100%) invert(41%) sepia(98%) saturate(1904%) hue-rotate(346deg) brightness(103%) contrast(102%);
}

/* =====================================================
   31. CONTACT PAGE FORM FIXES
   ===================================================== */

/* Fix dropdown select elements - dark background, white text */
.contact-us-form select,
.book-call-form select,
select.w-select,
.form-field.w-select {
    background-color: #12121a !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 8px !important;
    padding: 12px 15px !important;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ff5622' d='M6 8L1 3h10z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 15px center !important;
}

.contact-us-form select:focus,
.book-call-form select:focus,
select.w-select:focus {
    border-color: #ff5622 !important;
    outline: none !important;
}

/* Fix select dropdown options */
.contact-us-form select option,
.book-call-form select option,
select.w-select option {
    background-color: #1a1a2e !important;
    color: white !important;
    padding: 10px !important;
}

/* =====================================================
   32. CONTACT INFO BOXES - EMAIL, LOCATION, RESPONSE
   ===================================================== */

/* Contact details section background */
.contact-us-details-wrapper {
    background: #0a0a0f !important;
    padding: 40px 30px;
    border-radius: 16px;
}

/* Individual contact info items */
.contact-us-details-single {
    background: #12121a !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
}

/* Contact info icons - make ORANGE */
.contact-us-details-icon {
    filter: brightness(0) saturate(100%) invert(41%) sepia(98%) saturate(1904%) hue-rotate(346deg) brightness(103%) contrast(102%) !important;
}

.contact-us-details-icon-single {
    background: rgba(255, 86, 34, 0.1) !important;
    padding: 15px;
    border-radius: 10px;
}

/* Contact info titles */
.contact-us-details-title {
    color: #ff5622 !important;
    font-weight: 600 !important;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

/* Contact info text */
.contact-us-details-text {
    color: white !important;
    font-size: 16px;
}

/* =====================================================
   33. HOW WE WORK / WORKING PROCESS ICONS - ORANGE
   ===================================================== */

/* Working process section background */
.section.working-process {
    background: #0a0a0f !important;
}

/* Working process cards */
.working-process-card {
    background: #12121a !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 16px !important;
}

.working-process-card:hover {
    border-color: rgba(255, 86, 34, 0.4) !important;
}

/* Working process icons - Make ORANGE */
.working-process-dot-icon,
.working-process-icon {
    filter: brightness(0) saturate(100%) invert(41%) sepia(98%) saturate(1904%) hue-rotate(346deg) brightness(103%) contrast(102%) !important;
}

.working-process-icon-wrapper,
.working-process-icon-single {
    background: rgba(255, 86, 34, 0.1) !important;
    padding: 20px;
    border-radius: 12px;
}

/* Working process number */
.working-process-number {
    color: #ff5622 !important;
    font-weight: 700 !important;
}

/* Working process titles */
.working-process-name {
    color: white !important;
}

/* Working process description */
.working-process-description-text {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* =====================================================
   34. PARTNERS/TRUSTED SECTION FIX
   ===================================================== */

/* Partners section - should have dark background not white */
.section.partner,
.section.partners,
.partner-section,
.trusted-partners-section {
    background: #0a0a0f !important;
}

/* Partners heading */
.partner-title,
.trusted-partners-title,
.section.partner h3,
.section.partners h3 {
    color: white !important;
}

/* Partners description */
.partner-description,
.section.partner p {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Ticker/marquee section if any */
.ticker-section,
.marquee-section,
.section.ticker {
    background: #0a0a0f !important;
}

.ticker-text,
.marquee-text {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* =====================================================
   35. ALL REMAINING WHITE BACKGROUNDS FIX
   ===================================================== */

/* Any section that appears white - force dark */
section {
    background-color: #0a0a0f;
}

/* Ensure text visibility on dark backgrounds */
.section-title,
section h2,
section h3 {
    color: white !important;
}

section p,
.section-description {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* Fix any remaining white background in main content */
.page-wrapper,
.main-wrapper,
main {
    background: #0a0a0f !important;
}

/* Fix for inner banner subtitle text */
.inner-banner-subtitle-text,
.inner-banner-subtitle {
    color: rgba(255, 255, 255, 0.8) !important;
}