
/* ============================================
   HERO SECTION
   ============================================ */

.hero-container {
    background:
        radial-gradient(circle at 70% 85%,
            rgba(167, 139, 250, 0.25) 0%,
            rgba(199, 170, 255, 0.18) 30%,
            rgba(230, 222, 255, 0.10) 55%,
            transparent 75%),
        linear-gradient(180deg,
            #ffffff 0%,
            #f7f6ff 55%,
            #eef0ff 100%);
}

.hero-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 24px 40px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-left {
    animation: slideInLeft 0.8s ease-out;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 32px;
    line-height: 1.6;
}

.highlight {
    color: #4A7FFF;
    font-weight: 600;
}

.hero-cta,
.page-button {
    background: var(--accent-orange) !important;
    color: var(--white) !important;
    border: none;
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 133, 51, 0.3);
    font-family: 'Inter', sans-serif;
}

.hero-cta:hover,
.page-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 133, 51, 0.4);
    background: #FF9447;
}

.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    position: relative;
    aspect-ratio: 1;
    width: 100%;
    max-width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(/images/hero/her5.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    backdrop-filter: none;
}

.hero-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.decorative-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: pulse 4s ease-in-out infinite;
}

.circle-1 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(139, 127, 217, 0.2) 0%, transparent 70%);
    top: -50px;
    right: -50px;
}

.circle-2 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(74, 127, 255, 0.15) 0%, transparent 70%);
    bottom: -30px;
    left: -30px;
    animation-delay: 1s;
}

/* Hero Section - Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* Hero Section - Responsive Design */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 36px;
    }
    .hero-container{
        padding-left:24px ;
        padding-right:24px ;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-left {
        width: 300px;
    }

    .hero-image-container {
        min-width: 300px;
    }
}

/* Tablets */
@media (max-width: 768px) {


    .hero-container {
        padding: 60px 20px 30px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 70px;
        justify-items: center;
        /* centers hero-left & hero-right horizontally */
        text-align: center;
        /* centers text inside hero-left */
    }

    .hero-left {
        text-align: left;
        width: 100%;
        max-width: 500px;
        /* optional, keeps text readable */
    }

    .hero-right {
        width: 100%;
        display: flex;
        justify-content: center;
    }


    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .hero-cta {
        padding: 14px 32px;
        font-size: 14px;
    }

    .hero-image-container {
        max-width: 350px;
    }
}

/* Mobile phones */
@media (max-width: 480px) {
    .hero-container {
        padding: 40px 16px 24px;
    }

    /* .hero-content {
        gap: 20px;
    } */

    .hero-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .hero-cta {
        padding: 12px 28px;
        font-size: 13px;
        width: 100%;
    }

    .hero-image-container {
        max-width: 280px;
    }
}

/* Small mobile phones */
@media (max-width: 380px) {
    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 13px;
    }
}

/* ============================================
   TRUST CARDS SECTION
   ============================================ */

.rw-trust {
    background: transparent;
    margin-top: 80px;
    position: relative;
    animation: slideUp 0.8s ease-out 0.5s backwards;
    overflow-x: hidden;
    overflow-y: hidden;
    padding: 10px 0px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.rw-trust::-webkit-scrollbar {
    display: none;
}

.rw-trust__list {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.rw-trust__item--1,
.rw-trust__item--2,
.rw-trust__item--3,
.rw-trust__item--4 {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 18px 24px;
    height: 170px;
    box-shadow: 0 4px 24px rgba(75, 63, 142, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.6);
    /* flex-shrink: 0; */
    /* flex: 1 1 0; */
    min-width: 0;

    box-sizing: border-box;
}

.rw-trust__item--1 {
    /* width: 450px; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.rw-trust__item--2 {
    /* width: 450px; */
    display: flex;
    justify-content: space-between;
}

.rw-trust__item--3,
.rw-trust__item--4 {
    /* width: 225px; */
    align-items: center;
    justify-content: start;
    padding-top: 40px;
    flex-direction: column;
    display: flex;
}

.rw-trust__item--1,
.rw-trust__item--2 {
    flex: 2 1 0;
}

.rw-trust__item--3,
.rw-trust__item--4 {
    flex: 1 1 0;
}

.rw-trust__services {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.rw-trust__service {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.rw-trust__logo {
    height: 24px;
    display: flex;
    align-items: center;
}

.rw-trust__logo svg {
    height: 20px;
    width: auto;
}

.rw-trust__raitimg {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
}

.rw-trust__stars svg {
    width: 70px;
    height: auto;
}

.rw-trust__text--18 {
    font-size: 15px;
    color: #6B6788;
    margin-bottom: 16px;
    font-weight: 500;
}

.rw-trust__col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
}

.rw-trust__img {
    margin-bottom: 0px;
}

.rw-trust__img svg {
    width: 100%;
    height: auto;
    max-width: 200px;
}

.rw-trust__text--10 {
    font-size: 9px;
    color: #9B95B5;
    text-align: center;
    font-style: italic;
}

.rw-trust__row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    justify-content: center;
}

.rw-trust__text--48 {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    color: var(--text-dark);
    line-height: 1;
}

.rw-trust__text--24 {
    font-size: 20px;
    color: var(--text-dark);
    font-weight: 400;
}

.rw-trust__text--16 {
    font-size: 15px;
    color: #6B6788;
    margin-top: 4px;
    text-align: center;
}

/* Trust Cards Section - Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Trust Cards Section - Responsive Design */

/* Large tablets and small desktops */

@media (max-width: 1024px) {
    .hero-main {
        padding: 20px 5px;
    }

    .rw-trust {
        margin-top: 60px;
    }
    .rw-trust__services{
        gap: 20px;
    }
    .rw-trust__list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 0px 8vw;
    }

    .rw-trust__item--1,
    .rw-trust__item--2 {
        padding: 16px 20px;
        width: 100%;
        grid-column: 1 / -1;
    }

    .rw-trust__item--3,
    .rw-trust__item--4 {
        padding: 20px 16px;
        width: 100%;
        height: 150px;
    }

    .rw-trust__text--48 {
        font-size: 28px;
    }

    .rw-trust__raitimg {
        font-size: 16px;
    }
}

/* Tablets */

@media (max-width:768px) {
    .rw-trust__list {
        padding: 0px 0px;
    }
}

/* Mobile phones */
@media (max-width: 480px) {

    .rw-trust {
        margin-top: 40px;
        padding: 8px 0;
    }


    .rw-trust__text--48 {
        font-size: 24px;
    }

    .rw-trust__text--24 {
        font-size: 16px;
    }

    .rw-trust__raitimg {
        font-size: 14px;
    }


    .rw-trust__stars svg {
        width: 100px;
    }

    .rw-trust__logo {
        width: 100px;
    }
}

/* Small mobile phones */
@media (max-width: 380px) {
    .rw-trust__item--2 {
        display: flex;
        flex-direction: column;
        align-items: center;
        height: auto;
    }

    .rw-trust__text--48 {
        font-size: 20px;
    }

    .rw-trust__stars svg {
        width: 80px;
    }

    .rw-trust__logo {
        width: 80px;
    }
}

