@media (max-width: 992px) {
    .header-button .th-btn {
         display: none;
    }
}
@media (min-width: 993px) {
    .header-button .th-btn {
        display: block;
    }
}
.sub-title{
    margin-bottom: 0px;
}
.header-logo img{
    height: 90px;
}
.service-box3{
    height: 385px;
}
.logo-shape1:before, .logo-shape1:after{
    background: black;
}
.service-box3 .box-icon{
    color: white;
}
.service-box3 .box-icon:hover{
    color: black;
}
.service-box3:hover .box-icon{
    color: black;
}
.about-logo img{
    height: 90px;
}
.last-menu li a:before{
    display: none;
}
.team-card .box-img img{
    -webkit-mask-image: unset;
    mask-image: unset;
}
.team-card .box-img img {
    -webkit-mask-image: unset;
    mask-image: unset;
    height: 430px;
}
.team-card .box-img .team-overlay{
    display: none;
}
.sub-title.style2{
    height: 40px;
}
@media (max-width: 1299px) {
    .donation-area3{
        height: 450px;
    }
}
.last-menu {
    font-size: 14px;
}
.counter-card{
    height: 325px;
}
.choose-item{
    margin-bottom: 75px;
}
@media (max-width: 1399px) {
    .choose-item{
        height: 385px;
    }
    
}
.preloader-inner img {
    display: block;
    margin: 0 auto 30px auto;
    height: 200px;
}

@media (max-width: 1299px) {
    .contact-media {
        gap: 18px;
        height: 145px;
    }
}
@media (max-width: 1299px) {
    .sub-title h2 {
        font-size: 35px;
    }
}


/* =========================
   Modern Professional Loader
========================= */

.preloader {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #ffffff, #f5f7fa);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

/* Rotating Ring */
.loader-ring {
    width: 70px;
    height: 70px;
    border: 5px solid rgba(0, 0, 0, 0.08);
    border-top: 5px solid #D4AF37;
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
    box-shadow: 0 0 20px rgba(13, 110, 253, 0.15);
}

/* Text */
.loader-title {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    color: #222;
    letter-spacing: 1px;
    font-family: sans-serif;
}

/* Animated Dots */
.loader-dots {
    display: flex;
    gap: 8px;
}

.loader-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #D4AF37;
    animation: bounce 1.2s infinite ease-in-out;
}

.loader-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.loader-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

/* Animations */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0.5);
        opacity: 0.4;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ============================================
   Professional Registration Theme
   Color Scheme: Gold (#D4AF37), Black (#0a0a0a), White (#ffffff)
   ============================================ */

/* Alert Messages Section */
.alert-section {
    padding: 30px 0 10px;
}
.alert-section .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
.alert-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px 30px;
    border-radius: 12px;
    border-left: 5px solid;
    margin-bottom: 15px;
}
.alert-card.warning {
    background: #fffdf5;
    border-color: #D4AF37;
}
.alert-card.error {
    background: #fff5f5;
    border-color: #c41e3a;
}
.alert-card.success {
    background: #f5fff7;
    border-color: #2e7d32;
}
.alert-icon {
    font-size: 28px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.alert-card.warning .alert-icon {
    background: #D4AF37;
    color: #0a0a0a;
}
.alert-card.error .alert-icon {
    background: #c41e3a;
    color: #fff;
}
.alert-card.success .alert-icon {
    background: #2e7d32;
    color: #fff;
}
.alert-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #1a1a1a;
}
.alert-content p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Main Registration Wrapper */
.registration-wrapper {
    background: #ffffff;
    font-family: 'Segoe UI', Roboto, system-ui, sans-serif;
    padding: 50px 0 70px;
}
.registration-wrapper .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Grid Layout */
.registration-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    background: #fafafa;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
}

/* Form Column */
.form-column {
    padding: 50px 45px;
    background: #fff;
}
.form-header h2 {
    font-size: 2.3rem;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}
