body {
    font-family: 'Inter', sans-serif;
    background-color: #f7f9fc; /* Light premium gray background */
}

/* Navbar Styling */
.navbar {
    background: #ffffff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.04);
    padding: 15px 0;
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

/* Hero Section */
.hero-section {
    padding: 120px 0 60px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.hero-section h1 {
    color: #2d3748;
    font-weight: 800;
}

/* Tool Cards */
.tool-card {
    border: none;
    border-radius: 12px;
    background: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.05);
}

.tool-card:hover {
    transform: translateY(-8px); /* Card uthega */
    box-shadow: 0 15px 30px rgba(0,0,0,0.08); /* Shadow badhegi */
    border-color: rgba(227, 52, 47, 0.3); /* Red border halka sa */
}

.icon-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.card-title {
    font-weight: 700;
    margin-top: 10px;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 40px 0;
    }
    .hero-section h1 {
        font-size: 2rem;
    }
}

/* =========================================
   GOOGLE TRANSLATE BANNER FIX (The Magic)
   ========================================= */

/* 1. Hide the blue top banner frame completely */
.goog-te-banner-frame {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
    border: none !important;
}

/* 2. Hide the iframe specifically if Google injects it */
iframe.goog-te-banner-frame {
    display: none !important;
}

/* 3. Force Body to stay at top (Prevent shifting down) */
body {
    top: 0px !important; 
    position: static !important; 
    min-height: auto !important;
}

/* 4. Hide tooltips and hover popups */
.goog-tooltip, 
.goog-te-balloon-frame, 
.goog-text-highlight {
    display: none !important;
    visibility: hidden !important;
}

/* 5. Hide original Google element (We use custom dropdown) */
#google_translate_element {
    display: none !important;
}

/* 6. Remove margin added by Google */
.skiptranslate {
    display: none !important;
}