:root {
    --deep: #0f3d47;
    --panel: #13494f;
    --accent: #17b392;
    --muted: #102b2f;
    --white: #ffffff;
    --card: #fff;
    --text: #0b2b2f;
    --bg-overlay: rgba(7, 12, 13, 0.72);
    --accent: #00c08a;
    /* green accent */
    --max-width: 1000px;
}

/*:root{
      
    }
    *{box-sizing:border-box;margin:0;padding:0}
    html,body{height:100%;margin:0;font-family:Montserrat,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial}
*/
.hero-slider {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background-image: url('../images/soliution-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 50px 24px;
}

.hero-slider::before {
    content: '';
    position: absolute;
    inset: 0;
    /*background:rgba(0,0,0,0.7);*/
}

.hero-inner1 {
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
    width: 100%;
    /*margin: auto*/
}

h1 {
    font-size: 90px;
    margin-bottom: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

@media (max-width:900px) {
    h1 {
        font-size: 64px
    }
}

@media (max-width:480px) {
    h1 {
        font-size: 44px
    }
}

.subtitle {
    display: block;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 28px;
}

.lead1 {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    font-size: 18px;
    line-height: 1.9;
    margin: 0 auto 0px auto;
    max-width: 900px;
}

@media (max-width:600px) {
    .lead {
        font-size: 15px;
        line-height: 1.7
    }
}

/* bottom nav menu */
.bottom-menu {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.bottom-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    position: relative;
}

.bottom-menu a::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.4);
}

.bottom-menu a:last-child::after {
    display: none
}

/**{box-sizing:border-box;margin:0;padding:0}
  body{
    font-family: "Helvetica Neue", Arial, sans-serif;
    background: linear-gradient(180deg,#08323a 0%, #083744 60%, #06363b 100%);
    color:var(--text);
    -webkit-font-smoothing:antialiased;
    padding:30px 0 0 0; 
  }*/

/* TOP HERO BLOCK */
.hero {
    /*max-width:1280px;*/
    margin: 0 auto;
    background: linear-gradient(180deg, #0E314C 0%, #09364B 60%, #083C4B 100%);
    /*border-radius:6px;
    padding:36px 40px;
    box-shadow: 0 8px 0 rgba(0,0,0,0.15);*/
    padding: 70px;
}

.hero-inner {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.05));
    padding: 30px;
    border-radius: 3px;
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.hero-title {
    text-align: center;
    width: 100%;
    margin-bottom: 60px;
}

.small-heading {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 8px;
    font-weight: 600;
}

.big-heading {
    color: var(--white);
    font-size: 34px;
    letter-spacing: 2px;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-grid {
    display: flex;
    width: 100%;
    gap: 36px;
}

/* left column cards */
.left-cards {
    width: 44%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.card {
    background: var(--card);
    color: #0a2b2f;
    border-radius: 6px;
    padding: 30px 16px;
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0.12);
    min-height: 62px;
    display: flex;
    align-items: center;
    /*font-weight:700;*/
    font-size: 14px;
    /*text-transform:uppercase;*/
    animation: fade-up 0.6s ease-out forwards;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card.blank {
    min-height: 72px;
    font-weight: 400;
    text-transform: none;
}

.card.top {
    font-size: 13px;
    text-align: center;
}

.card:hover {
    transform: scale(1.04);
    box-shadow: 0 10px 14px rgba(0, 0, 0, 0.2);
}

/* right column circles */
.right-circles {
    width: 56%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 30px 40px;
    align-items: center;
    justify-items: center;
}

.circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--white);
    position: relative;
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle::before {
    content: "";
    position: absolute;
    inset: auto auto 10px 10px;
    width: 100%;
    height: 100%;
    transform: translate(8px, 8px);
    border-radius: 50%;
    border: 10px solid var(--accent);
    opacity: 0.95;
    box-sizing: border-box;
    z-index: -1;
    animation: pulse-border 2.8s ease-in-out infinite;
}

/* WHITE BACKGROUND AFTER HERO */
.content-wrapper {
    background-color: #fff;
    padding: 60px 30px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

/* Sections on white background */
.section {
    display: flex;
    gap: 36px;
    align-items: flex-start;
    margin-bottom: 50px;
    width: 100%;
}

.section.even {
    flex-direction: row-reverse;
}

.img-box {
    flex: 0 0 46%;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
    height: 332px;
    display: flex;
}

.img-box img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text {
    flex: 1;
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.section h3 {
    color: var(--accent);
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 12px;
}

.section h4 {
    color: #06393a;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.lead {
    color: #18484a;
    line-height: 1.5;
    font-size: 14px;
    margin-top: 15px;
}

.bullets {
    color: #13494f;
    font-size: 13px;
    line-height: 1.45;
}

.bullets li {
    margin-bottom: 8px
}

/* animations */
@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-border {
    0% {
        transform: translate(8px, 8px) scale(1);
        opacity: 0.95;
    }

    50% {
        transform: translate(8px, 8px) scale(1.08);
        opacity: 1;
    }

    100% {
        transform: translate(8px, 8px) scale(1);
        opacity: 0.95;
    }
}

/* responsive */
@media (max-width:920px) {
    .hero-inner {
        flex-direction: column;
        padding: 20px
    }

    .hero-grid {
        flex-direction: column
    }

    .left-cards,
    .right-circles {
        width: 100%
    }

    .right-circles {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 110px;
        gap: 18px
    }

    .circle {
        width: 80px;
        height: 80px
    }

    .card {
        min-height: 56px
    }

    .section {
        flex-direction: column !important
    }

    .img-box {
        flex: 0 0 auto;
        height: 260px
    }

    .ripple {
        width: 135%;
    }
}

@media (max-width:520px) {

    /*body{padding:18px}*/
    .big-heading {
        font-size: 26px
    }

    .hero {
        padding: 18px
    }

    .hero-inner {
        padding: 14px
    }

    .circle {
        width: 68px;
        height: 68px
    }

    .right-circles {
        grid-template-columns: repeat(2, 1fr)
    }
}

/*.stats {
      display: flex;
      justify-content: center;
      gap: 25px;
    }
*/
.stat p {
    margin-top: 15px;
    font-size: 14px;
    color: #fff;
}

/*.stat {
      text-align: center;
    width: 150px;
    margin-top: 45px;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 1s ease forwards;
    }

    .stat:nth-child(1) { animation-delay: 0.3s; }
    .stat:nth-child(2) { animation-delay: 0.6s; }
    .stat:nth-child(3) { animation-delay: 0.9s; }
    .stat:nth-child(4) { animation-delay: 1.2s; }*/

/* Circle wrapper */
.circle {
    position: relative;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    font-weight: bold;
    margin: 0 auto 10px;
    background: #fff;
    color: #334da2;
    z-index: 1;
}

/* Rotating border layer */
.circle::before {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    width: 135px;
    height: 135px;
    border-radius: 50%;
    border: 7px solid transparent;
    border-top-color: #16B290;
    border-right-color: #16B290;
    animation: spin 2s linear infinite;
    z-index: -1;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 10px;
    margin-bottom: 10px;
    transition: 0.3s;
}

.feature-box:hover {
    background: #f0f9ff;
    border-color: #d0eaff;
}

.icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #ffeef5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #ff6f61;
    flex-shrink: 0;
    margin-right: 20px;
}

.feature-text h4 {
    margin: 0;
    /*font-size: 14px;
    font-weight: bold;*/
    color: #333;
    text-align: left;
}

.feature-text p {
    margin: 6px 0 0;
    font-size: 12px;
    color: #666;
    text-align: left;
}