/**
 * Custom Styles
 * InsuranceNow - AdSense Arbitrage CMS
 */

/* Base Styles */
* {
    box-sizing: border-box;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Bouncing Scroll Indicator Animation */
@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.scroll-indicator {
    animation: bounce 2s infinite;
    text-align: center;
    font-size: 1.25rem;
    color: #2563EB;
    padding: 1.5rem 0;
    font-weight: 600;
}

/* ========================================
   GOD LEVEL SCROLL BANNER - After Image
   ======================================== */

/* Floating Arrow Animation */
@keyframes floatArrow {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(8px);
        opacity: 0.6;
    }
}

@keyframes floatArrow2 {

    0%,
    100% {
        transform: translateY(8px);
        opacity: 0.6;
    }

    50% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Glow Pulse Animation */
@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(37, 99, 235, 0.3),
            0 0 40px rgba(37, 99, 235, 0.2),
            inset 0 0 20px rgba(37, 99, 235, 0.1);
    }

    50% {
        box-shadow: 0 0 30px rgba(37, 99, 235, 0.5),
            0 0 60px rgba(37, 99, 235, 0.3),
            inset 0 0 30px rgba(37, 99, 235, 0.2);
    }
}

/* Text Shimmer Animation */
@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* Emoji Bounce */
@keyframes emojiBounce {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
    }

    25% {
        transform: scale(1.2) rotate(-5deg);
    }

    75% {
        transform: scale(1.2) rotate(5deg);
    }
}

/* Scroll Banner Container */
.scroll-banner {
    position: relative;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #1e3a8a 100%);
    border-radius: 16px;
    padding: 20px 16px;
    margin: 16px 0;
    overflow: hidden;
    animation: glowPulse 2s ease-in-out infinite;
}

.scroll-banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

/* Arrow Container */
.scroll-icon-wrapper {
    margin-bottom: 4px;
}

.scroll-arrow-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.scroll-arrow {
    width: 32px;
    height: 32px;
    color: #ffffff;
    animation: floatArrow 1s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

.scroll-arrow-2 {
    margin-top: -12px;
    animation: floatArrow2 1s ease-in-out infinite;
    opacity: 0.7;
}

/* Text Styles */
.scroll-text-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.scroll-emoji {
    font-size: 1.5rem;
    animation: emojiBounce 1.5s ease-in-out infinite;
}

.scroll-main-text {
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #ffffff 0%, #fbbf24 25%, #ffffff 50%, #fbbf24 75%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.scroll-subtext {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    animation: bounce 2s ease-in-out infinite;
}

/* Background Glow Effect */
.scroll-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* Next Button Pulse Animation */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.4);
    }
}

.next-btn {
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
}

.next-btn:hover {
    animation: none;
    transform: scale(1.02);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.4);
}

/* ========================================
   GOD LEVEL NEXT VIDEO BUTTON
   Bilingual Hindi + English
   ======================================== */

@keyframes btnGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(37, 99, 235, 0.4),
            0 0 40px rgba(37, 99, 235, 0.2),
            0 4px 15px rgba(0, 0, 0, 0.2);
    }

    50% {
        box-shadow: 0 0 30px rgba(37, 99, 235, 0.6),
            0 0 60px rgba(37, 99, 235, 0.3),
            0 8px 25px rgba(0, 0, 0, 0.25);
    }
}

@keyframes playPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}

@keyframes arrowSlide {

    0%,
    100% {
        transform: translateX(0);
        opacity: 1;
    }

    50% {
        transform: translateX(5px);
        opacity: 0.7;
    }
}

@keyframes shimmerBtn {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.next-video-btn {
    display: block;
    width: 100%;
    position: relative;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);
    border-radius: 16px;
    padding: 20px 24px;
    text-decoration: none;
    overflow: hidden;
    animation: btnGlow 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.next-video-btn:hover {
    transform: translateY(-3px) scale(1.02);
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #60a5fa 100%);
}

/* Glow Effect */
.next-video-btn .btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmerBtn 3s ease-in-out infinite;
}

/* Button Content */
.next-video-btn .btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

/* Play Icon */
.next-video-btn .play-icon-wrapper {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.4);
    animation: playPulse 1.5s ease-in-out infinite;
}

.next-video-btn .play-icon {
    width: 24px;
    height: 24px;
    color: #ffffff;
    margin-left: 3px;
}

