:root {
    --tulip-tree: #EFAA36;
    --thunderbird: #D01D0D;
    --bianca: #FBF7EF;
    --mojo: #C35637;
    --dark-overlay: rgba(0, 0, 0, 0.7);
    --section-padding: 100px 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    background-color: var(--bianca);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #222;
}

.btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border-radius: 4px;
    padding: 12px 30px;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
}

.btn-thunderbird {
    background-color: var(--thunderbird);
    color: white;
}

.btn-thunderbird:hover {
    background-color: var(--mojo);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline-thunderbird {
    border: 2px solid var(--thunderbird);
    color: var(--thunderbird);
}

.btn-outline-thunderbird:hover {
    background-color: var(--thunderbird);
    color: white;
}

/* Announcement Bar */
.announcement-bar {
    background-color: var(--thunderbird);
    color: white;
    padding: 8px 0;
    font-size: 14px;
    position: sticky;
    top: 0;
    z-index: 1050;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.announcement-bar a {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.announcement-bar a:hover {
    color: var(--tulip-tree);
}

.announcement-bar .social-icons a {
    margin-left: 10px;
    font-size: 16px;
}

.announcement-bar .translate-container {
    display: none;
}

/* Navigation */
.navbar {
    background-color: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: sticky;
    top: 40px;
    z-index: 1040;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.95);
}

.navbar-brand img {
    height: 50px;
}

.navbar-brand spam {
    font-size: 25px;
}

.navbar-nav .nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #333;
    margin: 0 8px;
    position: relative;
    padding: 5px 0;
}

.navbar-nav .nav-link:hover, 
.navbar-nav .nav-link.active {
    color: var(--thunderbird);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--thunderbird);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar .btn-call {
    background-color: var(--thunderbird);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
}

.navbar .btn-call:hover {
    background-color: var(--mojo);
    transform: scale(1.05);
}

.navbar .translate-container {
    display: block;
}

/* ===== CUSTOM TRANSLATION DROPDOWN - ZERO GOOGLE BRANDING ===== */
.custom-translate-dropdown {
    position: relative;
    z-index: 1060;
}

.custom-translate-dropdown select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23555' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px;
    padding-right: 2.5rem;
    font-weight: 500;
    transition: all 0.2s;
}

.custom-translate-dropdown select:hover {
    border-color: var(--secondary) !important;
    box-shadow: 0 0 0 3px rgba(239, 170, 54, 0.15);
}

.custom-translate-dropdown select:focus {
    box-shadow: 0 0 0 3px rgba(208, 29, 13, 0.2) !important;
    border-color: var(--primary) !important;
}

/* Mobile dropdown styling */
.announcement-bar .custom-translate-dropdown select {
    background-color: rgba(255,255,255,0.15) !important;
    border: 1px solid rgba(255,255,255,0.3) !important;
    color: white !important;
    font-weight: 500;
}

.announcement-bar .custom-translate-dropdown select option {
    background-color: white !important;
    color: #333 !important;
}

/* Attribution styling (REQUIRED BY GOOGLE TOS) */
.custom-translate-dropdown small {
    font-size: 0.7rem;
    line-height: 1;
    display: block !important;
    text-align: center;
    margin-top: 2px;
}

/* ===== HIDE ALL GOOGLE ELEMENTS PERMANENTLY ===== */
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
#goog-gt-tt,
.goog-te-banner-frame-wrapper,
body > .skiptranslate,
#google_translate_element,
iframe.goog-te-menu-frame,
.goog-te-menu-frame,
.goog-te-combo,
.goog-te-gadget {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

body.skiptranslate {
    top: 0 !important;
    position: static !important;
    margin-top: 0 !important;
    overflow: visible !important;
    padding-top: 0 !important;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-bg.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-overlay);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 15px;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-btns .btn {
    margin: 0 10px;
    min-width: 180px;
}

/* Section Styling */
.section {
    padding: var(--section-padding);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background-color: var(--tulip-tree);
    border-radius: 3px;
}

.section-title p {
    color: #666;
    margin-top: 15px;
    font-size: 1.1rem;
}

/* Why Choose Us */
.feature-item {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}

.feature-icon {
    min-width: 60px;
    height: 60px;
    background-color: var(--tulip-tree);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* About Section */
.about-content {
    padding-right: 30px;
}

.about-images {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.about-images img {
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.partner-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 25px;
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.partner-img {
    height: 200px;
    border-radius: 4px;
    object-fit: cover;
    margin-right: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.partner-details h4 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: #496FC9;
}

.partner-details p {
    margin-bottom: 3px;
    font-weight: 500;
}

/* Counter Section */
.counter-section {
    background: linear-gradient(var(--thunderbird), var(--thunderbird));
    color: white;
    text-align: center;
}

.counter-item {
    padding: 20px;
    margin-top: 20px;
}

.counter-number {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--tulip-tree);
    margin: 15px 0;
}

.counter-label {
    font-size: 1.3rem;
    font-weight: 600;
}

/* Services Section */
.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--thunderbird);
}

.service-list {
    list-style-type: none;
    padding-left: 0;
    margin: 15px 0;
}

.service-list li {
    padding: 5px 0;
    position: relative;
    padding-left: 25px;
}

.service-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--tulip-tree);
}

