* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #fff;
}


@font-face {
    font-family: 'Neue-Haas-Grotesk-bd';
    /* ../ moves up one level out of the css folder, then into fonts */
    src: url('../fonts/Neue Haas Grotesk Display Pro 75 Bold.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: "Neue-Haas-Grotesk-md";
    src: url("../fonts/NHaasGroteskTXPro-65Md.ttf") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "Neue-Haas-Grotesk-rg";
    src: url("../fonts/NHaasGroteskTXPro-55Rg.ttf") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "Neue-Haas-Grotesk-lt";
    src: url("../fonts/fonnts.com-Neue_Haas_Grotesk_Display_Pro_35_Extra_Light.otf") format("opentype");
    font-display: swap;
}

html,
body {
    height: 100%;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body,
p {
    font-family: "Neue-Haas-Grotesk-rg";
}

nav {
    background-color: #111;
    position: fixed;
    width: 100%;
    z-index: 999;
    transition: border-bottom 0.3s ease;
    -webkit-transition: border-bottom 0.3s ease;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8vw 7vw;
    max-width: 100%;
    margin: auto;
}

.logo img {
    width: 65px;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    width: 25px;
    height: 20px;
    position: relative;
}

.hamburger {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.menu-toggle.active .hamburger {
    background-color: transparent;
}

.menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    top: 0;
}

.menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    bottom: 0;
}

#main-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 40px;
}

#main-nav-list li {
    position: relative;
}

#main-nav-list li a {
    text-decoration: none;
    font-size: .75vw;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0;
    line-height: 1;
    transition: opacity 0.3s ease;
    -webkit-transition: opacity 0.3s ease;
    font-family: 'Neue-Haas-Grotesk-md';
}

#main-nav-list li:hover>a,
#main-nav-list li a.active {
    color: #38B6FF;
}

.dropdown-arrow {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
    -webkit-transition: transform 0.3s ease;
    transform-origin: center;
}

.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 10px);
    -webkit-transform: translate(-50%, 10px);
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 15px;
    min-width: 280px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    border-radius: 15px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}


.dropdown-white {
    background-color: #fff;
    border: 1px solid #ccc;
    margin-top: 1vw;
}

.dropdown-white a {
    color: #111;
    text-transform: capitalize !important;
    font-family: 'Neue-Haas-Grotesk-md';
    padding: 8px 0;
    opacity: 0.9;
    transition: opacity 0.2s ease;
    -webkit-transition: opacity 0.2s ease;
}

.dropdown-white a:hover {
    opacity: 0.7;
    color: #38B6FF;
}

.dropdown hr {
    margin: 10px 0;
    border: none;
    border-top: 1px solid #ccc;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    pointer-events: auto;
}

.has-dropdown::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    background: transparent;
}

.nav-button {
    background-color: #38B6FF;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    text-transform: uppercase;
    border-radius: 50px;
    border: none;
    color: white;
    cursor: pointer;
    letter-spacing: 0;
    line-height: 1;
    font-family: 'Neue-Haas-Grotesk-md';
    font-size: .75vw;
}


.nav-button svg {
    height: 1.2vw;
    margin-left: 1.2vw;
}

/************Mega Menu **************/
/* Container for the Mega Menu */
.mega-menu-three-col {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 40px;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    width: 800px;
    z-index: 99;
}

/* The Grid Wrapper */
.mega-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Creates 3 equal columns */
    gap: 20px;
}

/* Column Styling */
.mega-col h4 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.mega-col ul {
    list-style: disc;
    padding: 0;
    margin: 0;
    padding-left: 14px;
}

.mega-col ul li {
    margin-bottom: 10px;
    color: #000000;
}

.mega-col ul li a {
    text-decoration: none;
    color: #555;
    font-size: 15px;
    display: block;
    transition: color 0.2s;
}

.mega-col ul li a:hover {
    color: #000;
}

/* Formatting for bold items (like AEO/GEO) */
.mega-col ul li a strong {
    color: #000;
}

/* Show menu when parent is active */
.has-dropdown.active .mega-menu-three-col {
    display: block;
}

/****************************/

#hero-section {
    height: 100vh;
    width: 100%;
    background-color: #111;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 7vw;

}

#hero-section h1 {
    font-size: 5.5vw;
    text-transform: uppercase;
    font-weight: 900;
    line-height: 6.5vw;
    font-family: "Neue-Haas-Grotesk-md";
    letter-spacing: -0.02em;
    text-align: center;
    width: 100%;
}

#hero-section h1 svg {
    height: 4.5vw;
    border-radius: 50%;
    width: 4.5vw;
    background-color: #38B6FF;
    /* margin: 0px 0px 0px 3px; */
}

#hero-section p {
    text-align: center;
    margin-top: 3vh;
    font-size: 1vw;
    width: 50%;
}



#hero-section-key-point {
    display: flex;
    align-items: center;
    justify-content: center;
}

#hero-section-key-point h4 {
    font-size: 1vw;
    font-family: "Neue-Haas-Grotesk-rg";
    text-transform: lowercase;
    margin-top: 0.5vw;
    padding: 9px 18px;
    border: 1px solid hsl(0, 0%, 65%);
    border-radius: 50px;
    font-weight: 400;
}

