﻿:root {
    --primary-color: #EE6A5C;
    --dark-color: #000000;
    --grey-color: #9C9C9C;
    --white-color: #FFFFFF;
}

/* ================================= 
   CSS STYLESHEET - MAIN FILE
   ================================= 
   
   TABLE OF CONTENTS:
   1. COMMON/GLOBAL STYLES
   2. HEADER & NAVIGATION
   3. HERO SECTION
   4. TEAM SECTION
   5. FAQ & PRACTICE AREAS
   6. BLOG SECTION
   7. CONTACT SECTION
   8. FOOTER
   9. MODALS
   10. RESPONSIVE BREAKPOINTS
   
   ================================= */

/* ================================= 
   1. COMMON/GLOBAL STYLES
   ================================= 
   Base styling for HTML elements, fonts, and reusable components
*/
* {
    box-sizing: border-box;
    outline: none;
}

html {
    -webkit-text-size-adjust: none;
    min-height: 100%;
    height: 100%;
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    background: #fff;
    font-family: "Poppins", sans-serif;
    height: 100%;
    font-size: 14px;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
form,
input,
textarea,
select {
    margin: 0;
    padding: 0;
}

img {
    border: 0;
}

a {
    text-decoration: none;
    transition: ease all 0.25s;
}

.container {
    max-width: 1660px;
    padding: 0 65px;
}

/* Keep anchor targets visible below fixed/sticky header on hash navigation */
#aboutUs,
#ourTeam,
#practiceAreas,
#insights,
#contactUs {
    scroll-margin-top: 40px;
}

/* ================================= 
   2. HEADER & NAVIGATION
   ================================= 
   Header bar, logo, navigation menu, sticky header, and mobile menu styles
*/
.website-lable {
    background: var(--grey-color);
    color: var(--white-color);
    text-align: center;
    padding: 5px 12px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.website-lable-text {
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
    line-height: normal;
}

.logo-image {
    max-width: 265px;
    width: 100%;
    transition: all 0.3s ease;
}

.header.sticky-header .logo-image {
    max-width: 180px;
}

.header {
    padding: 32px 0 40px;
    transition: all 0.3s ease;
}

.header.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 99;
    background: var(--white-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0 15px;
    margin: 0;
}

#wrapper.sticky-active {
    padding-top: 0 !important;
}

