/*
Theme Name: newcon
Author: Vikas Panchal
Author URI: https://vikaspanchal.vercel.app/
Description: The Newcon Group is committed to shaping a sustainable and progressive future with a pan-India vision. We continuously innovate, embrace cutting-edge technology, and uphold the highest standards of quality and sustainability.
Version: 1.0
*/

/* Hide Google default icon */
.goog-te-gadget-icon {
    display: none;
}

/* Remove ugly Google styling */
.goog-te-gadget-simple {
    background: transparent !important;
    border: none !important;
}

/* Main container */
#google_translate_element {
    display: inline-block;
    font-family: inherit;
}

/* Button styling */
#google_translate_element .goog-te-gadget-simple a {
    display: flex;
    align-items: center;
    background: #ffffff;
    /* gap: 8px;
    padding: 8px 14px;
    
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: all 0.25s ease; */
}

/* Hover effect */
#google_translate_element .goog-te-gadget-simple a:hover {
    background: #f3f4f6;
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

/* Dropdown arrow */
#google_translate_element span[aria-hidden="true"] {
    font-size: 12px;
    color: #555;
    margin-left: 4px;
}

/* Remove vertical separator */
.goog-te-gadget-simple span[style*="border-left"] {
    display: none !important;
}

/* Hide top translate bar */
.goog-te-banner-frame {
    display: none !important;
}

body {
    top: 0 !important;
}

/* Active menu item styling - matches logo transparent background */
.main-menu .current-menu-item > a,
.mobile-menu .current-menu-item > a {
    background: rgba(255, 255, 255, 0.075) !important;
    /* padding: 3px 8px !important; */
    border-radius: 5px !important;
    backdrop-filter: blur(10px);
}

/* Ensure visibility on scrolled white header */
header.scrolled .main-menu .current-menu-item > a {
    background: rgba(0, 0, 0, 0.15) !important;
}


/* /////////////////////////// */

/* ===== COMMENTS WRAPPER ===== */
#comments {
    background: #fff;
    border-radius: 14px;
    padding: 30px;
    margin-top: 40px;
    border: 1px solid #e5e5e5;
}

/* ===== TITLE ===== */
#comments h2,
#comments h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    color: #000;
}

/* ===== COMMENT LIST ===== */
.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ===== SINGLE COMMENT ===== */
.comment {
    display: flex;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

/* ===== AVATAR ===== */
.comment .avatar {
    border-radius: 50%;
    width: 48px;
    height: 48px;
    filter: grayscale(100%);
}

/* ===== BODY ===== */
.comment-body {
    flex: 1;
}

/* ===== AUTHOR ===== */
.comment-author {
    font-weight: 600;
    color: #000;
}

/* ===== META ===== */
.comment-meta {
    font-size: 13px;
    color: #777;
    margin-bottom: 6px;
}

/* ===== COMMENT TEXT ===== */
.comment-content {
    font-size: 15px;
    color: #222;
    line-height: 1.6;
}

/* ===== REPLY ===== */
.reply a {
    font-size: 13px;
    color: #000;
    text-decoration: underline;
}

.reply a:hover {
    opacity: 0.6;
}

/* ===== FORM ===== */
#respond {
    margin-top: 30px;
}

/* TEXTAREA */
#comment {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 12px;
    font-size: 14px;
    background: #fff;
    color: #000;
}

/* INPUTS */
#respond input[type="text"],
#respond input[type="email"],
#respond input[type="url"] {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    background: #fff;
    color: #000;
}

/* BUTTON */
#respond input[type="submit"] {
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

#respond input[type="submit"]:hover {
    background: #333;
}

/* ===== MOBILE ===== */
@media (max-width: 600px) {
    .comment {
        flex-direction: column;
    }
}