/* assets/css/style.css */
:root {
    --primary: #003366;
    /* Deep Professional Blue */
    --primary-dark: #002244;
    --accent: #E31E24;
    /* Vibrant Red */
    --accent-dark: #C1121F;
    --text-main: #2D3436;
    --text-muted: #636E72;
    --light-bg: #F9FBFD;
    --white: #FFFFFF;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --glass: rgba(255, 255, 255, 0.8);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

/* --- Top Bar --- */
.top-bar {
    background-color: var(--primary);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.85rem;
    font-weight: 500;
}

.text-accent {
    color: var(--accent);
}

.social-links a {
    color: var(--white);
    margin-left: 15px;
    opacity: 0.8;
    transition: var(--transition);
}

.social-links a:hover {
    opacity: 1;
    color: var(--accent);
}

/* --- Google Translate Styling --- */
#google_translate_element {
    background: transparent;
    padding: 0;
    border: none;
    display: inline-flex;
    align-items: center;
}

/* Hide Google branding/text */
.goog-te-gadget {
    color: transparent !important;
    font-size: 0 !important;
}

.goog-te-gadget>span {
    display: none !important;
}

.goog-te-gadget-icon {
    display: none !important;
}

/* Style the Dropdown */
.goog-te-combo {
    color: var(--primary);
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 5px 15px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    outline: none;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    appearance: none;
    /* Remove default arrow if we want custom, but native is safer for now */
    -webkit-appearance: none;
    padding-right: 30px;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23003366%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 10px top 50%;
    background-size: 10px auto;
}

.goog-te-combo:hover {
    background-color: #f8f9fa;
}

/* Fix Google Translate Dropdown Scroll */
.goog-te-menu-frame {
    max-height: 400px !important;
    overflow-y: scroll !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
    border-radius: 10px !important;
}

.goog-te-menu2 {
    max-height: 100% !important;
    overflow: hidden !important;
    /* Let parent scroll */
    width: 100% !important;
    box-sizing: border-box;
}

/* Force vertical stacking */
.goog-te-menu2 tr {
    display: block !important;
}

.goog-te-menu2 td {
    display: block !important;
    width: 100% !important;
    padding: 10px 15px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.goog-te-menu2 td a {
    display: block !important;
}

.goog-te-menu2 td:last-child {
    border-bottom: none !important;
}

/* --- Navbar --- */
.navbar {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    transition: var(--transition);
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.brand-shi {
    color: var(--primary);
}

.brand-bhi {
    color: var(--accent);
}

.brand-group {
    color: var(--text-main);
    font-weight: 400;
}

.nav-link {
    color: var(--primary) !important;
    font-weight: 600;
    margin-left: 20px;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent) !important;
}

/* --- Hero Section --- */
.hero-slide {
    height: 85vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 25, 50, 0.9) 0%, rgba(0, 25, 50, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 35px;
    opacity: 0.9;
    max-width: 600px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    background: rgba(0, 0, 0, 0.25);
    display: inline-block;
    padding: 10px 15px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

/* --- Buttons --- */
.btn-premium {
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: var(--transition);
    border: none;
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.3);
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(227, 30, 36, 0.4);
    color: var(--white);
}

.btn-outline-white {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
}

/* --- Section Styling --- */
.section-padding {
    padding: 100px 0;
}

.section-title-wrapper {
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 10px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

/* --- Why Choose Us Cards --- */
.feature-card {
    background: var(--white);
    padding: 45px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
    border-bottom: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-bottom: 4px solid var(--accent);
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--light-bg);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon-wrapper {
    background: var(--accent);
}

.feature-icon-wrapper i {
    font-size: 1.8rem;
    color: var(--accent);
}

.feature-card:hover .feature-icon-wrapper i {
    color: var(--white);
}

/* --- Contact Page --- */
.contact-info-box {
    background: var(--primary);
    color: white;
    padding: 50px;
    border-radius: 30px;
    height: 100%;
    box-shadow: 0 20px 50px rgba(0, 51, 102, 0.15);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.contact-icon-circle {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
    margin-right: 20px;
}

.form-premium-input {
    border: 2px solid #eef2f6;
    border-radius: 12px;
    padding: 15px 20px;
    transition: var(--transition);
    background: #fbfcfe;
    width: 100%;
}

.form-premium-input:focus {
    border-color: var(--accent);
    background: white;
    box-shadow: 0 10px 20px rgba(227, 30, 36, 0.05);
    outline: none;
}

.contact-form-card {
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

/* --- About Image --- */
.about-img-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-img-wrapper::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
}

/* --- Counters / Stats --- */
.stats-section {
    background-color: var(--primary);
    color: var(--white);
    padding: 80px 0;
}

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--white);
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* --- Footer --- */
footer {
    background-color: #0c1a2e;
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-title {
    font-size: 1.25rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
    padding-top: 30px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }

    .contact-form-card,
    .contact-info-box {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-padding {
        padding: 60px 0;
    }

    .hero-slide {
        height: 70vh;
    }
}