diff --git a/src/app/globals.css b/src/app/globals.css index aa2ef70..6cbab07 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -9463,26 +9463,25 @@ body { .form-textarea { width: 100%; padding: 15px 20px; - border: 1px solid rgba(255, 255, 255, 0.1); - background-color: rgba(255, 255, 255, 0.05); + border: 1px solid #e2e8f0; + background-color: #ffffff; border-radius: 12px; outline: none; font-size: 15px; - color: #fff; + color: #787878; transition: all 0.3s ease; height: 60px; } .form-select-custom-styled-global option, .form-select option { - background-color: #111827; - color: #fff; + background-color: #ffffff; + color: #1e293b; } .form-textarea-custom-global, .form-textarea { min-height: 110px; - /* height: auto; */ resize: vertical; } @@ -9493,7 +9492,7 @@ body { .form-textarea:focus, .form-select:focus { border-color: #3779b9; - background-color: rgba(255, 255, 255, 0.08); + background-color: #ffffff; box-shadow: 0 0 0 4px rgba(55, 121, 185, 0.15); } @@ -10125,7 +10124,7 @@ body { border-radius: 12px; border: 1px solid #e2e8f0; outline: none; - background: #fff; + /* background: #fff; */ transition: all 0.3s ease; font-size: 14px; color: #1e293b; @@ -17736,9 +17735,9 @@ h4.service-details__dynamic-content-erp { .careers-popup-optimized .form-input { padding: 10px 14px !important; - border: 1.5px solid rgba(255, 255, 255, 0.08) !important; - background: rgba(255, 255, 255, 0.03) !important; - color: #fff !important; + border: 1.5px solid #e2e8f0 !important; + /* background: #ffffff !important; */ + color: #787878 !important; font-weight: 500 !important; border-radius: 10px !important; } @@ -17746,14 +17745,15 @@ h4.service-details__dynamic-content-erp { .careers-popup-optimized .form-input:focus { border-color: #3779b9 !important; - background: rgba(55, 121, 185, 0.05) !important; + background: #ffffff !important; box-shadow: 0 0 0 4px rgba(55, 121, 185, 0.1) !important; } .careers-popup-optimized .form-textarea { min-height: 60px !important; - background: rgba(255, 255, 255, 0.03) !important; - border: 1.5px solid rgba(255, 255, 255, 0.08) !important; + background: #ffffff !important; + border: 1.5px solid #e2e8f0 !important; + color: #787878 !important; } /* File Upload Popup Styling */ @@ -17769,8 +17769,9 @@ h4.service-details__dynamic-content-erp { display: flex; align-items: center; justify-content: space-between; - background: rgba(255, 255, 255, 0.02); - border: 1.5px dashed rgba(255, 255, 255, 0.1); + background: #ffffff; + color: #000000 !important; + border: 1.5px dashed #c0cad8; border-radius: 10px; padding: 8px 12px; cursor: pointer; @@ -17779,11 +17780,11 @@ h4.service-details__dynamic-content-erp { .careers-popup-optimized .file-upload-label:hover { border-color: #3779b9; - background: rgba(255, 255, 255, 0.05); + background: #f0f6ff; } .careers-popup-optimized .file-content { - color: rgba(255, 255, 255, 0.6); + color: #000000; } /* ── Careers Popup Optimized (Dark Theme & No-Scroll) ── */ @@ -17852,23 +17853,24 @@ h4.service-details__dynamic-content-erp { .careers-popup-optimized .form-input { padding: 12px 16px !important; - border: 1.5px solid rgba(255, 255, 255, 0.08) !important; - background: rgba(255, 255, 255, 0.03) !important; - color: #fff !important; + border: 1.5px solid #e2e8f0 !important; + /* background: #ffffff !important; */ + color: #787878 !important; font-weight: 500 !important; border-radius: 12px !important; } .careers-popup-optimized .form-input:focus { border-color: #3779b9 !important; - background: rgba(55, 121, 185, 0.05) !important; + /* background: #ffffff !important; */ box-shadow: 0 0 0 4px rgba(55, 121, 185, 0.1) !important; } .careers-popup-optimized .form-textarea { min-height: 80px !important; - background: rgba(255, 255, 255, 0.03) !important; - border: 1.5px solid rgba(255, 255, 255, 0.08) !important; + background: #ffffff !important; + border: 1.5px solid #e2e8f0 !important; + color: #787878 !important; } /* File Upload Popup Styling */ @@ -17884,8 +17886,9 @@ h4.service-details__dynamic-content-erp { display: flex; align-items: center; justify-content: space-between; - background: rgba(255, 255, 255, 0.02); - border: 1.5px dashed rgba(255, 255, 255, 0.1); + background: #ffffff; + color: #000000 !important; + border: 1.5px dashed #c0cad8; border-radius: 12px; padding: 10px 15px; cursor: pointer; @@ -17894,16 +17897,17 @@ h4.service-details__dynamic-content-erp { .careers-popup-optimized .file-upload-label:hover { border-color: #3779b9; - background: rgba(255, 255, 255, 0.05); + background: #f0f6ff; } .careers-popup-optimized .file-content { - color: rgba(255, 255, 255, 0.6); + color: #787878; } .careers-popup-optimized .file-name-text { font-size: 13px; font-weight: 500; + color: #787878; } .careers-popup-optimized .file-browse-btn { diff --git a/src/components/contact/ContactSection.tsx b/src/components/contact/ContactSection.tsx index 00c4e9d..45c204e 100644 --- a/src/components/contact/ContactSection.tsx +++ b/src/components/contact/ContactSection.tsx @@ -189,7 +189,7 @@ const ContactSection = () => { borderRadius: '12px', outline: 'none', fontSize: '15px', - color: '#1e293b' + color: '#787878' }} > diff --git a/src/components/home/HomeContactOne.tsx b/src/components/home/HomeContactOne.tsx index 5c75aa5..eea19db 100644 --- a/src/components/home/HomeContactOne.tsx +++ b/src/components/home/HomeContactOne.tsx @@ -123,7 +123,7 @@ const HomeContactOne = () => {

Location

-

Canada

+

Waterloo, Ontario Canada