/* Company Hero Section */
.company-hero {
    padding: var(--spacing-2xl) 0;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.hero-text-wrapper {
    margin-left: auto;
    margin-right: 0;
    max-width: 55%;
    color: var(--text-tertiary);
    font-size: 38px;
    font-weight: 400;
}

.hero-text-wrapper span {
    color: var(--text-primary);
    font-weight: 600;
}

.hero-text-wrapper h2 {
    color: var(--text-tertiary);
    font-weight: inherit;
}

.hero-text-wrapper h2 span {
    font-weight: inherit;
}

.hero-text-wrapper p {
    margin-bottom: var(--spacing-md);
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-light);
    opacity: 0.5;
    margin-bottom: var(--spacing-md);
    font-weight: 500;
}



/* ===== Aerosol Detection Section ===== */
.aerosol-section {
    width: 100%;
    min-height: 100vh;
    background: var(--bg200);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 60px 20px;
    padding-bottom: 90px;
      border-radius: 40px;
}

/* ===== Concentric Circles Background ===== */
.radial-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.concentric-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(180, 200, 220, 0.3);
}

.circle-1 {
    width: 200px;
    height: 200px;
}

.circle-2 {
    width: 400px;
    height: 400px;
}

.circle-3 {
    width: 600px;
    height: 600px;
}

.circle-4 {
    width: 800px;
    height: 800px;
}

.circle-5 {
    width: 1000px;
    height: 1000px;
}

/* ===== Floating Icons ===== */
.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(180, 140, 220, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 4px 12px rgba(150, 100, 200, 0.15));
}

.floating-icon svg {
    width: 32px;
    height: 32px;
    fill: rgba(140, 80, 200, 0.6);
}

.icon-1 {
    top: 10%;
    right: 8%;
}

.icon-2 {
    top: 25%;
    left: 5%;
}

.icon-3 {
    bottom: 20%;
    right: 6%;
}

.icon-4 {
    bottom: 15%;
    left: 8%;
}

.icon-5 {
    top: 50%;
    right: 3%;
}

/* ===== Content Container ===== */
.aerosol-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 700px;
    width: 100%;
}

/* ===== Eyebrow Text ===== */
.aerosol-eyebrow {
    font-size: 13px;
    letter-spacing: 1px;
    color: #9860c8;
    font-weight: 600;
    margin-bottom: 20px;
}

/* ===== Main Heading ===== */
.aerosol-heading {
    font-size: 46px;
    font-weight: 500;
    color: #2c3e50;
    line-height: 1.2;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

/* ===== Central Icon ===== */
.central-icon-container {
    display: flex;
    justify-content: center;
margin-bottom: -80px;
  z-index: 999;
  position: inherit;
}

.central-icon {
    width: 100px;
    height: 100px;
    background: rgb(255, 255, 255);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 8px 24px rgba(150, 100, 200, 0.15));
    position: relative;
}

.central-icon svg {
    width: 50px;
    height: 50px;
    fill: #9860c8;
}

/* ===== Content Cards ===== */
.cards-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.cards-container .card-row {
    display: flex;
    gap: 20px;
}

.cards-container .content-card:first-child {
  padding-top: 80px; /* adjust value as needed */
}