.form-header h2 span {
    color: #D4AF37;
}
.form-header .subtitle {
    color: #666;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

/* Input Groups */
.professional-register-form .form-row {
    display: flex;
    gap: 18px;
}
.professional-register-form .input-group {
    margin-bottom: 20px;
}
.professional-register-form .input-group.half {
    flex: 1;
}
.professional-register-form .input-group.full {
    width: 100%;
}
.professional-register-form label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    color: #333;
    margin-bottom: 7px;
    letter-spacing: 0.3px;
}
.professional-register-form input {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    font-size: 0.95rem;
    background: #fff;
    transition: all 0.3s ease;
    outline: none;
    color: #1a1a1a;
    box-sizing: border-box;
    font-family: inherit;
}
.professional-register-form input:focus {
    border-color: #D4AF37;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}
.professional-register-form input::placeholder {
    color: #aaa;
    font-weight: 400;
}

/* Gold Button */
.gold-register-btn {
    width: 100%;
    background: #0a0a0a;
    color: #D4AF37;
    border: 2px solid #D4AF37;
    padding: 15px 30px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.8px;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.35s ease;
    text-transform: uppercase;
    margin-top: 12px;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.gold-register-btn:hover {
    background: #D4AF37;
    color: #0a0a0a;
    border-color: #D4AF37;
    box-shadow: 0 12px 28px rgba(212, 175, 55, 0.35);
    transform: translateY(-2px);
}

/* Login Link */
.login-link {
    text-align: center;
    margin-top: 22px;
    color: #555;
    font-size: 0.92rem;
}
.login-link a {
    color: #0a0a0a;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid #D4AF37;
    transition: 0.2s;
    margin-left: 4px;
}
.login-link a:hover {
    color: #D4AF37;
    border-bottom-color: #0a0a0a;
}

/* Image Column */
.image-column {
    position: relative;
    height: 100%;
    min-height: 500px;
}
.image-wrapper {
    position: relative;
    height: 100%;
    overflow: hidden;
}
.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(10,10,10,0.85));
    padding: 50px 30px 30px;
    color: #fff;
}
.overlay-text {
    text-align: center;
}
.overlay-text i {
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 10px;
}
.overlay-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 5px;
}
.overlay-text p {
    color: #ddd;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 900px) {
    .registration-grid {
        grid-template-columns: 1fr;
    }
    .form-column {
        padding: 35px 25px;
    }
    .form-header h2 {
        font-size: 1.9rem;
    }
    .professional-register-form .form-row {
        flex-direction: column;
        gap: 0;
    }
    .image-column {
        min-height: 300px;
        order: -1;
    }
    .image-overlay {
        padding: 30px 20px 20px;
    }
}

.header-layout5 .main-menu > ul > li > a {
    color: black !important;
}

.header-layout5 .main-menu > ul > li > a:hover {
    color: #D4AF37 !important;
}



/*=============================================
  1. GLOBAL STYLES
=============================================*/
.swiper-slide {
    overflow: hidden;
}

.hero-style4 {
    overflow: visible;
}

/*=============================================
  2. HERO SECTION
=============================================*/
.hero-custom-bg {
    background: #111;
    position: relative;
    overflow: hidden;
}

.hero-gold-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(212, 175, 55, 0.13) 0%, transparent 70%);
    pointer-events: none;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 9999px;
    padding: 8px 12px;
    margin-bottom: 12px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.4);
    white-space: nowrap;
}

.hero-badge i {
    font-size: 12px;
    color: #D4AF37;
}

.hero-badge span {
    color: #D4AF37;
    font-size: 13px;
    font-weight: 500;
}

/* Hero Title */
.hero-title {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-title .highlight {
    color: #D4AF37;
}

/* Hero Text */
.hero-text {
    color: rgba(255, 255, 255, 0.65);
    font-size: 16px;
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 32px;
}

/* Hero Button */
.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #D4AF37;
    color: #111;
    border-radius: 8px;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
}