#hero-section-key-point h4:nth-last-child(2) {
    border: none;
    padding: 2px;
}

#hero-moving-div {
    margin-top: 10vh;
    position: absolute;
    bottom: 5%;
    white-space: nowrap;
    padding: 1.2vw;
    overflow: hidden;
    width: 44%;
}

#hero-moving-div .move {
    display: inline-block;
    animation-name: mobe;
    animation-duration: 15s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

#hero-moving-div .move img {
    height: 1.5vw;
    margin: 0 1.2vw;
}

@keyframes mobe {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

#blur-left {
    height: 100%;
    width: 20%;
    background: linear-gradient(to right, #111, transparent);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

#blur-right {
    height: 100%;
    width: 20%;
    background: linear-gradient(to right, transparent, #111);
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
}

#text-hover-section {
    width: 100%;
    background-color: #111;
    padding: 3vw 7vw;
    margin-top: -1px;

}

.text-hover-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    height: 80vh;
    border-top: 1px solid #222;
    padding-top: 2vw;
}

#text-hover-section-left {
    height: 70%;
    width: 40%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
}

#text-hover-section-left p {
    font-size: 0.8vw;
}

#text-hover-section-left h5 {
    width: 75%;
    font-weight: 400;
    font-size: 1.1vw;
    font-family: "Neue-Haas-Grotesk-rg";
}

#text-hover-section-right {
    width: 50%;
}

.right-elem {
    position: relative;
    padding-top: 2vw;
    padding-bottom: 5vw;
    border-bottom: 1px solid #222;
}

.right-elem h2 {
    font-size: 1.4vw;
    font-weight: 400;
    font-family: "Neue-Haas-Grotesk-rg";
}

.right-elem img {
    height: 7vw;
    width: 7vw;
    border-radius: 50%;
    object-fit: cover;
    opacity: 0;
    position: absolute;
    scale: 0;
}

#hero-video {
    height: 100vh;
    width: 100%;
    background-color: #111;
    position: relative;
    background-image: url(https://lazarev.kiev.ua/la24/reel-cover.webp);
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

.hero-video-center {
    display: flex;
    align-items: center;
    padding: 1vw;
    flex-direction: column;
}

.hero-video-center .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3.3vw;
    border-radius: 50%;
    background-color: #fff;
}

.hero-video-center .icon i {
    color: #000;
    font-size: 2.8vw;
}

.hero-video-center h5 {
    font-size: 0.8vw;
    background-color: #fff;
    color: #000;
    border-radius: 50px;
    padding: 12px 26px 10px 26px;
    margin-top: 0.5vw;
    font-weight: 700;
    opacity: 0;
    transition: all ease 0.5s;
    transform: translateY(16%);
    text-transform: uppercase;
    font-family: "Neue-Haas-Grotesk-rg";
}

.hero-video-center:hover h5 {
    opacity: 1;
    transform: translateY(0%);
}

#hero-video video {
    height: 100%;
    width: 100%;
    position: absolute;
    object-fit: cover;
    transform: scaleX(0.7) scaleY(0);
    opacity: 0;
    border-radius: 30px;
    z-index: 99999;

}

#main-image-with-text {
    min-height: 100vh;
    width: 100%;
    background-color: #fff;
    position: relative;
    padding-bottom: 13vh;
}

.image-with-text-section {
    width: 100%;
    height: 72vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13vh 7vw;
    padding-bottom: 0;
}

.image-with-text-sec-left {
    height: 100%;
    width: 30%;
    padding-top: 3vh;
    border-top: 2px solid #000;
}

.image-with-text-sec-left h2 {
    font-size: 1.8vw;
    color: #000;
    font-family: "Neue-Haas-Grotesk-rg";
}


.image-with-text-sec-left h4 {
    color: #333;
    font-family: 'Neue-Haas-Grotesk-rg';
    margin-top: 2vh;
    font-size: 0.85vw;
    font-weight: 400;
}

.image-with-text-sec-left p {
    color: #333;
    margin-top: 18vh;
    font-size: 1vw;
    line-height: 1.3;
}

.image-with-text-sec-right {
    height: 100%;
    width: 62%;
    background-color: blanchedalmond;
    position: relative;
}

.image-with-text-sec-right img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.image-with-text-sec-right video {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    opacity: 0;
    transition: opacity ease 0.1s;
}

#tab-section {
    min-height: 100vh;
    background-color: #111;
    width: 100%;
    position: relative;
    padding: 10vh 7vw;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

#tab-section button {
    background-color: #38B6FF;
    padding: 0.9vw 2.5vw;
    font-weight: 600;
    font-size: 1vw;
    border-radius: 50px;
    border: none;
    position: sticky;
    top: 15%;
    font-family: "Neue-Haas-Grotesk-rg";
}

#tab-section-right {
    width: 70%;
}

#tab-section-right>p {
    font-size: 2vw;
}

#tab-section-right>p span {
    width: 15vw;
    display: inline-block;
}

#tab-section-content {
    width: 100%;
    margin-top: 5vh;
    padding: 5vh 0;
}

#tab-section-content h1 {
    font-size: 3vw;
    font-weight: 500;
    font-family: "Neue-Haas-Grotesk-rg";
}



#tab-section-content .tab-section-flex {
    display: flex;
    margin-top: 4vh;
    margin-bottom: 4vh;
}

