/*
Theme Name: Indian Movers Federation Custom Theme
Theme URI: https://indianmoverfederation.com
Author: Antigravity
Author URI: 
Description: A premium custom WordPress theme for Indian Movers Federation, converted from a static HTML website.
Version: 1.1.0
Text Domain: imf-custom-theme
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-blue: #00179f;
    --secondary-blue: #0033cc;
    --accent: #ff6b00;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius-md: 12px;
}

body {
    font-family: 'Inter', sans-serif !important;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif !important;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: -0.02em;
}

/* Micro animations & Card Hover Effects */
.feature-item,
.blog-item,
.team-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 30px;
    height: 100%;
}

.feature-item:hover,
.blog-item:hover,
.team-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 23, 159, 0.1);
}

.btn-primary {
    background-color: var(--primary-blue) !important;
    border-color: var(--primary-blue) !important;
    border-radius: 50px !important;
    padding: 12px 30px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 14px 0 rgba(0, 23, 159, 0.39) !important;
}

.btn-primary:hover {
    background-color: var(--secondary-blue) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 23, 159, 0.4) !important;
}

/* Mobile Fixes */
.navbar-brand img,
.mobile-nav .logo img {
    max-width: 150px !important;
    height: auto;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

@media (max-width: 767px) {
    .mobile-nav {
        padding: 15px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: var(--shadow-sm);
    }

    .mean-container .mean-bar {
        background: transparent;
        padding: 0;
        display: block !important;
        min-height: auto;
    }

    .mean-container a.meanmenu-reveal {
        color: var(--primary-blue) !important;
        top: -42px;
        right: 20px;
    }
}

/* Blog Post Images - Consistent Size and Aspect Ratio */
.blog-image {
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.blog-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.blog-item:hover .blog-image img {
    transform: scale(1.05);
}