.content-card {
    background: var(--bg1000);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 28px 32px;
    box-shadow: 0 8px 24px rgba(100, 120, 160, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.content-card:hover {
    box-shadow: 0 12px 36px rgba(100, 120, 160, 0.12);
    transform: translateY(-2px);
}

.content-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
    text-align: left;
}


/* ===== Responsive ===== */
@media (max-width: 768px) {
    .aerosol-section {
        min-height: auto;
        padding: 40px 20px;
    }

    .aerosol-heading {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .aerosol-eyebrow {
        font-size: 12px;
    }

    .central-icon {
        width: 80px;
        height: 80px;
    }

    .central-icon svg {
        width: 40px;
        height: 40px;
    }

    .content-card {
        padding: 24px 24px;
    }

    .content-card p {
        font-size: 14px;
    }

    .concentric-circle {
        border: 1px solid rgba(180, 200, 220, 0.15) !important;
    }

    .circle-1 {
        width: 120px;
        height: 120px;
    }

    .circle-2 {
        width: 240px;
        height: 240px;
    }

    .circle-3 {
        width: 360px;
        height: 360px;
    }

    .circle-4 {
        display: none;
    }

    .circle-5 {
        display: none;
    }

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

    .floating-icon svg {
        width: 24px;
        height: 24px;
    }

    .icon-4,
    .icon-5 {
        display: none;
    }
}

@media (max-width: 480px) {
    .aerosol-heading {
        font-size: 28px;
    }

    .content-card {
        padding: 20px 16px;
    }

    .content-card p {
        font-size: 13px;
        line-height: 1.5;
    }
}

/* ===== SOLUTIONS SECTION ===== */
.solutions-wrapper {
    display: flex;
    flex-direction: column;
}

/* ===== TOP BLOCK: Software/Hardware Solutions ===== */
.solutions-top-block {
    background: #fafbfc;
    padding: 80px 20px;
    width: 100%;
    margin-bottom: 80px;
}

.solutions-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

/* Left Column */
.solutions-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.solutions-eyebrow, .solutions-heading-secondary {
    font-size: 24px;
    letter-spacing: 1px;
    color: var(--text-tertiary);
    font-weight: 500;
}
.solutions-heading-secondary{
    display: block;
}

.solutions-heading {
    font-size: 46px;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.2;
    margin: 0;
}

.solutions-text-blocks {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.solutions-paragraph {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    border-left: 1px solid var(--accent01);
}

.solutions-accent-line {
    min-width: 3px;
    width: 3px;
    height: 100%;
    background: #06b6d4;
    border-radius: 2px;
    margin-top: 2px;
}

.solutions-paragraph p {
    font-size: 14px;
    line-height: 1.7;
    color: #6b7280;
    margin: 0;
}

/* Right Column */
.solutions-right {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: end;
}

.solutions-image {
    border-radius: 12px;
    overflow: hidden;
}

.solutions-image img{
    width: 277px;
    height: 409px;
}

.solutions-overlay-card {
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 65%;
    background: #e0f2fecf;
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 80%;
}

.solutions-card-icon {
    width: 40px;
    height: 40px;
    background: #e0f2fe;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0369a1;
    font-size: 20px;
}

.solutions-card-text {
    font-size: 13px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
}

/* ===== BOTTOM BLOCK: Regulatory Compatibility ===== */
.solutions-bottom-block {
    background: var(--bg900);
    padding: 150px 20px;
    border-radius: 48px;
    margin-top: 40px;
    width: 100%;
}

.solutions-regulatory-container {
    max-width: 1200px;
    margin: 0 auto;
}

.solutions-regulatory-header {
    margin-bottom: 60px;
}

.solutions-regulatory-title {
    font-size: 38px;
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 12px 0;
}

.solutions-regulatory-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-weight: 400;
}

.solutions-regulatory-columns {
    display: grid;
    grid-template-columns: 0.5fr 1fr 1fr;
    gap: 60px;
}

.solutions-regulatory-column {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    border-left: 1px solid var(--accent01);
    padding: 20px 0;
}

.solutions-regulatory-divider {
    min-width: 3px;
    width: 3px;
    background: #06b6d4;
    border-radius: 2px;
}

.solutions-regulatory-text {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .aerosol-section{
        padding-bottom: 150px;
    }

    .solutions-heading {
        font-size: 36px;
    }

    .solutions-image {
        height: 300px;
    }

    .solutions-regulatory-columns{
        grid-template-columns: 0fr 1fr 1fr;
        gap: 0px;
    }

    .solutions-regulatory-column{
        margin: 20px 20px 00px 00px;
    }
}

@media (max-width: 950px) {
    .hero-text-wrapper{
        max-width: 80%;
    }
}

@media (max-width: 800px) {
    .hero-text-wrapper{
        max-width: 100%;
    }
    .solutions-top-block {
        padding: 60px 20px;
    }

    .solutions-bottom-block {
        padding: 60px 20px;
        margin-top: 60px;
    }

    .solutions-heading {
        font-size: 28px;
    }

    .solutions-regulatory-title {
        font-size: 28px;
    }

    .solutions-image {
        height: auto;
    }

    .solutions-overlay-card {
        width: 90%;
        padding: 20px;
        justify-content: center;
    }

    .solutions-paragraph p {
        font-size: 13px;
    }

    .solutions-regulatory-text {
        font-size: 13px;
    }

      .central-icon-container{
    display: none;
  }
  .solutions-container{
    display: block;
  }
  .solutions-image img{
    width: 300px;
    height: 409px;
  }
  .solutions-left{
    padding-bottom: 40px;
  }
  .floating-icons{
    display: none;
  }
  .solutions-regulatory-columns{
    display: block;
  }
}