/* CSS Variables */
:root {
    --primary-orange: #ff6b35;
    --primary-blue: #2e86ab;
    --primary-dark: #1a1a1a;
    --secondary-gray: #6c757d;
    --light-gray: #f8f9fa;
    --accent-orange: #f57c00;
    --white: #ffffff;
    --dark-bg: #1a1b3e;
    --text-dark: #2f327d;
    --text-muted: #6c757d;
    --border-radius-md: 10px;
    --border-radius-lg: 15px;
    --border-radius-xl: 20px;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: none !important;
    scrollbar-color: #ffffff #ffffff !important;
}

body {
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    color: var(--primary-dark);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

/* Navigation Styles */
header {
    width: 100%;
    position: absolute;
    z-index: 1500;
    color: white;
    padding: 10px 0;
}

.navbar {
    transition: all 0.3s ease;
    background-color: transparent !important;
    font-weight: 700;
    height: 80px;
}

.navbar.scrolled {
    background-color: #14192D !important;
    backdrop-filter: blur(10px);
    height: 80px;
}

.navbar-nav .nav-link:hover {
    color: #ff6b6b !important;
}

.nav-logo {
    height: 25px;
}

.navbar-nav .nav-link.active {
    color: #e55a2b !important;
}

@media (min-width: 992px) {
    .navbar-collapse {
        border-radius: 0 !important;
        margin-top: 0 !important;
        height: 80px;
    }
}

@media (max-width: 991.98px) {
    .navbar.mobile-menu-open {
        background-color: #14192D !important;
    }
    
    .navbar-collapse {
        background-color: #14192D;
    }
}

/* Header Text Section */
.header-text h2 {
    position: absolute;
    font-family: "Roboto";
    font-size: 19px;
    font-weight: 300;
    top: 100px;
}

.background-img {
    position: relative;
}

.background-img img {
    width: 100%;
    height: auto;
}

.header-text h1 {
    font-size: 50px;
    position: relative;
    top: 135px;
}

.header-text h1::before {
    content: "●";
    color: #f57c00;
    position: absolute;
    left: 59px;
    top: -45px;
    font-size: 16px;
}

.header-text p {
    font-size: 15px;
    position: relative;
    top: 120px;
    color: #e1e1e1;
    line-height: 30px;
    max-width: 707px;
    letter-spacing: 0.2px;
    text-align: justify;
    font-family: "Syne", sans-serif;
}

.text-blue {
    color: #f57c00;
    font-family: "Satisfy";
}

/* Company Overview Section */
.company-overview-section {
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.company-overview-container {
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    gap: 40px;
    position: relative;
}

.decorative-shape-left {
    position: absolute;
    left: 0;
    top: 0;
}

.decorative-shape-right {
    position: absolute;
    bottom: 0;
    right: 0;
}

.company-overview-row {
    display: flex;
    align-items: center;
}

.company-image-wrapper {
    flex: 1;
    position: relative;
}

.company-image-wrapper img {
    width: 90%;
    height: auto;
    border-radius: 20px;
}

.company-text-content {
    flex: 1;
    padding-left: 20px;
}

.company-main-title {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 30px;
    color: #2f327d;
}

.company-main-title .title-highlight {
    color: #f57c00;
}

.company-subtitle {
    margin-bottom: 20px;
    font-family: Poppins;
    font-weight: 600;
    font-size: 22px;
    letter-spacing: normal;
}

.company-description {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #646464;
    margin-bottom: 20px;
    line-height: 2;
    text-align: justify;
}

/* Culture and Values Section */
.organizational-culture-section {
    background: var(--white);
    padding: 40px;
}

.organizational-culture-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.organizational-culture-content {
    flex: 1;
}

.culture-text-block {
    font-family: Poppins;
    font-weight: 600;
    font-size: 22px;
    padding-right: 20px;
}

.culture-visual-container {
    flex: 1;
    position: relative;
}

.organizational-culture-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
}

.culture-section-subtitle {
    font-family: poppins;
    margin: 25px 0;
    font-size: 22px;
    font-weight: 600;
    color: black;
}

.culture-section-description {
    color: #646464;
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    text-align: justify;
    line-height: 2;
}

/* Company Strength Section */
.organizational-strength-section {
    background: var(--light-gray);
    padding: 40px;
}

.strength-visual-wrapper {
    position: relative;
}

.organizational-strength-image {
    width: 75%;
    height: auto;
    border-radius: var(--border-radius-md);
    padding: 20px;
}

.strength-section-title {
    font-family: Poppins;
    font-weight: 600;
    font-size: 22px;
    margin-top: 20px;
}

.strength-section-subtitle {
    font-family: poppins;
    margin: 25px 0;
    font-size: 22px;
    font-weight: 600;
}

.strength-section-description {
    text-align: justify;
    font-family: poppins;
    font-weight: 400;
    line-height: 2;
    font-size: 16px;
    color: #646464;
}

/* Call to Action Section */
.engagement-action-section {
    position: relative;
    overflow: hidden;
    background: white;
    padding: 50px 0;
}

.engagement-card {
    background: linear-gradient(135deg, #1a1b3e 0%, #2d2f5f 100%);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    position: relative;
    box-shadow: 0 20px 40px rgba(26, 27, 62, 0.3);
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}

.engagement-content button {
    background-color: #F57C00;
    border: none;
    padding: 5px 19px;
    color: white;
    border-radius: 20px;
    cursor: pointer;
    top: 71px;
    width: 110;
    height: 40;
}

.engagement-card::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 165, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.engagement-decoration {
    position: absolute;
    top: -40px;
    right: 10px;
    z-index: 8;
}

.engagement-decoration img {
    height: auto;
    opacity: 0.9;
}

.engagement-content {
    position: relative;
    z-index: 3;
    text-align: left;
}

.engagement-title {
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    font-family: Poppins;
    font-weight: 700;
}

.engagement-description {
    color: #D6D6D6;
    line-height: 1.6;
    margin-bottom: 0;
    opacity: 0.9;
    font-family: Poppins;
    font-weight: 600;
    font-size: 15px;
}

/* Footer */
.footer-content {
    padding-top: 20px;
}

.company_infor_footer {
    margin: 30px 0 0 30px !important;
}

.quick_link_footer {
    margin: 30px 0 0 50px !important;
}

.service_footer_sec {
    margin: 30px 0 0 30px !important;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .background-img img {
        height: 500px;
    }
    
    .company-description {
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .company-overview-container {
        padding: 40px;
    }

    .company-overview-row {
        flex-direction: column;
        gap: 30px;
    }

    .company-image-wrapper {
        order: 2;
    }

    .company-text-content {
        order: 1;
        padding-left: 0;
    }

    .decorative-shape-left,
    .decorative-shape-right {
        display: none;
    }

    .company-image-wrapper img {
        margin-left: 0;
        width: 100%;
    }

    .organizational-culture-section {
        padding: 40px;
    }

    .organizational-culture-wrapper {
        flex-direction: column;
        padding: 0 30px;
        gap: 30px;
    }

    .culture-text-block {
        padding-right: 0;
    }

    .organizational-strength-section {
        padding: 40px;
    }

    .organizational-strength-image {
        width: 100%;
        padding: 0 !important;
    }

    .engagement-card {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px 25px;
    }

    .engagement-title {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .text-blue {
        font-size: 35px;
        text-align: center;
    }
    
    .text-orange {
        margin-left: -22px;
    }
    
    .header-text h1 {
        padding: 15px;
    }
    
    .header-text p {
        font-size: 15px;
        top: 115px;
        left: -10px;
        padding: 10px;
    }

    .strength-section-description {
        font-size: 14px !important;
    }

    .company-description {
        font-size: 14px !important;
    }

    .culture-section-description {
        font-size: 14px !important;
    }

    .footer-section {
        padding: 40px 0 20px;
        background-color: #14192d;
    }

    .footer-background {
        display: none !important;
    }

    .footer-logo {
        max-width: 150px;
        margin-bottom: 20px;
    }

    .footer-section .col-lg-4,
    .footer-section .col-lg-3 {
        margin: 20px 0 0 0 !important;
    }

    .section-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
}

@media (max-width: 568px) {
    .background-img img {
        height: 550px !important;
    }

    .company-overview-container {
        padding: 10px !important;
    }

    .organizational-culture-section {
        padding: 10px !important;
    }

    .culture-section-title {
        margin-top: 20px !important;
    }

    .organizational-strength-section {
        padding: 10px !important;
    }
}

@media (max-width: 575px) {
    .header-text h1 {
        font-size: 28px;
    }

    .header-text h1::before {
        left: 30px;
        top: -65px;
    }

    .header-text h2 {
        font-size: 15px;
    }

    .header-text p {
        font-size: 15px;
        line-height: 24px;
    }

    .company-overview-container {
        padding: 20px 15px;
    }

    .company-main-title {
        font-size: 22px;
        margin-top: 20px;
    }

    .organizational-culture-wrapper {
        padding: 0 15px;
    }

    .engagement-card {
        margin: 0 15px;
        padding: 25px 15px;
    }

    .engagement-title {
        font-size: 18px;
    }

    .engagement-description {
        font-size: 13px;
    }

    .culture-section-description {
        font-size: 14px;
    }

    .organizational-culture-section {
        padding: 20px 15px;
    }

    .organizational-strength-section {
        padding: 20px 15px;
    }

    .strength-section-description {
        font-size: 14px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .company_infor_footer {
        margin: 30px 0 0 30px !important;
    }

    .quick_link_footer {
        margin: 30px 0 0 30px !important;
    }

    .service_footer_sec {
        margin: 30px 0 0 30px !important;
    }
}

@media (max-width: 1400px) {
    .company_infor_footer {
        margin: 30px 0 0 0 !important;
    }

    .quick_link_footer {
        margin: 30px 0 0 0px !important;
    }

    .service_footer_sec {
        margin: 30px 0 0 30px !important;
    }
}

@media (max-width: 1200px) {
    .company_infor_footer {
        margin: 30px 0 0 0 !important;
    }

    .quick_link_footer {
        margin: 30px 0 0 0px !important;
    }

    .service_footer_sec {
        margin: 30px 0 0 30px !important;
    }
}

/* Large Screens */
@media (min-width: 1200px) {
    .company-main-title {
        font-size: 22px;
    }

    .engagement-title {
        font-size: 30px;
    }

    .strength-section-subtitle {
        font-size: 22px;
        font-weight: 600;
    }
}

/* Container max-width for very large screens */
@media (min-width: 1400px) {
    .company-overview-container,
    .organizational-culture-wrapper,
    .engagement-card {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Smooth transitions for responsive elements */
.navbar,
.company-overview-row,
.organizational-culture-wrapper,
.engagement-card {
    transition: all 0.3s ease;
}