/* custom.css - Additional styles for BrandRank */

/* Import Inter font with all weights */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* Bhim UPI Color Scheme */
:root {
    --bhim-green: #4CAF50;
    --bhim-orange: #FF9800;
    --bhim-white: #ffffff;
    --bhim-light-green: #e8f5e9;
    --bhim-light-orange: #fff3e0;
}

/* Apply Inter font to everything as default */
* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Headings - Like your screenshot */
h1, .h1 {
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h2, .h2 {
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

h3, .h3 {
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

/* Paragraphs */
p {
    font-weight: 400;
    line-height: 1.6;
    color: #4a5568;
}

/* Small text */
small, .text-small {
    font-weight: 400;
    font-size: 0.875rem;
}

/* Custom classes for Bhim UPI colors */
.bg-bhim-green {
    background-color: var(--bhim-green) !important;
}

.bg-bhim-orange {
    background-color: var(--bhim-orange) !important;
}

.text-bhim-green {
    color: var(--bhim-green) !important;
}

.text-bhim-orange {
    color: var(--bhim-orange) !important;
}

/* Gradient backgrounds */
.gradient-bhim {
    background: linear-gradient(135deg, var(--bhim-green) 0%, var(--bhim-orange) 100%);
}

/* Card hover effects with Bhim colors */
.card:hover {
    border-color: var(--bhim-green);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.15);
}

/* Button styles with Bhim colors */
.btn-bhim-primary {
    background: linear-gradient(135deg, var(--bhim-green) 0%, var(--bhim-orange) 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.btn-bhim-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
    color: white;
}

.btn-bhim-outline {
    border: 2px solid var(--bhim-green);
    color: var(--bhim-green);
    background: transparent;
    padding: 10px 28px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.btn-bhim-outline:hover {
    background: var(--bhim-green);
    color: white;
}

/* Feature cards like in your screenshot */
.feature-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #edf2f7;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(76, 175, 80, 0.1), 0 10px 10px -5px rgba(76, 175, 80, 0.04);
    border-color: var(--bhim-green);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #2d3748;
}

.feature-card p {
    color: #718096;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--bhim-light-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--bhim-green);
    font-size: 1.8rem;
}

/* Section headers - Like "Why Choose us" in your screenshot */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, var(--bhim-green) 0%, var(--bhim-orange) 100%);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: #718096;
    max-width: 700px;
    margin: 0 auto;
}

/* Stats/Counters */
.counter-item {
    text-align: center;
    padding: 2rem;
}

.counter-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--bhim-green);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.counter-label {
    font-size: 1rem;
    font-weight: 500;
    color: #4a5568;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonial cards */
.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #edf2f7;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.25rem;
}

.testimonial-position {
    font-size: 0.875rem;
    color: #718096;
}

/* Animation classes */
.fade-up {
    animation: fadeUp 0.6s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive typography */
@media (max-width: 768px) {
    h1, .h1 {
        font-size: 2.2rem;
    }

    h2, .h2 {
        font-size: 1.8rem;
    }

    h3, .h3 {
        font-size: 1.4rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .counter-number {
        font-size: 2.5rem;
    }
}

/* Print styles */
@media print {
    .navbar, .footer, .back-to-top, .preloader {
        display: none !important;
    }
}
