/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header Styles */
.header {
    width: 100%;
    height: 75px;
    position: fixed;
    top: 0;
    left: 0;
    background: white;
    box-shadow: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    z-index: 1000;
    border-bottom: 1px solid #0C1892;
}

.logo {
    width: 140px;
    height: 40px;
}

.nav-links {
    font-family: 'Arial', sans-serif;
    background: white;
    padding: 0;
    display: flex;
    flex-wrap: nowrap;
    gap: 40px;
    align-items: center;
    font-weight: 700;
    font-size: 14px;
    color: #003399;
}

.main-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav > li {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #003399;
    font-weight: 700;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    display: block;
}

/* Submenu Styling */
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 10px 0;
}

.submenu li a {
    padding: 0px 20px;
    color: #555;
    display: block;
    white-space: nowrap;
    transition: all 0.2s;
    text-decoration: none;
}

.submenu li a:hover {
    background: #f0f0f0;
    color: #0066cc;
    padding-left: 25px;
}

.submenu-level2 {
    left: 100%;
    top: 10%;
    margin-left: 1px;
}

.has-submenu > a::after {
    content: "";
    margin-left: 5px;
    font-size: 12px;
}

.has-submenu:hover > .submenu {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

.submenu-level2 li {
    height: 5vh;
    display: flex;
    align-items: center;
}

.submenu-level2 li a {
    width: 100%;
}

.cta-button {
    padding: 8px 30px;
    border-radius: 43px;
    border: 2px solid #0C1892;
    background: white;
    color: #0C1892;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 7px;
    margin-left: 60px;
}

.service {
    color: white;
    background-color:#0c1892 ;
    padding: 8px;
    height: 100vh;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 8rem 1rem;
    overflow: hidden;
    background: white;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgb(239 246 255), rgb(219 234 254));
}

.hero-bg-elements {
    position: absolute;
    inset: 0;
}

.hero-bg-element-1 {
    position: absolute;
    top: 5rem;
    left: 2.5rem;
    width: 18rem;
    height: 18rem;
    background: rgba(59, 130, 246, 0.15);
    border-radius: 50%;
    filter: blur(60px);
}

.hero-bg-element-2 {
    position: absolute;
    bottom: 5rem;
    right: 2.5rem;
    width: 24rem;
    height: 24rem;
    background: rgba(147, 197, 253, 0.15);
    border-radius: 50%;
    filter: blur(60px);
}

