﻿/*video hero----------------------------------------*/

:root {
    --video-hero-primary: #00d2ff;
    --video-hero-text: #ffffff;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.video-hero-container {
    position: relative;
    width: 100%;
    height: 100vh;
    /* height: 100svh; Optional: Fixes mobile browser address bar jumping */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    overflow: hidden;
}

/* MOBILE FIRST: We use 'cover' so the video fills the tall portrait screen */
.video-hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* DESKTOP FIX: Use 'contain' only on wide screens if you want to avoid cropping */
@media (min-width: 1024px) {
    .video-hero-bg {
        object-fit: contain;
    }
}

/* Mobile Overlay: Protects your text from being washed out by the video */
.video-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15); /* Adjust 0.4 to make it darker or lighter */
    z-index: 2;
}

.video-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 20px;
    width: 100%;
    max-width: 900px;
}

.video-hero-title {
    /* clamp makes the text grow perfectly between mobile and desktop */
    font-size: clamp(2.2rem, 10vw, 5rem);
    font-weight: 800;
    color: var(--video-hero-text);
    margin-bottom: 1.2rem;
    line-height: 1.1;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    letter-spacing: -1.5px;
}

.video-hero-highlight {
    color: var(--video-hero-primary);
}

.video-hero-subtitle {
    font-size: clamp(1rem, 4.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    line-height: 1.6;
    letter-spacing: 0.2px;
}

.video-hero-btn-primary {
    display: inline-block;
    padding: 16px 36px; /* Larger tap area for mobile thumbs */
    background: var(--video-hero-text);
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

    .video-hero-btn-primary:hover {
        transform: scale(1.05);
        background: var(--video-hero-primary);
        color: #fff;
        box-shadow: 0 10px 20px rgba(0, 210, 255, 0.3);
    }

/* Small Screen Adjustment */
@media (max-width: 480px) {
    .video-hero-title {
        font-size: 2.5rem;
    }

    .video-hero-btn-primary {
        width: 80%; /* Makes the button easier to hit on small phones */
    }
}


/*image slide show-----------------------------------------*/

/* No background, just a flexible container */
.movingimages-container {
    width: 100%;
    overflow: hidden;
    padding: 30px 0;
    background: transparent;
    position: relative;
    /* This creates the elegant 'fade-out' on edges without using solid colors */
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent 100% );
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent 100% );
}

.movingimages-wrapper {
    display: flex;
    width: max-content;
}

.movingimages-track {
    display: flex;
    /* Adjust 'gap' to control spacing between images */
    gap: 25px;
    /* 40s duration for a slow, premium feel. Lower = Faster. */
    animation: movingimages-loop 40s linear infinite;
}

.movingimages-item {
    width: 280px;
    height: 160px;
    object-fit: cover;
    border-radius: 20px; /* Highly rounded for that 2026 aesthetic */
    border: 1px solid rgba(255, 255, 255, 0.15);
    /* Soft shadow to pop against any app background */
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Elegant touch: Pause on hover so users can see the AI's work */
.movingimages-track:hover {
    animation-play-state: paused;
}

.movingimages-item:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 45px 0 rgba(0, 0, 0, 0.6);
}

/* The Animation Logic */
@keyframes movingimages-loop {
    from {
        transform: translateX(0);
    }

    to {
        /* Move exactly by the width of 10 images + their gaps */
        /* Calculation: (Image Width 280px * 10) + (Gap 25px * 10) = 3050px */
        transform: translateX(-3050px);
    }
}

/* Mobile Polish */
@media (max-width: 600px) {
    .movingimages-item {
        width: 160px;
        height: 100px;
        border-radius: 12px;
    }

    @keyframes movingimages-loop {
        to {
            /* Mobile Calculation: (160 * 10) + (25 * 10) = 1850px */
            transform: translateX(-1850px);
        }
    }
}








/*mobile and desktop style showcase-------------------------*/


