:root {
    --primary: #4361ee;
    --secondary: #3a0ca3;
    --accent: #4cc9f0;
    --success: #2ec4b6;
    --dark: #1b263b;
    --light: #f8f9fa;
    --village-green: #2d6a4f;
    --village-light: #95d5b2;
    --gradient-primary: linear-gradient(135deg, #4361ee, #3a0ca3);
    --gradient-secondary: linear-gradient(135deg, #4cc9f0, #4361ee);
    --gradient-accent: linear-gradient(135deg, #2ec4b6, #4cc9f0);
}

* {
    font-family: 'SolaimanLipi', sans-serif;
}

body {
    background-color: #f0f7ff;
    color: #333;
    overflow-x: hidden;
    position: relative;
}

.body-graphics {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.1;
    pointer-events: none;
}


.union-icon {
    position: absolute;
    font-size: 8rem;
    color: var(--primary);
    opacity: 0.1;
    animation: float 15s infinite linear;
}

.union-icon-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.union-icon-2 {
    top: 60%;
    right: 8%;
    animation-delay: 3s;
    color: var(--accent);
}

.union-icon-3 {
    top: 30%;
    left: 15%;
    animation-delay: 6s;
    color: var(--success);
}

.union-icon-4 {
    bottom: 20%;
    right: 15%;
    animation-delay: 9s;
    color: var(--secondary);
}

.union-icon-5 {
    top: 40%;
    right: 20%;
    animation-delay: 12s;
    color: var(--primary);
}




@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-20px) rotate(5deg);
    }

    50% {
        transform: translateY(0) rotate(0deg);
    }

    75% {
        transform: translateY(20px) rotate(-5deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.animated-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    animation: moveShape 20s infinite linear;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    bottom: -100px;
    right: -100px;
    animation-delay: 5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--success);
    top: 30%;
    right: -50px;
    animation-delay: 10s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    background: var(--secondary);
    bottom: 20%;
    left: -80px;
    animation-delay: 15s;
}

@keyframes moveShape {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(20px, 20px) rotate(90deg);
    }

    50% {
        transform: translate(0, 40px) rotate(180deg);
    }

    75% {
        transform: translate(-20px, 20px) rotate(270deg);
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}


.uniondesk-bar {
    background-color: #a4188d;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    height: 40px;
}


.logo {
    display: flex;
    align-items: center;
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: -0.5px;
}

.leaf {
    color: var(--primary);
    margin-right: 5px;
}

.market-text {
    font-weight: lighter;
    color: var(--accent);
}

.buy-now-btn {
    background-color: var(--primary);
    color: white;
    text-decoration: none;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.buy-now-btn:hover {
    background-color: var(--primary);
    color: white;
}

.primary--color {
    color: var(--primary) !important;
}

.btn-primary {
    background-color: var(--gradient-primary) !important;
    color: #fff;
}


.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    transition: all 0.4s ease;
    z-index: 1000;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-brand i {
    color: var(--primary);
    margin-right: 10px;
}

.nav-link {
    color: #555 !important;
    font-weight: 500;
    margin: 0 8px;
    transition: all 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary) !important;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-primary-custom {
    background: var(--gradient-primary);
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
    position: relative;
    overflow: hidden;
    color: #fff;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.4);
}

.btn-primary-custom::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary-custom:hover::after {
    opacity: 1;
}

.btn-accent-custom {
    background: var(--gradient-accent);
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(46, 196, 182, 0.3);
}

.btn-accent-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(46, 196, 182, 0.4);
}


.hero-section {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.05) 0%, rgba(76, 201, 240, 0.05) 100%);
    z-index: -2;
}

.hero-graphic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%234361ee"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="%234361ee"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%234361ee" opacity="0.1"/></svg>');
    background-size: cover;
    z-index: -1;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-description {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
}

.hero-image-container {
    position: relative;
}

.hero-image {
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    animation: floatIcon 4s ease-in-out infinite;
    z-index: 10;
}

.floating-icon-1 {
    top: 20%;
    right: 10%;
    background: var(--gradient-primary);
    color: white;
    animation-delay: 1s;
}

.floating-icon-2 {
    bottom: 30%;
    left: 5%;
    background: var(--gradient-accent);
    color: white;
    animation-delay: 2s;
}

@keyframes floatIcon {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}