#tab-section-content .tab-section-flex h4 {
    border-radius: 50px;
    border: 1px solid #fff;
    padding: 8px 10px;
    font-weight: 400;
    font-size: 0.8vw;
    font-family: "Neue-Haas-Grotesk-rg";
    cursor: pointer;

}

.tab-section-elem {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
    padding-top: 3vh;
    padding-bottom: 9vh;
    overflow: hidden;
    border-top: 1px solid #333;
    position: relative;
    gap: 1vw;
}

.tab-inner-heading {
    width: 30%;
}

.tab-inner-text {
    width: 70%;
}

.tab-section-elem p {
    width: 85%;
    position: relative;
    z-index: 8;
    color: #fff;
    font-size: 0.90vw;
    letter-spacing: -0.02em;
    font-family: 'Neue-Haas-Grotesk-rg';
    line-height: 1.33;
    padding-bottom: 12px;
}

.tab-section-elem h3 {
    font-size: 1.5vw;
    font-weight: 400;
    position: relative;
    transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
    z-index: 8;
    font-family: "Neue-Haas-Grotesk-rg";
}

.tab-section-elem h4 {
    padding-top: 1vw;
    font-size: 0.85vw;
    font-weight: 400;
    position: relative;
    transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
    z-index: 8;
    font-family: "Neue-Haas-Grotesk-rg";
    color: gainsboro;

}

.tab-section-elem i {
    font-size: 1vw;
    position: relative;
    transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
    z-index: 8;
}

.tab-section-over {
    height: 100%;
    width: 100%;
    background-color: #222;
    position: absolute;
    top: 0;
    transform: translateY(-100%);
    opacity: 0;
    transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
}

.tab-section-elem:hover h3 {
    padding-left: 1vw;
}

.tab-section-elem:hover h4 {
    padding-left: 1vw;
}

.tab-section-elem:hover i {
    padding-right: 1vw;
}

.tab-section-elem:hover .tab-section-over {
    transform: translateY(0);
    opacity: 1;
}

.tab-section-elem:hover {
    border-top: 2px solid #fff;
}

summary::marker {
    content: "";
}

.tab-section-main {
    border-top: 1px solid #333;
    padding: 3vh 0;
}

.tab-section-product {
    padding: 3vh 0;
    border-top: 1px solid #333;
}

#page6 {
    min-height: 100vh;
    width: 100%;
    background-color: #fff;
    padding: 10vh 7vw;
}

#page6>h1 {
    font-size: 5.5vw;
    color: #000;
    font-family: "Neue-Haas-Grotesk-md";
    padding-left: 23vw;
    padding-right: 5vw;
    line-height: 5.8vw;
    padding-bottom: 10vh;
    border-bottom: 1px solid #dadada;
}

#page6-content {
    color: #000;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 8vh 0;
    gap: 10vw;
}

#page6-content #right-6 {
    width: 60%;
}

#page6-content #right-6 p {
    font-size: 1.5vw;
    color: #000;
    margin-bottom: 5vh;
    width: 100%;
}

#blue-btn h1 {
    color: #000;
    font-family: "Neue-Haas-Grotesk-md";
    font-size: 2.8vw;
}

#blue-btn {
    width: 40%;
}

#blue-btn h4 {
    position: absolute;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.85vw;
}

#blue-btn h4 i {
    font-size: 1.1vw;
    font-weight: 100;
    margin-left: 0.5vw;
}

#page6-bottom {
    height: 44vh;
    width: 100%;
    border-top: 1px solid #dadada;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

#btm6-part1 {
    border-right: 1px solid #dadada;
    width: 10%;
    height: 100%;
}

#btm6-part2 {
    border-right: 1px solid #dadada;
    width: 30%;
    height: 100%;
}

#btm6-part3 {
    border-right: 1px solid #dadada;
    width: 25%;
    height: 100%;
}

#btm6-part4 {
    border-right: 1px solid #dadada;
    width: 25%;
    height: 100%;
}

#btm6-part5 {
    width: 25%;
    height: 100%;
}

.btm6-parts {
    padding: 3vh 0.6vw;
}

.btm6-parts h5 {
    color: #000;
    font-weight: 500;
    font-size: 0.9vw;
    margin-bottom: 4vh;
}

.btm6-parts h4 {
    background-color: #111;
    width: 95%;
    padding: 5px 10px;
    margin-bottom: 0.3vh;
    border-radius: 50px;
    font-size: 0.85vw;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.btm6-parts h4 span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5vw;
    height: 1.5vw;
    background-color: #333;
    padding: 0.5vw;
    border-radius: 50%;
    margin-right: 1vw;
}


#btm6-part5 h4:nth-child(2),
#btm6-part4 h4:nth-child(2),
#btm6-part3 h4:nth-child(2),
#btm6-part2 h4:nth-child(2) {
    transform: translateX(0);
}

#btm6-part5 h4:nth-child(3),
#btm6-part4 h4:nth-child(3),
#btm6-part3 h4:nth-child(3),
#btm6-part2 h4:nth-child(3) {
    transform: translateX(4%);
}

#btm6-part5 h4:nth-child(4),
#btm6-part4 h4:nth-child(4),
#btm6-part3 h4:nth-child(4),
#btm6-part2 h4:nth-child(4) {
    transform: translateX(8%);
}

