
body {
    background: #fff;
}

/* HERO */
.hero {
    position: relative;
    width: 100%;
    /* height: 70vh; */
    background: url(../images/hero-section/hero-img.jpg) center/cover no-repeat;
    overflow: hidden;
    margin-top: 0px;
    padding: 50px 0px;
}

/* Dark Overlay */
.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgb(0 0 0 / 78%), rgba(0, 0, 0, 0.2));
}

/* TOP BADGE */
.top-badge {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.15);
    color: #fff;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    backdrop-filter: blur(6px);
    z-index: 2;
}

/* HERO CONTENT */
.hero-content {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    /* color: #fff; */
    z-index: 2;
    /* max-width: 700px; */
    text-align: center;
}

.hero-content h1 {
    font-size: 58px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    position: relative;
}

.hero-content h1 span {
    font-weight: 800;
}

/* BUTTONS */
.hero-buttons {
    margin-top: 35px;
    display: flex;
    gap: 16px;
    text-align: center;
    position: relative;
    justify-content: center;
}

.btn {
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
}

.btn.primary {
    background: #ff7a18;
    color: #fff;
}

.btn.secondary {
    background: rgba(255,255,255,0.15);
    color: #fff;
    backdrop-filter: blur(6px);
}

/* INFO CARDS */
.btn:hover {
    transform: translateY(-3px);
}

/* Intro */
.intro-section {
    text-align: center;
    position: relative;
    width: 100%;
    background: url(../images/banner-img/sher-brother-banner.png) center/cover no-repeat;
    overflow: hidden;
    margin-top: 0px;
    padding: 100px 0px;
}

.card-type-1 {
    text-align: start;
    background: #fdc911;
    padding: 50px;
    position: relative;
    /* border: 5px solid #fff; */
    /* border-radius: 10px; */
}
.card-type-1 h2 {
   color: #d01020;
   font-size: 48px;
}
.card-type-1 p {
   color: #0c1f52;
   font-size: 18px;
}
.card-type-1 h2 span {
   color: #0b1f53;
}


.intro-section p {
    max-width: 700px;
    margin: auto;
    color: #4b5563;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.service-card h4 {
    color: #0d224a;
    margin-bottom: 10px;
}

/* CTA */
.cta-section {
    color: #0d224a;
    text-align: center;
}

.cta-buttons {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 15px;
}
.cta-inner-section {
    background-color: #ffcc00;
    border-radius: 20px;
    padding: 30px 20px;
}
/* Trust */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.trust-box {
    font-size: 36px;
    color: #f4ba18;
    border: 1px solid #d11221;
    border-radius: 20px;
    padding: 20px;
}

.trust-box h3 {
    font-size: 36px;
    color: #d11221;
    margin: 0;
}
.trust-box p {
    color: #4b5563;
    margin: 0;
    font-size: 18px;
}

.hero-trust-badge {
    display: inline-block;
    animation: floatBadge 3s ease-in-out infinite;
}

.badge-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 20px 9px 10px;
    border-radius: 50px;
    background: linear-gradient(135deg, #0d224a, #cf101f, #ffcc00);
    box-shadow: 0 10px 30px rgba(13, 34, 74, 0.35);
    position: relative;
    overflow: hidden;
}

/* Shine Animation */
.badge-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    animation: shine 2.5s infinite;
}

.badge-icon {
    font-size: 20px;
    color: #0d224a;
    background: #fff;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
}

.badge-text {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #0d224a;
    white-space: nowrap;
}

/* Floating Animation */
@keyframes floatBadge {
    0% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}

/* Shine Effect */
@keyframes shine {
    0% { left: -100%; }
    60% { left: 100%; }
    100% { left: 100%; }
}
