.elementor-464 .elementor-element.elementor-element-41db711{--display:flex;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-464 .elementor-element.elementor-element-41db711{--content-width:1600px;}}/* Start custom CSS for html, class: .elementor-element-40bbf8c *//* ==========================================
   ADEC KM - CONTACT POP-UP (MODAL)
   ========================================== */

/* Demonstration Trigger Button Styling */
.demo-trigger-btn {
    font-family: 'Poppins', sans-serif;
    background-color: #0066cc;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 50px; /* Pill button styling */
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.15);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.demo-trigger-btn:hover {
    background-color: #051B4D;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(5, 27, 77, 0.25);
}

/* ==========================================
   MODAL OVERLAY (Backdrop Backdrop)
   ========================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 8, 20, 0.6); /* Soft dark backdrop overlay */
    backdrop-filter: blur(8px); /* Classy glassmorphism blur */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999; /* Highest priority */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    padding: 20px;
    box-sizing: border-box;
}

/* Activated State via JS toggle */
.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* ==========================================
   MODAL CONTAINER CARD
   ========================================== */
.modal-card {
    background: #ffffff;
    border: 1px solid #e7edf5;
    border-radius: 24px;
    padding: 45px;
    width: 100%;
    max-width: 820px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-sizing: border-box;
    max-height: 90vh;
    overflow-y: auto; /* Vertically scrolls container if screen is too small */
}

.modal-overlay.active .modal-card {
    transform: scale(1) translateY(0);
}

/* Custom Scrollbar for Modal Card */
.modal-card::-webkit-scrollbar {
    width: 8px;
}

.modal-card::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

.modal-card::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.modal-card::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Close Button (top-right corner) */
.modal-close-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    background: transparent;
    border: none;
    color: #667085;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease, transform 0.3s ease;
    z-index: 1000;
}

.modal-close-btn:hover {
    color: #051B4D;
    transform: rotate(90deg); /* Classy spin transform */
}

/* ==========================================
   MODAL HEADER
   ========================================== */
.modal-header {
    text-align: left;
    margin-bottom: 30px;
}

.modal-header .modal-tag {
    display: inline-block;
    color: #0066cc;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.modal-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #051B4D;
    letter-spacing: -1px;
    margin: 0 0 8px 0;
}

.modal-header p {
    font-size: 15px;
    color: #667085;
    line-height: 1.5;
    margin: 0;
}

.modal-header p a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
}

.modal-header p a:hover {
    text-decoration: underline;
}

/* ==========================================
   FORM CONTROLS & FIELD LAYOUT
   ========================================== */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns on desktop */
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group.full-width {
    grid-column: span 2; /* Textarea spans both columns */
}

.form-group label {
    font-size: 13.5px;
    font-weight: 600;
    color: #051B4D;
    margin-bottom: 8px;
}

/* Form Inputs, Dropdown Selects, and Textareas styling */
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    font-family: 'Poppins', sans-serif;
    font-size: 14.5px;
    color: #333333;
    padding: 12px 16px;
    background-color: #ffffff;
    border: 1px solid #d0d5dd;
    border-radius: 12px;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Focus highlighting */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #0066cc;
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
}

/* Custom styled select box styling */
.form-group select {
    appearance: none; /* Removes default OS dropdown arrow */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23051B4D' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    background-color: #0066cc;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 16px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.15);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #051B4D;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(5, 27, 77, 0.25);
}

.submit-btn:disabled {
    background-color: #94a3b8;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ==========================================
   SUCCESS SUBMISSION STATE
   ========================================== */
.success-state-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 10px;
    box-sizing: border-box;
}

.success-icon-circle {
    width: 80px;
    height: 80px;
    background-color: #eaf2ff;
    color: #0066cc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 10px 20px rgba(0, 102, 204, 0.05);
}

.success-state-container h3 {
    font-size: 26px;
    font-weight: 700;
    color: #051B4D;
    margin: 0 0 12px 0;
}

.success-state-container p {
    font-size: 15px;
    color: #667085;
    line-height: 1.6;
    max-width: 480px;
    margin: 0 0 30px 0;
}

.success-close-btn {
    background-color: #051B4D;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.success-close-btn:hover {
    background-color: #0066cc;
}