#btm6-part5 h4:nth-child(5),
#btm6-part4 h4:nth-child(5),
#btm6-part3 h4:nth-child(5),
#btm6-part2 h4:nth-child(5) {
    transform: translateX(12%);
}


#btm6-part5 h4:nth-child(6),
#btm6-part4 h4:nth-child(6),
#btm6-part3 h4:nth-child(6),
#btm6-part2 h4:nth-child(6) {
    transform: translateX(16%);
}

#btm6-part5 h4:nth-child(7),
#btm6-part4 h4:nth-child(7),
#btm6-part3 h4:nth-child(7),
#btm6-part2 h4:nth-child(7) {
    transform: translateX(20%);
}

#image-banner {
    height: 100vh;
    width: 100%;
    position: relative;
}

.image-banner-container {
    text-align: center;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.image-banner-text p {
    font-size: 1.5vw;
    padding-bottom: 4vw;
}

h2.image-banner-title {
    font-size: 5vw;
    padding-bottom: 3vw;
    font-family: "Neue-Haas-Grotesk-md";
}

.banner-btn {
    background-color: #38B6FF;
    display: flex;
    align-items: center;
    padding: 14px 20px;
    font-size: 0.85vw;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    font-family: "Neue-Haas-Grotesk-rg";
    text-decoration: none;
}

#multicolumn-section {
    width: 100%;
    background-color: #111;
    padding: 5vw 7vw;
}

.multicolumn-title h2 {
    color: #fff;
    padding-bottom: 2vw;
    font-family: "Neue-Haas-Grotesk-md";
    font-size: 2.8vw;
}

.multicolumn-title p {
    color: #fff;
    font-size: 1.5vw;
}

.multicolumn-container {
    grid-column-gap: 10vw;
    grid-row-gap: 5vw;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    margin-top: 8vw;
    display: grid;
}

.multicolumn-container-item {
    grid-row-gap: 2vw;
    flex-flow: column;
    display: flex;
}

.multicolumn-container-image {
    width: 100%;
}

.multicolumn-container-image img {
    width: 50%;

}

p.multicolumn-container-text {
    color: gainsboro;
    font-size: 0.85vw;
    letter-spacing: -0.02em;
    font-family: 'Neue-Haas-Grotesk-rg';
    line-height: 1.33;
}

#second-multicolumn-section {
    width: 100%;
    background-color: #111;
    padding: 7vw 7vw;
}

#second-multicolumn-section .multicolumn-title {
    width: 60%;
}

#second-multicolumn-section .multicolumn-container {
    grid-column-gap: 0.5vw;
    grid-row-gap: .5vw;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    margin-top: 6vw;
    display: grid;
}

#second-multicolumn-section .multicolumn-container-item {
    background-color: #1f1f1f;
    border-radius: .2vw;
    flex-direction: column;
    height: 100%;
    padding: 2.5vw 2.2vw 2.5vw;
    display: flex;
}

#second-multicolumn-section .multicolumn-container-item {
    grid-row-gap: 5rem;
}

#second-multicolumn-section h3.multicolumn-container-text {
    display: flex;
    justify-content: space-between;
    font-family: "Neue-Haas-Grotesk-rg";
    font-size: 2vw;
}

#success-story {
    min-height: 100vh;
    width: 100%;
    background-color: #fff;
    position: relative;
    padding-bottom: 13vh;
    padding: 12vh 7vw;
}

.success-story-head {
    display: flex;
    gap: 15vw;
}

.success-story-left {
    width: 40%;
}

.success-story-right {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 3vw;
}

.success-story-right-container {
    display: flex;
    flex-direction: column;
    gap: 5vw;
}

.success-story-left h2 {
    color: #000;
    font-size: 2.8vw;
    font-family: 'Neue-Haas-Grotesk-md';
    width: 80%;
}

.success-story-right-container .subtile-uppercarse {
    color: #a3a3a3;
    text-transform: uppercase;
    font-size: 0.85vw;
}

.success-story-right-container p {
    color: #333;
    font-size: 1.6vw;
}

.success-story-multicolumn-container .multicolumn-container-text h3 {
    color: black;
}

.success-story-multicolumn-container {
    grid-column-gap: 0.5vw;
    grid-row-gap: .5vw;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    margin-top: 8vw;
    display: grid;
}

.success-story-multicolumn-container .multicolumn-container-item {
    background: whitesmoke;
    padding: 3vw 3.5vw;
    display: flex;
    gap: 5vw;
}

#success-story h3.multicolumn-container-text {
    font-family: "Neue-Haas-Grotesk-rg";
    font-size: 3vw;
}

#success-story p.multicolumn-container-text {
    color: #666;
    font-size: 0.90vw;
    letter-spacing: -0.02em;
    font-family: 'Neue-Haas-Grotesk-rg';
    line-height: 1.33;
}

#success-story .multicolumn-container-text {
    display: flex;
    justify-content: space-between;
}

#success-story .multicolumn-container-text p.count {
    color: #a3a3a3;
    font-size: 0.90vw;
    font-family: 'Neue-Haas-Grotesk-rg';
}

#testimonial {
    width: 100%;
    background-color: #111;
    padding: 7vw 7vw;
}

