body{
    overflow-x: hidden;
}

/*modal*/
/* --- Modal Background Overlay --- */
.modal-header{
    display: block;
    padding: 1rem 0;
    border: none;
}
.modal-backdrop {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 10000; /* Ensure it stays on top of everything */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(6, 11, 18, 0.85); /* Slightly transparent dark backdrop */
    backdrop-filter: blur(5px); /* Modern blur effect */
    align-items: center;
    justify-content: center;
}

/* Show class to be toggled via JS */
.modal-backdrop.is-active {
    display: flex;
}

/* --- Modal Content Container --- */
.modal-content {
    background-color: #0b1623; /* Deep navy matching your landing page */
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 650px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Close Button --- */
.close-modal-btn {
    position: absolute;
    right: 25px;
    top: 20px;
    color: #a0aec0;
    font-size: 30px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.2s ease;
}
.close-modal-btn:hover {
    color: #ffffff;
}

/* --- Header Text --- */
.modal-header h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: #ffffff;
    font-weight: 600;
}
.modal-header p {
    color: #a0aec0;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

/* --- Form Layout Controls --- */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 18px;
    padding: 0 5px;
}
.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.form-group.full-width {
    margin-bottom: 25px;
}

/* Labels */
.form-group label {
    font-size: 0.85rem;
    color: #cbd5e1;
    margin-bottom: 6px;
    font-weight: 500;
}
.form-group label .optional {
    color: #718096;
    font-size: 0.8rem;
}

/* --- Inputs, Selects & Textarea --- */
.form-group input, 
.form-group select, 
.form-group textarea {
    background-color: #132237; /* Slightly lighter tone for inputs */
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 12px 14px;
    border-radius: 6px;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Custom styling for select option text visibility in dark mode */
.form-group select option {
    background-color: #132237;
    color: #ffffff;
}

/* Input Focus States matching the accent button */
.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: #1d4ed8;
    box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.25);
}

.form-group textarea {
    resize: vertical;
}

/* --- Submit Button (Matches "Enquire Now") --- */
.submit-btn {
    background-color: #1d4ed8; /* Vibrant Blue from the landing page button */
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.2s ease;
}
.submit-btn:hover {
    background-color: #1e40af; /* Darker hover hue */
}

/* --- Mobile Responsiveness --- */
@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 15px;
    }
    .modal-content {
        padding: 30px 20px;
        width: 95%;
        margin-top: 25rem;
    }
}

/*Header*/
.ve-nav ul li a:hover, .ve-nav ul li a.active{
    font-weight: 700;
}
.ve-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background-color: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  transition: var(--ve-trans);
}
.ve-nav ul li a {
  display:block; padding:8px 14px; color:  #000;
  font-size:16px; font-weight:500; text-decoration:none;
  border-radius:6px; transition:var(--ve-trans);
}
.ve-nav ul li a:hover, .ve-nav ul li a.active { color:#000; }
.ve-nav ul li a.active { color:#000; }

.ve-header.scrolled{
    background-color: #fff;
}
.ve-toggler span{
    color: #000;
    background-color: #000;
}
.ve-dropdown{
flex-direction: column !important;
left: 1rem;
min-width: 250px;
}
.ve-dropdown li a:hover{
    background: none;
}

/*Marqee*/
.ve-trust-bar{
    padding: 20px 0;
}
.ve-trust-inner span{
    font-size: 16px;
    color: #fff;
}

/*Banner*/
.ve-hero{
    padding: 0;
    padding-top: 4rem;
}
.ve-hero-left{
    flex: 0 0 40%;
    padding: 80px 80px 80px 80px;
}
.ve-hero-right{
    flex: 0 0 60%;
}
.ve-hero-left p{
    margin-bottom: 20px;
    width: 100%;
    max-width: 100%;
    text-align: justify;
}
.ve-hero-badge{
    font-size: 20px;
    width: 16rem;
}
.ve-stat{
    text-align: center;
}
.to-end{
    display: flex;
    justify-content: end;
}
.ve-hero-stats {
    display: flex;
    align-items: center;
    gap: 38px;
    justify-content: center;
}

/*BODY*/
.ve-section-tag{
    background: rgba(27, 77, 184, 0.25);
    border: 1px solid rgba(27, 77, 184, 0.25);
}

.ve-hero-badge{
    background: rgba(27, 77, 184, 0.25);
    border: 1px solid rgba(27, 77, 184, 0.25);
    color: #fff;
}

.ve-btn-primary{
    color: #fff;
}

.ve-btn-primary:hover {
    background: rgba(27, 77, 184, 0.25);
    transform: translateY(-2px);
    box-shadow: none;
    color: #fff;
}
.ve-insight-cat{
    background: rgba(27, 77, 184, 0.25);
    border: 1px solid rgba(27, 77, 184, 0.25);
}
.ve-whyus-badge strong{
    color: #fff;
}
.ve-whyus-badge span{
    color: #fff;
}
.ve-service-icon{
    background: none;
}
.icon-profits:before{
    font-size: 3rem;
}
.icon-money-1:before{
    font-size: 3rem;
}
.icon-coin:before{
    font-size: 3rem;
}
.icon-smartphone-1:before{
    font-size: 3rem;
}

/*Sector*/
.ve-section-header p{
    max-width: 100%;
}
.ve-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.ve-process-step{
    text-align: left;
}

/*Footer*/
.ve-footer-brand p{
    color: #000;
}
.ve-footer-title{
    color: #000;
    border-bottom: 1px solid #000;
}
.ve-footer-links li a{
    color: #000;
    font-weight: 400;
}
.ve-footer-links li{
    margin-bottom: 8px;
}
.ve-footer-contact li{
    margin-bottom: 16px;
}
.ve-contact-form-wrap{
    box-shadow: none;
}
.ve-footer-contact li{
    color: #000;
}
.ve-footer{
    background-color: #fff;
}
.ve-footer-bottom-inner p{
    color: #fff;
}
.ve-footer-bottom{
    background-color: #0d1b2a;
}
.ve-footer-brand p{
    margin: 0px 0px 20px;
}
.ve-footer-bottom-inner ul li a{
    color: #fff;
}

/*media queries*/
@media (max-width: 768px) {
    .ve-hero-left {
        flex: 0 0 40%;
        padding: 50px 20px 50px 20px;
    }
    .ve-hero-right{
        padding-top: 4.5rem;
    }
    .to-end {
        display: flex;
        justify-content: left;
    }
    .ve-section-header p{
        text-align: left;
    }
    .ve-services-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 28px;
    }
    .ve-whyus-img-wrap{
        padding-right: 0;
    }
    .ve-process-step{
        min-width: 350px;
    }
    .ve-nl-form input{
        width: 350px !important;
    }
    .ve-hero-stats{
        justify-content: left;
    }
    .ve-dropdown{
        position: static;
        visibility: visible;
        opacity: 1;
        margin-bottom: 15px !important;
        box-shadow: none;
    }
}