.website-lable {
    background: var(--grey-color);
    color: var(--white-color);
    text-align: center;
    padding: 5px 12px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.website-lable.hide-label {
    display: none;
}

.header-navbar {
    align-items: center;
    justify-content: center;
}

.header-navbar .header-menu-link {
    font-size: 18px;
}

.header-logo {
    margin-right: auto;
}

.header-toggler {
    border: none;
    border-radius: 0;
    padding: 0;
}

.header-toggler:focus {
    box-shadow: none;
}

.header-toggler .navbar-toggler-icon {
    background-image: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Show hamburger icon by default, hide X */
.header-toggler .x-menu-toggle-icon {
    display: none;
}

.header-toggler .toggle-menu-icon {
    display: block;
}

/* When menu is open (Bootstrap sets aria-expanded="true"), swap icons */
.header-toggler[aria-expanded="true"] .toggle-menu-icon {
    display: none;
}

.header-toggler[aria-expanded="true"] .x-menu-toggle-icon {
    display: block;
}

.header-navbar .header-menu-link {
    color: var(--dark-color);
    font-size: 16px;
    font-weight: 400;
    padding: 4px 5px;
}

.header-menu-link:hover,
.header-menu-link:focus,
.header-menu-link.active {
    color: var(--primary-color);
}

.lang-btn {
    width: 45px;
    height: 45px;
    background: var(--white-color);
    border: 1px solid #707070;
    color: #7E7E7E;
    font-size: 17px;
    font-weight: 300;
    line-height: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: ease all 0.25s;
}

.lang-btn:hover {
    background: var(--dark-color);
    border-color: var(--dark-color);
    color: var(--white-color);
}

.lang-btn:focus-visible {
    outline: none;
    outline-offset: 0;
    box-shadow: none;
}

.header .linkedin-icon {
    background: #ADADAD;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
}

.header .linkedin-icon:hover {
    background: #0a66c2;
}

.header .linkedin-icon img {
    height: 20px;
}

/* ================================= 
   3. HERO SECTION
   ================================= 
   Full-width hero banner with background image and headline content
*/
.hero-section {
    background: var(--dark-color);
    min-height: 485px;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-section .hero-image {
    max-width: 100%;
    width: 100%;
    height: 100%;
    display: block;
    margin: 0 auto;
    opacity: 0.5;
    position: absolute;
    object-fit: cover;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
    padding: 50px 0;
    z-index: 1;
    position: relative;
    width: 100%;
}

.hero-title {
    color: var(--white-color);
    font-size: 40px;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 16px;
}

.hero-content p {
    color: var(--white-color);
    line-height: normal;
    max-width: 620px;
    margin: 0 auto;
}

/*==================================
Content CSS
================================= */

/* Common CSS */
.layout-space,
.layout-space-sm {
    padding: 50px 0;
}

.head-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.head-title .heading-icon {
    height: 65px;
}

.heading-text {
    font-size: 35px;
    font-weight: 600;
    color: var(--dark-color);
    padding-top: 8px;
}


p {
    font-size: 18px;
    line-height: normal;
    color: var(--dark-color);
    font-weight: 300;
}

.sec-heading {
    margin-bottom: 30px;
}

/* ================================= 
   4. TEAM SECTION
   ================================= 
   Team member cards, sliders, and profile information styling
*/
.team-slider-wrap {
    position: relative;
    margin-top: 26px;
    padding: 0 34px;
}

.team-slider-viewport {
    overflow: hidden;
}

.team-members-slider {
    display: flex;
    gap: 12px;
    transition: transform 0.45s ease;
    will-change: transform;
    margin-bottom: 12px;
}

.team-member {
    flex: 0 0 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.team-member-info {
    background: #4B4B4B;
    padding: 18px 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.team-member-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1.5;
    background: #E5E5E5;
}

.team-member-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-member-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.56);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.team-member-plus {
    color: var(--white-color);
    font-size: 70px;
    font-weight: 500;
    line-height: 1.5;
    width: 85px;
    height: 85px;
    border-radius: 50%;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    background: var(--primary-color);
    padding: 4px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
}

.team-member:hover .team-member-overlay,
.team-member:focus-within .team-member-overlay {
    opacity: 1;
    pointer-events: auto;
}

.team-member:hover .team-member-plus,
.team-member:focus-within .team-member-plus {
    transform: scale(1);
}

.team-member-name {
    font-size: 22px;
    font-weight: 500;
    color: var(--white-color);
    margin: 0;
}

.team-indicating {
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
    font-size: 18px;
    font-weight: 300;
    line-height: normal;
}

.team-member-links {
    position: absolute;
    top: 24px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 4;
}

.team-member-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}

.team-member-links a img {
    width: 45px;
    height: 45px;
    display: block;
    border-radius: 50px;
}

.team-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    z-index: 5;
    transition: opacity 0.1s ease;
}

.team-slider-prev {
    left: 0;
}

.team-slider-next {
    right: 0;
}

.team-slider-arrow img {
    width: auto;
    height: 25px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.team-slider-arrow:disabled {
    cursor: default;
    opacity: 0.5;
}

.team-slider-arrow:hover {
    opacity: 0.65;
}

/* ================================= 
   5. BLOG SECTION
   ================================= 
   Blog articles carousel, cards, and blog-related styling
*/
.blog-slider-wrap {
    position: relative;
    margin-top: 20px;
    padding: 0 34px;
}

.blog-slider-viewport {
    overflow: hidden;
}

.blog-slider-track {
    display: flex;
    gap: 32px;
    transition: transform 0.45s ease;
    will-change: transform;
}

/* Position blog slider arrows centered on the image only */
#blogSliderWrap .team-slider-arrow {
    top: 33%;
}

.blog-card {
    flex: 0 0 100%;
    background: var(--white-color);
}

.blog-card-media {
    display: block;
    overflow: hidden;
    background: #E5E5E5;
    border: solid #D5D5D5 1px;
}

.blog-card-image {
    width: 100%;
    aspect-ratio: 1 / 0.95;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.blog-card:hover .blog-card-image,
.blog-card:focus-within .blog-card-image {
    transform: scale(1.03);
}

.blog-card-content {
    padding: 18px 0 0;
}

.blog-card-date {
    font-size: 18px;
    color: var(--dark-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: solid #C4C4C4 1px;
}

.blog-card-title {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
}

.blog-card-title a {
    color: var(--dark-color);
}

.blog-card-title a:hover,
.blog-card-title a:focus {
    color: var(--primary-color);
}

.blog-popup-content {
    border: none;
    border-radius: 0;
    padding: 10px;
}

.blog-popup-header {
    border: none;
    padding: 18px 18px 0;
    align-items: flex-start;
}

.blog-popup-date {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
}

.blog-popup-close {
    box-shadow: none !important;
}

.blog-popup-body {
    padding: 8px 18px 22px;
}

.blog-popup-image {
    width: 100%;
    display: block;
    margin-bottom: 20px;
}

.blog-popup-title {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 14px;
    color: var(--dark-color);
}

.blog-popup-text {
    margin: 0;
    color: var(--grey-color);
    line-height: 1.8;
}

.content-box {
    background: var(--white-color);
    border: 1px solid #ADADAD;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 100px;
}

.content-box-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.65;
}

.grey-bg {
    background-color: #F5F5F5;
}

.head-title-sm {
    font-size: 30px;
    font-weight: 600;
    color: var(--dark-color);
}

.sec-heading.heading-center .head-title {
    justify-content: center;
}

/* Culture & Values Section */
.culture-tabs-nav {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.culture-tabs-nav .nav-item {
    width: 100%;
}

.culture-tab-trigger {
    border: 0;
    border-radius: 0;
    background: var(--white-color);
    width: 100%;
    padding: 0;
    text-align: left;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    color: var(--dark-color);
    position: relative;
}

.culture-tab-trigger:hover,
.culture-tab-trigger:focus {
    color: var(--dark-color);
}

.culture-tab-image {
    display: block;
    min-height: 210px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.culture-tab-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.culture-tab-title {
    color: var(--white-color);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.2;
    padding: 14px 18px;
    min-height: 72px;
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    justify-content: center;
}

.culture-tab-trigger.active {
    background: var(--white-color);
    color: var(--dark-color);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.culture-tab-trigger.active .culture-tab-image::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 41px;
    height: 26px;
    background-image: url('../images/ar-down-pr.svg');
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 3;
}

.culture-tab-content .tab-pane {
    margin-top: 18px;
}

.culture-accordion {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(210px, 1fr);
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 8px;
}

.culture-accordion-item {
    border: 0;
    border-radius: 0;
    overflow: hidden;
    background: transparent;
    min-height: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.culture-image-header {
    display: block;
    min-height: 210px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.culture-accordion-button {
    background: var(--white-color);
    color: var(--white-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    font-size: 0;
    padding: 0;
    position: relative;
    z-index: 0;
    min-height: 210px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Hide Bootstrap's default chevron */
.culture-accordion-button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

/* Custom ar-down-pr arrow */
.culture-accordion-button::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 26px;
    background-image: url('../images/ar-down-pr.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.culture-accordion-button:not(.collapsed)::after {
    background-image: url('../images/ar-down-pr.svg');
    transform: none;
}

.culture-accordion-button:not(.collapsed)::after {
    opacity: 1;
}

.culture-accordion-button.collapsed::after {
    opacity: 0;
}

.culture-item-heading {
    color: var(--dark-color);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
    padding: 14px 18px;
    background: var(--white-color);
    min-height: 72px;
    display: flex;
    align-items: center;
}

.culture-accordion-body {
    color: var(--dark-color);
    font-size: 18px;
    font-weight: 400;
    padding: 16px 18px;
    border-radius: 0;
}

.culture-accordion .accordion-collapse {
    background: var(--white-color);
}

/* Mobile accordion layout */
.culture-mobile-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
}

.culture-mobile-accordion .accordion-item {
    border: none;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
}

/* Ensure the title overlay appears above the dark overlay in accordion buttons */
.culture-mobile-accordion .culture-tab-title {
    color: var(--white-color);
    font-size: 30px;
    font-weight: 400;
    line-height: 1.2;
    padding: 14px 18px;
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.culture-mobile-accordion .accordion-button:focus {
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

/* Culture & Values Section End */


/* =========================
   Practice Areas Section
========================= */

.accordion-item:first-of-type>.accordion-header .accordion-button,
.accordion-item:last-of-type>.accordion-header .accordion-button,
.accordion-item:last-of-type {
    border-radius: 0 !important;
}

.accordion-item:first-of-type {
    border-radius: 0;
}

.faq-accordion {
    max-width: 1132px;
    margin: 0 auto;
}

.practice-select-wrap {
    display: none;
    margin-bottom: 18px;
}

.practice-select-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
}

.practice-select {
    width: 100%;
    min-height: 52px;
    border: 1px solid #C6C6C6;
    border-radius: 0;
    background: var(--white-color);
    color: var(--dark-color);
    font-size: 16px;
    padding: 10px 14px;
}

.faq-item {
    border: none;
    border-radius: 0;
    margin-bottom: 20px;
    overflow: hidden;
    background: var(--white-color);
}

.faq-button {
    padding: 24px 32px;
    font-size: 24px;
    font-weight: 400;
    color: var(--dark-color);
    background: var(--white-color);
    border: solid #C6C6C6 1px;
    box-shadow: none !important;
    line-height: 1.5;
}

.faq-button:not(.collapsed) {
    color: var(--primary-color);
    background: var(--white-color);
}

.faq-button::after {
    width: 18px;
    height: 12px;
    background-image: url('../images/down-chevron-ar.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px 12px;
    transition: transform 0.25s ease;
}

.pa-section .accordion-button:not(.collapsed)::after {
    background-image: url('../images/down-chevron-ar.svg');
}

/* Body */

.faq-body {
    padding: 50px 90px;
    border: solid #CECECE 1px;
    background: #EBEBEB;
    margin-top: -1px;
}

.faq-body p {
    color: #747474;
}

/* List */

.faq-list {
    margin: 20px 0 24px;
    padding: 0;
    list-style: none;
}

.faq-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 24px;
    border-bottom: solid #AFAFAF 1px;
}

.faq-list li+li {
    margin-top: 24px;
}

.faq-list li:last-child {
    border-bottom: none;
}

.faq-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-color);
}

.faq-contact-info {
    background: var(--primary-color);
    padding: 18px 42px;
    margin-top: 30px;
}

.faq-contact-info p {
    font-weight: 700;
    color: var(--white-color);
    margin: 0;
    line-height: normal;
    display: flex;
    gap: 0 12px;
    flex-wrap: wrap;
}

.faq-contact-info p span {
    font-weight: 400;
}

.faq-contact-info p a {
    color: var(--white-color);
    text-decoration: underline;
}

.logo-bg {
    position: relative;
    overflow: hidden;
}

.logo-bg>* {
    position: relative;
    z-index: 2;
}

.logo-bg:after {
    content: "";
    position: absolute;
    background-image: url(../images/backgroud-logo.svg);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: auto;
    width: 100%;
    height: 100%;
    bottom: -250px;
}

.footer-list li p {
    margin-bottom: 12px;
}

/* ================================= 
   9. RESPONSIVE BREAKPOINTS
   ================================= 
   Media queries for different screen sizes:
   - 1399px and below
   - 1199px and below
   - 991px and below (tablet)
   - 767px and below (mobile)
   - 575px and below (small mobile)
   
   Adjusted padding, font sizes, layouts, and visibility for optimal display
*/








/* ================================= 
   6. CONTACT SECTION
   ================================= 
   Contact form, contact information, and contact-related styling
*/

/* Contact Section */
.contact-section {
    position: relative;
}

.contact-info {
    padding-top: 20px;
    max-width: 460px;
    margin: 0 auto;
}

.contact-info p {
    margin-bottom: 30px;
}

.contact-info ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-info li {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--dark-color);
    line-height: 1.6;
}

.contact-info li p {
    margin: 0;
}

.contact-info ul li+li {
    border-top: solid #C6C6C6 1px;
    margin: 12px 0 12px 0;
    padding: 12px 0 0 0;
}

.contact-info a {
    color: var(--dark-color);
    font-weight: 700;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-color);
}

/* Contact Card */
.contact-card {
    background: var(--white-color);
    border: 1px solid #B7B7B7;
    padding: 70px 80px 80px;
    transition: box-shadow 0.3s ease;
}

.contact-card h3 {
    font-size: 39px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark-color);
}

.contact-card p {
    margin-bottom: 24px;
}

/* Contact Form */
.contact-form {
    margin: 50px -12px 0;
}

.contact-submit-wrap {
    display: flex;
    justify-content: flex-end;
}

.contact-form fieldset {
    border: none;
    margin: 0;
    padding: 0;
}

/* Floating Label Styles */
.form-floating>label {
    color: var(--dark-color);
    font-size: 15px;
    font-weight: 300;
    padding: 1rem 0.75rem;
}

.form-floating>.form-control {
    background-color: #FFFFFF;
    border: 1px solid #B7B7B7;
    border-radius: 0;
    padding: 1.625rem 0.75rem 0.625rem 0.75rem;
    font-size: 18px;
    color: var(--dark-color);
    margin-bottom: 16px;
    transition: all 0.3s ease;
    height: auto;
    color: var(--dark-color);
}

.form-floating>.form-control::placeholder {
    color: transparent;
}

.form-floating>.form-control:focus {
    background-color: #FFFFFF;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(238, 106, 92, 0.1);
    color: var(--dark-color);
}

.form-floating>.form-control:not(:placeholder-shown) {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label {
    font-size: 14px;
}

/* Required Asterisk */
.required-asterisk {
    color: var(--primary-color);
    font-weight: 700;
    margin-left: 2px;
}

/* Floating Label Textarea */
.form-floating>textarea {
    resize: vertical;
    min-height: 120px;
    font-family: "Poppins", sans-serif;
    padding: 1.625rem 0.75rem 0.625rem 0.75rem;
}

/* Submit Button */
.submit-btn {
    background: var(--primary-color);
    color: var(--white-color);
    border: none;
    padding: 15px 40px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 10px;
    border-radius: 100px;
    min-width: 165px;
}

.submit-btn:hover {
    background: var(--dark-color);
    border-color: var(--dark-color);
    color: var(--white-color);
}

.submit-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(238, 106, 92, 0.3);
}

.submit-btn:active {
    transform: translateY(1px);
}













/* ================================= 
   8. MODALS
   ================================= 
   Modal dialogs, career popup, and modal-related styling
*/
.career-popup-modal .modal-dialog {
    max-width: 1262px;
}




.career-popup-content {
    border: 1px solid #D2D2D2;
    border-radius: 0;
    background: #FFFFFF;
    padding: 56px 56px 64px;
    position: relative;
}

.career-popup-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    box-shadow: none !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #F1F1F1;
}

.career-popup-body {
    padding: 0;
}

.career-popup-line {
    width: 4px;
    height: 78px;
    background: var(--primary-color);
    display: block;
    flex: none;
}

.career-popup-body {
    padding: 0;
    max-width: 925px;
    margin: 0 auto;
}

.career-popup-text {
    color: var(--grey-color);
    margin-bottom: 30px;
}

.career-popup-highlight {
    max-width: 940px;
    font-size: 34px;
    line-height: 1.25;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 36px;
}

.career-popup-form-box {
    max-width: 100%;
    border: 1px solid #B7B7B7;
    padding: 60px 80PX;
}

.career-popup-form-box h4 {
    font-size: 40px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.career-popup-form-box>p {
    max-width: 760px;
    font-size: 18px;
    line-height: 1.6;
    color: var(--grey-color);
    margin-bottom: 24px;
}

.career-form-group {
    margin-bottom: 18px;
}

.career-popup-form-box .form-floating>label {
    color: var(--dark-color);
    font-size: 15px;
    font-weight: 500;
}

.career-popup-form-box .form-floating>.form-control {
    border: 1px solid #B7B7B7;
    background: #FFFFFF;
    margin-bottom: 0;
    font-size: 16px;
}

.career-popup-form-box .form-floating>.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(238, 106, 92, 0.12);
}

.career-popup-form-box .form-floating>textarea.form-control {
    min-height: 140px;
    resize: none;
}

.career-upload-box {
    background: #DBDBDB;
    padding: 18px 20px;
    margin-bottom: 18px;
}

.career-upload-box label {
    display: block;
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.career-upload-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.career-upload-inner input {
    display: none;
}

.career-upload-btn {
    min-width: 120px;
    height: 44px;
    border-radius: 100px;
    background: #9C9C9C;
    color: var(--white-color);
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-bottom: 0 !important;
    font-size: 14px;
    font-weight: 600;
    padding: 0 16px;
}

.career-file-name {
    font-size: 14px;
    color: var(--grey-color);
    overflow-wrap: anywhere;
}

.career-submit-wrap {
    display: flex;
    justify-content: flex-end;
}

.career-submit-btn {
    border-radius: 100px;
    border: none;
    background: var(--primary-color);
    color: var(--white-color);
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s ease;
    padding: 15px 40px;
}

.career-submit-btn:hover {
    background: var(--dark-color);
    border-color: var(--dark-color);
}













/* ================================= 
   7. FOOTER
   ================================= 
   Footer content, links, social icons, and footer-related styling
*/
.footer {
    background: #DBDBDB;
    padding-top: 80px;
    overflow: hidden;
}

.footer-left {
    padding-right: 30px;
}

.footer-logo {
    margin-bottom: 40px;
}

.footer-logo-link {
    display: inline-block;
}

.footer-logo-image {
    max-width: 350px;
    width: 85%;
}

.footer-desc {
    margin-bottom: 28px;
}

.footer-contact p {
    margin: 0 0 4px;
}

.footer-contact a {
    color: var(--dark-color);
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.footer-top h3 {
    margin: 0;
    font-size: 35px;
    font-weight: normal;
    text-transform: uppercase;
    color: var(--dark-color);
}

.footer-btn {
    border: 2px solid var(--primary-color);
    border-radius: 100px;
    background: var(--primary-color);
    color: var(--white-color);
    text-decoration: none;
    font-size: 22px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-width: 190px;
    padding: 14px 40px;
}

.footer-btn {
    border: none;
    border-radius: 100px;
    background: var(--primary-color);
    color: var(--white-color);
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 15px 40px;
}

.footer-btn:hover {
    background: var(--dark-color);
    border-color: var(--dark-color);
    color: var(--white-color);
}

.footer-line {
    width: 100%;
    height: 1px;
    background: #7f7f7f;
    margin-bottom: 28px;
}

.footer-list {
    margin: 0;
}

.footer-list li {
    font-size: 14px;
    color: var(--dark-color);
    margin-bottom: 12px;
    position: relative;
    list-style: none;
    padding-left: 20px;
}

.footer-list li::before {
    content: '';
    position: absolute;
    top: 12px;
    width: 5px;
    height: 5px;
    left: 0;
    border-radius: 50%;
    background: var(--dark-color);
}

.footer-list li::marker {
    display: none;
}

.footer-list li a {
    color: var(--dark-color);
    text-decoration: none;
    transition: color 0.25s ease;
    display: inline-block;
}

.footer-list li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    margin-top: 70px;
    background: #BEBEBE;
    padding: 22px 0;
}

.footer-bottom-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom-wrap p {
    margin: 0;
    font-size: 16px;
    color: #ffffff;
    text-align: left;
    padding-right: 24px;
}

.footer-social {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    flex: none;
    position: absolute;
    right: 20px;
}

.footer-social img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.footer .form-select {
    background-color: #FFFFFF;
    border: solid #C6C6C6 1px;
    border-radius: 0;
    height: 55px;
    font-size: 18px;
    padding: 0 24px;
    max-width: 306px;
}

.team-description.team-description-sort {
    margin-top: -20px;
}

.team-section {
    background: #F4F4F4;
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px;
}

.team-image img {
    width: 100%;
    display: block;
    max-width: 540px;
    margin: 0 auto;
}

.team-content {
    padding-left: 35px;
}

.team-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 55px;
}

.team-title-wrap {
    flex: 1;
}

.team-title {
    font-size: 50px;
    font-weight: 500;
    color: var(--dark-color);
    line-height: 1.1;
}

.team-designation {
    max-width: 720px;
    color: var(--dark-color);
    margin-bottom: 0;
    margin-top: 24px;
    font-weight: 700;
}

.team-contact-box {
    position: absolute;
    right: 0;
    top: 90px;
    width: 400px;
    z-index: 9;
}

.team-contact-item {
    width: 100%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 15px;
    margin-bottom: 5px;
    text-decoration: none;
    color: var(--white-color);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.team-contact-item:last-child {
    margin-bottom: 0;
}

.team-contact-item span {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--white-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.team-language {
    background: #6a6a6a;
}

.team-language span {
    color: #6a6a6a;
}

.team-language strong {
    font-weight: 700;
}

.team-description p {
    color: var(--dark-color);
    margin-bottom: 38px;
}

/* responsive css start */
@media all and (min-width: 576px) {

    /* Common CSS */
    .website-lable-text {
        letter-spacing: 20%;
        font-size: 16px;
    }

    /*==Header CSS== */

    /* Hero CSS */
    .hero-title {
        font-size: 42px;
        margin-bottom: 20px;
    }

    .heading-text {
        font-size: 40px;
    }

    .hero-content p {
        font-size: 18px;
    }

    /*==Common CSS== */

    /*==Footer CSS== */
}

@media all and (min-width: 768px) {

    /*==Header CSS== */
    .menu-section {
        margin-top: 20px;
    }

    /*==Banner CSS== */

    /*==Common CSS== */
    .layout-space,
    .layout-space-sm {
        padding: 65px 0;
    }

    .head-title .heading-icon {
        height: 65px;
    }

    .head-title-sm {
        font-size: 36px;
    }

    /* Culture & Values Section */
    .culture-tabs-nav {
        gap: 18px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .culture-tab-image {
        min-height: 240px;
    }

    .culture-tab-title {
        font-size: 26px;
        padding: 16px 22px;
        min-height: 84px;
    }

    .culture-tab-content .tab-pane {
        margin-top: 30px;
    }

    .culture-accordion {
        gap: 18px;
    }

    .culture-accordion-item {
        min-height: 0;
    }

    .culture-accordion-button {
        font-size: 0;
        padding: 0;
        min-height: 240px;
    }

    .culture-image-header {
        min-height: 240px;
    }

    .culture-mobile-accordion .culture-tab-title {
        font-size: 26px;
        padding: 16px 22px;
    }

    .culture-accordion-body {
        font-size: 20px;
        padding: 18px 22px;
    }

    .culture-item-heading {
        font-size: 26px;
        padding: 16px 22px;
        min-height: 84px;
    }

    /*==Footer CSS== */
}

@media all and (min-width: 992px) {

    /*==Header CSS== */
    .website-lable {
        min-height: 45px;
    }

    .website-lable-text {
        font-size: 18px;
        letter-spacing: 30%;
    }

    .header-navbar {
        align-items: center;
        justify-content: space-between;
    }

    .menu-section {
        margin-top: 0;
    }

    .header-navbar .navbar-nav {
        gap: 20px;
    }

    .header .linkedin-icon {
        display: none;
    }

    .lang-btn {
        margin-left: 30px;
    }

    /* Culture & Values Section */
    .culture-tabs-nav {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    /* Floating Label Desktop */
    .form-floating>label {
        font-size: 18px;
        padding: 1rem 0.75rem;
    }

    .form-floating>.form-control {
        font-size: 18px;
        padding: 1.625rem 0.75rem 0.625rem 0.75rem;
        margin-bottom: 28px;
    }

    .form-floating>textarea.form-control {
        min-height: 165px;
    }

    .form-floating>.form-control:focus~label,
    .form-floating>.form-control:not(:placeholder-shown)~label {
        font-size: 14px;
    }

    /*==Banner CSS== */


    /*==Content CSS== */
    .layout-space {
        padding: 80px 0;
    }

    .heading-text {
        font-size: 44px;
    }

    /*==Footer CSS== */
}

@media all and (min-width: 1200px) {

    .team-top,
    .team-description-sort {
        padding-right: 330px;

    }

    /*== Commen CSS == */

    /*==Header CSS== */
    .website-lable-text {
        font-size: 20px;
        letter-spacing: 40%;
    }

    .header-navbar .navbar-nav {
        gap: 32px;
    }

    .header-navbar .header-menu-link {
        font-size: 20px;
    }

    /*==Banner CSS== */
    .hero-section {
        min-height: 80vh;
    }

    .hero-title {
        font-size: 48px;
        margin-bottom: 30px;
    }

    .hero-content p {
        font-size: 20px;
    }

    /*==Content CSS== */
    .layout-space,
    .layout-space-sm {
        padding: 90px 0;
    }

    .heading-text {
        font-size: 52px;
    }

    .head-title .heading-icon {
        height: 90px;
    }

    .head-title-sm {
        font-size: 40px;
    }

    /* Culture & Values Section */
    .culture-tab-image {
        min-height: 290px;
    }

    .culture-image-header {
        min-height: 290px;
    }

    .culture-accordion-button {
        min-height: 290px;
    }

    /*==Footer CSS== */
}

@media all and (min-width: 1400px) {

    .team-top,
    .team-description-sort {
        padding-right: 380px;
    }

    .footer-list li::before {
        top: 13px;
    }

    /*==Header CSS== */
    .header-navbar .navbar-nav {
        gap: 36px;
    }

    .lang-btn {
        margin-left: 40px;
    }

    /*==Banner CSS== */
    .hero-title {
        font-size: 65px;
    }

    /*==Content CSS== */
    .layout-space {
        padding: 100px 0;
    }

    .sec-heading {
        margin-bottom: 40px;
    }

    .heading-text {
        font-size: 54px;
    }

    .head-title .heading-icon {
        height: 80px;
    }

    p {
        font-size: 20px;
    }

    .content-box-title {
        font-size: 30px;
        line-height: 1.65;
    }

    .culture-tab-content .tab-pane {
        margin-top: 40px;
    }

    /*==Footer CSS== */
}

@media all and (min-width: 1640px) {

    /*==Header CSS== */
    .website-lable-text {
        font-size: 20px;
        letter-spacing: 60%;
    }

    .header-navbar .header-menu-link {
        font-size: 20px;
    }

    .lang-btn {
        margin-left: 50px;
    }

    /*==Banner CSS== */


    /*==Content CSS== */
    .layout-space {
        padding: 120px 0;
    }

    .sec-heading {
        margin-bottom: 50px;
    }

    .content-box-title {
        font-size: 32px;
    }

    /* Culture & Values Section */

    /*==Footer CSS== */
}

@media all and (max-width: 1400px) {
    .career-popup-modal .modal-dialog {
        max-width: 1140px;
    }

    .career-popup-content {
        padding: 48px 42px 52px;
    }

    .career-popup-highlight {
        font-size: 30px;
    }

    .career-popup-form-box {
        padding: 46px 54px;
    }
    .blog-card-title {
        font-size: 20px;
    }
}

@media all and (max-width: 1340px) {
    .team-member-name {
        font-size: 20px;
    }

    .team-member-info {
        padding: 15px 5px;
    }
}

@media all and (max-width: 1399px) {
    .team-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .team-top {
        gap: 30px;
        margin-bottom: 42px;
    }

    .team-title {
        font-size: 40px;
    }

    .team-contact-box {
        width: 350px;
    }

    .team-contact-item {
        font-size: 18px;
    }
}

@media all and (max-width: 1199px) {
    .container {
        padding: 0 50px;
    }

    .contact-card {
        padding: 48px 36px;
    }

    .contact-card h3 {
        font-size: 32px;
        line-height: 1.2;
    }

    .contact-form {
        margin-top: 36px;
    }

    .content-box {
        padding: 70px 80px;
    }

    .career-popup-highlight {
        font-size: 30px;
    }

    .career-popup-form-box h4 {
        font-size: 34px;
    }

    .team-section {
        padding-top: 45px;
        padding-bottom: 45px;
    }

    .team-top {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 34px;
        margin-left: auto;
        margin-right: auto;
    }

    .team-contact-box {
        position: static;
        width: 100%;
        max-width: 100%;
    }

    .team-title {
        font-size: 42px;
    }
}

@media all and (max-width: 991px) {
    .faq-section {
        padding: 70px 0;
    }

    .faq-title {
        font-size: 34px;
    }

    .contact-section .contact-info {
        padding-top: 0;
        margin-bottom: 8px;
    }

    .contact-card h3 {
        font-size: 28px;
    }

    .contact-form {
        margin-top: 28px;
    }

    .contact-form .col-md-6 {
        width: 100%;
    }

    .form-floating>.form-control {
        font-size: 16px;
        margin-bottom: 14px;
    }

    .contact-submit-wrap {
        justify-content: center;
        margin-top: 6px;
    }

    .career-popup-line {
        height: 62px;
    }

    .career-popup-text {
        font-size: 17px;
        line-height: 1.6;
        margin-bottom: 22px;
    }

    .career-popup-highlight {
        font-size: 26px;
        margin-bottom: 28px;
    }

    .career-popup-form-box {
        padding: 26px 20px;
    }

    .career-popup-form-box .form-floating>.form-control {
        font-size: 15px;
    }

    .career-popup-form-box h4 {
        font-size: 32px;
    }

    .team-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .team-content {
        padding-left: 0;
        margin-top: 32px;
    }

    .team-image {
        max-width: 100%;
        margin: 0 auto 24px;
    }

    .team-title {
        font-size: 38px;
        margin-bottom: 18px;
    }

    .team-designation {
        font-weight: 600;
    }

    .team-contact-item {
        padding: 12px 16px;
        min-height: 56px;
    }

    .footer {
        padding-top: 50px;
    }

    .footer-right {
        padding-left: 0;
        margin-top: 50px;
    }

    .footer-left {
        padding-right: 0;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-top h3 {
        font-size: 34px;
    }

    .footer-logo-image {
        max-width: 220px;
    }

    .footer-bottom {
        margin-top: 50px;
    }

    /* Header CSS */
    .header-toggler {
        border: none;
        border-radius: 0;
        padding: 0;
        position: absolute;
        top: -24px;
        right: -12px;
    }

    #wrapper.sticky-active button.navbar-toggler.header-toggler {
        top: 0;
    }

    .header-logo {
        margin-top: 16px;
    }

    .menu-section-list {
        position: absolute;
        left: -50px;
        top: calc(100% + 12px);
        background: #EBEBEB;
        width: calc(100% + 100px);
        box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.25);
        padding: 30px 40px 40px;
        z-index: 9999;
    }

    .menu-section-list.collapse:not(.show) {
        display: none !important;
    }

    .menu-section-list.collapse.show {
        display: block !important;
    }

    .header-navbar li.nav-item {
        border-bottom: solid #B4B4B4 1px;
        padding-bottom: 10px;
        margin-top: 10px;
        display: block;
    }

    .header-navbar li.nav-item:last-child {
        border-bottom: none;
    }

    .header-navbar .header-menu-link {
        font-size: 20px;
    }

    .menu-section-btn {
        display: flex;
        justify-content: space-between;
        width: 100%;
        margin-top: 15px;
    }

    .team-slider-wrap {
        padding: 0 22px;
    }

    .team-slider-arrow {
        top: 50%;
        transform: translateY(-50%);
    }

    .team-member-links {
        top: 16px;
        right: 16px;
        gap: 10px;
    }

    .team-member-links a,
    .team-member-links a img {
        width: 40px;
        height: 40px;
    }

    .team-member-plus {
        font-size: 60px;
        width: 78px;
        height: 78px;
        line-height: 1;
    }

    .team-member-name {
        font-size: 22px;
    }

    .team-member-info {
        padding: 12px 8px;
    }

    .team-slider-prev {
        left: -16px;
    }

    .team-slider-next {
        right: -16px;
    }

    .blog-slider-wrap {
        padding: 0 22px;
    }

    .blog-card-title {
        font-size: 21px;
    }

    #blogSliderWrap .team-slider-arrow {
        top: 42%;
    }

    .blog-popup-title {
        font-size: 26px;
    }
}

@media all and (max-width: 767px) {
    .faq-section {
        padding: 55px 0;
    }

    .faq-heading {
        margin-bottom: 35px;
    }

    .faq-title {
        font-size: 28px;
        gap: 10px;
    }

    .faq-title-icon {
        max-width: 32px;
    }

    .faq-tags {
        gap: 10px;
    }

    .faq-tags a {
        width: 100%;
    }

    .faq-contact-info {
        padding: 18px 22px;
    }

    .faq-contact-info p {
        gap: 0 8px;
    }

    .career-popup-modal .modal-dialog {
        margin: 0.75rem;
    }

    .career-popup-close {
        top: 12px;
        right: 12px;
        width: 34px;
        height: 34px;
    }

    .career-popup-line {
        width: 3px;
        height: 54px;
    }

    .career-popup-highlight {
        font-size: 22px;
    }

    .career-popup-form-box h4 {
        font-size: 28px;
    }

    .career-submit-wrap {
        justify-content: center;
    }

    .career-submit-btn {
        padding: 12px 40px;
        font-size: 18px;
        margin-top: 16px;
    }

    .career-upload-inner {
        align-items: flex-start;
    }

    .career-file-name {
        width: 100%;
    }

    .team-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .team-content {
        padding-left: 0;
    }

    .team-title {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .team-contact-icon {
        width: 24px;
        height: 24px;
        min-width: 24px;
    }

    .faq-button {
        padding: 20px 20px;
        font-size: 18px;
    }

    .faq-body {
        padding: 30px;
    }

    .footer-logo-image {
        max-width: 190px;
    }

    .footer-logo {
        text-align: center;
    }

    .footer-desc {
        font-size: 18px;
        text-align: center;
    }

    .footer-contact {
        text-align: center;
    }

    .footer-contact p {
        font-size: 18px;
    }

    .footer-top {
        align-items: center;
        margin: 0;
    }

    .footer-top h3 {
        font-size: 28px;
    }

    .footer-btn {
        padding: 10px 30px;
        font-size: 16px;
        min-width: auto;
    }

    .footer-right {
        margin-top: 36px;
    }

    .footer-list li {
        font-size: 17px;
        line-height: 1.6;
    }

    .footer-bottom-wrap {
        align-items: center;
        gap: 20px;
    }

    .footer-list li a {
        line-height: 1.5;
    }

    .culture-tabs-nav {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .culture-tab-trigger {
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    }

    .culture-tab-image {
        min-height: 190px;
    }

    .culture-tab-title {
        font-size: 20px;
        min-height: 64px;
    }

    .culture-tab-content {
        margin-top: 12px;
        padding: 18px 18px;
    }

    /* Mobile accordion responsive styles */
    .culture-mobile-accordion {
        gap: 20px;
        margin-bottom: 12px;
    }

    .culture-accordion-button {
        min-height: 190px;
        border-radius: 0 !important;
        aspect-ratio: 1 / .51;
    }

    .culture-mobile-accordion .culture-tab-title {
        padding: 14px 18px;
    }

    .culture-accordion-body {
        font-size: 16px;
        padding: 15px 0;
    }

    /* Contact Section - Tablet */
    .contact-card {
        margin-top: 30px;
    }

    /* Floating Label Tablet */
    .form-floating>label {
        font-size: 14px;
        padding: 0.875rem 0.75rem;
    }

    .form-floating>.form-control {
        font-size: 16px;
        padding: 1.5rem 0.75rem 0.625rem 0.75rem;
        margin-bottom: 20px;
    }

    .form-floating>.form-control:focus~label,
    .form-floating>.form-control:not(:placeholder-shown)~label {
        font-size: 12px;
    }
}

@media all and (min-width: 576px) and (max-width: 991px) {
    .contact-submit-wrap {
        justify-content: flex-end;
    }

    .submit-btn {
        font-size: 18px;
        padding: 12px 32px;
        min-width: 170px;
    }
}

@media all and (max-width: 575px) {
    .modal .heading-text {
        font-size: 32px;
    }

    .career-popup-line {
        height: 44px;
    }

    .career-popup-highlight {
        margin-bottom: 30px;
    }

    .career-popup-form-box {
        padding: 24px 0 0;
        border-width: 1px 0 0 0;
    }

    .career-popup-content .sec-heading.heading-center .head-title {
        justify-content: left;
    }

    .career-popup-form-box h4 {
        font-size: 24px;
    }

    .career-form-group {
        margin-bottom: 14px;
    }

    .career-popup-form-box .form-floating>label {
        font-size: 14px;
    }

    .career-popup-form-box .form-floating>.form-control {
        font-size: 14px;
    }

    .career-popup-form-box .form-floating>textarea.form-control {
        min-height: 120px;
    }

    .team-section {
        padding-top: 35px;
        padding-bottom: 35px;
    }

    .team-title {
        font-size: 28px;
    }

    .team-top {
        gap: 16px;
        margin-bottom: 20px;
    }

    .team-contact-box {
        max-width: 100%;
        margin-top: 0;
    }

    .team-contact-item {
        min-height: 48px;
        padding: 8px 12px;
        gap: 8px;
    }

    .team-contact-icon {
        width: 22px;
        height: 22px;
        min-width: 22px;
    }

    .footer-right {
        margin-top: 28px;
    }

    .footer-top {
        gap: 14px;
        margin-bottom: 20px;
    }

    .footer-top h3 {
        font-size: 24px;
    }

    .footer-btn {
        justify-content: center;
    }

    .footer-list {
        padding-left: 18px;
    }

    .footer-list li {
        font-size: 16px;
        line-height: 1.45;
    }

    .footer-bottom {
        margin-top: 36px;
        padding: 16px 0;
    }

    .footer-bottom-wrap {
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .footer-social {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }

    .culture-mobile-accordion .culture-tab-title {
        font-size: 24px;
    }

    .faq-body p,
    .faq-list li {
        font-size: 16px;
    }

    /* Contact Section */
    .contact-card {
        margin-top: 30px;
    }

    .contact-card h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    /* Floating Label Mobile */
    .form-floating>label {
        font-size: 14px;
        padding: 0.875rem 0.65rem;
    }

    .form-floating>.form-control {
        font-size: 14px;
        padding: 1.5rem 0.65rem 0.625rem 0.65rem;
        margin-bottom: 14px;
    }

    .form-floating>.form-control:focus~label,
    .form-floating>.form-control:not(:placeholder-shown)~label {
        font-size: 12px;
    }

    .submit-btn {
        padding: 10px 30px;
        font-size: 16px;
        min-width: auto;
    }

    /* Header CSS */
    .header-navbar .header-menu-link {
        font-size: 18px;
    }

    /* Mobile Sticky Header */
    .header.sticky-header {
        padding: 12px 0 12px;
    }

    .header.sticky-header .logo-image {
        max-width: 140px;
    }

    .content-box {
        padding: 40px;
    }

    .content-box-title {
        font-size: 20px;
        width: 100%;
    }

    .team-slider-wrap {
        padding: 0;
    }

    .team-members-slider {
        gap: 12px;
    }

    .team-member-links {
        top: 15px;
        right: 15px;
        gap: 8px;
    }

    .team-member-links a,
    .team-member-links a img {
        width: 34px;
        height: 34px;
    }

    .team-member-plus {
        font-size: 44px;
        width: 60px;
        height: 60px;
        line-height: 1;
    }

    .team-member-name {
        font-size: 18px;
    }

    .team-member-info {
        padding: 10px 8px;
        gap: 4px;
    }

    .team-slider-prev {
        left: -28px;
    }

    .team-slider-next {
        right: -28px;
    }

    .blog-slider-wrap {
        padding: 0;
    }

    .blog-card-date {
        font-size: 16px;
    }

    .blog-card-title {
        font-size: 20px;
    }

    #blogSliderWrap .team-slider-arrow {
        top: 42%;
    }

    .blog-popup-header {
        padding: 16px 16px 0;
    }

    .blog-popup-body {
        padding: 8px 16px 18px;
    }

    .blog-popup-title {
        font-size: 22px;
    }

    .sec-heading {
        margin-bottom: 30px;
    }
}

@media all and (max-width: 385px) {
    .website-lable-text {
        font-size: 11px;
    }
}

@media all and (max-width: 370px) {
    .contact-card {
        padding: 24px;
    }

    .container {
        padding: 0 30px;
    }

    .menu-section-list {
        left: -30px;
        width: calc(100% + 60px);
        padding: 30px 40px 40px;
    }

    .career-popup-content {
        padding: 44px 36px 48px;
    }

    .team-contact-item {
        font-size: 16px;
    }

    p {
        font-size: 16px;
    }
}

@media all and (max-width: 365px) {
    .team-contact-item {
        font-size: 16px;
    }
}

/* ================================= 
   END OF STYLESHEET
   ================================= 
   All CSS properly organized by sections with responsive breakpoints
   For modifications, refer to the section comments at the top of the file
*/