.testimonial-container {
    display: flex;
    margin: 0 auto;
    gap: 15vw;
}

.testimonial-left {
    gap: 3vw;
    flex: 1;
    position: sticky;
    top: 3vw;
    align-self: start;
    display: flex;
    flex-direction: column;
}

.testimonial-left h2 {
    font-size: 2.8vw;
    margin-bottom: 2vw;
    font-family: "Neue-Haas-Grotesk-md";
}

.testimonial-left p {
    color: gainsboro;
    font-size: 0.90vw;
    letter-spacing: -0.02em;
    font-family: 'Neue-Haas-Grotesk-rg';
    line-height: 1.33;
}

.testimonial-right {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.testimonial-box {
    border-top: 1px solid #333;
    padding-top: 2rem;
}

.testimonial-number {
    font-size: 0.95vw;
    color: gainsboro;
    margin-bottom: 2vw;
    font-family: "Neue-Haas-Grotesk-rg";
}

.testimonial-text {
    font-size: 1.5vw;
    line-height: 1.4;
    margin-bottom: 4vw;
    letter-spacing: .6px;
    font-family: "Neue-Haas-Grotesk-lt";
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1vw;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.author-info {
    font-size: 0.95vw;
}

.author-info span {
    display: block;
    font-weight: bold;
    color: gainsboro;
    font-size: 1.2vw;
    margin-bottom: 0.2vw;
}

.author-info small {
    color: gainsboro;
}

#image-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.image-banner-bg {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-background-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.image-banner-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
}

#image-banner-second {
    height: 80vh;
}


#image-banner-second .image-banner-container {
    display: flex;
    flex-direction: row;
    padding: 0 7vw;
    gap: 10vw;
}

#image-banner-second .image-banner-title {
    font-size: 6.0vw;
    padding-bottom: 3vw;
    font-family: "Neue-Haas-Grotesk-md";
    text-align: left;
    line-height: 1.15;
    text-transform: uppercase;
    width: 60%;
}

#image-banner-second .image-banner-text p {
    font-size: 1.2vw;
    font-family: "Neue-Haas-Grotesk-lt";
    line-height: 1.4;
    letter-spacing: .6px;
    text-align: right;
    padding-bottom: 0;
}

#image-banner-second .image-banner-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10vw;
    width: 40%;

}

#image-banner-second i.ri-arrow-right-up-line {
    text-align: right;
    font-size: 12vw;
}

#footer-section {
    background-color: #111;
    padding: 2vw 7vw;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin: 40px 0;
}

.footer-col h4 {
    color: #888;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    line-height: 1.6;
    font-family: 'Neue-Haas-Grotesk-rg';
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
    color: #fff;
    font-size: 0.85vw;
    font-family: 'Neue-Haas-Grotesk-rg';
}

.footer-col a {
    text-decoration: none;
}

.social {
    display: flex;
    flex-wrap: wrap;
}

.social a {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid #fff;
    border-radius: 20px;
    color: #fff;
    font-size: 14px;
    margin: 4px 4px 0 0;
    text-decoration: none;
    transition: background 0.3s;
    display: flex;
    flex-wrap: wrap;
}

.footer-col .social a:hover {
    background: #38B7FF;
    color: #000;
}

.footer a:hover {
    color: #38B7FF;
}

.footer-sections {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 40px 0;
}

.footer-sections .section h4 {
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-family: 'Neue-Haas-Grotesk-rg';
}

.footer-sections .inline {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: #fff;
    font-size: 0.85vw;
    font-family: 'Neue-Haas-Grotesk-rg';
    padding: 20px 0;
}

.footer-services h4 {
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: 'Neue-Haas-Grotesk-rg';
}

.footer-services .grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px 40px;
    color: #fff;
    font-size: 0.85vw;
    font-family: 'Neue-Haas-Grotesk-rg';
}

.footer-services .grid a {
    text-decoration: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #888;
    flex-wrap: wrap;
}

hr {
    border: none;
    border-top: 1px solid #222;
    margin: 40px 0;
}

/* seo page */

#intro-section {
    background-color: #111;
    padding: 5vw 7vw;
}

.intro-container {
    gap: 1vw;
    justify-content: flex-start;
    align-items: stretch;
    display: flex;
}