.amazingstyle-section {
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    background: transparent;
    font-family: 'Inter', sans-serif;
}

.amazingstyle-container {
    max-width: 1100px;
    width: 100%;
}

.amazingstyle-info {
    text-align: center;
    margin-bottom: 60px;
}

.amazingstyle-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: white;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.amazingstyle-description {
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid Layout */
.amazingstyle-showcase-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    perspective: 1000px;
}

/* Base Card Styling */
.amazingstyle-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 20px;
    backdrop-filter: blur(10px);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
}

    .amazingstyle-card:hover {
        transform: rotateX(5deg) rotateY(-5deg) translateY(-10px);
        border-color: rgba(59, 130, 246, 0.5);
    }

/* Card Badge */
.amazingstyle-card-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

/* Web Card Specifics */
.amazingstyle-card-header {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
}

.amazingstyle-dots span {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
}

.amazingstyle-skeleton-title {
    height: 20px;
    width: 40%;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    margin-bottom: 15px;
}

.amazingstyle-skeleton-text {
    height: 10px;
    width: 100%;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    margin-bottom: 10px;
}

/* App Card Specifics (Phone Mockup) */
.amazingstyle-app-screen {
    background: #0f172a;
    border-radius: 30px;
    height: 300px;
    width: 180px;
    margin: 0 auto;
    position: relative;
    border: 4px solid #1e293b;
    overflow: hidden;
    text-align: center;
}

