﻿/* ================= HERO SECTION ================= */

.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), center/cover no-repeat;
    background-image: url('@Url.Content("~/Images/becomepartner.jpeg")');
    display: flex;
    align-items: center;
    color: white;
}

.hero-content {
    text-align: center;
}

    .hero-content h1 {
        font-size: 4rem;
        font-weight: bold;
    }

    .hero-content p {
        font-size: 1.25rem;
        max-width: 800px;
        margin: 20px auto;
    }

.btn-contact {
    background-color: #fff;
    color: #007bff;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
}

    .btn-contact:hover {
        background-color: #007bff;
        color: #fff;
    }

.breadcrumb-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.4);
    padding: 10px 20px;
    border-radius: 30px;
}

    .breadcrumb-nav a {
        color: white;
        text-decoration: none;
    }

        .breadcrumb-nav a:hover {
            text-decoration: underline;
        }

/* ================= GLOBAL ================= */

body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

/* ================= PARTNER CONTENT ================= */

.partner-container {
    max-width: 100%;
    margin: 0 auto;
    background: white;
    padding: 50px 60px;
    position: relative;
}

.question-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.5;
    margin-bottom: 30px;
}

.partner-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    text-align: justify;
}

    .partner-text p {
        margin-bottom: 25px;
    }

.btn-become-partner {
    background-color: #5d78ff;
    color: white;
    font-weight: 600;
    font-size: 1.15rem;
    padding: 14px 40px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 6px 15px rgba(93, 120, 255, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 20px;
}

    .btn-become-partner:hover {
        background-color: #4a63e0;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(93, 120, 255, 0.4);
        color: white;
    }

/* ================= CHAT ICON ================= */

.chat-icon {
    position: absolute;
    bottom: -20px;
    right: 40px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #5d78ff, #8b9eff);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(93, 120, 255, 0.4);
}

    .chat-icon i {
        font-size: 2rem;
        color: white;
    }

/* ================= PARTNERSHIP SECTION ================= */

.partnership-section {
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-weight: bold;
    position: relative;
    z-index: 2;
}

.main-heading {
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: #333;
}

.intro-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

/* ================= IMAGE & ANIMATION ================= */

/* FINAL image-wrapper style kept */
.image-wrapper {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    opacity: 0;
    transform: translateX(100px);
    transition: all 1.2s ease-out;
}

    .image-wrapper.in-view {
        opacity: 1;
        transform: translateX(0);
    }

/* FINAL circular-img style kept */
.circular-img {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
    border: 20px solid #f9f9f9;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    opacity: 0.8;
    transform: scale(0.2);
    transition: all 1.4s ease-out;
}

.image-wrapper.in-view .circular-img,
.animate-on-scroll.in-view .circular-img {
    opacity: 1;
    transform: scale(1);
}

/* ================= SCROLL ANIMATIONS ================= */

.animate-on-scroll {
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

    .animate-on-scroll.in-view {
        opacity: 1;
        transform: translateX(0);
    }

/* TEXT ANIMATIONS */

.text-left-side {
    transform: translateX(80px);
}

    .text-left-side.in-view {
        opacity: 1;
        transform: translateX(0);
    }

.text-right-side {
    transform: translateX(-80px);
}

    .text-right-side.in-view {
        opacity: 1;
        transform: translateX(0);
    }

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .partner-container {
        padding: 40px 30px;
        margin: 20px;
    }

    .question-title {
        font-size: 1.5rem;
    }

    .partner-text {
        font-size: 1rem;
    }

    .chat-icon {
        width: 60px;
        height: 60px;
        right: 20px;
        bottom: -15px;
    }

        .chat-icon i {
            font-size: 1.7rem;
        }
}

@media (max-width: 1199px) {
    .circular-img {
        width: 380px;
        height: 380px;
    }
}

@media (max-width: 991px) {
    .image-wrapper {
        height: auto;
        margin-top: 50px;
    }

    .circular-img {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 576px) {
    .circular-img {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 798px) {
    .circular-img {
        width: auto;
        height: auto;
    }
}