.intro-left {
    background-color: whitesmoke;
    color: black;
    border-radius: 2vw;
    flex: none;
    padding: 3vw;
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.intro-left h1 {
    color: black;
    font-family: 'Neue-Haas-Grotesk-md';
    font-size: 3vw;
    width: 80%;
    line-height: 1.05;
    letter-spacing: .01em;
}

.intro-left-text {
    color: black;
    font-family: 'Neue-Haas-Grotesk-rg';
    font-size: 0.85vw;
    width: 20%;
    margin: 3vw 0vw 2vw 3vw;
}

.into-left-point i.ri-arrow-right-up-line {
    color: #38b7ff;
    padding-right: 1vw;
}

.into-point-line {
    color: black;
    line-height: 1;
    font-family: 'Neue-Haas-Grotesk-md';
    border-bottom: 0.4px solid #1111111c;
    padding: 0.8vw 0;
    font-size: 1.3vw;
}

.into-point-line:last-child {
    border-bottom: none;
}


.intro-container .intro-left .button {
    background-color: #38B6FF;
    padding: 20px 20px;
    text-transform: uppercase;
    border-radius: 50px;
    letter-spacing: 0;
    line-height: 1;
    font-family: 'Neue-Haas-Grotesk-md';
    font-size: 0.85vw;
    margin-top: 2vw;
}

.intro-container .intro-left .button a {
    color: white;
    display: flex;
    justify-content: center;
    text-decoration: none;
    align-items: center;
}

.intro-container .intro-left .button a i.ri-arrow-right-up-line {
    font-size: 20px;
    padding-left: 0.8vw;
    color: #fff;

}

.intro-right {
    color: black;
    border-radius: 2vw;
    flex: none;
    padding: 3vw 3vw;
    width: 30%;
    background: linear-gradient(182deg, rgb(4 80 123) 0%, rgba(56, 183, 255, 1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.number-circle img {
    width: 70px;
}

.intro-right .into-heading {
    font-family: 'Neue-Haas-Grotesk-md';
    padding: 2vw 0;
}

.intro-container .intro-right .button {
    background-color: #fff;
    padding: 20px 20px;
    text-transform: uppercase;
    border-radius: 50px;
    letter-spacing: 0;
    line-height: 1;
    font-family: 'Neue-Haas-Grotesk-md';
    font-size: 0.85vw;
    margin-top: 2vw;
}

.intro-container .intro-right .button a {
    color: black;
    display: flex;
    justify-content: center;
    text-decoration: none;
    align-items: center;
}

.intro-container .intro-right .button a i.ri-arrow-right-up-line {
    font-size: 20px;
    padding-left: 0.8vw;
    color: black;

}

.multicolumn-container.seo {
    margin-top: 4vw !important;
    margin-bottom: 5vw !important;
}

.seo .multicolumn-container-item {
    border-radius: .8vw !important;
}


.seo-heading {
    font-size: 3vw;
    color: #fff;
    margin-bottom: 2vw;
    font-family: 'Neue-Haas-Grotesk-md';
    line-height: 1;
}


.seo-description {
    font-size: 1.2vw;
    color: #a3a3a3;
    margin-bottom: 2vw;
    line-height: 1.3;
    width: 70%;
}


.seo-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3vw;
    border-top: 1px solid #222;
    padding-top: 2vw;
}

.seo-insights {
    flex: 2;
}

.seo-insights h2 {
    font-size: 2vw;
    margin-bottom: 1.5vw;
    color: #fff;
}

.seo-insight-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5vw;
}

.seo-badge {
    background: #fccf554d;
    color: #fff;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 0.75vw;
    margin-right: 12px;
    flex-shrink: 0;
}


.seo-insight-item p {
    margin: 0;
    color: #a3a3a3;
    letter-spacing: .01em;
    line-height: 1.3;
}

.seo-results {
    flex: 1;
    border-left: 1px solid #222;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
    padding: 1vw 0vw 0 3vw;
    max-width: 35%;
}

.seo-insights h2 {
    font-size: 1.3vw;
    letter-spacing: .01em;
    line-height: 1.3;
    margin-bottom: 1.5vw;
    color: #fff;
    font-family: 'Neue-Haas-Grotesk-rg';
}

.seo-stat {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
}

.seo-stat p {
    margin-top: 5px;
    color: #a3a3a3;
    letter-spacing: .01em;
    line-height: 1.3;
    font-family: 'Neue-Haas-Grotesk-rg';
    font-size: 1.1vw;
    font-weight: 200;
}

/*--------------------------------------------------------------
  # Scroll top button
  --------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background: red;
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
    position: relative;
    left: 11px;
    top: 18px;
}

.scroll-top:hover {
    background: #ec2727;
    color: #fff;
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
}

/***** sweet alert*****/
.swal2-container .swal2-popup {
    padding: 6px !important;
    border-radius: 0 !important;
}

.swal2-html-container {
    grid-row: 1/99;
    align-self: center;
}

.swal2-timer-progress-bar {
    background: rgb(239 95 172) !important;
}

.swal2-popup.swal2-toast .swal2-html-container {
    margin: 0 !important;
}

.swal2-html-container .errors ul li {
    color: red;
}

.swal2-html-container .errors ul {
    margin-bottom: 0;
    padding-left: 20px;
}

/*** Loader *****/
#cover-spin {
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 9999;
    display: none;
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

#cover-spin::after {
    content: '';
    display: block;
    position: absolute;
    left: 48%;
    top: 40%;
    width: 40px;
    height: 40px;
    border-style: solid;
    border-color: black;
    border-top-color: transparent;
    border-width: 4px;
    border-radius: 50%;
    -webkit-animation: spin .8s linear infinite;
    animation: spin .8s linear infinite;
}

/***************404 not found************************************/

.error-container {
    text-align: center;
    padding: 4rem 0;
    margin-top: 5em;
}

.content h1 {
    font-size: 12rem;
    font-weight: 900;
    margin: 0;
    line-height: 1;
    background: linear-gradient(to bottom, #38bdf8, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    filter: drop-shadow(0 20px 30px rgba(56, 189, 248, 0.3));
}

.content h2 {
    font-size: 2rem;
    margin-top: 20px;
    color: #f8fafc;
}

.content p {
    color: #94a3b8;
    max-width: 500px;
    margin: 20px auto 30px;
    line-height: 1.6;
}

.home-btn {
    display: inline-block;
    padding: 15px 35px;
    background: #38bdf8;
    color: #0f172a;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(56, 189, 248, 0.2);
}

.home-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(56, 189, 248, 0.4);
    background: #fff;
}

/*********************Page / Post ****************/
.breadcrumb-nav {
    margin-bottom: 25px;
}

.breadcrumb-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    font-size: 14px;
    font-weight: 500;
}

