/* SECTION */
.safety-section {
    background: rgba(255, 167, 101, 0.15);
    padding: 66px 115px;
    border-radius: 32px;
}

/* TITLES */
.safety-title {
    text-align: center;
    margin-bottom: 5px;
}

.safety-subtitle {
    text-align: center;
    /* color: #555; */
    font-size: 22px;
    margin-bottom: 48px;
    font-weight: 700;
}

/* GRID */
.safety-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* CARD */
.safety-card {
    background: #fff;
    border-radius: 32px;
    padding: 60px 35px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 167, 101, 0.3);
}

/* ICON BASE (SVG comes here) */
.safety-card::before {
    content: "";
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: block;

    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* ICONS (SVG FILES) */
.icon-verify::before {
    background-image: url(../images/interface/shield.svg);
}

.icon-lock::before {
    background-image: url(../images/interface/safety-lock.svg);
}

.icon-alert::before {
    background-image: url(../images/interface/cautions.svg);
}

.icon-eye::before {
    background-image: url(../images/interface/Eye.svg);
}

.icon-users::before {
    background-image: url(../images/interface/safety.svg);
}

.icon-heart::before {
    background-image: url(../images/interface/logo-safety.svg);
}

/* TEXT */
.safety-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    line-height: 150%;
    margin-top: 26px;
    font-family: "Bricolage Grotesque", sans-serif;
    text-transform: capitalize;
    font-weight: 700;
}

.safety-card p {
    /* font-size: 14px; */
    /* color: #666; */
    font-weight: 500;
    opacity: 70%;
    text-align: center;
    margin: auto;
}

/* RESPONSIVE */
@media (max-width: 1256px) {
    .safety-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .safety-grid {
        grid-template-columns: 1fr;
    }
}



/* CENTER ALIGN */
.trust-verify-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

/* TITLE */
.trust-title {
    margin-bottom: 24px;
}

/* HIGHLIGHT LINE */
.trust-highlight {
    margin-bottom: 0px !important;
}

/* DESCRIPTION */
.trust-description {
    margin-bottom: 32px;
    margin-top: 10px;
}

/* LINKS */
.trust-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-link {
    transition: color 0.2s ease;
}

.trust-link:hover {
    color: #2f80ed;
    text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  
    .trust-verify {
        padding: 80px 0;
    }

    .trust-title {
        font-size: 28px;
    }

    .trust-highlight {
        font-size: 16px;
    }

    .trust-description {
        font-size: 15px;
    }

    .trust-links {
        gap: 20px;
    }
    .video-thumbnail{
        padding: 0 12px;
    }
    section.section-common.safety-section{
        padding: 20px!important;
        margin-bottom: 0px!important;
    }
    .trust-verify{
        margin-bottom: 0px!important;
    }
    .trust-verify-inner{
        padding: 0 12px !important;
    }
}
/* 31-12-2025 */
.newsletter-check input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #FFA8654D; /* your color */
    border-radius: 6.67px;
    background: #fff;
    cursor: pointer;
    position: relative;
    padding: 0;
  }
  
  /* Checked state */
  .newsletter-check input[type="checkbox"]:checked {
    background-color: #FFA865;
    border-color: #FFA865;
  }
  
  /* Tick mark */
  .newsletter-check input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }
  
  /* Remove black focus outline */
  .newsletter-check input[type="checkbox"]:focus {
    outline: none;
    box-shadow: none;
  }
  
/* 31-12-2025 - 01-01-2026 */