.amazingstyle-app-notch {
    width: 60px;
    height: 15px;
    background: #1e293b;
    margin: 0 auto;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.amazingstyle-app-icon {
    font-size: 2.5rem;
    margin-top: 40px;
}

.amazingstyle-app-stats {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 0 15px;
}

.amazingstyle-stat {
    flex: 1;
    height: 40px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .amazingstyle-showcase-grid {
        grid-template-columns: 1fr;
    }

    .amazingstyle-web-card {
        order: 2;
    }

    .amazingstyle-app-card {
        order: 1;
    }

    .amazingstyle-card:hover {
        transform: translateY(-5px); /* Less aggressive on mobile */
    }
}



/*border---------------------------*/

/* Container to handle the spill-over onto the hero */
.bordersection-outer {
    width: 100%;
    position: relative;
    z-index: 100;
    margin-top: -20px; /* Spills over the Hero section */
    height: 40px;
    display: flex;
    align-items: center;
}

/* The Thick Solid Bar */
.bordersection-solid-bar {
    width: 100%;
    height: 15px; /* Thick and solid */
    background: linear-gradient(180deg, #e0e0e0 0%, #888 100%);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* The Interesting Shape in the Middle */
.bordersection-center-shape {
    width: 60px;
    height: 60px;
    background: #ffffff;
    /* Creating a sharp 3D diamond/hexagon shape */
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    border: 2px solid #D4AF37; /* Gold rim for style */
}

/* The Inner Icon/Detail */
.bordersection-inner-icon {
    width: 40%;
    height: 40%;
    background: #D4AF37;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .bordersection-outer {
        margin-top: -15px;
    }

    .bordersection-solid-bar {
        height: 6px;
    }

    .bordersection-center-shape {
        width: 45px;
        height: 45px;
    }
}



/*competative pricing-------------------------*/

/* Rule 1: Mobile-first & Rule 4: Namespace */
.competativepricing-section {
    padding: 20px 5%;
    background: transparent; /* No background outside the border */
    display: flex;
    justify-content: center;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.competativepricing-container {
    width: 100%;
    max-width: 800px;
}

/* Rule 2 & 3: Modern & Stylish Black/Gold Card */
.competativepricing-card {
    background-color: #0d0d0d; /* Blackish background */
    border: 2px solid #d4af37; /* Elegant Gold Border */
    padding: 60px 40px;
    position: relative;
    text-align: center;
    border-radius: 4px; /* Sharp tech edges */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.competativepricing-eyebrow {
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.competativepricing-title {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-weight: 300;
}

    .competativepricing-title span {
        color: #d4af37;
        font-weight: 700;
    }

.competativepricing-description {
    color: #a0a0a0;
    line-height: 1.8;
    max-width: 500px;
    margin: 0 auto 40px;
    font-size: 1rem;
}

/* The Price Highlight */
.competativepricing-price-box {
    margin-bottom: 40px;
    padding: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    display: inline-block;
}

.competativepricing-label {
    color: #d4af37;
    display: block;
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.competativepricing-amount {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 800;
}

.competativepricing-duration {
    color: #666;
    font-size: 1rem;
}

/* Gold CTA Button */
.competativepricing-cta {
    display: inline-block;
    padding: 15px 40px;
    background-color: #d4af37;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border-radius: 2px;
}

    .competativepricing-cta:hover {
        background-color: #ffffff;
        transform: translateY(-3px);
    }

/* Tech Decor */
.competativepricing-corner-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, transparent 50%, #d4af37 50%);
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .competativepricing-card {
        padding: 40px 20px;
    }

    .competativepricing-title {
        font-size: 1.8rem;
    }

    .competativepricing-amount {
        font-size: 2.5rem;
    }
}



/*customer sign up form-------------------------*/

/* Rule 1: Mobile-First & Rule 6: Namespace */
.customerform-section {
    padding: 60px 20px;
    background: transparent; /* Outside border: no background */
    display: flex;
    justify-content: center;
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

.customerform-container {
    width: 100%;
    max-width: 700px;
}

/* Rule 2, 3, 4: Elegant & Modern Blackish Card */
.customerform-card {
    background-color: #080a0c; /* Blackish background */
    border: 1px solid #d4af37; /* Gold primary border */
    position: relative;
    padding: 50px 40px;
    box-shadow: 0 0 30px rgba(0, 120, 212, 0.15), 0 20px 40px rgba(0,0,0,0.6);
    border-radius: 2px;
}

    /* Secondary Tech Border (Blue inner glow) */
    .customerform-card::after {
        content: '';
        position: absolute;
        inset: 2px;
        border: 1px solid rgba(0, 120, 212, 0.3); /* Soft Blue secondary border */
        pointer-events: none;
    }

.customerform-header {
    text-align: center;
    margin-bottom: 40px;
}

.customerform-eyebrow {
    color: #0078d4; /* Tech Blue */
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.7rem;
    font-weight: 800;
    display: block;
    margin-bottom: 10px;
}

.customerform-title {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 300;
    margin: 0;
}

    .customerform-title span {
        color: #d4af37; /* Gold */
        font-weight: 700;
    }

/* Form Styling */
.customerform-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.customerform-group {
    margin-bottom: 20px;
}

.customerform-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 15px;
    color: #ffffff;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

    .customerform-input:focus {
        border-color: #0078d4;
        background: rgba(0, 120, 212, 0.05);
        box-shadow: 0 0 10px rgba(0, 120, 212, 0.2);
    }

.customerform-select {
    cursor: pointer;
    color: #888;
}

.customerform-textarea {
    resize: none;
}

/* The Elegant Button */
.customerform-submit {
    width: 100%;
    background: transparent;
    border: 1px solid #d4af37;
    color: #d4af37;
    padding: 18px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

    .customerform-submit:hover {
        background: #d4af37;
        color: #000;
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    }

/* Corner Accents */
.customerform-bracket-tl {
    position: absolute;
    top: -2px;
    left: -2px;
    width: 20px;
    height: 20px;
    border-top: 3px solid #0078d4;
    border-left: 3px solid #0078d4;
}

.customerform-bracket-br {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    border-bottom: 3px solid #0078d4;
    border-right: 3px solid #0078d4;
}

/* Rule 1: Responsive Fix */
@media (max-width: 650px) {
    .customerform-row {
        grid-template-columns: 1fr;
    }

    .customerform-card {
        padding: 30px 20px;
    }
}





/*ai show case section-------------------------------------*/

/* Rule 6: Namespace aishowcase */

.aishowcase-wrapper {
    padding: 100px 5%;
    background: transparent; /* Rule 5: No background outside */
    display: flex;
    justify-content: center;
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

/* Rule 5: Theme Chassis - Gold Frame / Black Interior */
.aishowcase-chassis {
    width: 100%;
    max-width: 1200px;
    background-color: #000000; /* Pure Black Inside */
    border: 2px solid #d4af37; /* Gold Edges */
    padding: 80px 60px;
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
}

/* --- Refined Title Styling --- */
.aishowcase-header {
    text-align: left;
    margin-bottom: 80px;
}

.aishowcase-id-tag {
    font-family: 'Courier New', monospace;
    color: #0078d4; /* Tech Blue */
    font-size: 0.75rem;
    letter-spacing: 6px;
    margin-bottom: 12px;
    font-weight: 900;
}

.aishowcase-title {
    color: #ffffff;
    font-size: 3.5rem; /* Rule 4: Elegant Scale */
    font-weight: 200;
    letter-spacing: 10px;
    margin: 0;
    line-height: 1;
    text-transform: uppercase;
}

.aishowcase-gold-text {
    color: #d4af37; /* Theme Gold */
    font-weight: 800;
}

.aishowcase-title-underline {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.aishowcase-line-blue {
    width: 70px;
    height: 5px;
    background-color: #0078d4;
}

.aishowcase-line-gold {
    width: 140px;
    height: 5px;
    background-color: #d4af37;
}

.aishowcase-description {
    color: #888;
    max-width: 550px;
    margin-top: 30px;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* --- Grid & Modules --- */
.aishowcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* Rule 2 & 3: Modern/Stylish Blue-Gold Interaction */
.aishowcase-module {
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: rgba(255, 255, 255, 0.01);
    padding: 40px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

    .aishowcase-module:hover {
        border-color: #0078d4; /* Interaction: Blue Glow */
        background: rgba(0, 120, 212, 0.04);
        transform: translateY(-8px);
    }

.aishowcase-module-edge {
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 15px;
    border-top: 2px solid #0078d4;
    border-left: 2px solid #0078d4;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.aishowcase-module:hover .aishowcase-module-edge {
    opacity: 1;
}

.aishowcase-module-name {
    color: #ffffff;
    font-size: 1.25rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 600;
}

.aishowcase-module-text {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.aishowcase-feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.aishowcase-feature {
    color: #0078d4; /* Blue Theme */
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(0, 120, 212, 0.3);
    padding: 6px 14px;
}

/* Rule 1: Mobile Devices */
@media (max-width: 992px) {
    .aishowcase-chassis {
        padding: 50px 30px;
    }

    .aishowcase-title {
        font-size: 2.2rem;
        letter-spacing: 6px;
    }
}

@media (max-width: 480px) {
    .aishowcase-line-gold {
        width: 80px;
    }

    .aishowcase-line-blue {
        width: 40px;
    }
}







/*show our work portfolio----------------*/

/* 
   THEME: Midnight Tech (Black, Electric Blue, Metallic Gold)
   TARGET: Software Firm Portfolio
   RULES: All classes start with 'work-display-'
*/

/* 1. Section Wrapper */
.work-display-section {
    padding: 80px 20px;
    background: transparent !important; /* Ensures no background as requested */
    width: 100%;
    box-sizing: border-box;
}

/* 2. Responsive Grid Container */
.work-display-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    /* auto-fit creates the 3-column layout that collapses to 1-column on mobile */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

/* 3. The Modern Card Body */
.work-display-card {
    background: #0a0a0c; /* Deep Midnight Black */
    border: 1px solid rgba(212, 175, 55, 0.15); /* Faint Gold Border */
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    position: relative;
}

    /* Gold Accent Top-Bar */
    .work-display-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #d4af37, #f9f295, #d4af37); /* Metallic Gold Gradient */
        z-index: 2;
    }

/* 4. The "No-Crop" Image Logic */
.work-display-image-wrapper {
    width: 100%;
    height: 250px; /* Fixed height for desktop alignment */
    background: #000000; /* Padded area color for non-standard images */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 10px; /* Space between image and card edge */
}

.work-display-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    /* 'contain' ensures the CUSTOMER SEES THE FULL IMAGE without cutting */
    object-fit: contain;
    transition: transform 0.5s ease;
}

/* 5. Content & Typography */
.work-display-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.work-display-title {
    color: #f9f295; /* Metallic Gold */
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0 0 15px 0;
    letter-spacing: 0.5px;
}

.work-display-text {
    color: #b0bfc9; /* Soft Blue-Grey text */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* 6. Interaction / Hover Effects */
.work-display-card:hover {
    transform: translateY(-12px);
    border-color: #0077ff; /* Glow Blue on hover */
    box-shadow: 0 20px 40px rgba(0, 119, 255, 0.15); /* Electric Blue shadow */
}

    .work-display-card:hover .work-display-image {
        transform: scale(1.05); /* Slight zoom for life */
    }

/* 7. Mobile Adjustments (Essential for Rule 1) */
@media (max-width: 768px) {
    .work-display-section {
        padding: 40px 15px;
    }

    .work-display-container {
        grid-template-columns: 1fr; /* Force stack on mobile */
        gap: 30px;
    }

    .work-display-image-wrapper {
        /* On mobile, we allow the height to adjust to show the full image */
        height: auto;
        min-height: 220px;
        max-height: 400px;
    }

    .work-display-title {
        font-size: 1.25rem;
    }

    .work-display-text {
        font-size: 0.95rem;
    }
}

/* 8. Modern Smooth Entry (Optional) */
@keyframes workFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.work-display-card {
    animation: workFadeIn 0.6s ease forwards;
}








/*title + text--------------------------------------*/


/* 1. Layout Wrapper - No Background */
.payment-title-wrapper {
    padding: 0px 20px 0px 20px;
    background: transparent !important;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.payment-title-container {
    max-width: 800px;
    text-align: center;
    position: relative;
}

/* 2. Elegant Title - Gold Gradient */
.payment-title-main {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin: 0 auto 20px auto;
    text-transform: uppercase;
    letter-spacing: 2px;
    /* Gold Metallic Effect */
    background: linear-gradient(135deg, #d4af37 0%, #f9f295 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

/* 3. Stylish Divider - Electric Blue Glow */
.payment-title-divider {
    width: 80px;
    height: 4px;
    background: #0077ff;
    margin: 0 auto 25px auto;
    border-radius: 50px;
    box-shadow: 0 0 15px rgba(0, 119, 255, 0.6);
}

/* 4. Description Text - Modern & Readable */
.payment-title-description {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #cbd5e0; /* Muted Grey-Blue */
    margin: 0;
    font-weight: 400;
}

    .payment-title-description strong {
        color: #f9f295; /* Highlight Refund Policy in Gold */
        font-weight: 600;
    }

/* 5. Mobile Responsiveness (Rule 1) */
@media (max-width: 768px) {
    .payment-title-wrapper {
        padding: 40px 15px;
    }

    .payment-title-main {
        font-size: 2.2rem; /* Scaled for mobile */
        letter-spacing: 1px;
    }

    .payment-title-description {
        font-size: 1rem;
        padding: 0 10px;
    }

    .payment-title-divider {
        width: 60px;
    }
}

/* Small Screen Optimization */
@media (max-width: 480px) {
    .payment-title-main {
        font-size: 1.8rem;
    }
}