/* Industries Section */
.industries-carousel .item {
    text-align: center;
    padding: 20px;
}

.industry-img {
    height: 100px;
    width: 100px;
    margin: 0 auto 15px;
    border-radius: 59%;
    object-fit: cover;
    border: 3px solid var(--tulip-tree);
    padding: 5px;
    background: white;
}

.industry-name {
    font-weight: 600;
    font-size: 1.2rem;
    margin-top: 10px;
}

/* Parallax Section */
.parallax-section {
    background: linear-gradient(var(--dark-overlay), var(--dark-overlay)), url('../../assets/img/best-semi-skilled-manpower-supply-services-in-bengaluru-apex-manpower-solutions.png') center/cover no-repeat fixed;
    background-attachment: fixed;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.parallax-section h2 {
    font-size: 2.8rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: rgba(255, 255, 255, 0.8);
    padding-top: 70px;
}

.footer .logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--tulip-tree);
}

.footer p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.footer-contact-item {
    display: flex;
    margin-bottom: 12px;
}

.footer-contact-icon {
    min-width: 30px;
    margin-right: 15px;
    color: var(--tulip-tree);
    font-size: 18px;
    margin-top: 3px;
}

.footer-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    margin-bottom: 15px;
    border-radius: 4px;
    padding: 12px 15px;
}

.footer-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-form textarea.form-control {
    min-height: 120px;
}

.footer-form .btn {
    background-color: var(--thunderbird);
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 600;
    width: 100%;
    margin-top: 10px;
}

.footer-form .btn:hover {
    background-color: var(--mojo);
}

.map-container {
    height: 200px;
    background-color: #222;
    border-radius: 8px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.footer-bottom {
    background-color: #0f0f0f;
    padding: 20px 0;
    margin-top: 50px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-bottom a {
    color: var(--tulip-tree);
    text-decoration: none;
    font-weight: 600;
}

.footer-bottom a:hover {
    color: var(--thunderbird);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1060;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    animation: pulse 2s infinite;
    text-decoration: none;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Modal Styling */
.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 50px rgba(0,0,0,0.25);
}

.modal-header {
    background: linear-gradient(135deg, var(--thunderbird) 0%, var(--mojo) 100%);
    color: white;
    border-radius: 15px 15px 0 0 !important;
    border: none;
    padding: 25px;
}

.modal-title {
    font-weight: 600;
    font-size: 1.8rem;
}

.modal-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-top: 5px;
}

.btn-close {
    filter: invert(1);
}

.modal-body {
    padding: 35px;
}

.form-label {
    font-weight: 500;
    margin-bottom: 8px;
    color: #444;
}

.form-control {
    border-radius: 10px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(239, 170, 54, 0.2);
}

.form-control.error {
    border-color: #dc3545;
    background-color: #fff5f5;
}

.form-control.error:focus {
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.2);
}

.btn-submit {
    background: linear-gradient(135deg, var(--thunderbird) 0%, var(--mojo) 100%);
    border: none;
    color: white;
    font-weight: 600;
    padding: 14px;
    border-radius: 50px;
    font-size: 1.1rem;
    width: 100%;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: wait;
}

.btn-submit .spinner-border {
    width: 1.5rem;
    height: 1.5rem;
    border-width: 0.2em;
    display: none;
}

.btn-submit.loading .spinner-border {
    display: inline-block;
    margin-right: 10px;
}

.success-message {
    text-align: center;
    padding: 30px;
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 10px;
    margin-top: 15px;
    display: none;
}

.success-message i {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 991px) {
    :root {
        --section-padding: 70px 0;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content p {
        font-size: 1.3rem;
    }
    
    .about-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .partner-card {
        flex-direction: column;
        text-align: center;
    }
    
    .partner-img {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .counter-number {
        font-size: 2.5rem;
    }
    
    .announcement-bar .translate-container {
        display: block;
        text-align: center;
        margin-top: 8px;
    }
    
    .announcement-bar .phone-number,
    .announcement-bar .service-text {
        display: none;
    }
    
    .announcement-bar .translate-container select {
        background-color: rgba(255, 255, 255, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: white;
        padding: 5px 10px;
        border-radius: 4px;
        width: auto;
    }
    
    .navbar .translate-container {
        display: none;
    }
    
    .navbar-toggler {
        border: none;
        font-size: 1.25rem;
    }
}

@media (max-width: 767px) {
    :root {
        --section-padding: 50px 0;
    }
    
    .hero-content h1 {
        font-size: 2.3rem;
    }
    
    .hero-content p {
        font-size: 1.15rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .counter-number {
        font-size: 2rem;
    }
    
    .counter-label {
        font-size: 1.1rem;
    }
    
    .service-content h3 {
        font-size: 1.6rem;
    }
    
    .parallax-section h2 {
        font-size: 2.2rem;
    }
    
    .hero-btns .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
        min-width: auto;
    }
    
    .footer .mb-4 {
        margin-bottom: 30px !important;
    }
}

@media (max-width: 769px) {
    .navbar-brand spam {
        font-size: 12px;
        font-weight: bold;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .counter-number {
        font-size: 1.8rem;
    }
    
    .navbar-brand img {
        height: 40px;
    }
    
    .modal-body {
        padding: 20px;
    }
}