.breadcrumb-list li a {
    color: #00a3ff;
    /* Matching your 'Let's Talk' blue */
    text-decoration: none;
}

.breadcrumb-list li.sep {
    margin: 0 10px;
    color: #999;
}

.breadcrumb-list li.active {
    color: #ddd;
}

.post-hero {
    height: 50vh !important;
    padding-top: 4em !important;
}

.post-hero h1 {
    font-size: 3vw !important;
}

/* --- Base Container --- */
.main-content-wrapper {
    display: block;
    overflow: visible;
    /* CRITICAL: Must be visible */
}

.custom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.split-layout {
    display: flex;
    gap: 60px;
    padding-top: 50px;
    align-items: flex-start;
}

.post-sidebar {
    flex: 1;
    position: sticky;
    top: 40px;
}

.sticky-image-container img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.centered-layout {
    padding: 50px 0;
    /* display: flex;
    justify-content: center; */
}

.centered-layout .post-text-content {
    max-width: 800px;
    flex: none;
    width: 100%;
}

/* --- Shared Content Styling --- */
.post-text-content,
.post-text-content p {
    flex: 1.5;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
    font-family: 'Inter', sans-serif;
}

/* Meta & Categories Styling */
.post-meta-top,
.post-meta-top span,
.post-categories {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.post-categories a {
    display: inline-block;
    padding: 4px 12px;
    background: #f0f0f0;
    border-radius: 50px;
    font-size: 0.85rem;
    color: #333;
    text-decoration: none;
    margin-right: 5px;
    margin-bottom: 30px;
    transition: 0.3s;
}

.post-categories a:hover {
    background: #00a3ff;
    color: #fff;
}

/* Custom Fields Grid */
.custom-fields-box {
    margin: 20px 0;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 15px;
}

.cf-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.cf-item {
    display: flex;
    flex-direction: column;
}

.cf-label {
    font-weight: 700;
    font-size: 0.8rem;
    color: #999;
    text-transform: uppercase;
}

.cf-value {
    font-size: 1.1rem;
    color: #111;
}

/* Section Divider */
.section-divider {
    border: 0;
    border-top: 1px solid #eee;
    margin: 25px 0 25px;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: #000;
}

/*************blogs Page ***************/
.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.modern-post-entry {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
}

.modern-post-entry:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}

.entry-media {
    position: relative;
    overflow: hidden;
}

.entry-media img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.modern-post-entry:hover .entry-media img {
    transform: scale(1.08);
}

/* Optional overlay on hover */
.entry-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.25));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-post-entry:hover .entry-media::after {
    opacity: 1;
}