.service-card {
    background: white;
    border-radius: 20px;
    transition: all 0.4s;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    border: none;
    /* Border removed */
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(67, 97, 238, 0.1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 35px;
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.2);
}

.service-title {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.top-unions-section {
    padding: 80px 0 40px;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.03) 0%, rgba(46, 196, 182, 0.03) 100%);
}

.union-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: none;
    /* Border removed */
}

.union-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(67, 97, 238, 0.1);
}

.union-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
}

.union-name {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.union-location {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.union-rating {
    color: #ffc107;
    margin-bottom: 15px;
}

.union-badge {
    display: inline-block;
    background: rgba(67, 97, 238, 0.1);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.certificates-section {
    width: 100%;
    padding: 50px 0;
    overflow: hidden;
    position: relative;
    height: 800px;
}


.certificates-container {
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.certificates-scroll {
    display: flex;
    flex-direction: column;
    animation: scrollUp 18s linear infinite;
}

.certificate-card {
    width: 100%;
    height: 800px;
    overflow: hidden;
    position: relative;
    transition: transform 0.5s, box-shadow 0.5s;
}

.certificate-card img {
    width: 100%;
    height: 100%;
    transition: transform 0.5s;
}

.certificate-card:hover img {
    transform: scale(1.05);
}

.certificate-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0));
    padding: 20px;
    text-align: left;
}

.certificate-info h6 {
    margin: 0 0 5px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #334155;
}

.certificate-info p {
    margin: 0;
    font-size: 0.95rem;
    color: #555;
}

@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-1890px);
    }
}

@media (max-width: 768px) {
    .certificates-section {
        height: auto;
        padding: 30px 0;
    }

    .certificates-scroll {
        gap: 20px;
    }

    .certificate-card {
        height: 400px;
    }
}



.how-it-works {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.how-it-works-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.03) 0%, rgba(76, 201, 240, 0.03) 100%);
    z-index: -1;
}

.step-container {
    position: relative;
}

.step-item {
    position: relative;
    z-index: 2;
}

.step-circle {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: 0 15px 30px rgba(67, 97, 238, 0.3);
    position: relative;
    overflow: hidden;
}

.step-circle::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.3s;
}

.step-item:hover .step-circle::after {
    opacity: 1;
}

.step-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
}

.step-title {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.step-description {
    color: #666;
    line-height: 1.6;
}

.step-line {
    position: absolute;
    top: 50px;
    left: 50%;
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    z-index: 1;
    border-radius: 3px;
    transform: translateX(-50%);
}


.benefits-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.05) 0%, rgba(46, 196, 182, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.benefit-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: none;
    /* Top border removed */
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(76, 201, 240, 0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 25px;
}

.benefit-title {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.benefit-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.benefit-tag {
    background: rgba(67, 97, 238, 0.1);
    color: var(--primary);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 500;
}

.purpose-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.purpose-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(29, 53, 87, 0.9) 0%, rgba(27, 38, 59, 0.95) 100%);
    z-index: -1;
}

.purpose-content {
    position: relative;
    z-index: 2;
}

.purpose-title {
    font-weight: 800;
    color: white;
    margin-bottom: 40px;
}

.purpose-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: none;
    /* All borders removed */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.purpose-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.purpose-item i {
    color: var(--accent);
    font-size: 30px;
    margin-right: 15px;
    float: left;
    margin-top: 5px;
}

.purpose-item h5 {
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.purpose-item p {
    color: rgba(255, 255, 255, 0.8);
}

.purpose-image {
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(5deg);
    transition: transform 0.5s ease;
}

.purpose-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.purpose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}




/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%234361ee"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="%234361ee"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%234361ee" opacity="0.1"/></svg>');
    background-size: cover;
    z-index: 1;
    opacity: 0.1;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    line-height: 1.6;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-title {
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.animate-from-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-from-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-from-left.animated,
.animate-from-right.animated {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .step-line {
        display: none;
    }

    .floating-icon {
        display: none;
    }

    .union-icon {
        font-size: 5rem;
    }

    .purpose-image {
        margin-top: 40px;
        height: 300px;
    }
}


.client-card {
    background: #fff;
    border-radius: 14px;
    padding: 25px 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: all .3s ease;
}

.client-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.1);
}

.client-logo img {
    max-height: 70px;
    object-fit: contain;
}

.client-name {
    font-weight: 600;
}

