.hero {
    width: 100%;
    padding: 80px 20px;
    background: white;
    overflow: hidden;
}

.hero-container {
    max-width: 1156px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 50px;
    animation: fadeUp 0.9s ease forwards;
}

.hero-text {
    flex: 1;
}

.hero-text p {
    font-size: 12px;
    color: #01328E;
    display: inline-block;
    border: 1px solid #01328E;
    padding: 5px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
    margin-left: 12px;
    opacity: 0;
    animation: slideLeft 0.7s ease forwards;
}

.hero-text h2 {
    font-size: 42px;
    color: #01328E;
    margin-left: 15px;
    opacity: 0;
    animation: slideLeft 0.9s ease forwards;
    animation-delay: 0.2s;
    margin-top: 15px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 69px;
    margin-right: 18px;
    opacity: 0;
    animation: slideRight 0.9s ease forwards;
    animation-delay: 0.4s;
}

.btn-secondary,
.btn-primary {
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 10px 12px;
}

.btn-secondary {
    background-color: #01328E;
    color: #fff;
    border-radius: 50%;
    height: 33px;
    width: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: #01328E;
    color: #fff;
    padding: 9px 25px;
}

.btn-primary:hover,
.btn-secondary:hover {
    background: #08A1DD;
    color: #fff;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 10px 25px rgba(8, 161, 221, 0.25);
}

.btn-secondary img {
    filter: brightness(0) invert(1);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(-35px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(35px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .hero-container {
        margin-top: 75px;
    }

    .hero-buttons {
        justify-content: center;
        margin-top: 57px;
        margin-right: 0;
    }

    .hero-text h2 {
        font-size: 30px;
    }
}

@media (max-width: 564px) {
    .hero-container {
        flex-direction: column;
        margin-top: 20px;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
        margin-top: -37px;
        margin-right: 0;
    }

    .hero-text h2 {
        font-size: 30px;
    }
}

@media (max-width: 364px) {
    .hero-container {
        flex-direction: column;
        margin-top: -48px;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
        margin-top: -42px;
        margin-right: 0;
    }

    .hero-text h2 {
        font-size: 30px;
    }
}


/* ===== SECTION TWO ===== */

.image-section {
    width: 100%;
    padding: 16px 20px 0;
    margin-top: -40px;
    background: #fff;
    box-sizing: border-box;
}

.image-container {
    width: 100%;
    max-width: 1280px;
    margin: auto;
}

.image-container img {
    width: 100%;
    max-width: 1156px;
    height: auto;
    display: block;
    margin: auto;
    border-radius: 10px;
    object-fit: cover;
}

@media (max-width: 1200px) {
    .image-container img {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .image-section {
        padding: 12px 15px 0;
        margin-top: -20px;
    }

    .image-container img {
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .image-section {
        padding: 10px;
        margin-top: -10px;
    }

    .image-container img {
        border-radius: 6px;
        margin-top: -48px;
    }
}


/* ===== SECTION THREE ===== */

.top-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    margin-top: 24px;
    gap: 15px;
    padding: 0 20px;
}

.filters {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.filters button {
    padding: 10px 18px;
    border: 1px solid #d0d0d0;
    background: #fff;
    border-radius: 6px;
    cursor: pointer;
    transition: .3s;
}

.filters button.active,
.filters button:hover {
    background: #01328E;
    color: #fff;
}

.filter-btn {
    display: block;
    padding: 8px 18px;
    border: 1px solid #01328E;
    border-radius: 20px;
    background: #fff;
    color: #01328E;
    cursor: pointer;
    margin: 45px auto 20px;
    font-size: 12px;
    width: fit-content;
    text-align: center;
}

/* ===== CARD WRAPPER ===== */

.card-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1156px;
    margin: 0 auto;
    padding: 20px;
}

.card {
    background: #fff;
    border-radius: 12px;
    padding: 14px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: .3s;
    width: 100%;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 10px;
}

.tag {
    display: inline-block;
    margin-top: 12px;
    background: #d8c15f;
    color: #333;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.card h3 {
    margin-top: 12px;
    font-size: 22px;
    color: #1c2b4a;
}

.card p {
    color: #666;
    margin-top: 6px;
    font-size: 14px;
}

.line {
    width: 100%;
    height: 1px;
    background: #ddd;
    margin: 15px 0;
}

.stats-two {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 18px;
    color: #01328E;
}

.stats-two span {
    color: #666;
    font-size: 16px;
}

/* CARD ANIMATION */
.card {
    background: #fff;
    border-radius: 12px;
    padding: 14px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    width: 100%;
    cursor: pointer;
}

/* HOVER EFFECT */
.card:hover {
    transform: translateY(-10px);
    background: #E6F0F8;
    box-shadow: 0 15px 35px rgba(1, 50, 142, 0.3);
}

/* TEXT COLOR CHANGE */
.card:hover h3,
.card:hover p,
.card:hover .stats-two,
.card:hover .stats-two span {
    color: black;
}

/* LINE COLOR */
.card:hover .line {
    background: rgba(255, 255, 255, 0.3);
}

/* TAG EFFECT */
.card:hover .tag {
    background: #fff;
    color: black;
}

/* IMAGE ZOOM */
.card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.4s ease;
}

.card:hover img {
    transform: scale(1.05);
}

@media (max-width: 900px) {
    .card-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .card-wrapper {
        grid-template-columns: 1fr;
    }
}


/* ===== SECTION FOUR ===== */

.stats-section {
    padding: 60px 20px;
    background: white;
}

.stats-container {
    max-width: 1100px;
    margin: auto;
    background: #01328E;
    border-radius: 12px;
    padding: 35px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.stat-box {
    flex: 1;
    min-width: 180px;
    text-align: center;
    color: #fff;
}

.stat-box .icon {
    font-size: 20px;
    text-align: left;
}

.stat-box h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-box p {
    font-size: 16px;
    line-height: 1.4;
    color: #e5e5e5;
    text-align: center;
}

.divider {
    width: 1px;
    height: 121px;
    background: white;
    margin-left: 49px;

}

/* Smooth number effect */
.counter {
    transition: 0.3s ease;
}

@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        gap: 30px;
    }

    .divider {
        width: 100%;
        height: 1px;
    }
}


/* ===== SECTION FIVE ===== */

.love {
    text-align: center;
    margin-top: 29px;
}

.love h2 {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 20px;
    color: #01328E;
    font-size: 12px;
    border: 1px solid #01328E;
}

.love h1 {
    margin-top: 22px;
    font-size: 32px;
}

.brand-slider {
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
}

.brand-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: scrollLoop 15s linear infinite;
}

