@import url('https://fonts.googleapis.com/css2?family=Bree+Serif&family=Caveat:wght@400;700&family=Lobster&family=Monoton&family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display+SC:ital,wght@0,400;0,700;1,700&family=Playfair+Display:ital,wght@0,400;0,700;1,700&family=Roboto:ital,wght@0,400;0,700;1,400;1,700&family=Source+Sans+Pro:ital,wght@0,400;0,700;1,700&family=Work+Sans:ital,wght@0,400;0,700;1,700&display=swap');

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: border-box;
}

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: "Lato", sans-serif;
    background-color: #ffffff;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    font-size: 16px; /* Base font size increased from default 14px */
}

/* Override small inline font sizes */
[style*="font-size: 12px"] {
    font-size: 16px !important;
}

[style*="font-size: 10px"] {
    font-size: 14px !important;
}

[style*="font-size: 8px"] {
    font-size: 12px !important;
}

/* Responsive overrides for inline styles */
@media (max-width: 767px) {
    [style*="font-size: 12px"] {
        font-size: 14px !important;
    }

    [style*="font-size: 10px"] {
        font-size: 12px !important;
    }
}

/* Restore proper spacing for text elements */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.25rem;
}

/* Keep blockquote and figure reset */
blockquote, figure {
    margin: 0;
    padding: 0;
}

/* Ensure images are responsive by default */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Fix button and input styling */
button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    margin: 0;
}

/* Remove list styles */
ul, ol {
    list-style: none;
}

/* Restore bullet points for content lists */
.container-fluid ul:not(.navbar-nav):not(.dropdown-menu):not(.footer-section ul):not(.m-0) {
    list-style: disc;
    padding-left: 2rem;
}

.container-fluid ol:not(.navbar-nav):not(.dropdown-menu):not(.footer-section ol):not(.m-0) {
    list-style: decimal;
    padding-left: 2rem;
}

/* Specific styling for content list items */
.container-fluid ul:not(.navbar-nav):not(.dropdown-menu):not(.footer-section ul):not(.m-0) li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.container-fluid ol:not(.navbar-nav):not(.dropdown-menu):not(.footer-section ol):not(.m-0) li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

/* Fix link styling */
a {
    text-decoration: none;
    color: inherit;
}

/* Ensure consistent box-sizing for Bootstrap components */
.container-fluid,
.container,
.row,
[class*="col-"] {
    box-sizing: border-box;
}

/* Cross-browser compatibility fixes */
/* Flexbox fixes for older browsers */
.d-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.flex-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
}

.flex-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
}

.justify-content-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

.justify-content-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
}

.align-items-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}

.flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
}

/* Grid system improvements */
.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