.client-address {
    font-size: 13px;
}


.section {
    padding: 100px 20px;
    position: relative;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Modern Mission-Vision Cards */
.mission-vision {
    background: transparent;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    perspective: 1000px;
}

.mv-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 50px 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.mv-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 25px 50px rgba(58, 134, 255, 0.2);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: white;
    font-size: 2.5rem;
    position: relative;
    z-index: 1;
}

.mv-icon::after {
    content: '';
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(58, 134, 255, 0.1);
    z-index: -1;
}

.mv-card h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mv-card p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Stats Section with Floating Animation */
.stats {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: float 20s linear infinite;
}

@keyframes float {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.stat-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px) scale(1.05);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    font-weight: 500;
}

/* Blog Section with Glass Morphism */
.blog {
    background: transparent;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.blog-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.blog-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image {
    transform: scale(1.1);
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--gray);
}

.blog-tag {
    background: linear-gradient(90deg, var(--success), #06d6a0);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-title {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.blog-link:hover {
    color: var(--secondary);
    gap: 15px;
}

.faq {
    background: linear-gradient(135deg, #f0f4ff 0%, #e6f7ff 100%);
    border-radius: 30px;
    margin: 20px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.faq-header {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: white;
}

.faq-question {
    font-size: 1.2rem;
    color: var(--dark);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-question i {
    color: var(--primary);
    font-size: 1.5rem;
}

.faq-icon {
    color: var(--primary);
    font-size: 1.5rem;
    transition: var(--transition);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    color: var(--gray);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 500px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Testimonials Carousel */
.testimonials {
    background: var(--dark);
    color: white;
    position: relative;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    margin: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.8;
    position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.5;
    position: absolute;
}

.testimonial-text::before {
    top: -20px;
    left: -20px;
}

.testimonial-text::after {
    bottom: -40px;
    right: -20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.author-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.author-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--primary);
    transform: scale(1.1);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin: 0 auto 60px;
    display: block;
    position: relative;
    transform: translate(0, 0);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 60px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .section {
        padding: 70px 20px;
    }

    .faq {
        margin: 30px;
    }

    .mv-grid,
    .stats-grid,
    .blog-grid {
        gap: 25px;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 50px 15px;
    }

    .mv-card,
    .stat-item,
    .testimonial-item {
        padding: 30px 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.8rem;
    }

    .faq {
        margin: 15px;
    }
}

@media (max-width: 480px) {
    .mv-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .testimonial-text {
        font-size: 1.1rem;
    }
}

/* Animation Classes */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeIn {
    animation: fadeIn 0.8s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--primary), var(--secondary));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(var(--secondary), var(--primary));
}


.media-details {
    padding: 60px 0;
}

.media-detail-card {
    max-width: 900px;
    margin: auto;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.media-image img {
    width: 100%;
    height: auto;
    display: block;
}

.media-content {
    padding: 32px;
}

.media-meta {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 14px;
    font-size: 0.9rem;
    color: #777;
}

.media-tag {
    background: #f1f1f1;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    color: #444;
}

.media-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
}

.media-description {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #333;
}

.media-footer {
    margin-top: 30px;
}

.back-link {
    text-decoration: none;
    font-weight: 600;
    color: #333;
}

.back-link i {
    margin-right: 6px;
}

.search-wrapper {
    width: 100%;
}

.search-form {
    max-width: 380px;
    width: 100%;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 50px;
    padding: 6px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.search-icon {
    position: absolute;
    left: 16px;
    color: #999;
    font-size: 14px;
}

.search-input {
    width: 100%;
    border: none;
    outline: none;
    padding: 10px 16px 10px 38px;
    border-radius: 50px;
    font-size: 0.95rem;
}

.search-btn {
    background: linear-gradient(135deg, #fadeda, #fbcaca);
    border: none;
    border-radius: 40px;
    padding: 8px 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.testimonials {
    background: linear-gradient(135deg, #1f2933, #111827);
    padding: 80px 0;
}

.testimonial-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 18px;
    color: #fff;
    height: 100%;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fadeda;
    color: #222;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin: 0;
    font-size: 1rem;
}

.author-info p {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.85;
}

/* Swiper custom */
.testimonial-swiper {
    padding: 40px 0;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fadeda;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
}

.swiper-pagination-bullet-active {
    background: #fadeda;
}