.brand-item {
    width: 220px;
    height: 120px;
    margin: 0 30px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-item img {
    width: 119%;
    height: 119%;
}

@keyframes scrollLoop {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* Center wali active class */
.brand-item.active-center {
    opacity: 1;
    transform: scale(1.3);
}

@keyframes scrollLoop {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===== SECTION SIX - TESTIMONIALS ===== */

.testimonial-section {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
}

.top-title {
    text-align: center;
    margin-bottom: 40px;
}

.top-title span {
    border: 1px solid #01328E;
    color: #01328E;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.swiper {
    padding-bottom: 40px;
}

.swiper-slide {
    height: auto !important;
}

.slide-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Swiper dots नीचे लाने के लिए */
.swiper-pagination {
    position: relative !important;
    margin-top: 30px;
}

.testimonial-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 420px;
}

.testimonial-card img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}

.testimonial-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 20px;
    width: 85%;
}

.testimonial-content p {
    color: #01328E;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 16px;
}

.author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-circle {
    width: 47px;
    height: 47px;
    border-radius: 50%;
    background: #eee;
}

.author h4 {
    font-size: 14px;
    color: #01328E;
    margin-top: -3px;


}

.author span {
    font-size: 8px;
    color: #888;
    position: absolute;
    top: 19px;

}

.story-card {
    background: #01328E;
    border-radius: 20px;
    padding: 40px;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tag-tow {
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 25px;
}

.story-card h2 {
    font-size: 36px;
    line-height: 1.3;
    max-width: 450px;
}

.bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 40px;
}

.metric h3 {
    font-size: 30px;
    margin-bottom: 35px;
}

.metric p {
    /* font-size: 14px; */
    opacity: 0.8;
    max-width: 250px;
    /* line-height: 1.5; */
    position: absolute;
    bottom: 22px;
}

