/* Custom Variables */
:root {
    --primary-color: #0080FF;
    --primary-hover: #0056d6;
    --dark-color: #000000;
    --muted-color: #64748b;
    --light-bg: #EEF7FF;
    --blue-bg: #f0f5fb;
    --dark-blue: #0b1120;
    --border-radius-lg: 1.5rem;
    --border-radius-xl: 2.5rem;
}

/* Base Styles */
body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-color);
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Typography Hierarchy */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--dark-color);
    letter-spacing: -0.02em;
}

img {
    max-width: 100%;
}

.text-primary {
    background: var(--Primary-Gradient, linear-gradient(180deg, #51A8FF 0%, #0080FF 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-dark {
    background-color: #1a1a1a !important;
}

.bg-custom-light {
    background-color: var(--light-bg) !important;
}

.bg-custom-blue {
    background-color: var(--blue-bg) !important;
}

.bg-dark-blue {
    background-color: var(--dark-blue) !important;
}

/* Buttons */
.btn-primary {
    border-radius: 9999px;
    background: var(--Primary-Gradient, linear-gradient(180deg, #51A8FF 0%, #0080FF 100%));
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 16px;
    padding: 8px 15px;
    border: none;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(11, 108, 255, 0.2);
}

.custom-btn-shadow {
    box-shadow: 0 8px 15px rgba(11, 108, 255, 0.25);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Navbar */
.custom-navbar {
    background: #ffffff;
}

.nav-link {
    color: var(--dark-color);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link.active {
    color: var(--primary-color);
}

/* Contact page */
.contact-page-hero {
    min-height: 60vh;
}

.contact-form-panel .form-label,
.contact-form-panel label {
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-color);
}

.contact-form-panel textarea.custom-input {
    min-height: 140px;
    resize: vertical;
}

/* Hero Section */
.hero-section {
    padding-top: 4rem;
    padding-bottom: 6rem;
    /* background: url(img/hero-bg.png) no-repeat center center; */
    background-size: contain;
}

.hero-section::before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    border-radius: 536.957px;
    background: radial-gradient(50% 50% at 50% 50%, rgba(167, 233, 84, 0.40) 0%, rgba(255, 213, 64, 0.40) 100%);
    filter: blur(37.1492805480957px);
    width: 500px;
    height: 500px;
    z-index: -1;
    opacity: 0.3;
}

.hero-section::after {
    position: absolute;
    right: 0;
    top: 0;
    content: "";
    border-radius: 536.957px;
    background: radial-gradient(50% 68.36% at 50% 31.64%, rgba(64, 123, 255, 0.40) 0%, rgba(64, 221, 255, 0.40) 100%);
    filter: blur(37.1492805480957px);
    width: 500px;
    height: 500px;
    z-index: -1;
    opacity: 0.3;
}

.hero-title {
    font-size: 65px;
    line-height: 1.2;
    margin: 0 auto;
    font-weight: 800;
}

.hero-subtitle {
    text-align: center;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    color: #000000;
}

.logo-text {
    letter-spacing: -0.5px;
}

/* Features Section */
.feature-card {
    border-radius: 40px;
    border: 1px solid #F1F5F9;
    background: #F8FAFC;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border-color: rgba(11, 108, 255, 0.1);
}

.feature-card h5 {
    color: #000;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
}

.feature-card p {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    width: 70%;
}

.feature-card img {
    /* box-shadow: 0 20px 25px -5px rgba(37, 99, 235, 0.20), 0 8px 10px -6px rgba(37, 99, 235, 0.20);
    border-radius: 16px; */
    /* margin-bottom: 20px; */
}

.feature-card .icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    border-radius: 16px;
    background: linear-gradient(180deg, #51A8FF 0%, #0080FF 100%);
    box-shadow: 0 20px 25px -5px rgba(37, 99, 235, 0.20), 0 8px 10px -6px rgba(37, 99, 235, 0.20);
    display: flex;
    margin-bottom: 30px;
    align-items: center;
    justify-content: center;
}

.icon-box {
    width: 48px;
    height: 48px;
}

.section-title {
    font-size: 50px;
}

.section-subtitle {
    font-size: 20px;
}

/* 3D Scan Module Section */
.scan-module-section {
    background-color: var(--dark-color);
}

.scan-module-section p {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 30px;
}

.scan-module-section li {
    margin-bottom: 10px;
}

.check-icon {
    width: 48px;
    height: 48px;
    font-size: 35px;
    background: linear-gradient(180deg, #51A8FF 0%, #0080FF 100%);
    border-radius: 12px;
}

.badge-soft-primary {
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.10);
}

small.bage-txt {
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    background: var(--Primary-Gradient, linear-gradient(180deg, #51A8FF 0%, #0080FF 100%));
    background-clip: text;
    -webkit-background-clip: text;
}

.list-unstyled span {
    color: #FFF;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
}

/* Grow Your Business Section */
.grow-section .container {
    border-radius: 48px;
    border: 1px solid #E2E8F0;
    background: rgba(255, 255, 255, 0.50);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(2px);
    padding: 50px;
}

.grow-section .phone-tilt-left {
    transform: rotate(-10deg) translateY(20px) translateX(-20px);
}

.grow-section .phone-tilt-right {
    transform: rotate(10deg) translateY(-30px);
}

.fro-pro {
    border-radius: 9999px;
    border: 1px solid rgba(37, 99, 235, 0.10);
    background: rgba(37, 99, 235, 0.05);
    white-space: normal ;
    word-break: break-word;
}

.fro-pro small {
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    background: var(--Primary-Gradient, linear-gradient(180deg, #51A8FF 0%, #0080FF 100%));
    background-clip: text;
    -webkit-background-clip: text;
}

.custom-feature-list li h6 {
    color: #000;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 0;
}

.custom-feature-list li p {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.mock-avatar {
    width: 32px;
    height: 32px;
}

.mock-avatar-round {
    width: 40px;
    height: 40px;
}

/* FAQs Section */
.custom-accordion .accordion-button {
    padding: 1.25rem 1.5rem;
    font-size: 20px;
    color: #000;
    box-shadow: none !important;
 
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: var(--light-bg);
}

.custom-accordion .accordion-button::after {
    background-size: 1rem;
}

/* Mission Section */
.stat-card::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 50%;
    width: 1px;
    background-color: rgba(0, 0, 0, 0.1);
}

.stat-card:last-child::after {
    display: none;
}

.missn-sub {
    color: #000;
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
}

.missn-sub::after {
    content: '';
    width: 96px;
    height: 6px;
    border-radius: 9999px;
    background: var(--Primary-Color, #0080FF);
    display: block;
    margin: 25px auto;
}

@media (max-width: 768px) {
    .stat-card::after {
        display: none;
    }
}

/* Contact Section */
.contact-bg-overlay {
    background: linear-gradient(to right, transparent 0%, transparent 40%, rgba(255, 255, 255, 1) 40%, rgba(255, 255, 255, 1) 100%);
}

.contact-form-card label {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.icon-square {
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.20);
    background: rgba(59, 130, 246, 0.10);
    color: #0080FF;
}

footer h6 {
    color: #D9D9D9;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.footer-bottom {
    padding-bottom: 25px;
}

.custom-input {
    font-size: 0.95rem;
    padding: 1rem 1.25rem;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    background: #FFF;
}

.custom-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(11, 108, 255, 0.15);
    background-color: #fff !important;
}

/* Footer Section */
.footer-social-icon {
    width: 48px;
    height: 48px;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.05);
    font-size: 24px;
}

.footer-social-icon:hover {
    background-color: var(--primary-color) !important;
    transform: translateY(-3px);
}

.footer-link {
    transition: color 0.2s ease;
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-decoration: none;
}

.footer-link:hover {
    color: var(--primary-color) !important;
}

/* Utilities */
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.radius-md {
    border-radius: 0.75rem;
}

.mock-btn-sm {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hover-up {
    transition: transform 0.3s;
}

.hover-up:hover {
    transform: translateY(-3px);
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    max-width: 1490px;
}

/* smooth_area */


.smooth_area {
    padding: 50px 0;
    background: #EEF1F4;
}

.smooth_area_inner span {
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    /* 142.857% */
    letter-spacing: 1.4px;
    text-transform: uppercase;
    background: linear-gradient(180deg, #51A8FF 0%, #0080FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.grade_spn {
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    /* 142.857% */
    letter-spacing: 1.4px;
    text-transform: uppercase;
    background: linear-gradient(180deg, #51A8FF 0%, #0080FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.smooth_area_inner h2 {
    color: #2C2F32;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 45px;
    margin-top: 16px;
}

.smooth_area_inner1 p {
    color: #595C5E;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 29.25px;
}

.grow-section .custom-check-list li span {
    color: black;
}

.grow-section h3 {
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    margin-top: 35px;
    margin-bottom: 20px;
}



.built-area-section {}


.built-card-left {
    background: #f1f1f1;
    border-radius: 24px;
    position: relative;
    padding: 45px;
    position: relative;
    overflow: hidden;
}

.built-card-left::before {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100px;
    height: 100px;
    content: "";
    background: url(./img/built_hm.png) no-repeat no-repeat;
    background-position: right;
    background-size: contain;
    opacity: 0.2;

}

.built-card-right {
    border-radius: 20px;
    background: linear-gradient(135deg, #4facfe, #007bff);
    position: relative;
    overflow: hidden;
    padding: 45px;
}

.built-card-right::before {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 200px;
    height: 200px;
    content: "";
    background: url(./img/built_hm1.png) no-repeat no-repeat;
    background-position: right;
    background-size: contain;
    opacity: 0.2;

}

.built-tagline {
    font-size: 12px;
    letter-spacing: 1px;
    color: #4facfe;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.built-tagline.light {
    color: rgba(255, 255, 255, 0.7);
}

.built-heading {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 40px;
    color: #2C2F32;
}

.built-desc {
    font-size: 18px;
    font-weight: 400;
    color: #666;
    margin-bottom: 15px;
}


.built-highlight {
    margin-bottom: 10px;
    color: #000;
    font-size: 17px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
}

.built-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.built-list li {
    position: relative;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 13px;
    color: #2C2F32;
    font-size: 15px;
    font-weight: 450;
    line-height: 24px;
}





.built-list.light li {
    color: #fff;

}

.built-list.light li::before {
    color: #fff;
}


.built-list li .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    background: linear-gradient(180deg, #51A8FF 0%, #0080FF 100%);
    border-radius: 100px;
}


.built-list li .icon i {
    color: white;
    font-size: 19px;
}



.remodel_area {
 
} 
.remodel_heading {
  font-size: 50px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 10px;
}

.remodel_text {
color: var(--Black, #000);
font-family: Inter;
font-size: 19px;
font-style: normal;
font-weight: 400;
line-height: 32px; 
}
 
.remodel_card {
  background: #F4F4F4;
  border-radius: 18px;
  padding: 32px 20px;
  text-align: center;
  position: relative;
  transition: 0.3s ease;
  overflow: hidden;
}
 
.remodel_card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 100%;
  border-radius: 0 0 18px 18px;
}
 
.remodel_card.blue::after {
  background: #005E9F;
}

.remodel_card.teal::after {
  background: #006573;
}

.remodel_card.dark::after {
  background:#0B0F11;
}
 
.remodel_card h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #222;
}

.remodel_card span {
  font-size: 12px;
  letter-spacing: 1px;
  color: #777;
}
 
.remodel_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
 
.organized_area {
background: rgba(223, 227, 231, 0.30);
}
 
.organized_heading {
color: 000; 
font-size: 50px;
font-style: normal;
font-weight: 600;
line-height: 48px; 
}
 
.organized_pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
border-radius: 74px;
border: 1px solid rgba(37, 99, 235, 0.12);
background: #F8FAFC;
  border-radius: 50px;
color: #0F172A; 
font-size: 15px;
font-style: normal;
font-weight: 500;
line-height: 28px;  
}
.organized_pill .icon{
    display: flex;
width: 40px;
height: 40px;
justify-content: center;
align-items: center;
flex-shrink: 0;
border-radius: 9999px;
background: rgba(37, 99, 235, 0.10);
}
.organized_pill:nth-child(2) .icon{
    background: rgba(99, 102, 241, 0.10); 
}
.organized_pill:nth-child(3) .icon{
  background: #D1FAE5; 
}
.organized_pill:nth-child(4) .icon{
background: #E6FBFF; 
}
.organized_pills {
    display: inline-grid;
    grid-template-columns: repeat(2, 2fr);
    width: 100%;
}

.organized_pill i {
  color: #3b82f6;
}
 
.organized_pill.green i {
  color: #22c55e;
}

.organized_pill.cyan i {
  color: #06b6d4;
}
 
.organized_subheading {
  font-weight: 600;

  margin-bottom: 10px;
}
 
.organized_list {
  list-style: none;
  padding: 0;
}

.organized_list li {
    position: relative;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 13px;
    color: #2C2F32;
    font-size: 15px;
    font-weight: 450;
    line-height: 24px;
}
 .organized_list li .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    background: linear-gradient(180deg, #51A8FF 0%, #0080FF 100%);
    border-radius: 100px;
}
 .organized_list li .icon i {
    color: white;
    font-size: 19px;
}
.organized_users {
  gap: 5px;
}

.organized_avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
      margin-left: -17px;
    border: 2px solid white;
}
.organized_avatar:nth-child(1){
      margin-left: 0;
}
.organized_avatar:nth-child(2){
background: #94A3B8;
 
}
.organized_avatar:nth-child(3){
background: #64748B;
 
}
.organized_footer {
color: #000; 
font-size: 12px;
font-style: normal;
font-weight: 600;
line-height: 16px; 
letter-spacing: 1.2px;
text-transform: uppercase;
} 
.organized_img_wrapper {
  position: relative;
  padding: 20px;
  background: #eee;
  border-radius: 25px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
 
.organized_badge {
  position: absolute;
  top: -20px;
  left: 0%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  color: #fff;
  padding: 10px 18px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.068);
}

.organized_badge small {
  display: block;
  font-size: 10px;
  opacity: 0.8;
}

.organized_badge strong {
  font-size: 14px;
}
 
.organized_img_wrapper img{
    width: 100%;
}
.accordion-body{
    font-size: 16px;
    opacity: 0.5;
    color: black;
    font-weight: 400;
}
.remodeling_area {
  background: rgba(223, 227, 231, 0.30);
}

.remodeling_tag { 
font-size: 12px;
font-style: normal;
font-weight: 600;
line-height: 16px;  
letter-spacing: 1.2px;
text-transform: uppercase;
background: var(--Primary-Gradient, linear-gradient(180deg, #51A8FF 0%, #0080FF 100%));
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.remodeling_heading {
color: #2C2F32;
text-align: center; 
font-size: 50px;
font-style: normal;
font-weight: 600;
line-height: 48px; 
margin: 10px 0 30px;
}

.remodeling_desc {
  max-width: 800px;
color: black;
text-align: center; 
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 32px;  
}

.contact-section_inner{
    text-align: center;
}

.contact-section_inner span{
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    background: var(--Primary-Gradient, linear-gradient(180deg, #51A8FF 0%, #0080FF 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-section_inner h2{
    color: #2C2F32;
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
    margin: 10px 0 20px;
}
.contact-section_inner p{
color: #000;
text-align: center; 
font-size: 16px;
font-style: normal;
font-weight: 600;
line-height: 24px; /* 150% */
}
.custome_btn{
border-radius: 9999px;
background: var(--Primary-Gradient, linear-gradient(180deg, #51A8FF 0%, #0080FF 100%));
padding: 12px 30px;
text-decoration: none;
color: #FFF;
text-align: center; 
font-size: 16px;
font-style: normal;
font-weight: 600;
line-height: 24px;  
margin: auto;
margin-top: 15px;
display: flex;
width: fit-content;

}
 .download-section ul
 {
    margin-bottom: 20px
 }
 .download-section ul li span{
    color: #000;
 }
 .download-section ul li .check-icon{
        width: 38px;
    height: 38px;
 }

  .download-section h3{
    color: #000; 
font-size: 18px;
font-style: normal;
font-weight: 600;
line-height: 28px; 
  }
@media (max-width: 768px) {
  .organized_heading {
    font-size: 32px;
  }
.organized_pills{
        grid-template-columns: repeat(1, 2fr);
}

  .organized_badge {
    top: -15px;
    left: 22%;
    font-size: 12px;
  }
    .remodeling_heading {
    font-size: 32px;
  }

  .remodeling_desc {
    font-size: 14px;
  }
}
/* Media Queries for Responsive adjustments */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
.custom-navbar{
    position: absolute;
    width: 100%;
    z-index: 22;
}
.hero-section{
    padding-top: 160px;
}
    .hero-phones {
        flex-direction: column;
        align-items: center;
    }

    .contact-bg-overlay {
        background: rgba(255, 255, 255, 1);
    }

    .download-phone-container {
        justify-content: center;
    }

    .phone-showcase-tilt,
    .phone-showcase {
        flex-direction: column;
        height: auto;
    }

    .scan-module-section .phone-showcase {
        flex-direction: row;
    }

    .grow-section .phone-showcase-tilt {
        flex-direction: row;
    }

    .download-section {
        padding: 40px 0;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .hero-subtitle br {
        display: none;
    }

    .app-badges img {
        max-height: 44px;
    }

    .hero-subtitle {
        font-size: 16px;
        line-height: 26px;
    }
.hero-section{
    overflow-x: hidden;
}
.feature-card .icon{
        margin: 0 auto 30px;
}

    .feature-card p {
 width: 100%;
        

    }
    .section-title {
        font-size: 30px;
    }

    .feature-card {
        text-align: center;
    }

    .feature-card h5 {
        font-size: 20px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .scan-module-section p {
        font-size: 16px;
        line-height: 27px;
    }

    .check-icon {
        width: 32px;
        height: 32px;
        border-radius: 8px;
    }

    .list-unstyled span {
        font-size: 18px;
    }

    .custom-accordion .accordion-button {
        font-size: 18px;
    }

    .missn-sub {
        font-size: 18px;
        line-height: 28px;
    }

    .footer {
        margin-top: 35px;
        text-align: center;
    }

    .grow-section .container {
        padding: 30px;
    }

    .footer .navbar-brand {
        justify-content: center;
    }

    .ftr-socl {
        justify-content: center;
    }

    .download-section {
        padding: 0;
    }
.hero-section{
    padding-top: 160px;
}
.contact-section_inner h2{
        white-space: normal;
    word-break: break-word;
}
body{
    overflow-x: hidden;
}
.footer .row{
    margin-left: 0px !important;
    margin-right: 0px !important;
}
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2rem;
    }
.built-card-left{
    padding: 30px;
}
.built-card-right{
    padding: 30px;


}
.remodel_heading
{
    font-size: 40px;
}
    .scan-module-section .phone-showcase,
    .grow-section .phone-showcase-tilt {
        flex-direction: column;
    }
}