/* Text Content */
.next-video-btn .text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.next-video-btn .text-hindi {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.next-video-btn .text-english {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.5px;
}

/* Arrow Animation */
.next-video-btn .arrow-wrapper {
    display: flex;
    align-items: center;
}

.next-video-btn .arrow-icon {
    width: 28px;
    height: 28px;
    color: #ffffff;
    animation: arrowSlide 1s ease-in-out infinite;
}

/* Hover Effects */
.next-video-btn:hover .play-icon-wrapper {
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.6);
}

.next-video-btn:hover .arrow-icon {
    animation: none;
    transform: translateX(8px);
}

/* Focus State */
.next-video-btn:focus {
    outline: 3px solid #93c5fd;
    outline-offset: 3px;
}

/* Active State */
.next-video-btn:active {
    transform: scale(0.98);
}

/* Image Styles */
.post-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Image Figure Container */
.image-figure {
    margin: 0;
    padding: 0;
}

/* Bridge Text - Connects Image to Insurance Content */
.bridge-text {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0f9ff 100%);
    border-left: 4px solid #0ea5e9;
    padding: 12px 16px;
    margin-top: 12px;
    border-radius: 0 8px 8px 0;
    font-size: 0.95rem;
    color: #1e3a5f;
    font-style: italic;
    font-weight: 500;
    line-height: 1.5;
    position: relative;
    overflow: hidden;
}

.bridge-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
    animation: shimmerBridge 3s ease-in-out infinite;
}

@keyframes shimmerBridge {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}


/* Video Styles */
.post-video {
    width: 100%;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    background-color: #000;
}

/* Content Styles */
.post-content {
    line-height: 1.75;
    color: #374151;
}

.post-content p {
    margin-bottom: 1rem;
}

.post-content h2,
.post-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: #1F2937;
}

.post-content ul,
.post-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.post-content li {
    margin-bottom: 0.5rem;
}

/* Ad Container Styles */
.ad-container {
    padding: 1rem 0;
    text-align: center;
    min-height: 100px;
}

/* Card Styles */
.card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Form Styles */
.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #D1D5DB;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: #2563EB;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.2s;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background-color: #2563EB;
    color: white;
}

.btn-primary:hover {
    background-color: #1D4ED8;
}

.btn-danger {
    background-color: #EF4444;
    color: white;
}

.btn-danger:hover {
    background-color: #DC2626;
}

.btn-secondary {
    background-color: #6B7280;
    color: white;
}

.btn-secondary:hover {
    background-color: #4B5563;
}

/* Alert Styles */
.alert {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.alert-success {
    background-color: #D1FAE5;
    color: #065F46;
    border: 1px solid #6EE7B7;
}

.alert-error {
    background-color: #FEE2E2;
    color: #991B1B;
    border: 1px solid #FCA5A5;
}

.alert-warning {
    background-color: #FEF3C7;
    color: #92400E;
    border: 1px solid #FCD34D;
}

/* Loading Spinner */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid #E5E7EB;
    border-top-color: #2563EB;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Responsive Utilities */
@media (max-width: 480px) {
    .scroll-indicator {
        font-size: 1rem;
    }

    .post-content {
        font-size: 0.95rem;
    }
}

/* ========================================
   ADSENSE AD CONTAINER STYLES
   ======================================== */

.ad-container {
    width: 100%;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 8px;
    padding: 8px;
    margin: 16px 0;
    overflow: hidden;
}

/* Specific slot styling */
.ad-slot-header {
    border-left: 4px solid #2563eb;
}

.ad-slot-content-1 {
    border-left: 4px solid #10b981;
}

.ad-slot-content-2 {
    border-left: 4px solid #f59e0b;
}

.ad-slot-video-top {
    border-left: 4px solid #8b5cf6;
}

.ad-slot-video-bottom {
    border-left: 4px solid #ef4444;
}

/* Ad responsive sizing */
.ad-container ins {
    display: block;
    width: 100%;
    max-width: 100%;
}

/* Hide overflow and maintain aspect ratio */
.ad-container iframe,
.ad-container img {
    max-width: 100%;
    height: auto;
}

/* Loading state for ads */
.ad-container:empty::before {
    content: 'Ad Loading...';
    color: #9ca3af;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile ad adjustments */
@media (max-width: 480px) {
    .ad-container {
        padding: 4px;
        margin: 12px 0;
    }

    .scroll-banner {
        padding: 16px 12px;
    }

    .scroll-main-text {
        font-size: 1rem;
    }
}

/* ========================================
   ADVANCED SEO STYLES
   Content-First & Video Description
   ======================================== */

/* Screen Reader Only - Content visible to bots but hidden visually */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* SEO Content First - Hidden visually but accessible to crawlers */
.seo-content-first {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Content-First Mobile Layout */
@media (max-width: 640px) {
    .post-article {
        display: flex;
        flex-direction: column;
    }

    /* On mobile, push visual content slightly down in DOM order perception */
    .visual-content {
        order: 1;
    }

    .seo-content-first {
        order: 0;
    }
}

/* ========================================
   GOD LEVEL VIDEO SECTION
   Premium UI with Custom Play Button
   ======================================== */

@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes liveDot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

@keyframes playBounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.god-video-section {
    margin: 20px 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Video Header Banner */
.video-header-banner {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 50%, #991b1b 100%);
    padding: 12px 16px;
}

.video-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.video-live-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.3);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: liveDot 1s ease-in-out infinite;
}

.video-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.video-title-hindi {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.video-title-english {
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.video-duration-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
}

/* Video Player Wrapper */
.video-player-wrapper {
    position: relative;
    background: #000;
}

.god-video-player {
    width: 100%;
    display: block;
    border-radius: 0;
}

/* Custom Play Overlay */
.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    cursor: pointer;
    z-index: 10;
    transition: opacity 0.3s ease;
}

.video-play-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-button-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: pulseRing 2s ease-out infinite;
}

.play-button-ring.ring-2 {
    animation-delay: 0.5s;
}

.play-button-main {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.5);
    animation: playBounce 1.5s ease-in-out infinite;
    transition: all 0.3s ease;
}

