:root {
            --bg-main: #FFFFFF;
            --bg-section: #F8FAFC;
            --bg-card: #FFFFFF;
            --primary: #2563EB;
            --primary-light: #EFF6FF;
            --primary-hover: #1D4ED8;
            --secondary: #0F172A;
            --secondary-light: #1E293B;
            --accent: #F59E0B;
            --accent-green: #22C55E;
            --text-main: #1E293B;
            --text-muted: #4B5563;
            --text-muted-light: #6B7280;
            --border-color: #E2E8F0;
            --border-color-light: #F1F5F9;
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.02);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.04), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
            --shadow-premium: 0 20px 25px -5px rgba(0, 0, 0, 0.06), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
            --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        }

        body {
            background-color: var(--bg-main);
            color: var(--text-main);
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 16px;
            font-weight: 400;
            line-height: 1.8;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            color: var(--secondary);
            letter-spacing: -0.02em;
            line-height: 1.25;
        }

        /* --- Scrollbar --- */
        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }
        ::-webkit-scrollbar-track {
            background: var(--bg-section);
        }
        ::-webkit-scrollbar-thumb {
            background: #CBD5E1;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #94A3B8;
        }

        /* --- Sections Separation & Gradients --- */
        .section-padding {
            padding: 80px 0;
            border-bottom: 1px solid var(--border-color-light);
        }
        .bg-alternate {
            background-color: var(--bg-section);
        }
        .accent-gradient-line {
            width: 50px;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--accent));
            border-radius: 2px;
            margin-top: 12px;
        }

        /* --- Premium Cards --- */
        .card-premium {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 32px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            position: relative;
        }
        .card-premium:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-premium);
            border-color: rgba(37, 99, 235, 0.2);
        }

        .game-grid-item {
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            background: #FFFFFF;
            position: relative;
        }
        .game-grid-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        .game-grid-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary);
        }
        .game-grid-item:hover img {
            transform: scale(1.04);
            filter: brightness(0.9);
        }
        
        /* Game Badge overlay */
        .game-badge-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(to top, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0) 100%);
            color: #FFFFFF;
            padding: 12px 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            opacity: 0;
            transition: var(--transition);
        }
        .game-grid-item:hover .game-badge-overlay {
            opacity: 1;
        }

        /* --- Custom Header --- */
        .header-topbar {
            background-color: var(--secondary);
            color: #FFFFFF;
            padding: 10px 0;
            font-size: 13px;
            font-weight: 500;
        }
        .navbar-custom {
            background-color: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-color-light);
            padding: 14px 0;
            z-index: 1030;
            box-shadow: 0 4px 20px rgba(0,0,0,0.02);
        }
        .navbar-custom .nav-link {
            color: var(--secondary-light);
            font-weight: 600;
            font-size: 15px;
            padding: 8px 18px !important;
            transition: var(--transition);
            border-radius: 8px;
        }
        .navbar-custom .nav-link:hover, 
        .navbar-custom .nav-link.active {
            color: var(--primary);
            background-color: var(--primary-light);
        }

        /* --- Buttons System --- */
        .btn-premium {
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            font-size: 14px;
            padding: 12px 28px;
            border-radius: 10px;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            transition: var(--transition);
            border: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        .btn-premium-primary {
            background: linear-gradient(135deg, var(--primary), var(--primary-hover));
            color: #FFFFFF !important;
            box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
        }
        .btn-premium-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
        }
        .btn-premium-secondary {
            background-color: var(--secondary);
            color: #FFFFFF !important;
            box-shadow: 0 4px 14px rgba(15, 23, 42, 0.15);
        }
        .btn-premium-secondary:hover {
            background-color: #000000;
            transform: translateY(-2px);
        }
        .btn-premium-outline {
            background-color: transparent;
            color: var(--primary) !important;
            border: 2px solid var(--primary);
        }
        .btn-premium-outline:hover {
            background-color: var(--primary-light);
            transform: translateY(-2px);
        }
        .btn-wa-glow {
            background-color: var(--accent-green);
            color: #FFFFFF !important;
            box-shadow: 0 4px 14px rgba(34, 197, 94, 0.3);
            animation: pulse-glow-button 2s infinite;
        }
        .btn-wa-glow:hover {
            background-color: #16A34A;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
        }
        @keyframes pulse-glow-button {
            0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
            70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
            100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
        }

        /* Nav WhatsApp Support Active status */
        .pulse-active-dot {
            width: 8px;
            height: 8px;
            background-color: var(--accent-green);
            border-radius: 50%;
            display: inline-block;
            animation: pulse-active 1.5s infinite;
        }
        @keyframes pulse-active {
            0% { transform: scale(0.9); opacity: 0.8; }
            50% { transform: scale(1.3); opacity: 1; }
            100% { transform: scale(0.9); opacity: 0.8; }
        }

        /* --- Tables --- */
        .table-custom-wrapper {
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-sm);
            background: #FFFFFF;
        }
        .table-custom {
            margin: 0;
            width: 100%;
        }
        .table-custom th {
            background-color: var(--secondary) !important;
            color: #FFFFFF !important;
            font-weight: 700;
            padding: 16px 24px;
            font-size: 15px;
            border: none;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .table-custom td {
            padding: 16px 24px;
            color: var(--text-main);
            border-color: var(--border-color-light);
            font-size: 14px;
            vertical-align: middle;
        }
        .table-custom tbody tr:nth-child(even) {
            background-color: var(--bg-section);
        }
        .table-custom tbody tr:hover {
            background-color: var(--primary-light);
        }

        /* --- Accordion Custom --- */
        .accordion-custom .accordion-item {
            background-color: #FFFFFF;
            border: 1px solid var(--border-color) !important;
            border-radius: 12px !important;
            margin-bottom: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }
        .accordion-custom .accordion-item:hover {
            border-color: rgba(37, 99, 235, 0.2);
            box-shadow: var(--shadow-md);
        }
        .accordion-custom .accordion-button {
            background-color: #FFFFFF !important;
            color: var(--secondary) !important;
            font-family: 'Outfit', sans-serif;
            font-weight: 600;
            font-size: 17px;
            padding: 20px 28px;
            box-shadow: none !important;
        }
        .accordion-custom .accordion-button:not(.collapsed) {
            color: var(--primary) !important;
            border-bottom: 1px solid var(--border-color);
        }
        .accordion-custom .accordion-body {
            color: var(--text-muted);
            padding: 24px 28px;
            font-size: 15px;
            line-height: 1.8;
            background-color: var(--bg-section);
        }

        /* --- Timeline Onboarding Layout --- */
        .timeline-container {
            position: relative;
            background: #FFFFFF;
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 40px;
            box-shadow: var(--shadow-sm);
        }
        .timeline-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 24px;
        }
        .timeline-step-img-wrapper {
            border-radius: 14px;
            overflow: hidden;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            aspect-ratio: 3/4;
        }
        .timeline-step-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        .timeline-step-img-wrapper:hover {
            transform: translateY(-4px);
            border-color: var(--primary);
            box-shadow: var(--shadow-md);
        }
        @media(max-width: 992px) {
            .timeline-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media(max-width: 576px) {
            .timeline-grid {
                grid-template-columns: 1fr;
            }
        }

        /* --- Content Block Elements --- */
        .text-editor-title {
            color: var(--secondary);
            font-weight: 800;
            font-size: 28px;
            margin-top: 35px;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        .text-editor-subtitle {
            color: var(--secondary);
            font-weight: 700;
            font-size: 22px;
            margin-top: 25px;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .text-editor-content p {
            margin-bottom: 18px;
            color: var(--text-muted);
            line-height: 1.8;
        }
        .text-editor-content ul {
            margin-bottom: 24px;
            padding-left: 0;
            list-style: none;
        }
        .text-editor-content li {
            margin-bottom: 10px;
            color: var(--text-muted);
            position: relative;
            list-style: none;
            padding-left: 24px;
        }
        .text-editor-content li::before {
            content: "\f058";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: var(--primary);
            position: absolute;
            left: 0;
            top: 2px;
        }

        /* --- Floating WhatsApp widget --- */
        .floating-whatsapp-widget {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--accent-green);
            color: white;
            padding: 14px 24px;
            border-radius: 50px;
            box-shadow: 0 8px 24px rgba(34, 197, 94, 0.35);
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            text-decoration: none;
            z-index: 1040;
            transition: var(--transition);
            font-family: 'Outfit', sans-serif;
            letter-spacing: 0.03em;
        }
        .floating-whatsapp-widget:hover {
            transform: translateY(-4px) scale(1.03);
            box-shadow: 0 12px 30px rgba(34, 197, 94, 0.5);
            color: white;
        }
        @media (max-width: 768px) {
            .floating-whatsapp-widget span {
                display: none;
            }
            .floating-whatsapp-widget {
                padding: 16px;
                bottom: 20px;
                right: 20px;
                border-radius: 50%;
            }
        }

        /* --- Premium Footer --- */
        .footer-premium-wrapper {
            --bg-gradient-start: #02152f;
            --bg-gradient-end: #00112a;
            --accent-orange: #ff8c00;
            --accent-green: #25D366;
            --text-light: #ffffff;
            --text-muted: #94a3b8;
            --border-glass: rgba(255, 255, 255, 0.08);
            --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            
            background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
            color: var(--text-light);
            padding: 80px 0 30px;
            position: relative;
            overflow: hidden;
            font-size: 15px;
        }

        .footer-col-title {
            font-family: 'Outfit', sans-serif;
            font-size: 18px;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 25px;
            position: relative;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .footer-col-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 35px;
            height: 2px;
            background-color: var(--accent-orange);
            border-radius: 1px;
        }

        /* Column Separator Styling */
        @media (min-width: 992px) {
            .footer-col {
                border-right: 1px solid var(--border-glass);
                padding-right: 35px;
            }
            .footer-col:last-child {
                border-right: none;
                padding-right: 0;
            }
            .footer-col-2, .footer-col-3, .footer-col-4 {
                padding-left: 35px;
            }
        }

        /* Column 1 Badges */
        .trust-badge-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            margin-top: 25px;
        }
        .trust-badge-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border-glass);
            border-radius: 10px;
            padding: 12px 14px;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition);
        }
        .trust-badge-card:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 140, 0, 0.3);
            transform: translateY(-2px);
        }
        .trust-badge-card i {
            color: var(--accent-orange);
            font-size: 18px;
        }
        .trust-badge-card span {
            font-size: 12px;
            font-weight: 600;
            color: var(--text-light);
        }

        /* Links Structure */
        .footer-links-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-links-list li {
            margin-bottom: 12px;
        }
        .footer-links-list a {
            color: var(--text-muted);
            text-decoration: none;
            transition: var(--transition);
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .footer-links-list a::before {
            content: "\f105";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: var(--accent-orange);
            font-size: 12px;
            transition: var(--transition);
        }
        .footer-links-list a:hover {
            color: var(--accent-orange);
            transform: translateX(4px);
        }
        .footer-links-list a:hover::before {
            transform: scale(1.2);
        }

        /* Support Column Items */
        .support-info-item {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
            font-size: 14px;
            color: var(--text-muted);
            transition: var(--transition);
        }
        .support-info-item i {
            color: var(--accent-orange);
            font-size: 16px;
            width: 20px;
            text-align: center;
            transition: var(--transition);
        }
        .support-info-item:hover {
            color: var(--text-light);
        }
        .support-info-item:hover i {
            transform: scale(1.1);
            color: var(--text-light);
        }

        /* WhatsApp CTA Card */
        .whatsapp-cta-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border-glass);
            border-radius: 12px;
            padding: 20px;
            margin-top: 25px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
            align-items: center;
            justify-content: space-between;
            gap: 15px;
            transition: var(--transition);
        }
        .whatsapp-cta-card:hover {
            border-color: rgba(37, 211, 102, 0.3);
            box-shadow: 0 6px 20px rgba(0,0,0,0.25);
        }
        .cta-content-box {
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .cta-icon-wrapper {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(255, 140, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-orange);
            font-size: 20px;
        }
        .cta-text-wrapper {
            line-height: 1.35;
        }
        .cta-title {
            font-size: 13px;
            font-weight: 500;
            color: var(--text-muted);
            margin: 0;
        }
        .cta-subtitle {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-light);
            margin: 2px 0 0 0;
            font-family: 'Outfit', sans-serif;
        }
        .btn-cta-green {
            background-color: var(--accent-green);
            color: #ffffff;
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            font-size: 13px;
            padding: 8px 16px;
            border-radius: 8px;
            text-decoration: none;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            flex-shrink: 0;
        }
        .btn-cta-green:hover {
            background-color: #1eb855;
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
        }

        @media (max-width: 576px) {
            .whatsapp-cta-card {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            .btn-cta-green {
                width: 100%;
                justify-content: center;
            }
        }

        /* Bottom Footer Bar */
        .bottom-footer-bar {
            border-top: 1px solid var(--border-glass);
            margin-top: 60px;
            padding-top: 30px;
            font-size: 14px;
            color: var(--text-muted);
        }
        .payment-icons-list {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap;
        }
        .payment-badge {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--border-glass);
            border-radius: 6px;
            padding: 5px 12px;
            font-size: 12px;
            font-weight: 600;
            color: var(--text-light);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: var(--transition);
        }
        .payment-badge:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--accent-orange);
        }
        .payment-badge i {
            color: var(--accent-orange);
        }
        .ssl-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            color: #10b981;
            font-size: 13px;
        }
        .ssl-badge i {
            font-size: 15px;
        }













        .about-section{
    background:#f8fafc;
}

