/* Custom CSS for App Development Cost Landing Page */
:root {
  --primary-color: #007bff;
  --secondary-color: #ffc107;
  --success-color: #28a745;
  --danger-color: #dc3545;
  --dark-color: #343a40;
  --light-color: #f8f9fa;
  --white: #ffffff;
  --gradient-primary: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  --gradient-secondary: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
  --gradient-warning: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
  --gradient-danger: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 5px 20px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 10px 30px rgba(0, 0, 0, 0.2);
  --border-radius: 15px;
  --transition: all 0.3s ease;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: "Inter", system-ui, -apple-system, sans-serif; line-height: 1.6; color: #343a40; overflow-x: hidden; }
.mb-60 { margin-bottom: 60px !important; }
.contact-item .contact-icon { width: 22px; }
/* Hero Section */
.hero-section { background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); position: relative; overflow: hidden;  display: flex; align-items: center; }
.contact-form-container { position: relative; z-index: 9; }
.contact-option { padding: 2rem; background: rgba(255, 255, 255, 0.05); border-radius: 10px; transition: all 0.3s ease; }
.contact-option:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-5px); }
.hero-background { position: absolute; top: 0; left: 0; right: 0; bottom: 0; overflow: hidden; }
.animated-shapes { position: absolute; width: 100%; height: 100%; }
.shape { position: absolute; border-radius: 50%; opacity: 0.1; animation: float 6s ease-in-out infinite; }
.shape-1 { width: 80px; height: 80px; background: #ffc107; top: 20%; left: 10%; animation-delay: 0s; }
.shape-2 { width: 120px; height: 120px; background: #28a745; top: 60%; right: 15%; animation-delay: 2s; }
.shape-3 { width: 60px; height: 60px; background: #dc3545; bottom: 30%; left: 20%; animation-delay: 4s; }
.shape-4 { width: 100px; height: 100px; background: #ffc107; top: 40%; right: 30%; animation-delay: 1s; }
@keyframes float { 0%, 100% { transform: translateY(0px) rotate(0deg); } 50% { transform: translateY(-20px) rotate(180deg); } }
.hero-content { color: #ffffff; z-index: 2; position: relative; }
.hero-title { font-size: 3.5rem; font-weight: 700; margin-bottom: 1.5rem; line-height: 1.2; animation: slideInLeft 1s ease-out; }
.hero-subtitle { font-size: 1.25rem; margin-bottom: 2rem; opacity: 0.95; animation: slideInLeft 1s ease-out 0.3s both; }
.hero-buttons { margin-bottom: 3rem; animation: slideInLeft 1s ease-out 0.6s both; }
.hero-stats { display: flex; gap: 2rem; animation: slideInUp 1s ease-out 0.9s both; }
.stat-item { text-align: center; }
.stat-item h3 { font-size: 2rem; font-weight: 700; margin-bottom: 0.5rem; }
.stat-item p { opacity: 0.9; margin: 0; }
.hero-image { animation: slideInRight 1s ease-out 0.3s both; }
.hero-image img { border-radius: 20px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); transition: all 0.3s ease; }
.hero-image img:hover { transform: scale(1.02); }
/* Section Padding */
.section-padding { padding: 60px 0; }
/* Section Header */
.section-header { margin-bottom: 4rem; }
.section-header h2 { font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; color: #343a40; }
.section-header p { font-size: 1.1rem; color: #6c757d; max-width: 600px; margin: 0 auto; }
/* Calculator Section */
.calculator-container { background: #ffffff; border-radius: 20px; padding: 3rem; box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15); position: relative; }
.progress-bar-container { margin-bottom: 2rem; display: flex; align-items: center; gap: 1rem; }
.progress { flex: 1; height: 8px; background: #e9ecef; border-radius: 4px; overflow: hidden; }
.progress-bar { background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); transition: width 0.5s ease; border-radius: 4px; height: 100%; }
.step-indicator { font-weight: 600; color: #007bff; white-space: nowrap; }
.calculator-step { display: none; }
.calculator-step.active { display: block; animation: fadeInUp 0.5s ease; }
.calculator-step h3 { font-size: 1.75rem; font-weight: 600; margin-bottom: 2rem; text-align: center; color: #343a40; }
.option-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-bottom: 2rem; }
.option-card { background: #ffffff; border: 2px solid #e9ecef; border-radius: 15px; padding: 2rem; text-align: center; cursor: pointer; transition: all 0.3s ease; position: relative; height: 100%; display: flex; flex-direction: column; justify-content: space-between; }
.option-card:hover { border-color: #007bff; transform: translateY(-5px); box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15); }
.option-card.selected { border-color: #007bff; background: linear-gradient( 135deg, rgba(0, 123, 255, 0.1) 0%, rgba(0, 123, 255, 0.05) 100% ); transform: translateY(-5px); box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15); }
.option-card i { font-size: 3rem; color: #007bff; margin-bottom: 1rem; }
.option-card h4 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; color: #343a40; }
.option-card p { color: #6c757d; margin-bottom: 1rem; flex-grow: 1; }
.hours-badge { background: #007bff; color: #ffffff; padding: 0.4rem 1rem; border-radius: 25px; font-size: 0.875rem; font-weight: 600; display: inline-block; }
.checkbox-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1rem; margin-bottom: 2rem; }
.checkbox-card { cursor: pointer; }
.checkbox-card input[type="checkbox"] { display: none; }
.checkbox-card .card-content { background: #ffffff; border: 2px solid #e9ecef; border-radius: 15px; padding: 1.5rem; text-align: center; transition: all 0.3s ease; height: 100%; }
.checkbox-card:hover .card-content { border-color: #007bff; transform: translateY(-3px); box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); }
.checkbox-card input:checked + .card-content { border-color: #28a745; background: linear-gradient( 135deg, rgba(40, 167, 69, 0.1) 0%, rgba(40, 167, 69, 0.05) 100% ); transform: translateY(-3px); box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); }
.checkbox-card i { font-size: 2rem; color: #007bff; margin: 0 auto 1rem; }
.checkbox-card h4 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; color: #343a40; }
.checkbox-card p { color: #6c757d; margin-bottom: 0.5rem; font-size: 0.9rem; }
.checkbox-card small { color: #007bff; font-weight: 600; }
.calculator-navigation { display: flex; justify-content: space-between; margin-top: 2rem; }
/* Results */
.results-container { text-align: center; }
.results-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin: 2rem 0; }
.result-card { background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); color: #ffffff; padding: 2rem; border-radius: 15px; box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15); transition: all 0.3s ease; }
.result-card:hover { transform: translateY(-5px); }
.result-card h4 { margin-bottom: 1rem; font-weight: 600; opacity: 0.9; }
.result-value { font-size: 2.5rem; font-weight: 700; }
.cost-breakdown { background: #f8f9fa; border-radius: 15px; padding: 1.5rem; margin: 2rem 0; text-align: left; }
.cost-breakdown h5 { margin-bottom: 1rem; color: #343a40; font-weight: 600; }
.breakdown-item { display: flex; justify-content: space-between; align-items: center; padding: 0.75rem 0; border-bottom: 1px solid #dee2e6; }
.breakdown-item:last-child { border-bottom: none; font-weight: 600; color: #007bff; font-size: 1.1rem; }
/* Map Section */
.map-container { position: relative; margin-top: 2rem; }
.developer-map { height: 500px; border-radius: 15px; overflow: hidden; box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15); }
.map-legend { background: #ffffff; padding: 1.5rem; border-radius: 15px; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); margin-top: 1rem; }
.map-legend h5 { margin-bottom: 1rem; color: #343a40; font-weight: 600; }
.legend-items { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.legend-item { display: flex; align-items: center; gap: 0.75rem; }
.legend-color { width: 20px; height: 20px; border-radius: 50%; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); }
/* Comparison Section */
.cost-factors { padding: 2rem 0; }
.factor-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 2rem; padding: 1.5rem; background: #ffffff; border-radius: 15px; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); transition: all 0.3s ease; }
.factor-item:hover { transform: translateY(-3px); box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15); }
.factor-item i { font-size: 1.5rem; margin-top: 0.25rem; }
.factor-item h4 { font-size: 1.2rem; font-weight: 600; margin-bottom: 0.5rem; color: #343a40; }
.factor-item p { color: #6c757d; margin: 0; }
.comparison-table { padding: 2rem 0; }
.comparison-table h4 { margin-bottom: 1.5rem; color: #343a40; font-weight: 600; }
.table { background: #ffffff; border-radius: 15px; overflow: hidden; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); }
.table thead th { font-weight: 600; border-bottom: none; }
.table tbody tr { transition: all 0.3s ease; }
.table tbody tr:hover { background-color: rgba(0, 123, 255, 0.05); }
/* Technology Section */
.tech-categories { margin-top: 2rem; }
.tech-category { background: #ffffff; border-radius: 15px; padding: 2rem; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); height: 100%; transition: all 0.3s ease; }
.tech-category:hover { transform: translateY(-5px); box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15); }
.tech-category h4 { margin-bottom: 1.5rem; font-weight: 600; color: #343a40; }
.tech-items { display: flex; flex-direction: column; gap: 1rem; }
.tech-item { display: flex; align-items: center; justify-content: space-between; padding: 1rem; background: #f8f9fa; border-radius: 10px; transition: all 0.3s ease; }
.tech-item:hover { background: rgba(0, 123, 255, 0.1); transform: translateX(5px); }
.tech-item i { font-size: 1.5rem; margin-right: 1rem; color: #007bff; }
.tech-item span { flex: 1; font-weight: 500; color: #343a40; }
.tech-item small { color: #6c757d; font-size: 0.8rem; font-style: italic; }
/* Portfolio Section */
.portfolio-card { background: #ffffff; border-radius: 20px; overflow: hidden; box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15); transition: all 0.3s ease; height: 100%; }
.portfolio-card:hover { transform: translateY(-10px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); }
.portfolio-image { overflow: hidden; height: 200px; }
.portfolio-image img { width: 100%; height: 100%; object-fit: cover; transition: all 0.3s ease; }
.portfolio-card:hover .portfolio-image img { transform: scale(1.1); }
.portfolio-content { padding: 2rem; }
.portfolio-content h4 { font-size: 1.3rem; font-weight: 600; margin-bottom: 1rem; color: #343a40; }
.portfolio-content p { color: #6c757d; margin-bottom: 1.5rem; }
.portfolio-stats { margin: 1.5rem 0; }
.portfolio-stats .stat { margin-bottom: 0.5rem; font-size: 0.9rem; color: #343a40; }
.portfolio-stats .stat strong { color: #007bff; }
.tech-stack { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.tech-tag { background: #007bff; color: #ffffff; padding: 0.3rem 0.8rem; border-radius: 15px; font-size: 0.8rem; font-weight: 500; }
.tech-tag:nth-child(2n) { background: #28a745; }
.tech-tag:nth-child(3n) { background: #ffc107; color: #343a40; }
.tech-tag:nth-child(4n) { background: #dc3545; }
/* CTA Sections */
.cta-section { background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%); color: #ffffff; }
.cta-section h2 { font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; }
.cta-section .lead { opacity: 0.95; margin-bottom: 2rem; }
/* Contact Forms */
.contact-form-container { background: #ffffff; border-radius: 20px; padding: 2rem; box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15); max-width: 490px; width: 100%; margin-right: 0; margin-left: auto; }
.modal-content { border-radius: 15px; border: none; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); }
.modal-header { border-bottom: 1px solid #e9ecef; padding: 1.5rem; }
.modal-title { font-weight: 600; color: #343a40; }
.form-control { border: 2px solid #e9ecef; border-radius: 10px; padding: 0.75rem 1rem; transition: all 0.3s ease; font-size: 0.95rem; }
.form-control:focus { border-color: #007bff; box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }
.form-label { font-weight: 600; margin-bottom: 0.5rem; color: #343a40; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-details { margin-top: 2rem; }
.contact-item { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; padding: 1rem; background: rgba(255, 255, 255, 0.1); border-radius: 10px; backdrop-filter: blur(5px); }
.contact-item i { font-size: 1.5rem; width: 40px; text-align: center; }
.contact-item h5 { margin-bottom: 0.25rem; font-weight: 600; color: #ffffff; }
.contact-item p { margin: 0; opacity: 0.9; }
/* FAQ Section */
.accordion-button { font-weight: 600; font-size: 1.1rem; border-radius: 15px; border: none; }
.accordion-button:not(.collapsed) { background: #f8f9fa; color: #007bff; box-shadow: none; }
.accordion-button:focus { box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }
.accordion-item { border: none; margin-bottom: 1rem; border-radius: 15px; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); overflow: hidden; }
.accordion-body { font-size: 1rem; line-height: 1.7; color: #6c757d; }
.social-links a { font-size: 1.2rem; width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255, 255, 255, 0.1); transition: all 0.3s ease; }
.social-links a:hover { background: #007bff; color: #ffffff; transform: translateY(-2px); }
.text-light-50 { color: rgba(255, 255, 255, 0.7) !important; }
/* Animations */
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-50px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(50px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
/* Custom Button Styles */
.btn { border-radius: 50px !important; padding: 0.75rem 2rem !important; font-weight: 600; border: none; transition: all 0.3s ease; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; }
.btn-primary { background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); border: 2px solid transparent; color: #ffffff; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15); color: #ffffff; }
.btn-success { background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%); color: #ffffff; }
.btn-success:hover { transform: translateY(-2px); box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15); color: #ffffff; }
.btn-outline-light { border: 2px solid #ffffff; color: #ffffff; background: transparent; }
.btn-outline-light:hover { background: #ffffff; color: #007bff; transform: translateY(-2px); border-color: #ffffff; }
.btn-light { background: #ffffff; color: #007bff; border: 2px solid #ffffff; }
.btn-light:hover { background: #f8f9fa; transform: translateY(-2px); box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15); color: #007bff; border-color: #f8f9fa; }
.btn:disabled { opacity: 0.6; transform: none !important; box-shadow: none !important; }
.md_st { position: sticky; top: 0; left: 0; }
/* Call to Action Section */
.cta-left { position: relative;z-index: 2; }
.cta-form-container { background: rgba(255, 255, 255, 0.95);backdrop-filter: blur(10px);border-radius: 15px;padding: 2rem;box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);position: relative;z-index: 2; }
.calculator-outer {background: #c5dcf1;}
/* Team Members */
.team-members {
    margin-top: 2rem;
}
.team-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}
.team-member:hover .team-avatar {
    border-color: #ffc107;
    transform: scale(1.1);
}
/* Responsive Design */
@media (max-width: 768px) {
  .md_st { position: static; }
  .hero-section { padding-top: 30px; padding-bottom: 30px; }
  .hero-title { font-size: 2.5rem; }
  .hero-stats { flex-direction: column; gap: 1rem; text-align: center; }
  .stat-item { display: flex; justify-content: space-between; align-items: center; background: rgba(255, 255, 255, 0.1); padding: 1rem; border-radius: 10px; backdrop-filter: blur(5px); }
  .stat-item h3, .stat-item p { margin: 0; }
  .calculator-container { padding: 2rem 1rem; }
  .option-grid { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .contact-info { margin-bottom: 2rem; }
  .section-header h2 { font-size: 2rem; }
  .legend-items { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .calculator-navigation { flex-direction: column; gap: 1rem; }
  .calculator-navigation .btn { width: 100%; }
  .hero-buttons { flex-direction: column; gap: 1rem; }
  .hero-buttons .btn { width: 100%;font-size: 16px; }
  .portfolio-content { padding: 2rem 1rem; }
  #portfolio button.btn { font-size: 16px; }
  .contact-form-container { margin-top: 20px; padding: 1rem;}
.cta-form-container {margin-top: 2rem;padding: 1.5rem;}
.team-avatar { width: 50px; height: 50px; }
.cta-left { text-align: center; margin-bottom: 2rem; }
.cta-section h2 { font-size: 2rem; }
.calculator-stats-lists li span { font-size: 16px; }
.p-5 { padding: 1rem!important; }
}

@media (max-width: 576px) {
  .section-padding { padding: 60px 0; }
  .hero-title { font-size: 2rem; }
  .tech-categories .col-lg-4 { margin-bottom: 2rem; }
  .developer-map { height: 300px; }
  .meeting-schedule img { max-width: 300px; }
}
/* Loading States */
.loading { opacity: 0.7; pointer-events: none; }
.spinner { display: inline-block; width: 20px; height: 20px; border: 2px solid #f3f3f3; border-top: 2px solid #007bff; border-radius: 50%; animation: spin 1s linear infinite; margin-right: 0.5rem; }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
/* Toast Notifications */
.toast-container { z-index: 9999; }
.toast { border-radius: 15px; border: none; box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15); }
/* Smooth Scrolling */
html { scroll-behavior: smooth; }
/* Map Popup Styles */
.leaflet-popup-content-wrapper { border-radius: 10px; box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15); border: none; }
.leaflet-popup-content { margin: 1rem; font-family: inherit; }
.popup-content h4 { color: #007bff; margin-bottom: 0.5rem; font-weight: 600; }
.popup-content .rate-range { font-size: 1.1rem; font-weight: 600; color: #28a745; margin-bottom: 0.5rem; }
.popup-content .features { font-size: 0.9rem; color: #6c757d; }
/* Additional Utility Classes */
.text-gradient-primary { background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.bg-gradient-light { background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); }
/* Custom scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f8f9fa; }
::-webkit-scrollbar-thumb { background: #007bff; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #0056b3; }
/*****************************/
.hero-content .hero-subtitle, .hero-stats .stat-item p, .contact-info .lead, .contact-item p, .section-8 .lead{ color:  #FFFFFF !important; } 
.calculatorIcon{ color: #007bff !important; }
.TextBlue{ color: #007bff !important; }
.appCostBtn{ padding: 0.75rem 2rem; border-radius: 50px; }
.progressBarHeight{ height: 8px !important; }
.stepBtns{ padding: 0.75rem 2rem; border-radius: 50px; font-weight: 600 !important; font-size: 1rem; }
table td, table th, .wp-block-table td, .wp-block-table th { border:unset !important; }
.fW600{ font-weight: 600 !important; }
.accordionHeader{ padding: 0px !important; color: #212529 !important; }
.scheduleBtns{ border: none !important; background-color: unset !important; font-weight: 600 !important; }
.btn_yellowColor{ color: #ffc107 !important; }
.btn_SkyBlueColor{ color:#0dcaf0 !important; }
.btn_GreenColor{ color:#198754 !important; }
.accordionBtn{ background-color: #FFFFFF !important; color: #212529 !important; }
.accordionItem{ border: unset !important; border-radius: 15px !important; }
.accordionHeader{ background-color: white !important; }
.accordion-button:not(.collapsed) { color: #007bff !important; background-color:#f8f9fa !important; box-shadow:unset !important; }
.accordion-item:first-of-type { border-top-left-radius: 15px !important; border-top-right-radius: 15px !important; }
.accordion-item:last-of-type { border-top-left-radius: 15px !important; border-top-right-radius: 15px !important; }
#contact .contact-item { padding: 1.5rem 1rem !important; }
#portfolio .btn-primary:focus{ background-color: #0a58ca !important; }
#ctaModal2 .btn-close { background: unset !important; color: #000000 !IMPORTANT; opacity: 1 !important; }
.formInputField { border: 1px solid #B7B7B7 !important; border-radius: 5px !important; background: #FFFFFF; padding: 11px 20px !important; font-weight: 400; font-size: 14px; color: #53498A; }
.formInputField::placeholder, .textAreaField { font-weight: 400; font-size: 14px; color: #53498A !important; }
.latestFormContainer { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.countryCode { font-weight: 500; font-size: 14px; color: #1D1068; }
.phoneInputContainer { position: relative; }
.formInputField input, .formInputField textarea { border: 0px !important; padding: 0px !important; }
.formInputField input:focus, .formInputField textarea:focus { box-shadow: unset !important; }
.calculator-navigation .btn-primary:focus, .results-container .btn-primary:focus { background-color: #0d6efd !important; }
.option-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 20px; }
.calculator-stats-lists ul {padding: 0;list-style: none;}
.calculator-stats-lists li {
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(255, 255, 255, 0.302);
    padding: 0.938rem 1.25rem;
    border-radius: 0.75rem;
    backdrop-filter: blur(280px);
    height: 100%;
    margin-bottom: 20px;
}
.calculator-stats-lists li span {
    font-size: 20px;
    color: #1a202c;
    margin-left: 10px;
    font-weight: 600;
}
#bookmetting {
    background: linear-gradient(104.26deg, #1D1068 23.79%, #0080F7 90.34%);
}
.meeting-schedule img {
    width: 100%;
    max-width: 400px;
}