.btn {
    background: white;
    color: #01328E;
    padding: 14px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {
    transform: translateY(-3px);
    background-color: #08A1DD;
    color: white;
}

.swiper-pagination-bullet {
    background: #999;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #01328E;
}

.logo-icon {
    position: absolute;
    left: 0;
    width: 101%;
    top: -1px;
}

.logo-three {
    position: absolute;
    right: 42px;
}

.author-circle h2 {
    font-size: 17px;
    margin-top: 14px;
    margin-left: 5px;

}

.para {
    position: absolute;
    left: 93px;
    top: 141px;
}

.para-two {
    position: absolute;
    left: 93px;
    top: 170px;
}

@media (max-width: 1126px) {

    .story-card h2 {
        font-size: 28px;
    }

    .testimonial-content {
        position: absolute;
        bottom: 20px;
        left: 20px;
        background: rgba(255, 255, 255, 0.95);
        padding: 30px;
        border-radius: 20px;
        width: 62%;
    }

    .para {
        position: absolute;
        left: 93px;
        top: 192px;
    }

    .bottom-row {

        align-items: flex-start;
        gap: 20px;
    }

    .metric h3 {
        font-size: 30px;
        margin-bottom: -20px;
    }

    .metric p {
        /* font-size: 14px; */
        opacity: 0.8;
        max-width: 250px;
        /* line-height: 1.5; */
        position: absolute;
        bottom: 22px;
    }

    .metric {
        margin-top: -60px;
    }
}

@media (max-width: 1000px) {
    .metric p {
        font-size: 17px;
        opacity: 0.8;
        max-width: 250px;
        /* line-height: 1.5; */
        position: absolute;
        bottom: 22px;
    }

    .metric {
        margin-top: -60px;
        margin-left: -36px;
    }
}

@media (max-width: 900px) {
    .slide-wrapper {
        grid-template-columns: 1fr;
    }

    .story-card h2 {
        font-size: 28px;
    }

    .metric h3 {
        font-size: 32px;
    }

    .bottom-row {

        align-items: flex-start;
        gap: 20px;
    }

    .metric {
        margin-top: -60px;
        margin-left: 4px;
    }

    .para {
        position: absolute;
        left: 93px;
        top: 166px;
    }
}


@media (max-width: 610px) {
    .para {
        position: absolute;
        left: 93px;
        top: 195px;
    }
}

@media (max-width: 520px) {
    .slide-wrapper {
        grid-template-columns: 1fr;
    }

    .story-card h2 {
        font-size: 28px;
    }

    .metric h3 {
        font-size: 32px;
        margin-top: -43px;
    }

    .bottom-row {

        align-items: flex-start;
        gap: 20px;
    }

    .metric {
        margin-top: -60px;
        margin-left: 4px;

    }

    .metric p {
        font-size: 17px;
        opacity: 0.8;
        max-width: 250px;
        /* line-height: 1.5; */
        position: absolute;
        bottom: 91px;

    }

    .metric {
        margin-top: -60px;
        margin-left: -20px;
    }

    .logo-icon {
        display: none;
    }

    .logo-three {
        display: none;
    }

    .btn {
        margin-right: 52px;
        font-size: 10px;
    }

    .para {
        position: absolute;
        left: 93px;
        top: 195px;
    }
}

@media (max-width: 470px) {
    .para {
        position: absolute;
        left: 93px;
        top: 219px;
    }

}

@media (max-width: 440px) {
    .para {
        position: absolute;
        left: 93px;
        top: 252px;
    }

}

@media (max-width: 380px) {
    .para {
        position: absolute;
        left: 93px;
        top: 275px;
    }

}



/* ===== SECTION SEVEN - REVIEWS ===== */

.review-section {
    padding: 60px 20px;
}

.review-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.review-box {
    background: #f8f8f8;
    border-radius: 18px;
    padding: 35px;
    transition: 0.3s;
}

.review-box:hover {
    transform: translateY(-5px);
}

.review-icon {
    font-size: 42px;
    color: #01328E;
    margin-bottom: 20px;
    font-weight: bold;
}

.review-text {
    color: #01328E;
    line-height: 1.8;
    font-size: 18px;
    margin-bottom: 30px;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #08A1DD;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.review-name {
    color: #01328E;
    font-size: 15px;
    margin-bottom: 4px;
}

.review-role {
    font-size: 11px;
    color: #777;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .review-container {
        grid-template-columns: 1fr;
    }

    .review-box {
        padding: 25px;
    }

    .review-text {
        font-size: 16px;
    }
}


/* ===== SECTION EIGHT - FAQ ===== */

.faq-section {
    padding: 60px 20px;
}

.faq-container {
    max-width: 760px;
    margin: auto;
    text-align: center;
}

.faq-tag {
    display: inline-block;
    padding: 5px 14px;
    border: 1px solid #01328E;
    border-radius: 30px;
    font-size: 14px;
    color: #01328E;
    margin-bottom: 18px;
}

.faq-title {
    font-size: 42px;
    font-weight: 700;
    color: #01328E;
    margin-bottom: 12px;
}

.faq-subtitle {
    font-size: 17px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 45px;
}

.faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.faq-item.active {
    background: #01328E;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    color: #111;
}

.faq-item.active .faq-question {
    color: #fff;
}

.faq-icon {
    font-size: 24px;
    transition: 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 26px 24px;
    text-align: left;
    color: #fff;
    font-size: 15px;
    line-height: 1.7;
    max-width: 90%;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-buttons {
    margin-top: 45px;
    display: flex;
    justify-content: center;
    gap: 18px;
}

.faq-btn {
    min-width: 149px;
    height: 40px;
    background: #01328E;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.faq-btn:hover {
    transform: translateY(-2px);
    background-color: #08A1DD;
}

.faq-icon img {
    filter: brightness(0);
    transition: 0.3s ease;
}

.faq-item.active .faq-icon img {
    filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 30px;
    }

    .faq-subtitle br {
        display: none;
    }

    .faq-question {
        font-size: 16px;
        padding: 20px;
    }

    .faq-answer {
        padding: 0 20px 20px;
        font-size: 14px;
    }

    .faq-buttons {
        flex-direction: column;
        align-items: center;
    }

    .faq-btn {
        width: 100%;
        max-width: 250px;
    }
}