.about-badge{
    background:#fff3cd;
    color:#d97706;
    padding:8px 18px;
    border-radius:50px;
    font-weight:600;
}

.section-title{
    font-size:42px;
    font-weight:800;
    color:#0f172a;
}

.section-desc{
    color:#64748b;
    font-size:18px;
}

.about-heading{
    font-size:36px;
    font-weight:700;
    margin-bottom:20px;
}

.about-img-box img{
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.feature-box{
    background:#fff;
    padding:18px;
    border-radius:12px;
    display:flex;
    align-items:center;
    gap:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.feature-box i{
    color:#f59e0b;
    font-size:22px;
}

.vision-card,
.service-card,
.choose-box{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    height:100%;
}

.icon-box{
    width:70px;
    height:70px;
    background:#fff7ed;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.icon-box i,
.service-card i{
    font-size:28px;
    color:#f59e0b;
}

.service-card{
    text-align:center;
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-8px);
}

.choose-box{
    text-align:center;
    font-weight:600;
}

.security-section{
    background:linear-gradient(135deg,#0f172a,#1e293b);
    color:#fff;
    padding:40px;
    border-radius:25px;
}

@media(max-width:768px){

.section-title{
    font-size:30px;
}

.about-heading{
    font-size:28px;
}

}









.contact-page{
    background:#f8fafc;
}

.contact-badge{
    background:#fff3cd;
    color:#d97706;
    padding:8px 18px;
    border-radius:50px;
    font-weight:600;
}

.contact-title{
    font-size:42px;
    font-weight:800;
    color:#0f172a;
}

.contact-subtitle{
    color:#64748b;
    max-width:700px;
    margin:auto;
}

.contact-card,
.contact-info-card,
.support-box,
.support-card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.custom-input{
    height:55px;
    border-radius:12px;
    border:1px solid #e2e8f0;
}

textarea.custom-input{
    height:auto;
}

.submit-btn{
    background:#2563eb;
    color:#fff;
    padding:14px 30px;
    border-radius:12px;
}

.info-item{
    display:flex;
    gap:15px;
    margin-bottom:25px;
}

.info-item i{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#eff6ff;
    color:#2563eb;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
}

.support-card{
    text-align:center;
    transition:.3s;
}

.support-card:hover{
    transform:translateY(-8px);
}

.support-card i{
    font-size:45px;
    color:#f59e0b;
    margin-bottom:15px;
}

.business-section{
    background:linear-gradient(135deg,#0f172a,#1e293b);
    color:#fff;
    padding:40px;
    border-radius:25px;
}

.business-btn{
    background:#f59e0b;
    color:#fff;
    padding:14px 30px;
    border-radius:12px;
}

.custom-accordion .accordion-item{
    border:none;
}

.custom-accordion .accordion-button{
    border-radius:15px !important;
    box-shadow:none;
}

@media(max-width:768px){

.contact-title{
    font-size:30px;
}

}









.ipl-section{
    background:#f8fafc;
}

.ipl-badge{
    background:#fff3cd;
    color:#d97706;
    padding:8px 18px;
    border-radius:50px;
    font-weight:600;
}

.ipl-title{
    font-size:48px;
    font-weight:800;
    color:#0f172a;
}

.ipl-subtitle{
    max-width:850px;
    margin:auto;
    color:#64748b;
}

.section-title{
    font-size:34px;
    font-weight:700;
    margin-bottom:20px;
}

.feature-box{
    background:#fff;
    padding:18px;
    border-radius:14px;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
    font-weight:600;
}

.content-card{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.custom-list li{
    margin-bottom:10px;
}

@media(max-width:768px){

.ipl-title{
    font-size:32px;
}

}



/* =========================
   IPL BETTING PAGE CSS
========================= */

body{
    font-family: 'Poppins', sans-serif;
    background:#f8fafc;
    color:#1e293b;
}

.ipl-section{
    background:#f8fafc;
}

/* Headings */

.ipl-badge{
    display:inline-block;
    background:#fff3cd;
    color:#d97706;
    padding:10px 20px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
}

.ipl-title{
    font-size:48px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:20px;
}

.ipl-subtitle{
    max-width:850px;
    margin:auto;
    color:#64748b;
    font-size:18px;
    line-height:1.8;
}

.section-title{
    font-size:34px;
    font-weight:700;
    color:#0f172a;
}

/* Feature Box */

.feature-box{
    background:#fff;
    padding:18px 20px;
    border-radius:16px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    font-weight:600;
    transition:.3s;
    border:1px solid #eef2f7;
}

.feature-box:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

/* Main Cards */

.content-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 35px rgba(0,0,0,.05);
    height:100%;
    transition:.3s;
    border:1px solid #eef2f7;
}

.content-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.content-card h2,
.content-card h3,
.content-card h4{
    color:#0f172a;
    font-weight:700;
    margin-bottom:20px;
}

.content-card p{
    color:#64748b;
    line-height:1.9;
}

.content-card ul{
    padding-left:18px;
}

.content-card ul li{
    margin-bottom:12px;
    color:#475569;
}

/* Service Cards */

.service-card{
    background:#fff;
    padding:30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.3s;
    border:1px solid #eef2f7;
    height:100%;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.08);
}

.service-card h5{
    font-size:22px;
    font-weight:700;
    margin-bottom:15px;
}

.service-card p{
    color:#64748b;
    margin-bottom:0;
}

/* Steps */

.step-card{
    background:#fff;
    padding:35px 25px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    border:1px solid #eef2f7;
    transition:.3s;
    height:100%;
}

.step-card:hover{
    transform:translateY(-6px);
}

.step-card span{
    width:70px;
    height:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto auto 20px;
    border-radius:50%;
    background:linear-gradient(135deg,#2563eb,#3b82f6);
    color:#fff;
    font-weight:700;
    font-size:24px;
}

.step-card h5{
    font-weight:700;
    margin-bottom:15px;
}

.step-card p{
    color:#64748b;
}

.step-card ul{
    margin-top:15px;
}

/* Lists */

.custom-list{
    padding-left:20px;
}

.custom-list li{
    margin-bottom:12px;
    color:#475569;
}

/* FAQ */

.accordion-item{
    border:none;
    margin-bottom:15px;
    border-radius:15px !important;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.accordion-button{
    font-weight:600;
    padding:20px;
}

.accordion-button:not(.collapsed){
    background:#2563eb;
    color:#fff;
}

.accordion-body{
    color:#64748b;
    line-height:1.8;
}

/* CTA */

.cta-box{
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    padding:60px;
    border-radius:25px;
    color:#fff;
    text-align:center;
}

.cta-box h2{
    font-size:42px;
    font-weight:800;
}

.cta-box p{
    font-size:18px;
    opacity:.9;
}

/* Buttons */

.btn-primary-custom{
    background:#2563eb;
    color:#fff;
    border:none;
    padding:14px 30px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.btn-primary-custom:hover{
    background:#1d4ed8;
    color:#fff;
}

/* Responsive */

@media(max-width:991px){

    .ipl-title{
        font-size:38px;
    }

    .section-title{
        font-size:28px;
    }

}

@media(max-width:767px){

    .ipl-title{
        font-size:30px;
    }

    .ipl-subtitle{
        font-size:16px;
    }

    .content-card{
        padding:25px;
    }

    .cta-box{
        padding:40px 25px;
    }

    .cta-box h2{
        font-size:30px;
    }

}








/* ===================================
   TIGEREXCH247 PREMIUM PAGE CSS
=================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root{
    --primary:#ffb300;
    --primary-dark:#ff9800;
    --secondary:#111827;
    --text:#475569;
    --heading:#0f172a;
    --white:#ffffff;
    --border:#e5e7eb;
    --bg:#f8fafc;
}

body{
    font-family:'Poppins',sans-serif;
    background:var(--bg);
    color:var(--text);
    line-height:1.8;
}

/* =====================
   SECTION
===================== */

.tiger-section{
    position:relative;
    overflow:hidden;
}

/* =====================
   HERO
===================== */

.hero-card{
    background:#fff;
    padding:70px 50px;
    border-radius:30px;
    box-shadow:0 20px 60px rgba(0,0,0,.06);
    border:1px solid var(--border);
    position:relative;
    overflow:hidden;
}

.hero-card::before{
    content:'';
    position:absolute;
    top:-100px;
    right:-100px;
    width:250px;
    height:250px;
    background:rgba(255,179,0,.08);
    border-radius:50%;
}

.hero-card::after{
    content:'';
    position:absolute;
    bottom:-80px;
    left:-80px;
    width:180px;
    height:180px;
    background:rgba(255,179,0,.05);
    border-radius:50%;
}

.page-badge{
    display:inline-block;
    background:#fff7e6;
    color:#b45309;
    padding:10px 22px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:20px;
}

.hero-title{
    font-size:52px;
    font-weight:800;
    color:var(--heading);
    line-height:1.2;
    margin-bottom:25px;
}

.hero-text{
    font-size:17px;
    color:var(--text);
    max-width:950px;
    margin:0 auto 18px;
}

/* =====================
   TITLES
===================== */

.section-title{
    font-size:40px;
    font-weight:800;
    color:var(--heading);
    margin-bottom:15px;
}

.section-subtitle{
    max-width:850px;
    margin:auto;
    color:#64748b;
}

/* =====================
   CONTENT CARD
===================== */

.content-card{
    background:#fff;
    padding:35px;
    border-radius:24px;
    border:1px solid var(--border);
    box-shadow:0 10px 40px rgba(0,0,0,.05);
    transition:.35s;
}

.content-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.content-card h2,
.content-card h3,
.content-card h4{
    color:var(--heading);
    font-weight:700;
    margin-bottom:18px;
}

.content-card p:last-child{
    margin-bottom:0;
}

/* =====================
   FEATURE BOX
===================== */

.feature-box{
    background:#fff;
    padding:18px;
    text-align:center;
    border-radius:16px;
    border:1px solid var(--border);
    font-weight:600;
    color:#1e293b;
    transition:.3s;
    box-shadow:0 5px 20px rgba(0,0,0,.04);
    height:100%;
}

.feature-box:hover{
    transform:translateY(-5px);
    border-color:var(--primary);
    box-shadow:0 15px 30px rgba(0,0,0,.08);
}

/* =====================
   SERVICE CARD
===================== */

.service-card{
    background:#fff;
    padding:30px;
    border-radius:22px;
    border:1px solid var(--border);
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    text-align:center;
    transition:.35s;
    height:100%;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.service-card h4,
.service-card h5{
    color:var(--heading);
    font-weight:700;
    margin-bottom:12px;
}

.service-card p{
    margin-bottom:0;
}

/* =====================
   STEP CARD
===================== */

.step-card{
    background:#fff;
    padding:35px 25px;
    border-radius:24px;
    border:1px solid var(--border);
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.35s;
    height:100%;
}

.step-card:hover{
    transform:translateY(-8px);
}

.step-card span{
    width:75px;
    height:75px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto auto 20px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--primary),var(--primary-dark));
    color:#fff;
    font-size:24px;
    font-weight:700;
}

.step-card h5{
    font-weight:700;
    color:var(--heading);
    margin-bottom:15px;
}

/* =====================
   LISTS
===================== */

.custom-list{
    padding-left:18px;
    margin-bottom:0;
}

.custom-list li{
    margin-bottom:12px;
    color:#475569;
}

/* =====================
   FAQ
===================== */

.accordion-item{
    border:none !important;
    margin-bottom:18px;
    border-radius:18px !important;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.accordion-button{
    padding:22px;
    font-weight:600;
    font-size:16px;
    background:#fff;
}

.accordion-button:not(.collapsed){
    background:linear-gradient(135deg,var(--primary),var(--primary-dark));
    color:#fff;
    box-shadow:none;
}

.accordion-button:focus{
    box-shadow:none;
}

.accordion-body{
    padding:22px;
    color:#64748b;
    background:#fff;
}

/* =====================
   CTA
===================== */

.cta-box{
    padding:70px 50px;
    border-radius:30px;
    text-align:center;
    background:linear-gradient(
        135deg,
        #ffb300,
        #ff9800
    );
    color:#fff;
    box-shadow:0 25px 60px rgba(255,152,0,.35);
}

.cta-box h2{
    font-size:48px;
    font-weight:800;
    margin-bottom:20px;
}

.cta-box p{
    max-width:900px;
    margin:auto auto 15px;
    color:rgba(255,255,255,.95);
}

.cta-box .btn{
    border-radius:50px;
    font-weight:600;
    padding:14px 35px;
}

/* =====================
   ANIMATIONS
===================== */

.content-card,
.feature-box,
.service-card,
.step-card{
    animation:fadeUp .6s ease;
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(25px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* =====================
   RESPONSIVE
===================== */

@media(max-width:991px){

    .hero-title{
        font-size:40px;
    }

    .section-title{
        font-size:32px;
    }

    .hero-card{
        padding:50px 30px;
    }

}

@media(max-width:767px){

    .hero-title{
        font-size:30px;
    }

    .section-title{
        font-size:26px;
    }

    .hero-card{
        padding:35px 20px;
    }

    .content-card{
        padding:25px;
    }

    .cta-box{
        padding:50px 25px;
    }

    .cta-box h2{
        font-size:30px;
    }

}






.policy-section{
    background:#f8fafc;
}

.policy-header{
    max-width:850px;
    margin:auto;
    margin-bottom:50px;
}

.policy-badge{
    background:#fff3cd;
    color:#b45309;
    padding:8px 18px;
    border-radius:50px;
    font-weight:600;
    display:inline-block;
    margin-bottom:15px;
}

.policy-header h1{
    font-size:42px;
    font-weight:700;
    color:#111827;
    margin-bottom:20px;
}

.policy-header p{
    color:#6b7280;
    font-size:17px;
    line-height:1.9;
}

.notice-box{
    background:#fff8e6;
    border-left:5px solid #f59e0b;
    padding:20px;
    border-radius:12px;
    margin-bottom:30px;
}

.policy-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    margin-bottom:25px;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
}

.policy-card h2{
    color:#111827;
    font-size:28px;
    margin-bottom:20px;
    font-weight:700;
}

.policy-card h5{
    margin-top:25px;
    margin-bottom:15px;
    font-weight:600;
    color:#f59e0b;
}

.policy-card p{
    color:#6b7280;
    line-height:1.9;
}

.policy-card ul{
    padding-left:20px;
}

.policy-card ul li{
    margin-bottom:10px;
    color:#374151;
}

.final-note{
    background:linear-gradient(135deg,#111827,#1f2937);
    color:#fff;
    padding:40px;
    border-radius:20px;
    margin-top:40px;
}

.final-note h3{
    margin-bottom:15px;
    font-weight:700;
}

.final-note p{
    margin:0;
    line-height:1.9;
    color:#e5e7eb;
}

@media(max-width:768px){

    .policy-header h1{
        font-size:32px;
    }

    .policy-card{
        padding:25px;
    }

}






.blog-section{
    background:#f8fafc;
}

.page-badge{
    background:#fff7e0;
    color:#b8860b;
    padding:8px 18px;
    border-radius:50px;
    font-weight:600;
}

.page-title{
    font-size:48px;
    font-weight:800;
    color:#111827;
}

.page-desc{
    max-width:700px;
    margin:auto;
    color:#6b7280;
}

.featured-blog{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.featured-img{
    height:100%;
    min-height:420px;
    object-fit:cover;
}

.featured-content{
    padding:50px;
}

.blog-category{
    display:inline-block;
    background:#fff7e0;
    color:#b8860b;
    padding:8px 16px;
    border-radius:30px;
    font-size:14px;
    margin-bottom:15px;
}

.blog-btn{
    background:#d4af37;
    color:#fff;
    padding:12px 28px;
    border-radius:50px;
}

.blog-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    height:100%;
    transition:.3s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.blog-card:hover{
    transform:translateY(-8px);
}

.blog-card img{
    width:100%;
    height:230px;
    object-fit:cover;
}

.blog-content{
    padding:25px;
}

.blog-content h3{
    font-size:22px;
    font-weight:700;
    margin:15px 0;
    color:#111827;
}

.blog-content p{
    color:#6b7280;
}

.blog-content a{
    color:#d4af37;
    text-decoration:none;
    font-weight:600;
}

.custom-pagination .page-link{
    border:none;
    margin:0 5px;
    border-radius:10px;
    color:#111827;
}

.custom-pagination .active .page-link{
    background:#d4af37;
    color:#fff;
}




.blog-details-section{
    background:#f8fafc;
}

.article-hero{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.article-meta{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:20px;
}

.category-badge{
    background:#fff7e0;
    color:#b8860b;
    padding:6px 14px;
    border-radius:30px;
    font-size:14px;
}

.article-hero h1{
    font-size:48px;
    font-weight:800;
    margin-bottom:20px;
}

.article-subtitle{
    color:#6b7280;
    font-size:18px;
}

.hero-image{
    width:100%;
    border-radius:15px;
    margin-top:30px;
}

.article-content{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.article-content h2{
    margin-top:35px;
    margin-bottom:15px;
    font-weight:700;
}

.article-content p{
    line-height:1.9;
    color:#4b5563;
}

.article-content ul li{
    margin-bottom:10px;
}

blockquote{
    background:#fff7e0;
    border-left:4px solid #d4af37;
    padding:20px;
    border-radius:10px;
    margin:30px 0;
}

.info-box{
    background:#f9fafb;
    padding:20px;
    border-radius:12px;
    margin-bottom:15px;
}

.factor-card{
    background:#fff;
    padding:20px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.sidebar-card{
    background:#fff;
    padding:25px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.recent-post{
    display:flex;
    gap:12px;
    margin-bottom:18px;
}

.recent-post img{
    width:80px;
    height:70px;
    object-fit:cover;
    border-radius:10px;
}

.category-list{
    list-style:none;
    padding:0;
}

.category-list li{
    padding:10px 0;
    border-bottom:1px solid #eee;
}

.breadcrumb-wrap{
    font-size:14px;
}

.breadcrumb-wrap a{
    text-decoration:none;
    color:#b8860b;
}