.hero-content {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text {
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: #dbeafe;
    color: #1d4ed8;
    border: 1px solid #93c5fd;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.hero-badge .icon {
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(to right, #2563eb, #1e40af);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 3rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(to right, #2563eb, #1d4ed8);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(to right, #1d4ed8, #1e40af);
}

.btn-outline {
    background: transparent;
    color: #1d4ed8;
    border: 1px solid #2563eb;
}

.btn-outline:hover {
    background: #eff6ff;
}

.btn .icon {
    width: 20px;
    height: 20px;
}

.btn .icon-left {
    margin-right: 0.5rem;
}

.btn .icon-right {
    margin-left: 0.5rem;
}

.icononly {
    width: 40px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-1 {
    color: #2563eb;
}

.stat-2 {
    color: #1d4ed8;
}

.stat-3 {
    color: #1e40af;
}

.stat-label {
    color: #4b5563;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image img {
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    width: 100%;
    max-width: 32rem;
    background: #111827;
    padding: 1rem;
}

/* Workflow Section */
.workflow {
    padding: 5rem 1rem;
    background: #f9fafb;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 48rem;
    margin: 0 auto;
}

.workflow-image {
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
    justify-content: center;
    width: 100%;
    display: flex;
    justify-content: center;
}

.workflow-image img {
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.3);
    max-width: 64rem;
    width: 30%;
    height: 16rem;
    object-fit: cover;
    justify-content: center;
}

.workflow-steps {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
    justify-content: center;
}

.workflow-step {
    background: #1e293b80;
    border: 1px solid rgba(71, 85, 105, 0.5);
    color: white;
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    width: 100%;
    max-width: 12rem;
    transition: all 0.3s;
}

.workflow-step:hover {
    border-color: rgba(59, 130, 246, 0.5);
}

.step-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.step-icon.green {
    background: #22c55e;
}

.step-icon.blue {
    background: #3b82f6;
}

.step-icon.purple {
    background: #a855f7;
}

.step-icon.cyan {
    background: #06b6d4;
}

.step-icon.orange {
    background: #f97316;
}

.step-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-desc {
    font-size: 0.875rem;
    color: #93c5fd;
}

.arrow {
    color: #60a5fa;
    font-size: 2rem;
    display: none;
}

.tech-stack {
    margin-top: 4rem;
    text-align: center;
}

.tech-stack p {
    color: #93c5fd;
    margin-bottom: 1.5rem;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.tech-tag {
    background: rgba(30, 41, 59, 0.5);
    color: #93c5fd;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

/* Departments Section */
.departments {
    padding: 5rem 1rem;
    background: white;
}

.departments-badge {
    display: inline-flex;
    align-items: center;
    background: #dbeafe;
    color: #1d4ed8;
    border: 1px solid #93c5fd;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.department-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.department-card:hover {
    border-color: #93c5fd;
    box-shadow: 0 20px 25px -5px rgba(59, 130, 246, 0.1);
    transform: scale(1.02);
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.card-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.card-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.card-icon.blue-1 {
    background: linear-gradient(to bottom right, #3b82f6, #2563eb);
}

.card-icon.blue-2 {
    background: linear-gradient(to bottom right, #2563eb, #1d4ed8);
}

.card-icon.blue-3 {
    background: linear-gradient(to bottom right, #3b82f6, #1d4ed8);
}

.card-icon.blue-4 {
    background: linear-gradient(to bottom right, #2563eb, #1e40af);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    flex: 1;
}

.card-description {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-item {
    display: flex;
    align-items: center;
    color: #374151;
}

.feature-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #3b82f6;
    border-radius: 50%;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.feature-text {
    font-size: 0.875rem;
}

/* Features Section */
.features {
    padding: 5rem 1rem;
    background: #f9fafb;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: #93c5fd;
    box-shadow: 0 20px 25px -5px rgba(59, 130, 246, 0.1);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.feature-icon.feature-1 {
    background: linear-gradient(to right, #3b82f6, #2563eb);
}

.feature-icon.feature-2 {
    background: linear-gradient(to right, #2563eb, #1d4ed8);
}

.feature-icon.feature-3 {
    background: linear-gradient(to right, #3b82f6, #1d4ed8);
}

.feature-icon.feature-4 {
    background: linear-gradient(to right, #2563eb, #1e40af);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.feature-description {
    color: #4b5563;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 5rem 1rem;
    background: linear-gradient(to right, #2563eb, #1d4ed8);
}

.cta-container {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.cta-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta h2 {
    font-size: 2.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 41rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.btn-white {
    width: 334px;
    height: 75px;
    background: white;
    color: #1d4ed8;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
}

.btn-white:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
    background: #f3f4f6;
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 1px solid white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Footer Styles */

/* lets talk icon styles */
.original-chat-icon {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 9999;
    transition: all 0.3s ease;
    animation: subtle-pulse 2s infinite;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
}

.original-chat-icon:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 2px 4px rgba(0, 46, 138, 0.3));
}

.original-chat-icon img {
    width: 70px;
    height: auto;
}

/* Contact form - stays fixed on screen */
.contact-form {
    position: fixed;
    top: 100px;
    right: 100px;
    z-index: 10000;
    display: none;
}

/* Form container with blue glow effect */
.form-container {
    background: white;
    border-radius: 16px;
    padding: 30px;
    width: 450px;
    box-shadow: 
        0 0 0 1px rgba(0, 46, 138, 0.1), /* subtle inner border */
        0 5px 15px rgba(0, 46, 138, 0.1), /* close shadow */
        0 15px 35px rgba(0, 46, 138, 0.2); /* far shadow */
    border: 1px solid rgba(0, 46, 138, 0.15);
    transition: all 0.3s ease;
    position: relative;
}

/* Blue glow effect */
.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    box-shadow: 0 0 15px rgba(0, 46, 138, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.form-container:hover::before {
    opacity: 1;
}

/* Enhanced blue shadow element */
.form-container::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 5%;
    width: 90%;
    height: 20px;
    background: rgba(0, 46, 138, 0.15);
    border-radius: 50%;
    z-index: -1;
    filter: blur(15px);
    opacity: 0.9;
}

/* Form header */
.form-header h2 {
    color: #002E8A;
    font-size: 1.8rem;
    margin: 0 0 25px 0;
    text-align: center;
    font-weight: 800;
    font-family: 'League Spartan', sans-serif;
    line-height: 1.3;
}

/* Form rows */
.form-row {
    margin-bottom: 20px;
}

/* Input fields */
.form-container input[type="text"],
.form-container input[type="tel"],
.form-container input[type="email"],
.form-container textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(0, 46, 138, 0.3);
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: 'League Spartan', sans-serif;
    background: #002E8A;
    color: white;
    transition: all 0.3s ease;
}

/* Placeholder text */
.form-container input[type="text"]::placeholder,
.form-container input[type="tel"]::placeholder,
.form-container input[type="email"]::placeholder,
.form-container textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Focus states */
.form-container input[type="text"]:focus,
.form-container input[type="tel"]:focus,
.form-container input[type="email"]:focus,
.form-container textarea:focus {
    outline: none;
    border-color: rgba(0, 46, 138, 0.6);
    background: #001f5e;
    box-shadow: 0 0 0 2px rgba(0, 46, 138, 0.2);
}

.form-container textarea {
    height: 120px;
    resize: vertical;
}

/* Form footer with buttons */
.form-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

/* Attach button */
.attach-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #002E8A;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'League Spartan', sans-serif;
    transition: all 0.3s;
    flex: 1;
}

.attach-button:hover {
    background: #0044b3;
    box-shadow: 0 5px 15px rgba(0, 46, 138, 0.3);
}

/* Submit button */
.form-footer button {
    background: #002E8A;
    color: white;
    border: none;
    padding: 12px 0;
    border-radius: 10px;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'League Spartan', sans-serif;
    transition: all 0.3s;
    flex: 1;
}

.form-footer button:hover {
    background: #0044b3;
    box-shadow: 0 5px 15px rgba(0, 46, 138, 0.3);
}

/* Animation */
@keyframes subtle-pulse {
    0% { filter: drop-shadow(0 0 0 rgba(0, 46, 138, 0.1)); }
    50% { filter: drop-shadow(0 0 8px rgba(0, 46, 138, 0.3)); }
    100% { filter: drop-shadow(0 0 0 rgba(0, 46, 138, 0.1)); }
}

/* Responsive Styles */
@media (min-width: 300px) and (max-width: 768px) {
     .original-chat-icon{
        z-index: 0;
    }

    /* Stack hero content vertically */
    .hero-content {
        display: block;
        padding: 0 1rem;
    }

    /* Center hero text */
    .hero-text {
        text-align: center;
        margin-bottom: 2rem;
    }

    /* Make hero image full width */
    .hero-image img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    /* Stack hero buttons vertically */
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    /* Adjust workflow image */
    .workflow-image img {
        width: 100%;
        height: auto;
        max-width: 100%;
    }

    /* Stack workflow steps vertically */
    .workflow-steps {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    /* Departments grid to single column */
    .departments-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    /* Features grid to single column */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    /* CTA buttons stack vertically */
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    /* Adjust CTA card padding */
    .cta-card {
        padding: 1.5rem;
    }

    /* Adjust font sizes for smaller screens */
    .hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .card-title {
        font-size: 1.25rem;
    }

    .feature-title {
        font-size: 1.125rem;
    }

    .feature-description {
        font-size: 0.9rem;
    }

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

    .stat-label {
        font-size: 0.875rem;
    }

    /* Make images and containers fluid */
    img, video, iframe {
        max-width: 100%;
        height: auto;
    }

    /* Ensure container padding and margin for small screens */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Improve mobile menu toggle visibility */
    .mobile_menu_toggle {
        display: block;
    }

    /* Adjust navigation for mobile */
    #navy {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    /* Adjust mega menu for mobile */
    .mega_menu {
        position: static;
        box-shadow: none;
        padding: 0;
    }

    /* Additional desktop responsive styles */
    @media (min-width: 1024px) {
        .hero-content {
            grid-template-columns: 1fr 1fr;
            padding: 0 2rem;
        }

        .hero-text {
            text-align: left;
            padding-right: 2rem;
        }

        .hero h1 {
            font-size: 4rem;
            line-height: 1.1;
        }

        .hero p {
            font-size: 1.5rem;
            max-width: 36rem;
        }

        .hero-stats {
            margin-left: 0;
            margin-right: 0;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            max-width: 48rem;
            margin-top: 2rem;
        }

        .stat {
            text-align: left;
        }

        .workflow-steps {
            flex-direction: row;
            justify-content: center;
            gap: 2rem;
        }

        .workflow-image img {
            width: 50%;
            height: auto;
            max-width: none;
            object-fit: contain;
        }

        .arrow {
            display: block;
        }

        .departments-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            padding: 0 2rem;
        }

        .department-card {
            max-width: none;
        }

        .features-grid {
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
            padding: 0 2rem;
        }

        .feature-card {
            max-width: none;
        }

        .cta-buttons {
            flex-direction: row;
            gap: 2rem;
            justify-content: center;
            padding: 0 2rem;
        }

        .btn-white, .btn-outline-white {
            width: auto;
            max-width: none;
            padding: 1rem 3rem;
        }

        .cta-card {
            padding: 3rem 4rem;
            max-width: 48rem;
            margin: 0 auto;
        }

        .original-chat-icon {
            z-index: 0;
        }
    }
}
/* NEW: Cancel Button Styles (Adjusted for image) */
.cancel-button {
    position: absolute;
    top: 10px; /* Adjust as needed for spacing from top */
    right: 13px; /* Adjust as needed for spacing from right */
    background: none; /* Remove default button background */
    border: none; /* Remove default button border */
    padding: 0; /* Remove default button padding */
    cursor: pointer;
    z-index: 10;
    line-height: 1; /* Helps with vertical alignment of the image */
    display: flex; /* Use flexbox to center the image if needed */
    align-items: center;
    justify-content: center;
    padding-bottom: 3px;
}

.cancel-button:hover {
    /* You might add a subtle shadow or filter on hover if desired */
    filter: brightness(1.2); /* Example: make the logo slightly brighter on hover */
      transform: scale(1.1);
}