[class*="col-"] {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

/* Responsive breakpoints with improved browser support */
@media (min-width: 576px) {
    .col-sm-1 { -webkit-box-flex: 0; -ms-flex: 0 0 8.333333%; flex: 0 0 8.333333%; max-width: 8.333333%; }
    .col-sm-2 { -webkit-box-flex: 0; -ms-flex: 0 0 16.666667%; flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-sm-3 { -webkit-box-flex: 0; -ms-flex: 0 0 25%; flex: 0 0 25%; max-width: 25%; }
    .col-sm-4 { -webkit-box-flex: 0; -ms-flex: 0 0 33.333333%; flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-sm-6 { -webkit-box-flex: 0; -ms-flex: 0 0 50%; flex: 0 0 50%; max-width: 50%; }
    .col-sm-12 { -webkit-box-flex: 0; -ms-flex: 0 0 100%; flex: 0 0 100%; max-width: 100%; }
}

@media (min-width: 768px) {
    .col-md-1 { -webkit-box-flex: 0; -ms-flex: 0 0 8.333333%; flex: 0 0 8.333333%; max-width: 8.333333%; }
    .col-md-2 { -webkit-box-flex: 0; -ms-flex: 0 0 16.666667%; flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-md-3 { -webkit-box-flex: 0; -ms-flex: 0 0 25%; flex: 0 0 25%; max-width: 25%; }
    .col-md-4 { -webkit-box-flex: 0; -ms-flex: 0 0 33.333333%; flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-md-6 { -webkit-box-flex: 0; -ms-flex: 0 0 50%; flex: 0 0 50%; max-width: 50%; }
    .col-md-9 { -webkit-box-flex: 0; -ms-flex: 0 0 75%; flex: 0 0 75%; max-width: 75%; }
    .col-md-10 { -webkit-box-flex: 0; -ms-flex: 0 0 83.333333%; flex: 0 0 83.333333%; max-width: 83.333333%; }
    .col-md-12 { -webkit-box-flex: 0; -ms-flex: 0 0 100%; flex: 0 0 100%; max-width: 100%; }
}

@media (min-width: 992px) {
    .col-lg-1 { -webkit-box-flex: 0; -ms-flex: 0 0 8.333333%; flex: 0 0 8.333333%; max-width: 8.333333%; }
    .col-lg-2 { -webkit-box-flex: 0; -ms-flex: 0 0 16.666667%; flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-lg-3 { -webkit-box-flex: 0; -ms-flex: 0 0 25%; flex: 0 0 25%; max-width: 25%; }
    .col-lg-4 { -webkit-box-flex: 0; -ms-flex: 0 0 33.333333%; flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-lg-6 { -webkit-box-flex: 0; -ms-flex: 0 0 50%; flex: 0 0 50%; max-width: 50%; }
    .col-lg-12 { -webkit-box-flex: 0; -ms-flex: 0 0 100%; flex: 0 0 100%; max-width: 100%; }
}

@media (min-width: 1200px) {
    .col-xl-1 { -webkit-box-flex: 0; -ms-flex: 0 0 8.333333%; flex: 0 0 8.333333%; max-width: 8.333333%; }
    .col-xl-2 { -webkit-box-flex: 0; -ms-flex: 0 0 16.666667%; flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-xl-3 { -webkit-box-flex: 0; -ms-flex: 0 0 25%; flex: 0 0 25%; max-width: 25%; }
    .col-xl-4 { -webkit-box-flex: 0; -ms-flex: 0 0 33.333333%; flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-xl-5 { -webkit-box-flex: 0; -ms-flex: 0 0 41.666667%; flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-xl-6 { -webkit-box-flex: 0; -ms-flex: 0 0 50%; flex: 0 0 50%; max-width: 50%; }
    .col-xl-7 { -webkit-box-flex: 0; -ms-flex: 0 0 58.333333%; flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-xl-12 { -webkit-box-flex: 0; -ms-flex: 0 0 100%; flex: 0 0 100%; max-width: 100%; }
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #051534;
    transition: background-color 0.3s ease;
}

/* Homepage-specific transparent header */
body.homepage header {
    background-color: transparent;
}

/* Optional: Add a solid color once the user scrolls */
body.homepage.scrolled header,
body.homepage.menu-open header {
    background-color: #051534;
}

.home-banner {
    /* Existing styles if any */
    min-height: 500px;           /* increase to desired height */
    background-size: cover;      /* in case you use a background image */
    background-position: center; /* center the image */
    display: flex;
    align-items: center;         /* vertically center content */
}


.navbar-image {
    width: 300px;
}

@media (max-width: 767px) {
    .navbar-image {
    width: 220px;
}
}

.navbar-brand {
    color: #FFFFFF !important;
    font-size: 28px !important;
    font-weight: bold;
}

.nav-link {
    color: #FFFFFF !important;
    font-weight: 600;
    font-size: 18px;
    padding: 8px 15px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0 5px;
    border-radius: 6px;
    position: relative;
    font-family: "Lato", sans-serif;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Active state for current page */
.nav-link.active {
    color: #47B6BD !important;
    background-color: rgba(71, 182, 189, 0.1);
    font-weight: 700;
}

/* Hover effects */
.nav-link:hover {
    color: #47B6BD !important;
    background-color: rgba(71, 182, 189, 0.1);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(71, 182, 189, 0.2);
}

.nav-link:focus {
    color: #47B6BD !important;
    outline: none;
    box-shadow: 0 0 0 2px rgba(71, 182, 189, 0.3);
}

@media (max-width: 992px) {
    .nav-link {
        text-align: left;
        margin: 2px 0;
        padding: 10px 15px;
    }
}

@media (max-width: 767px) {
    .nav-link {
        margin-left: 10px !important;
        font-size: 16px;
        padding: 8px 15px;
    }
}

/* Special styling for button-style nav links (like Contact) */
.yuda-button.nav-link {
    background-image: linear-gradient(to right, #47B6BD, #104CBA);
    border-radius: 8px;
    color: #FFFFFF !important;
    border: none;
    font-size: 18px;
    transition: all 0.4s ease-in-out;
    text-shadow: none;
}

.yuda-button.nav-link:hover {
    background-image: linear-gradient(to right, #104CBA, #47B6BD);
    color: #FFFFFF !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(71, 182, 189, 0.3);
}

.yuda-button.nav-link.active {
    background-image: linear-gradient(to right, #104CBA, #47B6BD);
    color: #FFFFFF !important;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(71, 182, 189, 0.4);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #47B6BD, #104CBA);
    border: none;
    border-radius: 50%;
    color: #FFFFFF;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(71, 182, 189, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top:hover {
    background: linear-gradient(135deg, #104CBA, #47B6BD);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(71, 182, 189, 0.4);
    color: #FFFFFF;
}

.back-to-top:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(71, 182, 189, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

/* Container and spacing fixes */
.container-fluid {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
}

.container-fluid .row {
    margin-left: 0;
    margin-right: 0;
}

.container-fluid .row > [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
}

/* Content spacing from fixed header */
.content-margintop {
    margin-top: 30px;
}

.home-nav-padding {
    padding-top: 93px;
}

@media (max-width: 767px) {
    .content-margintop {
        margin-top: 78px;
    }

    .home-nav-padding {
        padding-top: 78px;
    }
}

/* Prevent horizontal scroll */
html {
    width: 100%;
}

body {
    width: 100%;
    overflow-x: hidden;
}

/* Fix for sections that might cause overflow */
.row {
    max-width: 100%;
}

[class*="col-"] {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer-section {
    background-image: url("../Images/Group\ 1171274967.png");
    background-color: #051534;
    background-size: cover;
    width: 100%;
}

.footer-logo {
    width: 300px;
}

.footer-logo-text {
    color: #FFFFFF;
    font-weight: bold;
    font-size: 26px;
}

@media (max-width: 992px) {
    .footer-logo {
        width: 250px;
    }

    .footer-logo-text {
        color: #FFFFFF;
        font-weight: bold;
        font-size: 22px;
    }
}

.footer-logo-text:hover {
    color: #FFFFFF;
    text-decoration: none;
}

.footer-heading {
    font-size: 22px;
    color: #FFFFFF;
    font-weight: bold;
}

.footer-text {
    color: #FFFFFF;
    font-size: 16px;
}

/* Justify specific footer paragraphs */
.footer-text.justify-text {
    text-align: justify;
}

.footer-text:hover {
    text-decoration: none;
    color: #decdcd;
}

.footer-section ul {
    list-style: none;
    padding: 0px;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
    line-height: 1.4;
}

.footer-section ul li:last-child {
    margin-bottom: 0;
}

.footer-icons {
    width: 18px;
    height: auto;
    cursor: pointer;
    color: #FFFFFF;
}

.horizontal-line {
    background-color: #2F2F2F;
}

.footer-sections {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.footer-contact-icons {
    width: 15px;
    height: 14px;
}

.copyright-text {
    display: flex;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .footer-heading {
        font-size: 20px;
        text-align: left;
    }

    .footer-sections {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        margin-bottom: 20px;
        text-align: left;
    }

    .footer-section .d-flex.flex-column {
        align-items: flex-start;
        text-align: left;
    }

    /* Footer logo left-aligned on mobile */
    .footer-section .footer-logo-text {
        text-align: left;
        justify-content: flex-start;
    }

    .footer-text {
        text-align: left;
    }

    /* Maintain justify alignment for specific paragraphs on mobile */
    .footer-text.justify-text {
        text-align: justify;
    }

    .footer-section ul {
        text-align: left;
    }

    .footer-section ul li {
        text-align: left;
    }

    /* Social media icons left aligned */
    .footer-section .footer-icons {
        text-align: left;
    }

    /* Social media icons container - more compatible approach */
    .footer-section a[href*="facebook"],
    .footer-section a[href*="twitter"],
    .footer-section a[href*="instagram"] {
        text-align: left;
    }

    .copyright-text {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        text-align: left;
    }
}

@media (max-width: 992px) {
    .footer-text {
        font-size: 16px;
    }
}

.yuda-button {
    background-image: linear-gradient(to right, #47B6BD, #104CBA);
    border-radius: 8px;
    color: #FFFFFF;
    border: none;
    font-size: 16px;
    max-width: max-content;
    max-height: max-content;
    transition: all 0.4s ease-in-out;
    margin-bottom: 0.5rem;
    margin-right: 0.5rem;
    padding: 10px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    line-height: 1.2;
}

.yuda-button:hover {
    color: #FFFFFF !important;
    border: none;
    text-decoration: none !important;
    background-image: linear-gradient(to right, #104CBA, #47B6BD);
}

.yuda-button:focus {
    outline: none;
}

.yuda-outline-button {
    background-color: transparent;
    border-radius: 8px;
    color: #104CBA;
    border: 1px solid #104CBA;
    font-size: 16px;
    max-width: max-content;
    max-height: max-content;
    margin-bottom: 0.5rem;
    margin-right: 0.5rem;
    padding: 10px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    line-height: 1.2;
}

.yuda-outline-button:hover {
    background-color: #104CBA;
    color: #FFFFFF;
    text-decoration: none;
}

.yuda-outline-button:focus {
    outline: none;
}

.yuda-outline-white-button {
    background-color: transparent;
    border-radius: 8px;
    color: #ffffff;
    border: 1px solid #FFFFFF;
    font-size: 16px;
    max-width: max-content;
    max-height: max-content;
    margin-bottom: 0.5rem;
    margin-right: 0.5rem;
    padding: 10px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    line-height: 1.2;
    transition: all 0.4s ease-in-out;
}

.yuda-outline-white-button:hover {
    background-color: #FFFFFF;
    color: #104CBA;
    text-decoration: none;
}

.yuda-outline-white-button:focus {
    outline: none;
}

@media (max-width: 767px) {
    .yuda-button {
        font-size: 14px;
        padding: 8px 14px;
        min-height: 40px;
    }

    .yuda-outline-button {
        font-size: 14px;
        padding: 8px 14px;
        min-height: 40px;
    }

    .yuda-outline-white-button {
        font-size: 14px;
        padding: 8px 14px;
        min-height: 40px;
    }
}

.horizontal-line {
    background-color: #FFFFFF;
}

.horizontal-line-blue {
    background-color: #104CBA;
}

.blue-small-heading {
    color: #104CBA;
    font-size: 20px;
    font-weight: bold;
}

/* Specific alignment for different sections */
/* About Company section - override flex centering for text alignment */
.d-flex.flex-column.justify-content-center .blue-small-heading,
.d-flex.flex-column.justify-content-center .yuda-heading {
    text-align: left;
}

/* Industries section - should be left-aligned */
.row .col-12 .blue-small-heading,
.row .col-12 .yuda-heading {
    text-align: left;
}

/* Services page and specifically centered sections should remain centered */
.d-flex.flex-column.justify-content-center.align-items-center .blue-small-heading,
.d-flex.flex-column.justify-content-center.align-items-center .yuda-heading {
    text-align: center !important;
}

/* Responsive: ensure left alignment on mobile for content sections */
@media (max-width: 767px) {
    .d-flex.flex-column.justify-content-center .blue-small-heading,
    .d-flex.flex-column.justify-content-center .yuda-heading,
    .row .col-12 .blue-small-heading,
    .row .col-12 .yuda-heading {
        text-align: left;
    }
}

.yuda-aboutus-heading {
    font-size: 3rem;       /* increased from 2.5rem */
    color: white;
    line-height: 1.2;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.yuda-text {
    color: #000000;
    font-size: 16px;
    text-align: justify;
    transition: color 0.5s ease;
    margin-bottom: 1rem;
    line-height: 1.6;
}
@media (max-width: 767px) {

    .blue-small-heading {
        color: #104CBA;
        font-size: 18px;
        font-weight: bold;
    }

    .yuda-aboutus-heading {
        font-size: 28px;
        font-weight: bold;
    }

    .yuda-text {
        color: #000000;
        font-size: 14px;
    }
}

.about-us-image-centered {
    width: 60%;
}

.icon-blue-bg {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(to bottom, #1e56d9, #3ec5c3);
}

.aboutus-icon {
    width: 25px;
    height: 25px;
}

.yuda-heading {
    color: #000000;
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.4;
    text-align: center;
}

@media (max-width: 767px) {
    .icon-blue-bg {
        width: 30px;
        height: 30px;
    }

    .aboutus-icon {
        width: 20px;
        height: 20px;
    }

    .yuda-heading {
        font-size: 20px;
    }
}

.blue-background {
    background: linear-gradient(to bottom, #3ec5c3, #1e56d9);
    max-height: max-content;
}

.aboutus-banner {
    background-image: url("../Images/aboutus-bg.png");
    background-size: cover;
}

.yuda-banner-text {
    color: #FFFFFF;
    font-size: 16px;
    text-align: justify;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.yuda-banner-text:hover {
    color: #FFFFFF;
}

.yuda-banner-activepage-text {
    font-size: 18px;
    color: #47B6BD;
    font-weight: bold;
}

.yuda-banner-activepage-text:hover {
    font-size: 18px;
    color: #47B6BD;
}

.yuda-banner-heading {
    color: #FFFFFF;
    font-size: 32px;
    font-weight: bold;
}

.aboutus-blue-icon-bg {
    background-color: #FFFFFF;
    border-radius: 50%;
    width: 45px;
    height: 45px;
}

.aboutus-blue-icon {
    width: 30px;
    height: 30px;
}

.yuda-white-heading {
    color: #FFFFFF;
    font-size: 21px;
}

@media (max-width: 767px) {
    .yuda-banner-text {
        font-size: 16px;
    }

    .yuda-banner-heading {
        font-size: 24px;
    }

    .aboutus-blue-icon-bg {
        max-width: 30px;
        max-height: 30px;
    }

    .aboutus-blue-icon {
        width: 20px;
        height: 20px;
    }

    .yuda-white-heading {
        font-size: 19px;
    }
}

.career-banner {
    background-image: url("../Images/Careers-Bg.png");
    background-size: cover;
}

.custom-select-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.custom-select-wrapper .location-icon {
    position: absolute;
    top: 50%;
    left: 15px;
    font-size: 16px;
    transform: translateY(-50%);
    color: #104CBA;
    pointer-events: none;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    line-height: 1;
}

.custom-select-wrapper .form-control {
    padding-left: 45px;
    padding-right: 35px;
    height: 46px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    background-color: #fff;
    font-size: 16px;
    line-height: 1.8;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'><path fill='%23666' d='M2 0L0 2h4zm0 5L0 3h4z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    padding-top: 8px;
    padding-bottom: 8px;
}

/* Responsive adjustments for dropdown icons */
@media (max-width: 576px) {
    .custom-select-wrapper .location-icon {
        left: 12px;
        font-size: 14px;
        width: 14px;
        height: 14px;
        line-height: 1;
    }

    .custom-select-wrapper .form-control {
        padding-left: 35px;
        padding-right: 30px;
        font-size: 14px;
        height: 40px;
        background-position: right 8px center;
        line-height: 1.6;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .yuda-career-button {
        height: 40px;
        font-size: 14px;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .custom-select-wrapper .location-icon {
        left: 14px;
        font-size: 15px;
        width: 15px;
        height: 15px;
        line-height: 1;
    }

    .custom-select-wrapper .form-control {
        padding-left: 40px;
        padding-right: 32px;
        font-size: 15px;
        height: 40px;
        background-position: right 9px center;
        line-height: 1.7;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .yuda-career-button {
        height: 40px;
        font-size: 15px;
    }
}

@media (min-width: 769px) {
    .custom-select-wrapper .location-icon {
        left: 15px;
        font-size: 16px;
        width: 16px;
        height: 16px;
        line-height: 1;
        top: 21px;
        transform: translateY(-50%);
    }

    .custom-select-wrapper .form-control {
        padding-left: 45px;
        padding-right: 35px;
        font-size: 16px;
        height: 46px;
        background-position: right 10px center;
        line-height: 1.8;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .yuda-career-button {
        height: 46px;
        font-size: 16px;
    }
}

/* Select dropdown focus and hover states */
.custom-select-wrapper .form-control:focus {
    border-color: #104CBA;
    box-shadow: 0 0 0 0.2rem rgba(16, 76, 186, 0.25);
    outline: 0;
}

.custom-select-wrapper .form-control:hover {
    border-color: #104CBA;
}

/* Ensure consistent styling across browsers */
.custom-select-wrapper select {
    cursor: pointer;
}

.custom-select-wrapper select option {
    padding: 10px 12px;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    height: auto;
    min-height: 36px;
}

/* Ensure select text is properly aligned */
.custom-select-wrapper select {
    text-align-last: left;
    padding-top: 10px;
    padding-bottom: 10px;
}

/* Additional alignment fixes */
.custom-select-wrapper {
    overflow: hidden;
    position: relative;
    min-height: 46px;
}

.custom-select-wrapper .location-icon {
    flex-shrink: 0;
    text-align: center;
    max-width: 16px;
    overflow: hidden;
}

/* Ensure proper box-sizing */
.custom-select-wrapper .form-control {
    box-sizing: border-box;
    vertical-align: middle;
    width: 100%;
    min-height: 46px;
}

/* Career banner specific fixes */
.career-banner .custom-select-wrapper {
    margin-bottom: 0;
    display: flex;
    align-items: stretch;
}

.career-banner .row .col-6,
.career-banner .row .col-lg-3 {
    padding-left: 7.5px;
    padding-right: 7.5px;
    display: flex;
    align-items: stretch;
}

/* Ensure all form elements in career banner have same height */
.career-banner .form-control,
.career-banner .yuda-career-button {
    height: 46px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.career-banner .custom-select-wrapper .form-control {
    width: 100%;
}

/* Fix text alignment in select options */
.career-banner select.form-control option {
    padding: 8px 12px;
    line-height: 1.4;
}

/* Ensure icons don't overflow on smaller screens */
@media (max-width: 575px) {
    .career-banner .row .col-6 {
        padding-left: 5px;
        padding-right: 5px;
        margin-bottom: 10px;
    }

    .custom-select-wrapper {
        min-height: 44px;
    }

    .custom-select-wrapper .form-control {
        min-height: 44px;
    }

    .career-banner .form-control,
    .career-banner .yuda-career-button {
        height: 44px;
    }
}

/* Form Styling and Validation */
.form-control {
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 12px 14px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    line-height: 1.5;
    min-height: 46px;
}

.form-control:focus {
    border-color: #47B6BD;
    box-shadow: 0 0 0 0.2rem rgba(71, 182, 189, 0.25);
    outline: none;
}

/* Specific styling for select elements to prevent text cropping */
select.form-control {
    padding: 10px 14px;
    line-height: 1.6;
    height: 46px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'><path fill='%23666' d='M2 0L0 2h4zm0 5L0 3h4z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 12px;
    padding-right: 30px;
}

select.form-control option {
    padding: 10px 14px;
    line-height: 1.6;
    font-size: 16px;
    color: #333;
    background-color: #fff;
    min-height: 36px;
}

/* Validation States with proper icon spacing */
.form-control.is-valid {
    border-color: #28a745;
    padding-right: 2.5rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3e%3cpath fill='%2328a745' d='M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem 1rem;
}

.form-control.is-invalid {
    border-color: #dc3545;
    padding-right: 2.5rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3e%3cpath fill='%23dc3545' d='M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM5.354 4.646a.5.5 0 1 0-.708.708L7.293 8l-2.647 2.646a.5.5 0 0 0 .708.708L8 8.707l2.646 2.647a.5.5 0 0 0 .708-.708L8.707 8l2.647-2.646a.5.5 0 0 0-.708-.708L8 7.293 5.354 4.646z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem 1rem;
}

/* Special handling for select elements */
select.form-control.is-valid,
select.form-control.is-invalid {
    padding-right: 3rem;
    background-position: right 1.75rem center, right 0.75rem center;
}

/* Textarea specific styling */
textarea.form-control.is-valid,
textarea.form-control.is-invalid {
    background-position: right 0.75rem top 0.75rem;
}

/* Error Messages */
.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 1rem;
    color: #dc3545;
}

.invalid-feedback.show {
    display: block;
}

.valid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 1rem;
    color: #28a745;
}

.valid-feedback.show {
    display: block;
}

/* Label styling for required fields */
label.required::after {
    content: " *";
    color: #dc3545;
    font-weight: bold;
}

/* Form validation states for custom select wrappers */
.custom-select-wrapper .form-control.is-valid {
    border-color: #28a745;
    background-position: right 2.5rem center, right 0.75rem center;
}

.custom-select-wrapper .form-control.is-invalid {
    border-color: #dc3545;
    background-position: right 2.5rem center, right 0.75rem center;
}

/* Newsletter form specific validation */
form[id*="newsletter"] .form-control.is-invalid {
    background-color: rgba(248, 215, 218, 0.5);
    border-color: #dc3545;
    background-image: none !important;
    padding-right: 12px !important;
}

form[id*="newsletter"] .form-control.is-valid {
    background-color: rgba(212, 237, 218, 0.5);
    border-color: #28a745;
    background-image: none !important;
    padding-right: 12px !important;
}

/* Remove validation icons completely for newsletter forms to prevent alignment issues */
form[id*="newsletter"] .form-control.is-valid,
form[id*="newsletter"] .form-control.is-invalid {
    background-image: none !important;
    padding-right: 12px !important;
}

/* Newsletter form error message positioning - restore original overlay design */
form[id*="newsletter"] .invalid-feedback {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    right: 0;
    z-index: 1000;
    font-size: 13px;
    color: #dc3545;
    background-color: rgba(248, 215, 218, 0.95);
    padding: 8px 12px;
    border-radius: 4px;
    border: 1px solid rgba(220, 53, 69, 0.3);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 300px;
}

/* Newsletter form alignment fixes */
form[id*="newsletter"] {
    width: 100%;
}

/* Fix newsletter form alignment while preserving responsive behavior */
form[id*="newsletter"] .d-flex {
    align-items: center !important;
    gap: 10px;
}

form[id*="newsletter"] .flex-grow-1 {
    position: relative;
    flex: 1;
    margin-right: 0 !important;
    margin-bottom: 0 !important;
}

form[id*="newsletter"] .form-control {
    height: 46px;
    padding: 10px 14px;
    line-height: 1.5;
    margin: 0;
    background-image: none !important;
    padding-right: 14px !important;
    border: 1px solid #ced4da;
    border-radius: 4px;
}

form[id*="newsletter"] .yuda-button {
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 85px;
    white-space: nowrap;
    flex-shrink: 0;
    margin: 0;
    padding: 10px 18px;
}

/* Desktop newsletter form alignment */
@media (min-width: 992px) {
    form[id*="newsletter"] .d-flex {
        align-items: center !important;
        gap: 12px;
    }

    form[id*="newsletter"] .flex-grow-1 {
        position: relative;
        flex: 1;
        margin-right: 0 !important;
        margin-bottom: 0 !important;
    }

    /* Desktop newsletter error message */
    form[id*="newsletter"] .invalid-feedback {
        font-size: 13px;
        padding: 8px 12px;
        max-width: 300px;
        top: calc(100% + 2px);
    }

    form[id*="newsletter"] .form-control {
        height: 46px;
        font-size: 15px;
        flex: 1;
        margin: 0;
        background-image: none !important;
        padding-right: 12px !important;
    }

    form[id*="newsletter"] .yuda-button {
        height: 46px;
        font-size: 16px;
        min-width: 90px;
        flex-shrink: 0;
        margin: 0;
        padding: 10px 18px;
    }
}

/* Contact and quote form validation states */
form[id*="contact"] .form-control.is-invalid,
form[id*="quote"] .form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

form[id*="contact"] .form-control.is-valid,
form[id*="quote"] .form-control.is-valid {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

/* Contact form specific select styling */
form[id*="contact"] select.form-control,
form[id*="quote"] select.form-control {
    padding: 10px 32px 10px 14px !important;
    line-height: 1.6 !important;
    height: 46px !important;
    min-height: 46px !important;
    display: flex;
    align-items: center;
}

form[id*="contact"] select.form-control option,
form[id*="quote"] select.form-control option {
    padding: 10px 14px !important;
    line-height: 1.6 !important;
    min-height: 36px !important;
    display: flex;
    align-items: center;
}

/* Careers search form validation */
.career-banner .custom-select-wrapper .form-control.is-invalid {
    border-color: #dc3545;
    background-color: rgba(248, 215, 218, 0.1);
}

.career-banner .custom-select-wrapper .form-control.is-valid {
    border-color: #28a745;
    background-color: rgba(212, 237, 218, 0.1);
}

/* Accessibility improvements for form validation */
.form-control:focus.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-control:focus.is-valid {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .form-control.is-invalid {
        border-color: #000;
        background-color: #fff;
    }

    .form-control.is-valid {
        border-color: #000;
        background-color: #fff;
    }

    .invalid-feedback {
        color: #000;
        font-weight: bold;
    }

    .valid-feedback {
        color: #000;
        font-weight: bold;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .form-control {
        transition: none;
    }

    .btn-primary {
        transition: none;
    }
}

/* Form Group Styling */
.form-group {
    margin-bottom: 1.8rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 500;
    color: #333;
    font-size: 16px;
}

/* Add proper spacing for Bootstrap columns with form elements */
[class*="col-"] .mb-3 {
    margin-bottom: 1.8rem !important;
}

/* Ensure proper spacing between elements */
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }

.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }

.mr-1 { margin-right: 0.25rem !important; }
.mr-2 { margin-right: 0.5rem !important; }
.mr-3 { margin-right: 1rem !important; }

.ml-1 { margin-left: 0.25rem !important; }
.ml-2 { margin-left: 0.5rem !important; }
.ml-3 { margin-left: 1rem !important; }

/* Button container spacing */
.button-container {
    margin-top: 1.8rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    align-items: center;
}

.button-container .yuda-button,
.button-container .yuda-outline-button,
.button-container .yuda-outline-white-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0;
    margin-bottom: 0;
    min-width: 130px;
    height: 44px;
}

.button-container .yuda-button:last-child,
.button-container .yuda-outline-button:last-child,
.button-container .yuda-outline-white-button:last-child {
    margin-right: 0;
}

/* Ensure proper spacing in banner sections */
.home-banner .yuda-aboutus-heading {
    margin-bottom: 1.5rem;
}

.home-banner .yuda-banner-text {
    margin-bottom: 2rem;
}

.home-banner div:has(.yuda-button) {
    margin-top: 1.5rem;
}

/* Section spacing */
.py-3 {
    padding-top: 1.8rem !important;
    padding-bottom: 1.8rem !important;
}

.p-md-5 {
    padding: 3.5rem !important;
}

@media (max-width: 767px) {
    .p-md-5 {
        padding: 1.8rem !important;
    }
}

/* Ensure proper spacing between sections */
.row + .row {
    margin-top: 2rem;
}

/* Remove spacing between hero banner and our services section */
.container-fluid .row:nth-child(2) .our-services-background {
    margin-top: 0;
    padding-top: 2rem;
}

/* Fix list spacing */
ul li {
    margin-bottom: 0.5rem;
}

ul li:last-child {
    margin-bottom: 0;
}

/* Required field indicator */
.required::after {
    content: " *";
    color: #dc3545;
    font-weight: bold;
}

/* Additional responsive fixes */
@media (max-width: 575px) {
    .container-fluid {
        padding-left: 0;
        padding-right: 0;
    }

    .row > [class*="col-"] {
        padding-left: 0;
        padding-right: 0;
    }

    .form-group label {
        font-size: 15px;
        margin-bottom: 0.5rem;
    }

    /* Ensure text doesn't overflow on small screens */
    .yuda-heading,
    .yuda-banner-heading,
    .yuda-aboutus-heading {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    /* Improve button spacing on mobile */
    .yuda-button,
    .yuda-outline-button,
    .yuda-outline-white-button {
        margin-bottom: 15px;
        margin-right: 0;
        display: block;
        width: 100%;
        text-align: center;
    }

    /* Exception for about company section buttons */
    .d-flex .yuda-button,
    .d-flex .yuda-outline-button {
        display: inline-flex;
        width: auto;
        margin-right: 10px;
        margin-bottom: 10px;
        min-width: 120px;
    }

    /* Mobile button container styling */
    .button-container {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
        flex-wrap: wrap;
    }

    .button-container .yuda-button,
    .button-container .yuda-outline-button,
    .button-container .yuda-outline-white-button {
        width: auto;
        min-width: 100px;
        height: 36px;
        flex: 0 0 auto;
        display: inline-flex !important;
        margin-bottom: 0 !important;
        margin-right: 0 !important;
    }

    /* Ensure buttons in the same container have proper spacing */
    .yuda-button + .yuda-button,
    .yuda-button + .yuda-outline-button,
    .yuda-button + .yuda-outline-white-button,
    .yuda-outline-button + .yuda-button,
    .yuda-outline-button + .yuda-outline-button,
    .yuda-outline-white-button + .yuda-button {
        margin-top: 0px;
    }

    /* Fix card spacing on mobile */
    .card {
        margin-bottom: 15px;
    }

    /* Improve form layout on mobile */
    .form-control {
        font-size: 16px; /* Prevents zoom on iOS */
        min-height: 44px;
    }

    /* Mobile select styling */
    select.form-control {
        font-size: 16px;
        height: 44px;
        padding: 8px 32px 8px 14px;
        line-height: 1.5;
    }

    select.form-control option {
        font-size: 16px;
        padding: 8px 14px;
        line-height: 1.5;
        min-height: 32px;
    }

    /* Mobile validation feedback */
    .invalid-feedback,
    .valid-feedback {
        font-size: 0.9rem;
        margin-top: 0.125rem;
    }

    /* Mobile form validation states */
    .form-control.is-valid,
    .form-control.is-invalid {
        background-size: 0.875rem 0.875rem;
        background-position: right 0.5rem center;
        padding-right: 2rem;
    }

    /* Mobile custom select validation */
    .custom-select-wrapper .form-control.is-valid,
    .custom-select-wrapper .form-control.is-invalid {
        background-position: right 2rem center, right 0.5rem center;
        padding-right: 2.5rem;
    }

    /* Mobile newsletter form fixes */
    form[id*="newsletter"] .d-flex {
        align-items: center !important;
        gap: 8px;
    }

    form[id*="newsletter"] .flex-grow-1 {
        position: relative;
        flex: 1;
        margin-right: 0 !important;
        margin-bottom: 0 !important;
    }

    form[id*="newsletter"] .form-control {
        height: 44px;
        font-size: 16px;
        margin: 0;
        background-image: none !important;
        padding-right: 14px !important;
    }

    form[id*="newsletter"] .yuda-button {
        height: 44px;
        font-size: 14px;
        min-width: 75px;
        flex-shrink: 0;
        margin: 0;
        padding: 8px 14px;
    }

    /* Mobile newsletter error message */
    form[id*="newsletter"] .invalid-feedback {
        font-size: 12px;
        padding: 6px 10px;
        max-width: 270px;
        top: calc(100% + 1px);
    }
}

@media (max-width: 767px) {
    /* Improve navigation on mobile */
    .navbar-nav {
        text-align: center;
        width: 100%;
    }

    .navbar-nav .nav-link {
        padding: 12px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }

    /* Fix footer layout on mobile */
    .footer-sections {
        margin-bottom: 30px;
        text-align: left;
        justify-content: flex-start;
        align-items: flex-start;
    }

    /* Ensure all footer content is left-aligned on mobile */
    .footer-section .footer-heading,
    .footer-section .footer-text,
    .footer-section ul,
    .footer-section ul li {
        text-align: left;
    }

    /* Maintain justify alignment for specific paragraphs on mobile */
    .footer-section .footer-text.justify-text {
        text-align: justify;
    }

    /* Social media icons container left-aligned */
    .footer-section div {
        text-align: left;
        justify-content: flex-start;
    }
}

/* Additional responsive rules for very small screens */
@media (max-width: 575px) {
    .footer-sections {
        text-align: left;
        justify-content: flex-start;
        align-items: flex-start;
        margin-bottom: 25px;
    }

    .footer-section .footer-heading,
    .footer-section .footer-text,
    .footer-section .footer-logo-text {
        text-align: left;
    }

    /* Maintain justify alignment for specific paragraphs on tablet */
    .footer-section .footer-text.justify-text {
        text-align: justify;
    }

    .copyright-text {
        text-align: left;
        align-items: flex-start;
    }

    .copyright-text p {
        text-align: left;
    }

    .copyright-text {
        text-align: center;
    }

    /* Mobile quick links spacing */
    .footer-section ul li {
        margin-bottom: 6px;
    }
}

/* Improve image responsiveness */
img {
    max-width: 100%;
    height: auto;
    -ms-interpolation-mode: bicubic; /* IE fix */
}

/* Fix for Safari flexbox issues */
@supports (-webkit-appearance: none) {
    .d-flex {
        display: -webkit-flex !important;
        display: flex !important;
    }

    .flex-column {
        -webkit-flex-direction: column !important;
        flex-direction: column !important;
    }

    .justify-content-center {
        -webkit-justify-content: center !important;
        justify-content: center !important;
    }

    .align-items-center {
        -webkit-align-items: center !important;
        align-items: center !important;
    }
}

/* Print styles */
@media print {
    .navbar,
    .footer-section,
    .back-to-top {
        display: none !important;
    }

    .content-margintop,
    .home-nav-padding {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    .yuda-heading,
    .yuda-banner-heading {
        color: #000 !important;
    }
}

.yuda-sub-heading {
    color: #000000;
    font-size: 20px;
    font-weight: bold;
    transition: color 0.5s ease;
}

@media (max-width: 767px) {
    .form-control {
        font-size: 16px;
    }

    .yuda-sub-heading {
        color: #000000;
        font-size: 18px;
        font-weight: bold;
    }
}

.yuda-career-button {
    background-image: linear-gradient(to right, #47B6BD, #104CBA);
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 16px;
    border: none;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.yuda-career-button:hover {
    background-image: linear-gradient(to right, #104CBA, #47B6BD);
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(71, 182, 189, 0.3);
}

.yuda-career-button:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(71, 182, 189, 0.25);
}

.card {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    /* even shadow on all sides */
    border-radius: 8px;
    margin-bottom: 1.8rem;
}

.card .card-body,
.card > .p-3 {
    padding: 1.8rem;
}

.divider {
    border-left: 1px solid #000;
}

.job-title {
    font-size: 22px;
    color: #104CBA;
    font-weight: bold;
}

@media (max-width: 767px) {
    .job-title {
        font-size: 18px;
    }
}

.home-banner {
    background-image: url("../Images/Home-bg.png");
    background-size: cover;
    background-color: #0B1B3A;
    background-attachment: fixed;
    background-position: center;
    position: relative;
    overflow: hidden;
}

/* Subtle overlay for better text readability */
.home-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 27, 58, 0.1);
    z-index: 1;
}

.home-banner > * {
    position: relative;
    z-index: 2;
}

/* Disable parallax on mobile for better performance */
@media (max-width: 768px) {
    .home-banner {
        background-attachment: scroll;
    }
}

.our-services-background {
    position: relative;
    background-image: url("../Images/Left\ bg\ \(1\).png"), url('../Images/Right\ bg\ \(1\).png');
    background-repeat: no-repeat, no-repeat;
    background-position: left bottom, right top;
    background-size: contain, contain;
    z-index: 1;
    margin-top: 0;
    padding-top: 2rem;
}

.our-services-cardsBG {
    background-image: linear-gradient(to bottom, #47B6BD, #104CBA) !important;
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 16px;
    border: none;
    height: auto;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 1.25rem;
}

/* Home services card arrow positioning */
.our-services-cardsBG .d-flex.justify-content-end {
    margin-top: auto;
    padding-top: 0.25rem;
    align-self: stretch;
    width: 100%;
}

.our-services-cardsBG .fas.fa-arrow-right {
    color: #FFFFFF !important;
    font-size: 14px !important;
    transition: transform 0.2s ease;
}

.our-services-cardsBG:hover .fas.fa-arrow-right {
    transform: translateX(3px);
}

@media (max-width: 767px) {
    .our-services-background {
        background-size: contain, contain;
        background-position: left bottom, right top;
        padding-top: 1.5rem;
        margin-top: 0;
    }

    .our-services-cardsBG {
        font-size: 14px;
        min-height: 180px;
        padding: 1rem;
        position: relative;
        z-index: 2;
    }

    .ourservices-icons {
        width: 40px;
        height: 40px;
        margin-bottom: 0.5rem;
    }

    /* Reduce spacing on mobile */
    .our-services-background .row.px-3.px-md-0.px-lg-5.mb-4 {
        margin-bottom: 1rem !important;
    }

    .our-services-cardsBG .yuda-banner-text strong {
        font-size: 1em;
    }

    .our-services-cardsBG .yuda-banner-text:last-child {
        font-size: 0.9em;
    }

    /* Ensure content is above background */
    .our-services-background .d-flex.flex-column.justify-content-center.align-items-center {
        position: relative;
        z-index: 3;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .our-services-background {
        background-size: contain, contain;
        background-position: left bottom, right top;
        padding-top: 1.75rem;
    }

    .our-services-cardsBG {
        min-height: 190px;
        padding: 1.1rem;
        position: relative;
        z-index: 2;
    }

    .ourservices-icons {
        width: 42px;
        height: 42px;
        margin-bottom: 0.6rem;
    }

    /* Adjust spacing on tablet */
    .our-services-background .row.px-3.px-md-0.px-lg-5.mb-4 {
        margin-bottom: 1.25rem !important;
    }

    /* Ensure content is above background */
    .our-services-background .d-flex.flex-column.justify-content-center.align-items-center {
        position: relative;
        z-index: 3;
    }
    /* Tablet button container styling */
    .button-container {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 12px;
    }

    .button-container .yuda-button,
    .button-container .yuda-outline-button,
    .button-container .yuda-outline-white-button {
        min-width: 110px;
        height: 38px;
    }

    /* Tablet select styling */
    select.form-control {
        font-size: 16px;
        height: 44px;
        padding: 9px 30px 9px 14px;
        line-height: 1.5;
    }

    select.form-control option {
        font-size: 16px;
        padding: 9px 14px;
        line-height: 1.5;
        min-height: 34px;
    }

    /* Tablet validation feedback */
    .invalid-feedback,
    .valid-feedback {
        font-size: 0.95rem;
    }

    /* Tablet form validation states */
    .form-control.is-valid,
    .form-control.is-invalid {
        background-size: 0.9rem 0.9rem;
        background-position: right 0.6rem center;
        padding-right: 2.2rem;
    }

    /* Tablet custom select validation */
    .custom-select-wrapper .form-control.is-valid,
    .custom-select-wrapper .form-control.is-invalid {
        background-position: right 2.2rem center, right 0.6rem center;
        padding-right: 2.8rem;
    }

    /* Tablet newsletter form fixes */
    form[id*="newsletter"] .d-flex {
        align-items: center !important;
        gap: 10px;
    }

    form[id*="newsletter"] .flex-grow-1 {
        position: relative;
        flex: 1;
        margin-right: 0 !important;
        margin-bottom: 0 !important;
    }

    form[id*="newsletter"] .form-control {
        height: 44px;
        font-size: 15px;
        margin: 0;
        background-image: none !important;
        padding-right: 14px !important;
    }

    form[id*="newsletter"] .yuda-button {
        height: 44px;
        font-size: 15px;
        min-width: 80px;
        flex-shrink: 0;
        margin: 0;
        padding: 8px 16px;
    }

    /* Tablet newsletter error message */
    form[id*="newsletter"] .invalid-feedback {
        font-size: 12px;
        padding: 6px 10px;
        max-width: 280px;
        top: calc(100% + 1px);
    }
}

@media (min-width: 992px) {
    .our-services-cardsBG {
        min-height: 200px;
    }
}

.ourservices-icons {
    width: 45px;
    height: 45px;
    display: block;
    margin: 0 auto 0.75rem auto;
    object-fit: contain;
}

/* Service card content alignment */
.our-services-cardsBG .d-flex.flex-column.justify-content-center {
    align-items: center;
    text-align: center;
    width: 100%;
    flex: 1;
    justify-content: center;
    padding: 0.75rem 0;
    position: relative;
    z-index: 2;
}

.our-services-cardsBG .yuda-banner-text {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

/* Override center alignment for arrow container */
.our-services-cardsBG .d-flex.justify-content-end {
    align-items: flex-end !important;
    justify-content: flex-end !important;
    text-align: right !important;
}

/* Reduce spacing between cards and View More button */
.our-services-background .row.px-3.px-md-0.px-lg-5.mb-4 {
    margin-bottom: 1.5rem !important;
}

/* Ensure proper card content spacing */
.our-services-cardsBG .yuda-banner-text strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1em;
}

/* Better spacing for description text */
.our-services-cardsBG .yuda-banner-text:last-child {
    line-height: 1.4;
    margin-top: 0.25rem;
    font-size: 0.95em;
}

/* Additional responsive rules for very small screens */
@media (max-width: 575px) {
    .our-services-background {
        background-size: contain, contain;
        background-position: left bottom, right top;
        padding-top: 1rem;
    }

    .our-services-cardsBG {
        min-height: 170px;
        padding: 0.9rem;
    }

    .ourservices-icons {
        width: 38px;
        height: 38px;
        margin-bottom: 0.4rem;
    }
}

.about-company-images {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: cover;
}


@media (max-width: 991px) {
    .about-company-images {
        max-width: 350px;
    }
}

@media (max-width: 767px) {
    .about-company-images {
        max-width: 280px;
        width: 90%;
    }
}

@media (max-width: 575px) {
    .about-company-images {
        max-width: 250px;
        width: 85%;
    }
}

/* About company section specific styling */
.about-company-section {
    padding: 2rem 0;
}

.about-company-section .d-flex {
    flex-wrap: wrap;
    gap: 10px;
}

.about-company-section .yuda-button,
.about-company-section .yuda-outline-button {
    flex: 1;
    min-width: 120px;
    max-width: 150px;
}

@media (max-width: 575px) {
    .about-company-section .d-flex {
        flex-direction: column;
        align-items: stretch;
    }

    .about-company-section .yuda-button,
    .about-company-section .yuda-outline-button {
        width: 100%;
        max-width: none;
        margin-right: 0;
        margin-bottom: 10px;
    }
}

/* Social Media Share Dropdown */
.share-dropdown {
    position: relative;
    display: inline-block;
}

.share-icon {
    cursor: pointer;
    transition: color 0.3s ease;
}

.share-icon:hover {
    color: #104CBA;
}

.share-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    min-width: 180px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.share-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.share-item {
    display: flex;
    align-items: center;
    padding: 10px 18px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s ease;
    font-size: 16px;
}

.share-item:hover {
    background-color: #f8f9fa;
    text-decoration: none;
    color: #333;
}

.share-item i {
    width: 22px;
    margin-right: 14px;
    font-size: 18px;
}

.share-item.facebook i {
    color: #1877f2;
}

.share-item.twitter i {
    color: #1da1f2;
}

.share-item.linkedin i {
    color: #0077b5;
}

.share-item.whatsapp i {
    color: #25d366;
}

.share-item.copy-link i {
    color: #6c757d;
}

/* Responsive styling for share dropdown */
@media (max-width: 767px) {
    .share-menu {
        right: -10px;
        min-width: 170px;
        font-size: 15px;
    }

    .share-item {
        padding: 12px 16px;
        font-size: 15px;
    }

    .share-item i {
        width: 20px;
        margin-right: 12px;
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .share-menu {
        right: -20px;
        min-width: 160px;
    }

    .share-item {
        padding: 14px 18px;
        font-size: 14px;
    }

    .share-item i {
        width: 18px;
        margin-right: 10px;
        font-size: 15px;
    }
}

.latestProjects-bg {
    background-color: #051534;
    width: 100%;
    height: auto;
}

.latest-project-tabs {
    border: 1px solid #47B6BD;
    border-radius: 8px;
    max-width: max-content;
    max-height: max-content;
}

.latest-project-tabs:hover {
    background-color: #47B6BD;
}

.project-cards {
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
}

.project-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #76c7db, #1e4f91);
    color: #000;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 1rem;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    /* lock layout */
}

.project-overlay-content {
    overflow-y: auto;
    scroll-behavior: smooth;
    max-height: 100%;

    /* Hide scrollbar - works across modern browsers */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE 10+ */
}

.project-overlay-content::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Edge */
}

/* Project overlay text styling - justified alignment */
.project-overlay-content .yuda-text {
    text-align: justify;
    text-align-last: left;
    word-spacing: normal;
    letter-spacing: normal;
    hyphens: auto;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    line-height: 1.5;
}


/* Hover (medium to large screens) */
.project-cards:hover .project-image {
    opacity: 0;
}

.project-cards:hover .project-overlay {
    opacity: 1;
    pointer-events: auto;
}

/* Responsive image heights */
@media (max-width: 576px) {
    .project-image {
        height: 200px;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .project-image {
        height: 220px;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .project-image {
        height: 240px;
    }
}

@media (min-width: 993px) {
    .project-image {
        height: 250px;
    }
}

/* Small screens: click or focus */
@media (max-width: 992px) {

    .project-cards:focus-within .project-overlay,
    .project-cards.clicked .project-overlay {
        opacity: 1;
        pointer-events: auto;
    }

    .project-cards:focus-within .project-image,
    .project-cards.clicked .project-image {
        opacity: 0;
    }

    .project-overlay-content {
        scrollbar-width: thin;
    }

    /* Responsive fix for project overlay text spacing on mobile */
    .project-overlay-content .yuda-text {
        text-align: justify;
        text-align-last: left;
        word-spacing: normal;
        letter-spacing: normal;
        hyphens: auto;
        -webkit-hyphens: auto;
        -moz-hyphens: auto;
        line-height: 1.4;
        font-size: 14px;
    }
}
.home-white-icon-bg {
    background-image: linear-gradient(to bottom, #47B6BD, #104CBA);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    transition: background-image 0.3s ease, background-color 0.3s ease;
}

.home-white-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
    flex-shrink: 0;
}


.get-in-touch-bg {
    background-image: url("../Images/get-in-touch-bg.png");
    background-size: cover;
}

/* Tablet responsive adjustments for icons */
@media (max-width: 991px) and (min-width: 768px) {
    .home-white-icon-bg {
        width: 48px;
        height: 48px;
        flex-shrink: 0;
    }

    .home-white-icon {
        width: 30px;
        height: 30px;
        object-fit: contain;
        flex-shrink: 0;
    }
}

/* Mobile responsive adjustments for icons */
@media (max-width: 767px) {
    .home-white-icon-bg {
        width: 45px;
        height: 45px;
        flex-shrink: 0;
    }

    .home-white-icon {
        width: 28px;
        height: 28px;
        object-fit: contain;
        flex-shrink: 0;
    }

    /* Ensure icon container doesn't shrink */
    .d-flex .mr-3 {
        flex-shrink: 0;
        min-width: 45px;
    }
}
.service-banner {
    background-image: url("../Images/Services-BG.png");
    background-size: cover;
}

.image-wrapper {
  position: relative;
  display: inline-block;
}


.service-cards {
    border-radius: 12px;
    position: relative;
    width: 100%; /* or fixed width like 300px */
}

.services-icon-bg {
    background-image: linear-gradient(to bottom, #47B6BD, #104CBA) !important;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    position: absolute;
    bottom: -25px;   /* overlaps below the image */
    left: 15px;      /* pushes it slightly from left */
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    z-index: 10;
}

.services-icon {
    width: 30px;
    height: 30px;
}

@media (max-width: 767px) {
    .services-icon-bg {
        width: 40px;
        height: 40px;
    }

    .services-icon {
        width: 25px;
        height: 25px;
    }

    .services-icon-bg {
    bottom: -20px;   /* overlaps below the image */
    left: 20px;      /* pushes it slightly from left */
}
}

.serices-arrow {
    background-color: #D9D9D9;
    width: 28px;
    height: 28px;
    font-size: 18px;
    border-radius: 50%;
    cursor: pointer;
}

.rating-heading {
    color: #104CBA;
    font-size: 36px;
    font-weight: bold;
    transition: all 0.3s ease;
    font-variant-numeric: tabular-nums; /* Ensures consistent number width during animation */
}

/* Animation state for counting numbers */
.rating-heading[data-counted="true"] {
    animation: countComplete 0.5s ease-out;
}

@keyframes countComplete {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Professional Scroll Animation Styles */
.scroll-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Subtle staggered delays */
.scroll-animate.delay-1 {
    transition-delay: 0.1s;
}

.scroll-animate.delay-2 {
    transition-delay: 0.2s;
}

.scroll-animate.delay-3 {
    transition-delay: 0.3s;
}

.scroll-animate.delay-4 {
    transition-delay: 0.4s;
}

/* Professional fade-up animation */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Elegant slide animations */
.slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-in-left.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-in-right.animate-in {
    opacity: 1;
    transform: translateX(0);
}

/* Professional card animations */
.card-reveal {
    opacity: 0;
    transform: translateY(25px) scale(0.98);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.card-reveal.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Hero section - professional entrance */
.hero-content {
    opacity: 0;
    transform: translateY(25px);
    animation: heroEntrance 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.hero-text {
    opacity: 0;
    transform: translateY(20px);
    animation: heroEntrance 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.hero-buttons {
    opacity: 0;
    transform: translateY(15px);
    animation: heroEntrance 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

@keyframes heroEntrance {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Service cards - professional grid animation */
.service-grid-item {
    opacity: 0;
    transform: translateY(20px) scale(0.99);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-grid-item.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Subtle hover effects */
.card-reveal.animate-in:hover {
    transform: translateY(-2px) scale(1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Text reveal animation */
.text-reveal {
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.text-reveal.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .fade-up,
    .slide-in-left,
    .slide-in-right,
    .card-reveal,
    .service-grid-item,
    .text-reveal,
    .hero-content,
    .hero-text,
    .hero-buttons {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Performance optimization for animations */
.fade-up,
.slide-in-left,
.slide-in-right,
.card-reveal,
.service-grid-item,
.text-reveal {
    will-change: transform, opacity;
}

.fade-up.animate-in,
.slide-in-left.animate-in,
.slide-in-right.animate-in,
.card-reveal.animate-in,
.service-grid-item.animate-in,
.text-reveal.animate-in {
    will-change: auto;
}

/* Smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
}

/* Enhanced focus states for accessibility */
.card-reveal:focus,
.service-grid-item:focus {
    outline: 2px solid #104CBA;
    outline-offset: 2px;
}

.rating-text {
    color: #104CBA;
    font-size: 20px;
    font-weight: bold;
}

@media (max-width: 767px) {
    .rating-heading {
    font-size: 26px;
}

.rating-text {
    font-size: 16px;
}
}

.ready-to-transform-bg {
    background-image: linear-gradient(to bottom, #47B6BD, #4967A9);
    background-size: cover;
}

/* Services page specific background with image */
.ready-to-transform-services-bg {
    background-image: url("../Images/Bg-ready-to-transfer.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 500px;
}

.ready-to-transform-services-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(135deg, rgba(71, 182, 189, 0.9), rgba(73, 103, 169, 0.9)); */
    z-index: 1;
}

.ready-to-transform-services-bg > .row {
    position: relative;
    z-index: 2;
}

.ready-icon-circle {
    width: 18px;
    height: 18px;
    background-color: #0D5EDB; /* Blue check background */
    border-radius: 50%;
    font-size: 10px;
    flex-shrink: 0;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.service-detail-bg {
    background-image: url("../Images/service-detail-Bg.png");
    background-size: cover;
}

.our-process-bg {
    background-image: url("../Images/Our-process-bg.png");
    background-size: cover;
}

.step-indicator {
    width: 36px;
    height: 36px;
    background: #fff;
    border: 2px solid #009FDD;
    border-radius: 50%;
    color: #104CBA;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: relative;
}

.active-step {
    background-image: linear-gradient(to bottom, #47B6BD, #104CBA);
    color: #fff;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: #fff;
    z-index: 1;
    transform: translateY(-50%);
}

@media (max-width: 767px) {
    
.step-indicator {
    width: 26px;
    height: 26px;
    font-size: 12px;
}
}

.step-cards {
    background-image: linear-gradient(to bottom, #FFFFFF, #eceff0, #83B2EA, #2B7CDB);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}

.steps {
    font-size: 18px;
    color: #104CBA;
}

.step-icon {
    width: 40px;
}

.benefits-icons {
    width: 25px;
}

@media (max-width: 767px) {
    .benefits-icons {
    width: 20px;
}
}

/* Feature cards container spacing */
.ready-feature-cards {
    margin: 1rem 0;
    gap: 0.5rem;
}

.ready-feature-cards .d-inline-flex {
    margin-bottom: 0.5rem;
    min-height: auto;
    height: auto;
    padding: 8px 16px !important; /* Override Bootstrap padding */
    display: inline-flex !important;
    align-items: center !important;
    vertical-align: middle;
}

.ready-feature-cards .d-inline-flex .yuda-text {
    line-height: 1.2;
    margin: 0;
    display: flex;
    align-items: center;
}

/* Responsive spacing for feature cards */
@media (max-width: 768px) {
    .ready-feature-cards {
        margin: 1rem 0;
        gap: 0.5rem;
    }

    .ready-feature-cards .d-inline-flex {
        margin-bottom: 0.5rem;
        margin-right: 0 !important;
        width: 100%;
        justify-content: center;
        padding: 6px 12px !important;
        display: inline-flex !important;
        align-items: center !important;
    }
}

@media (min-width: 769px) {
    .ready-feature-cards .d-inline-flex {
        margin-right: 0.75rem !important;
        padding: 8px 16px !important;
        display: inline-flex !important;
        align-items: center !important;
    }

    .ready-feature-cards .d-inline-flex:last-child {
        margin-right: 0 !important;
    }
}

.white-button {
    background-color: #ffffff;
    font-size: 16px;
    border: none;
    color: #000;
    border-radius: 8px;
    max-width: max-content;
    max-height: max-content;
    padding: 10px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    line-height: 1.2;
}

.ready-image {
    width: calc(100% + 15px);
    height: 100%;
    object-fit: cover;
    margin-left: -15px;
    padding-left: 0 !important;
    padding-right: 0 !important;
    display: block;
}

/* Ensure the ready-to-transform section doesn't affect other sections */
.ready-to-transform-bg .row {
    margin-left: 0;
    margin-right: 0;
}

.ready-to-transform-bg .ready-image {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Fix container padding for ready-to-transform section */
.ready-to-transform-bg {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Ensure image column has no padding */
.ready-to-transform-bg .col-md-5 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Responsive adjustments for ready image */
@media (max-width: 767px) {
    .ready-image {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        height: auto;
        min-height: 200px;
        object-fit: cover;
        position: relative;
    }

    .ready-to-transform-bg .col-12:not(.ready-image) {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    /* Ensure the image column has no padding on mobile */
    .ready-to-transform-bg .col-12.ready-image,
    .ready-to-transform-bg .col-md-5.ready-image {
        padding-left: 0 !important;
        padding-right: 0 !important;
        overflow: hidden;
    }

    /* Override container padding for mobile ready-to-transform section */
    .ready-to-transform-bg {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* Ensure parent containers don't add spacing */
    .ready-to-transform-bg .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

/* Tablet responsive adjustments */
@media (min-width: 768px) and (max-width: 991px) {
    .ready-image {
        width: calc(100% + 15px);
        margin-left: -15px;
    }
}

.white-button:focus {
    outline: none;
}

@media (max-width: 767px) {
    .white-button {
    font-size: 14px;
}
}

.get-a-quote-bg {
    background-image: url("../Images/get-a-quote-bg.png");
    background-size: cover;
}

.contact-bg {
    background-image: url("../Images/Contact-bg.png");
    background-size: cover;
    background-color: #051534;
}


.contact-us-boxes {
  background-color: #47B6BD33;
  border-radius: 8px;
  height: 100%;
}

.icon-circle {
  width: 50px;
  height: 50px;
  background: linear-gradient(180deg, #0472BA, #04A4D9);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.yuda-contact-box-text {
    color: #000000;
    font-size: 16px;
    text-align: justify;
    word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

@media (max-width: 1024px) {
    .yuda-contact-box-text {
    color: #000000;
    font-size: 16px;
    }
}

@media (max-width: 767px) {
    .yuda-contact-box-text {
    color: #000000;
    font-size: 14px;
    }
}

.industries-bg {
    background-image: url("../Images/industries-bg.png");
    background-size: cover;
    background-color: #051534;
}


.industries-white-icon-bg {
    background-image: linear-gradient(to bottom, #47B6BD, #104CBA);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    transition: background-image 0.3s ease, background-color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.industries-icon {
    width: 30px;
    height: 30px;
}

.industries-blue-icon-bg {
    background-color: #FFFFFF;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    transition: background-image 0.3s ease, background-color 0.3s ease;
    display: none;
}

@media (max-width: 767px) {
    .industries-white-icon-bg {
        width: 40px;
        height: 40px;
    }

    .industries-icon {
        width: 25px;
        height: 25px;
    }

    .industries-blue-icon-bg {
        width: 40px;
        height: 40px;
    }

}

.health-hover-card, .finance-hover-card, .retail-hover-card, .food-hover-card, .manufacture-hover-card, .oil-hover-card {
    transition: all 0.8s ease !important;
}


/*Health card hover/focus styles */
@media (max-width: 1024px) {
    /* ===== HEALTH ===== */
  .health-hover-card.active {
    background-image: url("../Images/Image and rectangle.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: #ffffff;
    border: transparent;
  }

  .health-hover-card.active .yuda-sub-heading,
  .health-hover-card.active .yuda-text {
    color: #ffffff;
  }

  .health-hover-card.active .industries-white-icon-bg {
    display: none;
  }

  .health-hover-card.active .industries-blue-icon-bg {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

/* health card large screens and up: use hover */
@media (min-width: 1025px) {
    .health-hover-card:hover {
        background-image: url("../Images/Image\ and\ rectangle.png");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        color: #ffffff;
        border: transparent;
    }


    .health-hover-card:hover .yuda-sub-heading,
    .health-hover-card:hover .yuda-text {
        color: #ffffff;
    }

    .health-hover-card:hover .industries-white-icon-bg {
        display: none;
    }

    .health-hover-card:hover .industries-blue-icon-bg {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}


/*Finance card hover/focus styles */
@media (max-width: 1024px) {
    /* ===== FINANCE ===== */
  .finance-hover-card.active {
    background-image: url("../Images/Finance-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: #ffffff;
    border: transparent;
  }

  .finance-hover-card.active .yuda-sub-heading,
  .finance-hover-card.active .yuda-text {
    color: #ffffff;
  }

  .finance-hover-card.active .industries-white-icon-bg {
    display: none;
  }

  .finance-hover-card.active .industries-blue-icon-bg {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

/* Finance card large screens and up: use hover */
@media (min-width: 1025px) {
    .finance-hover-card:hover {
        background-image: url("../Images/Finance-bg.png");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        color: #ffffff;
        border: transparent;
    }


    .finance-hover-card:hover .yuda-sub-heading,
    .finance-hover-card:hover .yuda-text {
        color: #ffffff;
    }

    .finance-hover-card:hover .industries-white-icon-bg {
        display: none;
    }

    .finance-hover-card:hover .industries-blue-icon-bg {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

/* Retail card large screens and up: use hover */
@media (min-width: 1025px) {
    .retail-hover-card:hover {
        background-image: url("../Images/Retail-bg.png");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        color: #ffffff;
        border: transparent;
    }


    .retail-hover-card:hover .yuda-sub-heading,
    .retail-hover-card:hover .yuda-text {
        color: #ffffff;
    }

    .retail-hover-card:hover .industries-white-icon-bg {
        display: none;
    }

    .retail-hover-card:hover .industries-blue-icon-bg {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}


/*Retail card hover/focus styles */
@media (max-width: 1024px) {
    /* ===== RETAIL ===== */
  .retail-hover-card.active {
    background-image: url("../Images/Retail-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: #ffffff;
    border: transparent;
  }

  .retail-hover-card.active .yuda-sub-heading,
  .retail-hover-card.active .yuda-text {
    color: #ffffff;
  }

  .retail-hover-card.active .industries-white-icon-bg {
    display: none;
  }

  .retail-hover-card.active .industries-blue-icon-bg {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

}


/* Food card large screens and up: use hover */
@media (min-width: 1025px) {
    .food-hover-card:hover {
        background-image: url("../Images/Food\ &\ Beverages-bg.png");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        color: #ffffff;
        border: transparent;
    }


    .food-hover-card:hover .yuda-sub-heading,
    .food-hover-card:hover .yuda-text {
        color: #ffffff;
    }

    .food-hover-card:hover .industries-white-icon-bg {
        display: none;
    }

    .food-hover-card:hover .industries-blue-icon-bg {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}


/*Food card hover/focus styles */
@media (max-width: 1024px) {
    /* ===== FOOD ===== */
  .food-hover-card.active {
    background-image: url("../Images/Food\ &\ Beverages-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: #ffffff;
    border: transparent;
  }

  .food-hover-card.active .yuda-sub-heading,
  .food-hover-card.active .yuda-text {
    color: #ffffff;
  }

  .food-hover-card.active .industries-white-icon-bg {
    display: none;
  }

  .food-hover-card.active .industries-blue-icon-bg {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

/* manufacture card large screens and up: use hover */
@media (min-width: 1025px) {
    .manufacture-hover-card:hover {
        background-image: url("../Images/Manufacturing-bg.png");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        color: #ffffff;
        border: transparent;
    }


    .manufacture-hover-card:hover .yuda-sub-heading,
    .manufacture-hover-card:hover .yuda-text {
        color: #ffffff;
    }

    .manufacture-hover-card:hover .industries-white-icon-bg {
        display: none;
    }

    .manufacture-hover-card:hover .industries-blue-icon-bg {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}


/*manufacture card hover/focus styles */
@media (max-width: 1024px) {
    /* ===== MANUFACTURING ===== */
  .manufacture-hover-card.active {
    background-image: url("../Images/Manufacturing-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: #ffffff;
    border: transparent;
  }

  .manufacture-hover-card.active .yuda-sub-heading,
  .manufacture-hover-card.active .yuda-text {
    color: #ffffff;
  }

  .manufacture-hover-card.active .industries-white-icon-bg {
    display: none;
  }

  .manufacture-hover-card.active .industries-blue-icon-bg {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}


/* oil card large screens and up: use hover */
@media (min-width: 1025px) {
    .oil-hover-card:hover {
        background-image: url("../Images/Oil&Gas\ Energy-bg.png");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        color: #ffffff;
        border: transparent;
    }


    .oil-hover-card:hover .yuda-sub-heading,
    .oil-hover-card:hover .yuda-text {
        color: #ffffff;
    }

    .oil-hover-card:hover .industries-white-icon-bg {
        display: none;
    }

    .oil-hover-card:hover .industries-blue-icon-bg {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}


/*manufacture card hover/focus styles */
@media (max-width: 1024px) {
    /* ===== OIL & GAS ===== */
  .oil-hover-card.active {
    background-image: url("../Images/Oil&Gas Energy-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: #ffffff;
    border: transparent;
  }

  .oil-hover-card.active .yuda-sub-heading,
  .oil-hover-card.active .yuda-text {
    color: #ffffff;
  }

  .oil-hover-card.active .industries-white-icon-bg {
    display: none;
  }

  .oil-hover-card.active .industries-blue-icon-bg {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.terms-banner {
    background-image: url("../Images/Terms&Conditions-bg.png");
    background-size: cover;
}

.privacy-banner {
    background-image: url("../Images/PrivacyPolicy-bg.png");
    background-size: cover;
}

/* Career Detail Page - Sticky and Scrollable Layout */
.career-detail-container {
    min-height: calc(100vh - 200px);
    display: flex;
    flex-direction: column;
}

.job-header-sticky {
    position: sticky;
    top: 80px;
    z-index: 10;
    background: #fff;
    padding-bottom: 15px;
    margin-bottom: 15px;
    /* box-shadow: 0 2px 4px rgba(0,0,0,0.1); */
}

.job-details-scrollable {
    flex: 1;
    max-height: calc(100vh - 280px);
    overflow-y: auto;
    padding-right: 10px;
}

/* Custom scrollbar for job details */
.job-details-scrollable::-webkit-scrollbar {
    width: 6px;
}

.job-details-scrollable::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.job-details-scrollable::-webkit-scrollbar-thumb {
    background: #104CBA;
    border-radius: 3px;
}

.job-details-scrollable::-webkit-scrollbar-thumb:hover {
    background: #47B6BD;
}

/* Firefox scrollbar */
.job-details-scrollable {
    scrollbar-width: thin;
    scrollbar-color: #104CBA #f1f1f1;
}

/* Responsive adjustments - Maintain sticky behavior on all screens */
@media (max-width: 1199px) {
    .job-header-sticky {
        top: 70px;
    }

    .job-details-scrollable {
        max-height: calc(100vh - 260px);
    }
}

@media (max-width: 991px) {
    .career-detail-container {
        min-height: calc(100vh - 180px);
        padding: 20px !important;
    }

    .job-header-sticky {
        top: 60px;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }

    .job-details-scrollable {
        max-height: calc(100vh - 240px);
        padding-right: 8px;
    }

    /* Adjust scrollbar for tablets */
    .job-details-scrollable::-webkit-scrollbar {
        width: 8px;
    }
}

@media (max-width: 767px) {
    .career-detail-container {
        min-height: calc(100vh - 160px);
        padding: 15px !important;
    }

    .job-header-sticky {
        top: 50px;
        padding-bottom: 8px;
        margin-bottom: 8px;
    }

    .job-details-scrollable {
        max-height: calc(100vh - 220px);
        padding-right: 5px;
    }

    /* Mobile scrollbar adjustments */
    .job-details-scrollable::-webkit-scrollbar {
        width: 4px;
    }
}

@media (max-width: 575px) {
    .career-detail-container {
        min-height: calc(100vh - 140px);
        padding: 10px !important;
    }

    .job-header-sticky {
        top: 40px;
        padding-bottom: 5px;
        margin-bottom: 5px;
    }

    .job-details-scrollable {
        max-height: calc(100vh - 200px);
        padding-right: 3px;
    }

    /* Extra small mobile screens */
    .job-details-scrollable::-webkit-scrollbar {
        width: 3px;
    }
}

/* ===== CHATBOT WIDGET STYLES ===== */

/* Floating Chat Button */
.yuda-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-family: "Lato", sans-serif;
}

.yuda-chat-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #47B6BD 0%, #104CBA 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(71, 182, 189, 0.4);
    transition: all 0.3s ease;
    border: none;
}

.yuda-chat-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(71, 182, 189, 0.5);
    color: white;
}

/* Chat Container */
.yuda-chat-container {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border: 1px solid #e0e6ed;
    display: none;
    flex-direction: column;
    overflow: hidden;
}

/* Chat Header */
.yuda-chat-header {
    background: linear-gradient(135deg, #47B6BD 0%, #104CBA 100%);
    padding: 16px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.yuda-chat-header-info {
    display: flex;
    align-items: center;
}

.yuda-chat-avatar {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-right: 10px;
}

.yuda-chat-title {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

.yuda-chat-status {
    font-size: 12px;
    opacity: 0.9;
}

.yuda-chat-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    border-radius: 4px;
    padding: 4px 8px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease;
}

.yuda-chat-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Chat Messages */
.yuda-chat-messages {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    background: #f8f9fa;
}

.yuda-chat-message {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.yuda-chat-message.user {
    justify-content: flex-end;
}

.yuda-chat-message.bot {
    justify-content: flex-start;
}

.yuda-message-bubble {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 13px;
    line-height: 1.4;
    word-wrap: break-word;
}

.yuda-message-bubble.user {
    background: linear-gradient(135deg, #47B6BD 0%, #104CBA 100%);
    color: white;
    border-bottom-right-radius: 6px;
}

.yuda-message-bubble.bot {
    background: white;
    color: #333;
    border: 1px solid #e0e6ed;
    border-bottom-left-radius: 6px;
}

.yuda-message-timestamp {
    font-size: 10px;
    opacity: 0.7;
    margin-top: 4px;
}

/* Typing Indicator */
.yuda-typing-indicator {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    background: white;
    border: 1px solid #e0e6ed;
    border-radius: 16px;
    border-bottom-left-radius: 6px;
    max-width: 60px;
}

.yuda-typing-dots {
    display: flex;
    gap: 3px;
}

.yuda-typing-dot {
    width: 6px;
    height: 6px;
    background: #47B6BD;
    border-radius: 50%;
    animation: yudaTyping 1.4s infinite ease-in-out;
}

.yuda-typing-dot:nth-child(1) { animation-delay: -0.32s; }
.yuda-typing-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes yudaTyping {
    0%, 80%, 100% { transform: scale(0.8); opacity: 0.5; }
    40% { transform: scale(1); opacity: 1; }
}

/* Chat Input Area */
.yuda-chat-input {
    padding: 16px;
    background: white;
    border-top: 1px solid #e0e6ed;
    max-height: 450px;
    overflow-y: auto;
}

/* Chat Options */
.yuda-chat-options {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.yuda-chat-option-btn {
    background: white;
    border: 2px solid #47B6BD;
    color: #104CBA;
    padding: 10px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: left;
    width: 100%;
}

.yuda-chat-option-btn:hover {
    background: linear-gradient(135deg, #47B6BD 0%, #104CBA 100%);
    color: white;
    transform: translateY(-1px);
}

/* Chat Forms */
.yuda-chat-form {
    background: #f8f9fa;
    padding: 16px;
    border-radius: 10px;
    margin-top: 8px;
    max-height: 400px;
    overflow-y: auto;
}

.yuda-chat-form-group {
    margin-bottom: 12px;
}

.yuda-chat-form-group label {
    font-weight: 600;
    color: #104CBA;
    margin-bottom: 4px;
    display: block;
    font-size: 12px;
}

.yuda-chat-form-control {
    width: 100%;
    border: 2px solid #e0e6ed;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 13px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-family: "Lato", sans-serif;
}

.yuda-chat-form-control:focus {
    border-color: #47B6BD;
    outline: none;
    box-shadow: 0 0 0 2px rgba(71, 182, 189, 0.1);
}

.yuda-chat-form-control.is-invalid {
    border-color: #dc3545;
}

.yuda-chat-submit-btn {
    background: linear-gradient(135deg, #47B6BD 0%, #104CBA 100%);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-family: "Lato", sans-serif;
}

.yuda-chat-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(71, 182, 189, 0.3);
}

/* File Upload Area */
.yuda-file-upload-area {
    border: 2px dashed #47B6BD;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.yuda-file-upload-area:hover {
    border-color: #104CBA;
    background: #e9ecef;
}

.yuda-file-upload-area i {
    font-size: 24px;
    color: #47B6BD;
    margin-bottom: 8px;
}

.yuda-file-upload-area p {
    margin: 0;
    font-size: 12px;
    color: #666;
}

/* Scrollbar Styling for Chat */
.yuda-chat-messages::-webkit-scrollbar {
    width: 6px;
}

.yuda-chat-messages::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.yuda-chat-messages::-webkit-scrollbar-thumb {
    background: #47B6BD;
    border-radius: 3px;
}

.yuda-chat-messages::-webkit-scrollbar-thumb:hover {
    background: #104CBA;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .yuda-chat-widget {
        bottom: 15px !important;
        right: 15px !important;
    }

    .yuda-chat-container {
        width: calc(100vw - 30px) !important;
        right: -10px !important;
        height: 400px !important;
    }

    .yuda-chat-button {
        width: 55px !important;
        height: 55px !important;
        font-size: 22px !important;
    }

    .yuda-message-bubble {
        font-size: 12px !important;
        max-width: 85% !important;
    }

    .yuda-chat-option-btn {
        font-size: 12px !important;
        padding: 8px 12px !important;
    }

    .yuda-chat-form-control {
        font-size: 12px !important;
        padding: 6px 10px !important;
    }
}

@media (max-width: 360px) {
    .yuda-chat-container {
        width: calc(100vw - 20px) !important;
        right: -5px !important;
        height: 350px !important;
    }

    .yuda-chat-button {
        width: 50px !important;
        height: 50px !important;
        font-size: 20px !important;
    }
}

/* Animation for chat container */
.yuda-chat-container.show {
    display: flex !important;
    animation: yudaChatSlideUp 0.3s ease-out;
}

.yuda-chat-container.hide {
    animation: yudaChatSlideDown 0.3s ease-in;
}

@keyframes yudaChatSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes yudaChatSlideDown {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
}

/* Chat widget hidden state */
.yuda-chat-widget.hidden {
    display: none;
}

        /* Email-specific styles */
        .email-container {
            max-width: 600px;
            margin: 0 auto;
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
            font-family: "Lato", sans-serif;
            line-height: 1.6;
            color: #333;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(16, 76, 186, 0.15);
        }
        
        .email-header {
            background: linear-gradient(135deg, #47B6BD 0%, #104CBA 100%);
            padding: 30px 20px;
            text-align: center;
            border-radius: 10px 10px 0 0;
        }
        
        .email-header h1 {
            color: #FFFFFF;
            font-size: 28px;
            font-weight: bold;
            margin: 0;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        
        .email-content {
            background: #FFFFFF;
            padding: 40px 30px;
            margin: 0;
        }
        
        .greeting {
            font-size: 18px;
            color: #333;
            margin-bottom: 20px;
            font-weight: 500;
        }
        
        .intro-text {
            font-size: 16px;
            color: #555;
            margin-bottom: 30px;
            line-height: 1.7;
        }
        
        .submission-details {
            background: #f8f9fa;
            border-left: 4px solid #47B6BD;
            padding: 25px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        
        .submission-details h2 {
            color: #104CBA;
            font-size: 22px;
            font-weight: bold;
            margin: 0 0 20px 0;
            border-bottom: 2px solid #e9ecef;
            padding-bottom: 10px;
        }
        
        .detail-row {
            display: flex;
            margin-bottom: 15px;
            align-items: flex-start;
        }
        
        .detail-label {
            font-weight: bold;
            color: #104CBA;
            min-width: 120px;
            font-size: 16px;
        }
        
        .detail-value {
            color: #333;
            font-size: 16px;
            flex: 1;
            word-wrap: break-word;
        }
        
        .notes-section {
            background: #fff3cd;
            border: 1px solid #ffeaa7;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
        }
        
        .notes-section .detail-label {
            color: #856404;
        }
        
        .notes-section .detail-value {
            color: #856404;
            font-style: italic;
        }
        
        .action-text {
            font-size: 16px;
            color: #555;
            margin: 25px 0;
            padding: 15px;
            background: #e8f4fd;
            border-radius: 8px;
            border-left: 4px solid #47B6BD;
        }
        
        .email-footer {
            background: linear-gradient(135deg, #47B6BD 0%, #104CBA 100%);
            color: #FFFFFF;
            padding: 25px 30px;
            text-align: center;
            border-radius: 0 0 10px 10px;
        }
        
        .footer-text {
            margin: 5px 0;
            font-size: 16px;
        }
        
        .company-name {
            font-weight: bold;
            font-size: 18px;
            margin-top: 10px;
        }
        
        /* Responsive Design */
        @media (max-width: 600px) {
            .email-container {
                margin: 10px;
                max-width: calc(100% - 20px);
            }
            
            .email-content {
                padding: 25px 20px;
            }
            
            .email-header {
                padding: 20px 15px;
            }
            
            .email-header h1 {
                font-size: 24px;
            }
            
            .submission-details {
                padding: 20px 15px;
                margin: 20px 0;
            }
            
            .detail-row {
                flex-direction: column;
                margin-bottom: 20px;
            }
            
            .detail-label {
                min-width: auto;
                margin-bottom: 5px;
                font-size: 15px;
            }
            
            .detail-value {
                font-size: 15px;
            }
            
            .greeting {
                font-size: 16px;
            }
            
            .intro-text {
                font-size: 15px;
            }
            
            .action-text {
                font-size: 15px;
                padding: 12px;
            }
            
            .email-footer {
                padding: 20px 15px;
            }
            
            .footer-text {
                font-size: 15px;
                text-align: center;
            }
            
            .company-name {
                font-size: 16px;
            }
        }
        
        @media (max-width: 480px) {
            .email-container {
                margin: 5px;
                max-width: calc(100% - 10px);
            }
            
            .email-content {
                padding: 20px 15px;
            }
            
            .email-header h1 {
                font-size: 22px;
            }
            
            .submission-details h2 {
                font-size: 20px;
            }
        }
    
        bold {
            font-weight:bold;
        }

        