.play-button-main:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(220, 38, 38, 0.7);
}

.play-button-main svg {
    width: 30px;
    height: 30px;
    color: white;
    margin-left: 4px;
}

.play-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.play-text-main {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.play-text-sub {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Video Info Footer */
.video-info-footer {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.video-info-left {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.info-icon {
    font-size: 1.2rem;
}

.info-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.video-info-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.quality-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
}

/* Old video section styles - keeping for compatibility */
.video-section {
    margin: 16px 0;
}

.video-description {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 16px;
    border-radius: 12px 12px 0 0;
    border-bottom: 3px solid #2563eb;
}

.video-description h2 {
    color: #1e3a5f;
}

/* Video Transcript Accordion */
.video-transcript details {
    background: #f8fafc;
    border-radius: 8px;
    overflow: hidden;
}

.video-transcript summary {
    padding: 12px 16px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-left: 4px solid #2563eb;
    transition: all 0.3s ease;
}

.video-transcript summary:hover {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.video-transcript details[open] summary {
    border-radius: 8px 8px 0 0;
}

/* Accessibility Focus States */
.next-btn:focus,
.video-transcript summary:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Schema Microdata Hidden */
meta[itemprop] {
    display: none;
}

/* ========================================
   GOD LEVEL SOCIAL MEDIA FOLLOW SECTION
   Compact, Mobile-Friendly, Animated
   ======================================== */

@keyframes bellRing {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(15deg);
    }

    50% {
        transform: rotate(-15deg);
    }

    75% {
        transform: rotate(10deg);
    }
}

@keyframes socialPop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* REDESIGNED - Compact Horizontal Social Bar */
.social-follow-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 16px;
    border: 1px solid #e2e8f0;
}

.social-follow-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.social-follow-icon {
    font-size: 1rem;
    animation: none;
}

.social-follow-text {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.social-follow-text .text-hindi {
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
    text-shadow: none;
}

.social-follow-text .text-english {
    font-size: 0.7rem;
    font-weight: 500;
    color: #64748b;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Horizontal Icon Row */
.social-buttons-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.social-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    display: none;
}

.social-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.social-btn:hover {
    transform: scale(1.15);
}

.social-btn:hover svg {
    transform: scale(1.1);
}

.social-btn span {
    display: none;
}

/* Platform-Specific Colors */
.social-youtube {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
}

.social-youtube:hover {
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.5);
}

.social-instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-instagram:hover {
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.5);
}

.social-facebook {
    background: linear-gradient(135deg, #1877f2 0%, #0d65d9 100%);
}

.social-facebook:hover {
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.5);
}

.social-telegram {
    background: linear-gradient(135deg, #0088cc 0%, #0077b5 100%);
}

.social-telegram:hover {
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.5);
}

.social-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.social-whatsapp:hover {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
}

.social-twitter {
    background: linear-gradient(135deg, #000000 0%, #14171a 100%);
}

.social-twitter:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

/* Mobile Responsive */
@media (max-width: 400px) {
    .social-buttons-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .social-btn {
        padding: 10px 6px;
    }

    .social-btn svg {
        width: 20px;
        height: 20px;
    }

    .social-btn span {
        font-size: 0.65rem;
    }

    .social-follow-text .text-hindi {
        font-size: 0.9rem;
    }
}