.hero-btn:hover {
    background: #c5a02e;
    color: #111;
    text-decoration: none;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 16px;
    margin-top: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.hero-stat-item {
    min-width: 90px;
}

.hero-stat-number {
    font-size: 22px;
    font-weight: 700;
    color: #D4AF37;
}

.hero-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.hero-stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Image Area */
.hero-img-container {
    position: relative;
    display: inline-block;
    width: 460px;
    height: 460px;
}

.hero-img-ring {
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.35);
}

.hero-img-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(212, 175, 55, 0.5);
}

.hero-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/*=============================================
  3. ABOUT SECTION
=============================================*/
.about-section {
    background: #fff;
}

.about-image-wrapper {
    position: relative;
    padding: 16px;
}

.about-image-accent-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    border-top: 3px solid #D4AF37;
    border-left: 3px solid #D4AF37;
    border-radius: 4px 0 0 0;
}

.about-image-accent-bottom {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 60px;
    border-bottom: 3px solid #D4AF37;
    border-right: 3px solid #D4AF37;
    border-radius: 0 0 4px 0;
}

.about-main-image {
    border-radius: 10px;
    width: 100%;
    object-fit: cover;
    height: 630px;
}

.about-floating-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #111;
    border-radius: 10px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-floating-badge i {
    color: #D4AF37;
    font-size: 22px;
}

.about-floating-badge-title {
    color: #D4AF37;
    font-size: 18px;
    font-weight: 700;
}

.about-floating-badge-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
}

/* About Content */
.about-sub-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #D4AF37;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.about-sub-tag-line {
    display: block;
    width: 28px;
    height: 2px;
    background: #D4AF37;
}

.about-heading {
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    color: #111;
    line-height: 1.3;
    margin-bottom: 16px;
}

.about-heading .highlight {
    color: #D4AF37;
}

.about-description {
    color: #555;
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 28px;
}

/* About Feature Cards */
.about-feature-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    border-radius: 10px;
    border: 1px solid #f0f0f0;
    margin-bottom: 12px;
    transition: border-color 0.2s;
}

.about-feature-card:hover {
    border-color: #D4AF37;
}

.about-feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 8px;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    font-size: 18px;
}

.about-feature-title {
    font-size: 14px;
    font-weight: 600;
    color: #111;
    margin: 0 0 4px;
}

.about-feature-text {
    font-size: 13px;
    color: #777;
    margin: 0;
    line-height: 1.6;
}

/*=============================================
  4. SERVICES SECTION
=============================================*/
.services-section {
    background: #f9f7f2;
}

.services-sub-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #D4AF37;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.services-sub-tag-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #D4AF37;
}

.services-heading {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: #111;
    margin: 0;
}

.services-heading .highlight {
    color: #D4AF37;
}

.services-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #111;
    color: #D4AF37;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.services-cta-btn:hover {
    background: #1a1a1a;
    color: #D4AF37;
    text-decoration: none;
}

.services-cta-btn i {
    font-size: 11px;
}

/* Service Card */
.service-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.25s, transform 0.25s;
}

.service-card:hover {
    border-color: #D4AF37;
    transform: translateY(-4px);
}

.service-card-number {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 48px;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.04);
    line-height: 1;
    user-select: none;
}

.service-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    font-size: 22px;
    margin-bottom: 18px;
}

.service-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #D4AF37;
    border-radius: 0 0 4px 0;
}

.service-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin: 0 0 8px;
}

.service-card-text {
    font-size: 13px;
    color: #777;
    line-height: 1.65;
    margin: 0 0 16px;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #D4AF37;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.service-card-link:hover {
    color: #c5a02e;
    text-decoration: none;
}

.service-card-link i {
    font-size: 10px;
}

/*=============================================
  5. PROCESS SECTION (HOW IT WORKS)
=============================================*/
.process-section {
    background: #111;
}

.process-heading-wrapper {
    text-align: center;
    margin-bottom: 52px;
}

.process-sub-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #D4AF37;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.process-sub-tag-line {
    display: block;
    width: 24px;
    height: 1px;
    background: #D4AF37;
}

