.certifications-section {
    background: #f8f9fb;
}

.cert-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.cert-item {
    background: #fff;
    padding: 15px 18px;
    border-radius: 10px;
    font-weight: 500;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    border-left: 4px solid #095763;
}

.cert-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.warranty-box {
    background: linear-gradient(135deg, #095763, #115e59);
    color: #fff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.warranty-box h5 {
    font-weight: 600;
    margin-bottom: 20px;
}

.warranty-item {
    display: flex;
    align-items: start;
    gap: 10px;
    margin-bottom: 15px;
}

.warranty-item span {
    font-size: 18px;
    color: #72b0b9;
}

.warranty-item p {
    margin: 0;
}

@media(max-width:768px) {
    .cert-list {
        grid-template-columns: 1fr;
    }
}

/* echo vadis */
.ecovadis-section {
    background: #ffffff;
}

.badge-card {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    padding: 40px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.badge-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #c0c0c0, #9ca3af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-weight: 700;
    font-size: 20px;
    color: #fff;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.2);
}

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

.pillar-card {
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid #e5e7eb;
}

.pillar-card:hover {
    transform: translateY(-5px);
    background: #09576310;
    border-color: #095763;
}

.pillar-card img {
    height: 60px;
    width: 60px;
    margin: 0 auto 15px;
    transition: transform 0.3s ease;
}

.pillar-card:hover img {
    transform: scale(1.15);
    animation: pulse 0.6s ease;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1.15);
    }
}

.trust-box {
    background: #09576310;
    color: #095763;
    padding: 12px 18px;
    border-left: 4px solid #095763;
    border-radius: 8px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .pillars-grid {
        grid-template-columns: 1fr;
    }
}

/* awards section */
.awards-section {
    background: #f8f9fb;
}

.award-card {
    background: #fff;
    padding: 30px;
    /* border-radius: 14px; */
    text-align: left;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.award-card::before {
    content: "";
    position: absolute;
    inset: 0;
    /* border-radius: 14px;  */
    padding: 1px;
    background: linear-gradient(135deg, #0f766e, transparent);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.award-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.award-icon {
    font-size: 28px;
    /* margin: 12px 0px; */
}

.impact-line {
    display: inline-block;
    padding: 14px 22px;
    background: #ecfeff;
    border-left: 4px solid #0f766e;
    border-radius: 8px;
    font-weight: 500;
}

@media(max-width:768px) {
    .award-card {
        text-align: center;
    }
}

.trusted-section {
    position: relative;
    background: url("https://img.freepik.com/premium-photo/solar-panel-closeup-with-graph-overlay-sunset-highlighting-renewable-energy-growth-sustainability_68708-19496.jpg?uid=R194192857&ga=GA1.1.2093995604.1761970387&semt=ais_hybrid&w=740&q=80") center/cover no-repeat;
}

.impact-detail-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 15px;
    border-radius: 12px;
    backdrop-filter: blur(6px);
    height: 100%;
}

.impact-detail-card h5 {
    font-weight: 600;
    margin-bottom: 0px;
    /* text-align: center; */
    font-size: 1rem;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.logo-box {
    background: #f1f5f9;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: 500;
    color: #6c757d;
    transition: 0.3s;
}

.logo-box:hover {
    background: #e0f2fe;
}

.stats-box h4 {
    font-weight: 700;
    color: #0f766e;
}

.stats-box p {
    font-size: 13px;
    margin: 0;
}

@media(max-width:768px) {
    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* proven section */
.proven-section {
    background: #f8f9fb;
}

.usecase-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 14px;
    transition: 0.3s;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.usecase-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    padding: 1px;
    background: linear-gradient(135deg, #0f766e, transparent);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.usecase-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.usecase-card .icon {
    font-size: 28px;
    margin-bottom: 10px;
    filter: grayscale(100%);
    transition: 0.3s ease;
}

.usecase-card:hover .icon {
    filter: grayscale(0%);
}

@media(max-width:768px) {
    .usecase-card {
        padding: 25px 15px;
    }
}

/* Manufacturing Section */
.manufacturing-section {
    /* background: linear-gradient(to right, #ffffff, #f8fafc); */
    /* background: #f8fafc; */
}

.manufacturing-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.manufacturing-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    padding: 14px 16px;
    border-radius: 10px;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.manufacturing-item span {
    font-size: 18px;
}

.manufacturing-item:hover {
    transform: translateX(6px);
    background: #09576311;
}

.quality-box {
    background: #095763;
    color: #fff;
    padding: 16px 20px;
    border-radius: 10px;
    font-weight: 500;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.manufacturing-visual {
    display: grid;
    gap: 20px;
}

.visual-card {
    background: #0f172a;
    color: #fff;
    padding: 25px;
    border-radius: 14px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.visual-card::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1));
    top: 0;
    left: 0;
}

.visual-card:hover {
    transform: translateY(-6px);
}

@media(max-width:768px) {
    .visual-card {
        text-align: center;
    }
}

/* Transparency section */
.transparency-section {
    background: #f8fafc;
}

.compliance-visual {
    display: grid;
    gap: 20px;
}

.visual-box {
    background: #0f172a;
    color: #fff;
    padding: 25px;
    border-radius: 14px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.visual-box::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1));
    top: 0;
    left: 0;
}