/* ==========================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================== */
@media (max-width: 768px) {
    .modal-card {
        padding: 30px 24px;
        border-radius: 20px;
    }
    
    .modal-header h2 {
        font-size: 26px;
    }
    
    .form-grid {
        grid-template-columns: 1fr; /* Switch to single column on mobile viewports */
        gap: 15px;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .modal-close-btn {
        top: 20px;
        right: 20px;
    }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-41db711 *//* ==========================================
   ADEC BRAND-MATCHED CONTACT PAGE CSS
   ========================================== */
.km-contact-page {
    font-family: 'Poppins', sans-serif;
    color: #475467;
    background-color: #ffffff;
    width: 100vw !important;
    position: relative;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    line-height: 1.6;
}

.km-contact-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

/* Badges */
.km-contact-badge {
    display: inline-block;
    padding: 8px 18px;
    background-color: #eaf2ff;
    color: #0066cc;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500; /* Strictly 500 */
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Section Header */
.km-contact-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.km-contact-section-header h2 {
    font-size: 44px;
    line-height: 1.25;
    font-weight: 500; /* Strictly 500 */
    color: #051B4D;
    margin: 20px 0 18px;
    letter-spacing: -1px;
}

.km-contact-section-header p {
    font-size: 18px;
    color: #667085;
    font-weight: 400; /* Under 450 */
}

/* ==========================================
   SECTION 1: HERO & FORM SPLIT
   ========================================== */
.km-contact-hero-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.km-contact-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

.km-contact-form-block h2 {
    font-size: 42px;
    font-weight: 500; /* Strictly 500 */
    color: #051B4D;
    margin: 10px 0 15px;
    letter-spacing: -1px;
}

.km-contact-subtext {
    font-size: 17px;
    color: #667085;
    margin-bottom: 35px;
    font-weight: 400;
}

/* Form Styles */
.km-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.km-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.km-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.km-form-group label {
    font-size: 13.5px;
    font-weight: 500;
    color: #051B4D;
}

.km-form-group input,
.km-form-group select,
.km-form-group textarea {
    padding: 14px 18px;
    border: 1px solid #e7edf5;
    border-radius: 12px;
    font-size: 15px;
    color: #475467;
    font-family: 'Poppins', sans-serif;
    outline: none;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.km-form-group input::placeholder,
.km-form-group textarea::placeholder {
    color: #98a2b3;
}

.km-form-group input:focus,
.km-form-group select:focus,
.km-form-group textarea:focus {
    border-color: #0066cc;
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
}

.km-contact-submit-btn {
    padding: 16px;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 500; /* Strictly 500 */
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.25);
    transition: all 0.3s ease;
    margin-top: 10px;
}

.km-contact-submit-btn:hover {
    background-color: #051B4D;
    box-shadow: 0 12px 30px rgba(5, 27, 77, 0.3);
    transform: translateY(-2px);
}

/* Right Side Coordinates Card */
.km-contact-info-block {
    position: sticky;
    top: 100px;
}

.km-contact-card {
    background-color: #f8fafc;
    border: 1px solid #e7edf5;
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 35px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.015);
}

.km-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.km-info-icon {
    width: 44px;
    height: 44px;
    background-color: #ffffff;
    border: 1px solid #e7edf5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.km-info-icon img {
    width: 20px;
    height: 20px;
}

.km-info-text h4 {
    font-size: 17px;
    font-weight: 500; /* Strictly 500 */
    color: #051B4D;
    margin: 0 0 8px;
}

.km-info-text p {
    font-size: 14.5px;
    line-height: 1.6;
    color: #667085;
    margin: 0;
    font-weight: 400;
}

.km-info-text p a {
    color: #0066cc;
    text-decoration: none;
}

.km-info-text p a:hover {
    text-decoration: underline;
}

/* ==========================================
   SECTION 2: GLOBAL OFFICES
   ========================================== */
.km-contact-offices-section {
    padding: 100px 0;
    background-color: #f8fafc;
    border-top: 1px solid #e7edf5;
}

.km-offices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.km-office-card {
    background-color: #ffffff;
    border: 1px solid #e7edf5;
    border-radius: 20px;
    padding: 40px 35px;
    transition: all 0.3s ease;
}

.km-office-card h4 {
    font-size: 19px;
    font-weight: 500; /* Strictly 500 */
    color: #051B4D;
    margin: 0 0 12px;
}

.km-office-card p {
    font-size: 14.5px;
    line-height: 1.6;
    color: #667085;
    margin: 0 0 20px;
    font-weight: 400;
}

.km-office-phone {
    font-size: 13.5px;
    font-weight: 500;
    color: #0066cc;
}

.km-office-card:hover {
    transform: translateY(-5px);
    border-color: #0066cc;
    box-shadow: 0 15px 30px rgba(0, 102, 204, 0.05);
}

/* ==========================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================== */
@media (max-width: 991px) {
    .km-contact-split {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .km-contact-info-block {
        position: static;
    }
    
    .km-offices-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .km-contact-section-header h2,
    .km-contact-form-block h2 {
        font-size: 34px;
    }
    
    .km-contact-hero-section,
    .km-contact-offices-section {
        padding: 80px 0;
    }
}

@media (max-width: 767px) {
    .km-contact-container {
        padding: 0 20px;
    }
    
    .km-form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .km-contact-card {
        padding: 25px;
    }
    
    .km-office-card {
        padding: 30px 25px;
    }
}/* End custom CSS */