.process-heading {
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.process-heading .highlight {
    color: #D4AF37;
}

/* Process Step */
.process-step {
    padding: 28px 24px;
    position: relative;
    text-align: center;
}

.process-step-connector {
    position: absolute;
    top: 52px;
    right: 0;
    width: 50%;
    height: 1px;
    background: rgba(212, 175, 55, 0.2);
}

.process-step-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid #D4AF37;
    background: transparent;
    color: #D4AF37;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.process-step-icon {
    color: #D4AF37;
    font-size: 26px;
    margin-bottom: 14px;
}

.process-step-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
}

.process-step-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
    margin: 0;
}

/*=============================================
  6. PARTNERS SECTION
=============================================*/
.partners-section {
    background: #f9f7f2;
}

.partners-heading-wrapper {
    text-align: center;
    margin-bottom: 48px;
}

.partners-sub-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #D4AF37;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.partners-sub-tag-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #D4AF37;
}

.partners-heading {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: #111;
    margin: 0 0 6px;
}

.partners-heading .highlight {
    color: #D4AF37;
}

.partners-subtitle {
    font-size: 14px;
    color: #999;
    margin: 0;
}

.partners-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 320px;
    margin: 24px auto 0;
}

.partners-divider-line {
    height: 1px;
    flex: 1;
    background: #e8e4db;
}

.partners-divider-icon {
    color: #D4AF37;
    font-size: 12px;
}

/* Partner Card */
.partners-cards-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.partner-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 30px 12px;
    width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: border-color 0.25s, transform 0.25s;
    cursor: default;
}

.partner-card:hover {
    border-color: #D4AF37;
    transform: translateY(-5px);
}

.partner-card-icon-box {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-card-icon-box i {
    color: #D4AF37;
    font-size: 24px;
}

.partner-card-logo {
    max-width: 110px;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: filter 0.3s, opacity 0.3s;
}

.partner-card:hover .partner-card-logo {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-card-label {
    font-size: 10px;
    font-weight: 700;
    color: #D4AF37;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/*=============================================
  7. WHY CHOOSE US SECTION
=============================================*/
.why-us-section {
    background: #111;
    padding: 80px 0;
}

.why-us-sub-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #D4AF37;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.why-us-sub-tag-line {
    display: block;
    width: 24px;
    height: 1px;
    background: #D4AF37;
}

.why-us-heading {
    font-size: clamp(26px, 3vw, 42px);
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.25;
}

.why-us-heading .highlight {
    color: #D4AF37;
}

.why-us-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    line-height: 1.75;
    max-width: 500px;
}

.why-us-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #D4AF37;
    color: #111;
    border-radius: 8px;
    padding: 13px 28px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
}

.why-us-cta-btn:hover {
    background: #c5a02e;
    color: #111;
    text-decoration: none;
}

/* Why Choose Us Card */
.why-us-card {
    background: #1a1a1a;
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 14px;
    padding: 30px 26px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: border-color 0.25s, transform 0.25s;
}

.why-us-card:hover {
    border-color: #D4AF37;
    transform: translateY(-4px);
}

.why-us-card-top-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #D4AF37;
    opacity: 0;
    transition: opacity 0.25s;
}

.why-us-card:hover .why-us-card-top-bar {
    opacity: 1;
}

.why-us-card-icon {
    width: 54px;
    height: 54px;
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    font-size: 22px;
    margin-bottom: 20px;
}

.why-us-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
}

.why-us-card-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    margin: 0 0 20px;
}

.why-us-card-stat-strip {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.why-us-card-stat-number {
    font-size: 22px;
    font-weight: 800;
    color: #D4AF37;
}

.why-us-card-stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.45;
}

/* Bottom Trust Strip */
.why-us-trust-strip {
    margin-top: 48px;
    padding: 24px 32px;
    background: #1a1a1a;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.why-us-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.why-us-trust-item i {
    color: #D4AF37;
    font-size: 16px;
}

.why-us-trust-item span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}




.breadcumb-wrapper {
    padding: 100px 0 !important;
}