.visual-box:hover {
    transform: translateY(-5px);
}

.compliance-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}


@media(max-width:768px) {
    .visual-box {
        text-align: center;
    }
}

.videoembed {
    width: 100%;
    height: auto;
}

/* Creditability Section */
.why-wrap {
    position: relative;
    overflow: hidden;
}

.why-bg-text {
    position: absolute;
    font-family: 'Playfair Display', serif;
    font-size: 200px;
    font-weight: 700;
    color: rgba(255, 255, 255, .02);
    white-space: nowrap;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    user-select: none;
    z-index: 0;
    animation: bg-text-scroll 20s linear infinite;
}

@keyframes bg-text-scroll {
    0% {
        letter-spacing: 8px;
    }

    50% {
        letter-spacing: 20px;
    }

    100% {
        letter-spacing: 8px;
    }
}

.why-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 14px;
    padding: 36px 22px;
    text-align: center;
    transition: all .3s;
}

.why-card:hover {
    background: rgba(255, 255, 255, .09);
    transform: translateY(-5px);
    border-color: rgba(201, 168, 76, .3);
}

.why-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .07);
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s;
}

.why-card:hover .why-icon {
    background: rgba(201, 168, 76, .15);
}

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

.why-card-name {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.why-card-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, .45);
    line-height: 1.6;
}

.why-closing {
    text-align: center;
    margin-top: 68px;
    position: relative;
    z-index: 2;
}

.closing-quote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 600;
    color: #fff;
    line-height: 1.35;
    font-style: italic;
    /* max-width: 680px; */
    margin: 0 auto 20px;
}

.closing-quote span {
    color: #c9a84c;
}

.closing-line {
    font-size: 15px;
    color: rgba(255, 255, 255, .45);
    line-height: 1.8;
}

.brand-sign {
    display: inline-block;
    margin-top: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #c9a84c;
    letter-spacing: 1px;
}

/* hero section */
.credibility-hero {
    position: relative;
    min-height: 100vh;
    background: url('https://img.freepik.com/premium-photo/businessmen-are-shaking-hands-business-venture-marketing-energysolar-is-needed-futuresolar-panels-require-expertise-installationphotovoltaics-business-sector_43780-569.jpg?uid=R194192857&ga=GA1.1.2093995604.1761970387&semt=ais_hybrid&w=740&q=80') center/cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.75) 40%,
            rgba(0, 0, 0, 0.85) 100%);
}

.hero-label {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e5b73b;
    margin-bottom: 15px;
    display: inline-block;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-align: start;
}

.compliance-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 60px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.07);
}

.comp-item {
    padding: 48px 36px;
    border-right: 1px solid #e2e8ed;
    position: relative;
    transition: background 0.3s;
}

.comp-item:last-child {
    border-right: none;
}

.comp-item:hover {
    background: rgba(9, 87, 99, 0.03);
}

.comp-num {
    font-size: 64px;
    color: rgba(9, 87, 99, 0.08);
    line-height: 1;
    margin-bottom: 16px;
}

.comp-title {
    font-size: 17px;
    font-weight: 600;
    color: #1e2d35;
    margin-bottom: 10px;
}

.comp-desc {
    font-size: 14px;
    color: #5c6b7a;
    line-height: 1.7;
}

.comp-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #e5b73b;
    transform: scaleY(0);
    transition: transform 0.35s;
    transform-origin: top;
}

.comp-item:hover .comp-accent {
    transform: scaleY(1);
}

.credibility-section {
    background: linear-gradient(135deg, #095763, #115e59);
}

.dot{
    height: 10px;
    width: 10px;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
}