.entry-body {
    padding: 22px 22px 26px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.entry-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.entry-meta span {
    font-size: 13px;
    color: #6b7280;
}

.meta-divider {
    width: 4px;
    height: 4px;
    background: #cbd5e1;
    border-radius: 50%;
}

.meta-item.author {
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.entry-title {
    line-height: 1.35;
    margin-bottom: 14px;
}

.entry-title a {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    text-decoration: none;
    transition: color 0.25s ease;
}

.entry-title a:hover {
    color: #2563eb;
}

.entry-categories {
    color: #475569;
    margin-bottom: 8px;
}

.entry-categories a {
    display: inline-block;
    font-size: 12px;
    padding: 6px 12px;
    margin: 0 6px 6px 0;
    border-radius: 999px;
    background: #f1f5f9;
    color: #475569;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease;
}

.entry-categories a:hover {
    background: #2563eb;
    color: #ffffff;
}

.entry-read-more {
    margin-top: auto;
    font-size: 14px;
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.25s ease;
}

.entry-read-more:hover {
    color: #1e40af;
}

/* Contact Sidebar Styling */
.contact-sidebar-inner {
    padding-right: 40px;
}

.contact-label {
    font-size: 32px !important;
    font-weight: 800 !important;
    margin-bottom: 15px !important;
    color: #000;
}

.contact-sub {
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.info-item {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 12px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: #00a3ff !important;
    /* Brand Blue */
    font-weight: 700 !important;
    margin-bottom: 5px;
}

.info-link {
    font-size: 1.2rem !important;
    color: #000 !important;
    text-decoration: none !important;
    font-weight: 600 !important;
}

/* Social Pills (Matching your footer style) */
.social-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.social-pill {
    padding: 6px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    font-size: 13px;
    color: #000;
    text-decoration: none;
    transition: 0.3s;
}

.social-pill:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* Form Styling */
.agency-contact-form {
    background: #fff;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 10px;
    color: #000;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00a3ff;
}

/* Submit Button */
.submit-btn {
    background: #00a3ff;
    color: #fff;
    border: none;
    padding: 18px 35px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    margin-bottom: 10px;
}

.submit-btn:hover {
    background: #000;
    transform: translateY(-3px);
}

.submit-btn .arrow {
    font-size: 20px;
}

.agency-contact-form input,
.agency-contact-form select,
.agency-contact-form select option,
.agency-contact-form textarea {
    color: #000;
}

/*** ERRROR ***/
.input-error,
.input-error:focus {
    border-width: 1px 1px 1px 10px !important;
    border-style: solid !important;
    border-color: rgb(191, 22, 80) rgb(191, 22, 80) rgb(191, 22, 80) rgb(236, 89, 144) !important;
    background: rgb(251, 236, 242) !important;
}

.warning {
    color: red;
    margin-top: 6px;
    display: block;
    font-size: 15px;
}

/* --- SEO Audit Tool Specific Styling --- */
.inline-audit-form {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 8px;
    border-radius: 60px;
    border: 1px solid #ddd;
    max-width: 650px;
    margin-top: 1.5vw;
}

.audit-input-wrapper {
    display: flex;
    align-items: center;
    flex: 1;
    padding: 0 20px;
}

.audit-input-wrapper i {
    color: #888;
    margin-right: 10px;
    font-size: 1.2vw;
}

.audit-input-wrapper input {
    border: none;
    outline: none;
    width: 100%;
    color: #111;
    font-family: 'Neue-Haas-Grotesk-rg';
    font-size: 1vw;
}

#audit-results-page {
    background-color: #f4f7f9;
    padding: 6vw 0;
}

.audit-summary-card {
    background: #fff;
    border-radius: 20px;
    padding: 3vw;
    display: flex;
    gap: 4vw;
    align-items: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}

.score-circle {
    width: 140px;
    height: 140px;
    border: 10px solid transparent;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

/* Score number */
.score-circle .score-num {
    font-size: 36px;
    line-height: 1;
}

.score-circle .score-total {
    font-size: 14px;
    opacity: 0.8;
}

.score-circle.score-good {
    border-color: #22c55e;
    color: #22c55e;
}

.score-circle.score-warning {
    border-color: #facc15;
    color: #facc15;
}

.score-circle.score-bad {
    border-color: #ef4444;
    color: #ef4444;
}


.score-num {
    font-family: 'Neue-Haas-Grotesk-bd';
    font-size: 42px;
    color: #111;
}

.score-total {
    color: #888;
    font-size: 14px;
}

.audit-url-display {
    text-align: center;
    margin-top: 15px;
    color: #111;
    font-size: 0.9vw;
}

.audit-url-display strong {
    color: #111;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2vw;
    flex: 1;
}

.stat-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.stat-header span, .stat-header strong {
    font-family: 'Neue-Haas-Grotesk-md';
    font-size: 0.9vw;
    color: #111;
}

.stat-bar {
    height: 6px;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: 10px;
}

.high .bar-fill {
    background: #ff4d4d;
}

.medium .bar-fill {
    background: #fccf55;
}

.low .bar-fill {
    background: #a3a3a3;
}

.passed .bar-fill {
    background: #2ecc71;
}

/* ===============================
   STATUS COLORS
================================ */

/* ✅ PASSED */
.status-passed {
   
    border-left: 4px solid #22c55e;
}

.status-passed .row-label,
.status-passed .row-label i {
    color: #22c55e;
}

/* 🟡 LOW */
.status-low {
    border-left: 4px solid #facc15;
}

.status-low .row-label,
.status-low .row-label i {
    color: #facc15;
}

/* ⚠️ WARNING */
.status-warning {
    border-left: 4px solid #fb923c;
}

.status-warning .row-label,
.status-warning .row-label i {
    color: #fb923c;
}

/* 🔴 CRITICAL */
.status-critical {
    border-left: 4px solid #ef4444;
}

.status-critical .row-label,
.status-critical .row-label i {
    color: #ef4444;
}

/* ===============================
   LISTS & CODE BLOCKS
================================ */
.audit-row ul {
    margin: 8px 0 0 18px;
}

.audit-row li {
    margin-bottom: 4px;
    color: #000;
}

.audit-row code {
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 13px;
}

.audit-row pre {
    padding: 10px;
    border-radius: 6px;
    overflow-x: auto;
    color: #e5e7eb;
    font-size: 13px;
}

/* --- Category List --- */
.category-label {
    font-family: 'Neue-Haas-Grotesk-md';
    color: #888;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    margin: 4vw 0 1.5vw;
}

.audit-table {
    background: #fff;
    border-radius: 15px;
    border: 1px solid #eee;
    overflow: hidden;
}

.audit-row {
    display: flex;
    padding: 25px 35px;
    border-bottom: 1px solid #f8f8f8;
    align-items: flex-start;
}

.row-label {
    width: 25%;
    font-family: 'Neue-Haas-Grotesk-md';
    color: #111;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1vw;
}

.row-info {
    width: 75%;
}

.row-info strong {
    display: block;
    color: #111;
    margin-bottom: 5px;
    font-size: 1.1vw;
}

.row-info p {
    color: #666;
    font-size: 0.95vw;
    line-height: 1.5;
    margin: 0;
}

.status-critical i {
    color: #ff4d4d;
}

.status-warning i {
    color: #fccf55;
}

.status-passed i {
    color: #2ecc71;
}