/* ============================================
   CHANTRIQ WEBSITE - MAIN STYLESHEET
   Colors: Blue (#1d2857), Orange (#ef7f1a), White (#FFFFFF)
   ============================================ */

   :root {
    --primary-blue: #1d2857;
    --secondary-blue: #1d2857;
    --primary-orange: #ef7f1a;
    --secondary-orange: #ef7f1a;
    --white: #FFFFFF;
    --dark-bg: #1d2857;
    --text-dark: #1E293B;
    --text-light: #64748B;
    --gradient-blue: linear-gradient(135deg, #1d2857 0%, #1d2857 100%);
    --gradient-orange: linear-gradient(135deg, #ef7f1a 0%, #ef7f1a 100%);
    --radius: 3px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex: 1;
    width: 100%;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.main-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    margin: 0;
    padding: 0;
}

.main-header .container {
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    max-width: 1200px;
}

.navbar {
    padding: 0.75rem 0;
    position: relative;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 0;
    width: 100%;
}

.logo {
    margin-left: 20px !important;
    margin-right: auto;
    padding: 0;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo a {
    display: inline-block;
    padding: 0;
    margin: 0;
}

.logo-img {
    height: 40px;
    width: auto;
    max-width: 100%;
    transition: transform 0.3s ease;
    display: block;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: width 0.3s ease;
}

/* Global radius normalization (cards/buttons/layout) */
.service-card,
.service-card-modern,
.view-details-btn,
.app-badge,
.portfolio-badge,
.portfolio-btn,
.job-card,
.vm-card,
.benefit-card,
.faq-item,
.faq-question,
.contact-form-container,
.contact-form-wrapper,
.form-group input,
.form-group textarea,
.form-group select,
.search-box input,
.location-filter select,
.apply-btn,
.cta-content,
.quote-card {
    border-radius: var(--radius) !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-orange);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-bg);
    transition: all 0.3s ease;
}

/* ============================================
   HERO SLIDER
   ============================================ */

.hero-slider {
    position: relative;
    width: 100%;
    /* Simple: slightly smaller on all screens */
    height: clamp(240px, 36vw, 520px);
    overflow: hidden;
    margin: 0;
    padding: 0;
    background: #0b1226;
}

/* Prevent 1s "flash" of wrong-sized hero on first paint */
.hero-slider {
    visibility: hidden;
}

.hero-slider.is-ready {
    visibility: visible;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    transition: transform 0.6s ease-in-out;
}

/* All Devices: Show 1 slide at a time */
.slider-wrapper {
    display: block;
    width: 100%;
    height: 100%;
    transform: none;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    overflow: hidden;
    z-index: 0;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

/* Default slide-image styles - overridden in media queries */
.slide-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transform: none;
    transform-origin: center center;
    max-width: none;
    max-height: none;
    box-sizing: border-box;
}

/* Desktop: slide-image positioning */
@media (min-width: 1025px) {
    .slide-image {
        position: relative;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }
}

/* Slide 1 (home) should fill like other slides */
.hero-slider .slide:first-child .slide-image {
    object-fit: cover !important;
    object-position: center center !important;
    transform: none !important;
}

/* Ensure first slide image is responsive */
.slide:first-child .slide-image,
.slide.active .slide-image {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: cover !important;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(29, 40, 87, 0.7) 0%, rgba(239, 127, 26, 0.5) 100%);
    z-index: 2;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.slide-content-left {
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
    max-width: 600px;
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.slide-description {
    font-size: 1.5rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1.2s ease;
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 5;
    pointer-events: none;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--white);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    pointer-events: auto;
    z-index: 6;
}

.slider-btn:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-orange);
    width: 30px;
    border-radius: 6px;
}

/* ============================================
   SECTIONS
   ============================================ */

section {
    padding: 80px 0;
    margin: 0;
}

.hero-slider {
    margin-top: 0;
    padding-top: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-orange);
    border-radius: 2px;
}

.section-subtitle {
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    color: var(--text-dark);
    font-weight: 600;
    margin-top: 0.75rem;
}

.section-description {
    font-size: clamp(0.98rem, 1.15vw, 1.1rem);
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
    background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
    text-align: center;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section {
    background: var(--white);
    padding: 60px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

/* Modern Services Grid for Home Page */
.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 3px;
    border: 3px solid rgba(239, 127, 26, 0.2);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(239, 127, 26, 0.2);
    border: 3px solid var(--primary-orange);
}

.service-icon {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    border-radius: 3px 3px 0 0;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 3px 3px 0 0;
}

.service-card:hover .service-icon img {
    transform: scale(1.1);
}

.service-content {
    padding: 25px;
    flex-grow: 1;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-bg);
    margin-bottom: 15px;
}

.service-description {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 15px;
    transition: gap 0.3s ease;
}

.service-card:hover .service-link {
    gap: 12px;
}

.service-card {
    text-decoration: none;
    color: inherit;
}

/* ============================================
   SUPPLY CHAIN SECTION
   ============================================ */

.supply-chain-section {
    background: var(--dark-bg);
    color: var(--white);
    padding: 100px 0;
}

.supply-chain-section .section-title {
    color: var(--white);
}

.supply-chain-section .section-description {
    color: rgba(255, 255, 255, 0.8);
}

.supply-chain-wrapper {
    margin-top: 60px;
}

.process-flow-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
    width: 100%;
}

.flow-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    padding: 30px;
    border: 3px solid var(--white);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    width: 100%;
    box-sizing: border-box;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.domestic-flow-section {
    border-top: 3px solid var(--white);
    border-top: 3px solid var(--white);
    border-right: 3px solid var(--white);
    border-bottom: 3px solid var(--white);
}

.global-flow-section {
    border-top: 3px solid var(--white);
    border-top: 3px solid var(--white);
    border-right: 3px solid var(--white);
    border-bottom: 3px solid var(--white);
}

.flow-section-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.flow-section-title i {
    font-size: 1.8rem;
    color: var(--secondary-blue);
}

.global-flow-section .flow-section-title i {
    color: var(--primary-orange);
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    padding: 20px 0;
}

/* Circular Flow Diagram */
.circular-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 10px;
    min-height: 600px;
    width: 100%;
    flex: 1;
}

.circular-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 500px;
    margin: 0 auto;
    aspect-ratio: 1;
    flex-shrink: 0;
}

.center-node {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--dark-bg) 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.6rem;
    box-shadow: 0 10px 30px rgba(29, 40, 87, 0.4);
    z-index: 10;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.global-flow-section .center-node {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
    box-shadow: 0 10px 30px rgba(239, 127, 26, 0.4);
}

.center-node i {
    font-size: 2rem;
    margin-bottom: 5px;
}

.center-node span {
    font-size: 0.7rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

.circular-node {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    margin-left: -40px;
    margin-top: -40px;
    transform-origin: 0 0;
    transform: rotate(var(--angle)) translateX(180px) rotate(calc(-1 * var(--angle)));
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 5;
}

.circular-node:hover {
    transform: rotate(var(--angle)) translateX(180px) rotate(calc(-1 * var(--angle))) scale(1.15);
}

.circular-node .node-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--dark-bg) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.6rem;
    box-shadow: 0 5px 20px rgba(29, 40, 87, 0.3);
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.global-flow-section .circular-node .node-icon {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
    box-shadow: 0 5px 20px rgba(239, 127, 26, 0.3);
}

.circular-node:hover .node-icon {
    box-shadow: 0 10px 30px rgba(29, 40, 87, 0.6);
    transform: scale(1.1);
}

.global-flow-section .circular-node:hover .node-icon {
    box-shadow: 0 10px 30px rgba(239, 127, 26, 0.6);
}

.circular-node.active .node-icon {
    box-shadow: 0 15px 40px rgba(29, 40, 87, 0.8);
    transform: scale(1.2);
    animation: nodePulse 1.5s ease-in-out infinite;
}

.global-flow-section .circular-node.active .node-icon {
    box-shadow: 0 15px 40px rgba(239, 127, 26, 0.8);
}

.circular-node.active .node-label {
    background: rgba(29, 40, 87, 0.8);
    color: var(--white);
    font-weight: 700;
}

.global-flow-section .circular-node.active .node-label {
    background: rgba(239, 127, 26, 0.8);
}

.circular-node .node-label {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
    text-align: center;
    white-space: nowrap;
    background: rgba(0, 0, 0, 0.6);
    padding: 4px 8px;
    border-radius: 4px;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    min-width: 100px;
}

.circular-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    color: var(--secondary-blue);
}

/* Domestic lines were too subtle on dark background */
.domestic-flow-section .circular-connections {
    color: rgba(255, 255, 255, 0.55);
}

.global-flow-section .circular-connections {
    color: var(--primary-orange);
}

.connection-ring {
    /* Static connection ring - no animation */
    opacity: 0.3;
}

/* Spokes from center node to outer nodes (homepage supply chain flow) */
.flow-spoke {
    stroke: currentColor;
    stroke-width: 2;
    opacity: 0.22;
    stroke-linecap: round;
}

.domestic-flow-section .flow-spoke {
    opacity: 0.35;
}

.flow-node {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    min-width: 140px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.flow-node:hover {
    transform: translateY(-10px);
}

.flow-node:hover .node-icon {
    transform: scale(1.15);
    box-shadow: 0 10px 30px rgba(29, 40, 87, 0.5);
}

.global-flow-section .flow-node:hover .node-icon {
    box-shadow: 0 10px 30px rgba(239, 127, 26, 0.5);
}

.flow-node.active .node-icon {
    transform: scale(1.2);
    box-shadow: 0 15px 40px rgba(29, 40, 87, 0.7);
    animation: nodePulse 1.5s ease-in-out infinite;
}

.global-flow-section .flow-node.active .node-icon {
    box-shadow: 0 15px 40px rgba(239, 127, 26, 0.7);
}

.flow-node.active .node-pulse {
    animation: activePulse 1.5s ease-in-out infinite;
}

.flow-node.active .node-label {
    color: var(--secondary-blue);
    font-weight: 700;
}

.global-flow-section .flow-node.active .node-label {
    color: var(--primary-orange);
}

@keyframes nodePulse {

    0%,
    100% {
        transform: scale(1.2);
    }

    50% {
        transform: scale(1.3);
    }
}

@keyframes activePulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.node-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--dark-bg) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(29, 40, 87, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
}

.global-flow-section .node-icon {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
    box-shadow: 0 5px 20px rgba(239, 127, 26, 0.3);
}

.node-pulse {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--secondary-blue);
    animation: pulse 2s infinite;
    opacity: 0;
}

.global-flow-section .node-pulse {
    border-color: var(--primary-orange);
}

.node-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    text-align: center;
    line-height: 1.3;
}

.flow-arrow {
    width: 120px;
    height: 40px;
    color: var(--secondary-blue);
    opacity: 0.6;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.flow-arrow.highlighted {
    opacity: 1;
    transform: scale(1.1);
}

.global-flow-section .flow-arrow {
    color: var(--primary-orange);
}

.flow-arrow svg {
    width: 100%;
    height: 100%;
}

.arrow-line {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawLine 2s ease-in-out infinite;
}

.arrow-head {
    animation: arrowPulse 2s ease-in-out infinite;
}

.flow-dot {
    fill: currentColor;
    opacity: 0;
    animation: dotFlow 2s ease-in-out infinite;
}

.flow-dot.dot-1 {
    animation-delay: 0s;
}

.flow-dot.dot-2 {
    animation-delay: 0.4s;
}

.flow-dot.dot-3 {
    animation-delay: 0.8s;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes drawLine {

    0%,
    100% {
        stroke-dashoffset: 100;
    }

    50% {
        stroke-dashoffset: 0;
    }
}

@keyframes arrowPulse {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

@keyframes dotFlow {
    0% {
        opacity: 0;
        transform: translateX(0);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateX(75px);
    }
}

/* Responsive Design for Process Flow */
@media (max-width: 1024px) {
    .process-flow-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .circular-container {
        width: 450px;
        height: 450px;
    }

    .circular-node {
        transform: rotate(var(--angle)) translateX(160px) rotate(calc(-1 * var(--angle)));
    }

    .circular-node .node-icon {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }

    .center-node {
        width: 110px;
        height: 110px;
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .circular-flow {
        padding: 40px 10px;
        min-height: 400px;
    }

    .circular-container {
        width: 300px;
        height: 300px;
    }

    .circular-node {
        transform: rotate(var(--angle)) translateX(110px) rotate(calc(-1 * var(--angle)));
    }

    .circular-node .node-icon {
        width: 60px;
        height: 60px;
        font-size: 1.1rem;
    }

    .circular-node .node-label {
        font-size: 0.65rem;
        padding: 3px 6px;
        min-width: 80px;
        top: 75px;
    }

    .center-node {
        width: 80px;
        height: 80px;
        font-size: 1.1rem;
    }

    .center-node i {
        font-size: 1.5rem;
    }

    .center-node span {
        font-size: 0.6rem;
    }

    .flow-section {
        padding: 30px 20px;
    }
}

/* ============================================
   MATERIALS CAROUSEL SECTION
   ============================================ */

.materials-section {
    background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
    padding: 100px 0;
}

.materials-carousel {
    margin-top: 50px;
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 30px;
    animation: scroll 20s linear infinite;
    width: max-content;
}

.material-item {
    min-width: 250px;
    background: var(--white);
    border-radius: 3px;
    border: 3px solid rgba(239, 127, 26, 0.2);
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.material-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(239, 127, 26, 0.2);
    border: 3px solid var(--primary-orange);
}

.material-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 3px;
    overflow: hidden;
    border: 3px solid var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
}

.material-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3px;
}

.material-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-bg);
    margin-bottom: 10px;
}

.material-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ============================================
   FOOTER
   ============================================ */

.main-footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 60px 0 20px;
    margin-top: auto;
    width: 100%;
    clear: both;
}

.main-footer .container {
    max-width: 1400px;
    padding: 0 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 100%;
    padding-right: 20px;
}

.footer-logo {
    margin-bottom: 20px;
    text-align: left;
}

.footer-logo-img {
    height: 35px;
    width: auto;
    max-width: 100%;
    margin-bottom: 15px;
    /* display: block; */
}

.footer-tagline {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-orange);
    margin-bottom: 12px;
    line-height: 1.4;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.85rem;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
    border-bottom: 2px solid var(--primary-orange);
    padding-bottom: 10px;
    display: inline-block;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    white-space: nowrap;
}

.footer-links a:hover {
    color: var(--primary-orange);
    padding-left: 5px;
}

.contact-info {
    margin-bottom: 25px;
}

.contact-info p {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: var(--primary-orange);
    width: 20px;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-orange);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Mobile menu only (phones). iPad should show desktop menu. */
@media (max-width: 767px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
    }

    .nav-toggle {
        display: flex;
    }

    .slide-title {
        font-size: 2rem;
    }

    .slide-description {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .supply-chain-visualization {
        height: 400px;
    }

    .carousel-track {
        animation-duration: 15s;
    }

    .main-footer .container {
        padding: 0 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-brand {
        text-align: center;
        padding-right: 0;
    }

    .footer-logo {
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-logo-img {
        height: 35px;
        width: auto;
        max-width: 220px;
        margin: 0 auto 20px;
        display: block;
    }

    .footer-tagline {
        text-align: center;
        font-size: 1.05rem;
    }

    .footer-description {
        text-align: center;
        max-width: 100%;
    }

    .footer-section {
        text-align: center;
    }

    .footer-title {
        text-align: center;
        display: block;
        margin: 0 auto 20px;
        width: fit-content;
    }

    .footer-links {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 1.5rem;
    }

    .slide-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .main-footer .container {
        padding: 0 20px;
    }

    .footer-content {
        gap: 25px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-brand {
        padding-right: 0;
        text-align: center;
        order: 1;
    }

    .footer-logo {
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-logo-img {
        height: 40px;
        width: auto;
        max-width: 250px;
        margin: 0 auto 20px;
        display: block;
    }

    .footer-tagline {
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 15px;
        text-align: center;
    }

    .footer-description {
        font-size: 0.9rem;
        line-height: 1.7;
        text-align: center;
        max-width: 100%;
        margin: 0 auto;
    }

    /* Show all footer sections on mobile */
    .footer-section:nth-child(2) {
        order: 2;
        text-align: center;
    }

    .footer-section:nth-child(3),
    .footer-section:nth-child(4) {
        display: block !important;
        visibility: visible !important;
    }

    .footer-title {
        font-size: 1.1rem;
        text-align: center;
        display: block;
        margin: 0 auto 20px;
        width: fit-content;
    }

    .footer-links {
        text-align: center;
    }

    .footer-links li {
        margin-bottom: 10px;
    }
}

/* ============================================
   SERVICES PAGE STYLES
   ============================================ */

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--primary-orange);
}

.breadcrumb .separator {
    color: var(--text-light);
}

.breadcrumb .current {
    color: var(--dark-bg);
    font-weight: 600;
}

.services-hero {
    padding: 25px 0;
    background: var(--white);
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-bg);
    margin-bottom: 1rem;
    text-align: center;
}

.page-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-orange);
    text-align: center;
    margin-bottom: 1rem;
}

.page-description {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.services-listing-section {
    padding: 35px 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
    align-items: stretch;
}

.service-card-modern {
    background: var(--white);
    border-radius: 3px;
    border: 3px solid rgba(239, 127, 26, 0.2);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
}

.service-card-modern:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(239, 127, 26, 0.3);
    border: 3px solid var(--primary-orange);
}

.service-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 3px 3px 0 0;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    border-radius: 3px 3px 0 0;
}

.service-card-modern:hover .service-image-wrapper img {
    transform: scale(1.15);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(29, 40, 87, 0.8) 0%, rgba(239, 127, 26, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card-modern:hover .service-overlay {
    opacity: 1;
}

.service-info {
    padding: 30px;
    position: relative;
    background: var(--white);
    min-height: 200px;
    display: flex;
    flex-direction: column;
}

.service-number {
    position: absolute;
    top: -20px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(239, 127, 26, 0.4);
}

.service-card-modern .service-title {
    font-size: clamp(1.02rem, 1.20vw, 1.35rem);
    font-weight: 600;
    color: var(--dark-bg);
    margin-bottom: 10px;
    margin-top: 10px;
    line-height: 1.4;
}

.service-excerpt {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    min-height: 48px;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 0.95rem;
    transition: gap 0.3s ease;
    padding: 12px 20px;
    min-width: 180px;
    width: fit-content;
    margin-top: auto;
    border: 2px solid var(--primary-orange);
    border-radius: 3px;
    text-align: center;
}

.service-card-modern:hover .service-cta {
    gap: 15px;
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(239, 127, 26, 0.3);
}

/* All Service Cards - Title with Primary Blue Background and White Text */
.service-card-modern .service-title {
    background: var(--primary-blue) !important;
    color: var(--white) !important;
    padding: 15px 20px !important;
    margin: -10px -30px 20px -30px !important;
    border-radius: 3px 3px 0 0 !important;
    margin-top: -30px !important;
    font-size: clamp(0.95rem, 1.15vw, 1.22rem) !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    min-height: 70px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}

/* Service Detail Page */
.service-hero-detail {
    padding: 80px 0;
    background: var(--white);
}

.service-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-hero-image {
    border-radius: 3px;
    border: 3px solid rgba(239, 127, 26, 0.2);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 3px;
}

.service-hero-text {
    padding: 20px;
}

.service-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-bg);
    margin-bottom: 15px;
    line-height: 1.2;
}

.service-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.service-hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.capabilities-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
}

.capabilities-diagram {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
    padding: 40px 20px;
}

.diagram-container {
    position: relative;
    width: 800px;
    height: 800px;
    max-width: 100%;
    margin: 0 auto;
}

.capability-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(29, 40, 87, 0.4);
    z-index: 10;
    border: 4px solid var(--white);
    animation: hubPulse 3s ease-in-out infinite;
}

.hub-icon {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 10px;
}

.hub-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    padding: 0 15px;
    line-height: 1.3;
}

@keyframes hubPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 10px 40px rgba(29, 40, 87, 0.4);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.05);
        box-shadow: 0 15px 50px rgba(29, 40, 87, 0.6);
    }
}

.capability-node {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 280px;
    transform-origin: 0 0;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-280px) rotate(calc(-1 * var(--angle)));
    z-index: 5;
    cursor: pointer;
    transition: all 0.4s ease;
}

.capability-node:hover {
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-300px) rotate(calc(-1 * var(--angle))) scale(1.1);
    z-index: 15;
}

.node-connector {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 60px;
    background: var(--gradient-orange);
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.capability-node:hover .node-connector {
    opacity: 1;
    height: 80px;
}

.node-content {
    background: var(--white);
    border-radius: 3px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 3px solid rgba(239, 127, 26, 0.2);
    transition: all 0.4s ease;
    position: relative;
    margin-top: 60px;
}

.capability-node:hover .node-content {
    box-shadow: 0 15px 40px rgba(239, 127, 26, 0.3);
    border: 3px solid var(--primary-orange);
    transform: scale(1.05);
}

.node-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.node-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(239, 127, 26, 0.4);
    position: relative;
    z-index: 2;
}

.node-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    background: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    border: 2px solid var(--white);
    box-shadow: 0 3px 10px rgba(29, 40, 87, 0.3);
}

.node-text {
    text-align: center;
}

.node-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 8px;
    line-height: 1.3;
}

.node-description {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.node-pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 2px solid var(--primary-orange);
    border-radius: 50%;
    opacity: 0;
    animation: nodePulseRing 2s ease-in-out infinite;
}

.capability-node:hover .node-pulse-ring {
    animation: nodePulseRingActive 1.5s ease-in-out infinite;
}

@keyframes nodePulseRing {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.5;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

@keyframes nodePulseRingActive {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.capability-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.connection-line {
    stroke: var(--primary-orange);
    stroke-width: 2;
    stroke-dasharray: 5, 5;
    opacity: 0.3;
    animation: lineDraw 2s ease-in-out infinite;
    animation-delay: var(--delay);
}

@keyframes lineDraw {

    0%,
    100% {
        stroke-dashoffset: 0;
        opacity: 0.3;
    }

    50% {
        stroke-dashoffset: 20;
        opacity: 0.6;
    }
}

.capability-node:hover~.capability-connections .connection-line,
.capability-node:hover .connection-line {
    opacity: 0.8;
    stroke-width: 3;
}

.quote-section {
    padding: 40px 0;
    background: var(--white);
}

.quote-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 30px 20px;
    background: transparent;
    border: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

.quote-icon {
    font-size: 1.5rem;
    color: var(--primary-orange);
    margin-bottom: 15px;
    opacity: 0.6;
}

.quote-text {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--dark-bg);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 15px;
}

.quote-author {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-orange);
    font-style: normal;
    margin-bottom: 10px;
}

.quote-note {
    font-size: 1.1rem;
    color: var(--dark-bg);
        font-style: normal;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.service-cta-section {
    padding: 80px 0;
    background: var(--white);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 40px;
    background: var(--gradient-blue);
    border-radius: 25px;
    color: var(--white);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary-orange);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 3px;
    border: 3px solid var(--primary-orange);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(239, 127, 26, 0.3);
    box-sizing: border-box;
}

.cta-button:hover {
    background: var(--secondary-orange);
    border: 3px solid var(--secondary-orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(239, 127, 26, 0.5);
    gap: 18px;
}

/* Responsive for Services */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1.2rem;
    }

    .services-grid-modern {
        grid-template-columns: 1fr;
    }

    .service-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-hero-title {
        font-size: 2rem;
    }

    .capabilities-section {
        padding: 60px 0;
        overflow: hidden;
    }

    .capabilities-diagram {
        padding: 20px 10px;
        min-height: auto;
        margin-top: 30px;
    }

    .diagram-container {
        width: 100% !important;
        height: auto !important;
        min-height: auto !important;
        position: relative;
        padding: 20px 0;
    }

    .capability-node {
        position: static !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 15px 0 !important;
        transform: none !important;
        display: block !important;
        left: auto !important;
        top: auto !important;
    }

    .node-connector {
        display: none !important;
    }

    .capability-hub {
        position: static !important;
        transform: none !important;
        margin: 0 auto 30px !important;
        width: 140px !important;
        height: 140px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        border: 3px solid var(--white) !important;
        animation: none !important;
    }

    .hub-icon {
        font-size: 2.2rem !important;
        margin-bottom: 8px !important;
    }

    .hub-label {
        font-size: 0.75rem !important;
        padding: 0 12px !important;
        line-height: 1.2 !important;
    }

    .capability-connections {
        display: none !important;
    }

    .node-content {
        margin-top: 0 !important;
        width: 100%;
        max-width: 100%;
    }

    .quote-text {
        font-size: 1.2rem;
    }

    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 1024px) {
    .diagram-container {
        width: 600px;
        height: 600px;
    }

    .capability-node {
        width: 220px;
        transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-220px) rotate(calc(-1 * var(--angle)));
    }

    .capability-hub {
        width: 150px;
        height: 150px;
    }

    .hub-icon {
        font-size: 2.5rem;
    }

    .hub-label {
        font-size: 0.75rem;
    }
}

/* ============================================
   BREADCRUMB SECTION
   ============================================ */

.breadcrumb-section {
    background-image: url('../Image/inner_banner.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    padding: 60px 0 40px;
    margin-top: 0;
}

.breadcrumb-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.4);
    z-index: 1;
}

.breadcrumb-section .container {
    position: relative;
    z-index: 2;
}

.breadcrumb-content {
    text-align: center;
}

.breadcrumb-list-wrapper {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    padding: 0;
    width: auto;
}

.breadcrumb-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
}

.breadcrumb-intro-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    text-align: center;
    line-height: 1.2;
    margin-top: 0;
}

.breadcrumb-intro-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);    
    margin-bottom: 15px;
    text-align: center;
}

.breadcrumb-intro-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.breadcrumb-list li {
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb-list li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-list li a:hover {
    color: var(--primary-orange);
}

.breadcrumb-list li:not(:last-child)::after {
    content: '>';
    margin-left: 10px;
    color: rgba(255, 255, 255, 0.6);
}

/* Breadcrumb Section Responsive Styles */
@media (max-width: 1024px) {
    .breadcrumb-section {
        background-attachment: scroll;
    }
}

@media (max-width: 768px) {
    .breadcrumb-section {
        padding: 50px 0 35px;
        background-attachment: scroll;
    }

    .breadcrumb-list-wrapper {
        top: 15px;
        left: 15px;
        padding: 0;
    }

    .breadcrumb-title {
        font-size: 2.2rem;
    }

    .breadcrumb-intro-title {
        font-size: 2rem;
        margin-bottom: 12px;
        margin-top: 0;
    }

    .breadcrumb-intro-subtitle {
        font-size: 1.1rem;
    }

    .breadcrumb-intro-description {
        font-size: 1rem;
    }

    .breadcrumb-list {
        font-size: 0.9rem;
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .breadcrumb-section {
        padding: 40px 0 30px;
    }

    .breadcrumb-list-wrapper {
        top: 10px;
        left: 0;
        padding: 0;
    }

    .breadcrumb-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .breadcrumb-intro-title {
        font-size: 1.75rem;
        margin-bottom: 10px;
        margin-top: 0;
    }

    .breadcrumb-intro-subtitle {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .breadcrumb-intro-description {
        font-size: 0.95rem;
    }

    .breadcrumb-list {
        font-size: 0.85rem;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 0;
    }
}

/* ============================================
   PORTFOLIO PAGES
   ============================================ */

.portfolio-intro {
    padding: 45px 0 25px;
    background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
}

.portfolio-apps-grid {
    padding: 80px 0;
    background: var(--white);
}

.portfolio-item {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    padding: 60px 40px;
    background: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 100%);
    border-radius: 20px;
}

.portfolio-item.portfolio-reverse {
    grid-template-columns: 1.5fr 1fr;
}

.portfolio-item:last-child {
    margin-bottom: 0;
}

.portfolio-content {
    padding: 20px;
}

.portfolio-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-orange);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.portfolio-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 20px;
    line-height: 1.2;
}

.portfolio-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.portfolio-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: var(--gradient-orange);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(239, 127, 26, 0.3);
}

.portfolio-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(239, 127, 26, 0.4);
}

.portfolio-phones {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: relative;
}

.phone-mockup {
    flex: 0 0 auto;
    max-width: 280px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    background: #1a1a1a;
    padding: 20px 15px;
    transition: transform 0.3s ease;
}

.phone-mockup:hover {
    transform: translateY(-10px) scale(1.05);
    z-index: 10;
}

.phone-mockup:nth-child(2) {
    transform: translateY(20px);
}

.phone-mockup:nth-child(2):hover {
    transform: translateY(10px) scale(1.05);
}

.phone-mockup img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* Responsive - Portfolio */
@media (max-width: 1024px) {

    .portfolio-item,
    .portfolio-item.portfolio-reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 30px;
        margin-bottom: 60px;
    }

    .portfolio-item.portfolio-reverse .portfolio-phones {
        order: 1;
    }

    .portfolio-item.portfolio-reverse .portfolio-content {
        order: 2;
    }

    .phone-mockup {
        max-width: 220px;
    }
}

@media (max-width: 768px) {
    .portfolio-title {
        font-size: 2rem;
    }

    .portfolio-desc {
        font-size: 1rem;
    }

    .portfolio-phones {
        gap: 15px;
    }

    .phone-mockup {
        max-width: 180px;
        padding: 15px 12px;
    }
}

@media (max-width: 480px) {
    .portfolio-apps-grid {
        padding: 40px 0;
    }

    .portfolio-item {
        padding: 20px 15px;
        margin-bottom: 30px;
        border-radius: 15px;
    }

    .portfolio-title {
        font-size: 1.6rem;
    }

    .portfolio-desc {
        font-size: 0.95rem;
    }

    .portfolio-btn {
        padding: 12px 25px;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }

    .portfolio-phones {
        flex-wrap: wrap;
        gap: 20px;
    }

    .phone-mockup {
        max-width: 160px;
        padding: 12px 10px;
    }

    .phone-mockup:nth-child(2) {
        transform: translateY(0);
    }

    .phone-mockup:nth-child(3) {
        display: none;
        /* Hide third phone on very small screens */
    }
}

/* ============================================
   ABOUT US PAGE
   ============================================ */

.about-story {
    padding: 80px 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
}

.story-content {
    max-width: 900px;
    margin: 40px auto 0;
}

.story-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-dark);
    text-align: center;
}

.vision-mission {
    padding: 80px 0;
    background: var(--white);
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.vm-card {
    background: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 100%);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 5px solid var(--primary-orange);
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(239, 127, 26, 0.15);
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(239, 127, 26, 0.3);
}

.vm-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 20px;
}

.vm-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.benefits-section {
    padding: 80px 0;
    background: var(--dark-bg);
    color: var(--white);
}

.benefits-section .section-title {
    color: var(--white);
}

.benefits-section .section-description {
    color: rgba(255, 255, 255, 0.8);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-orange);
    background: rgba(239, 127, 26, 0.1);
    box-shadow: 0 20px 50px rgba(239, 127, 26, 0.2);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(239, 127, 26, 0.3);
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
}

.benefit-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 40px;
}

.faq-item {
    background: #F8FAFC;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 25px rgba(239, 127, 26, 0.1);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 100%);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-bg);
    margin: 0;
    flex: 1;
}

.faq-question i {
    font-size: 1.2rem;
    color: var(--primary-orange);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 30px 25px;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
}

.faq-answer ul {
    margin: 15px 0;
    padding-left: 25px;
}

.faq-answer li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 8px;
}

/* ============================================
   CAREER PAGE
   ============================================ */

.career-section {
    padding: 80px 0;
    background: var(--white);
}

.career-filters {
    display: flex;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.search-box,
.location-filter {
    position: relative;
    flex: 1;
    min-width: 280px;
}

.search-box i,
.location-filter i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 1.1rem;
}

.search-box input,
.location-filter select {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: 2px solid #E2E8F0;
    border-radius: 50px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.search-box input:focus,
.location-filter select:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 5px 20px rgba(239, 127, 26, 0.1);
}

.job-department {
    margin-bottom: 60px;
}

.department-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-orange);
}

.department-title i {
    color: var(--primary-orange);
    font-size: 2rem;
}

.jobs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
}

/* All job cards full width with horizontal layout */
.jobs-grid .job-card {
    grid-column: span 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    padding: 40px;
}

.jobs-grid .job-card .job-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0;
    min-width: 200px;
}

.jobs-grid .job-card .job-title {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.jobs-grid .job-card .job-description {
    flex: 1;
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
}

.jobs-grid .job-card .job-footer {
    margin-top: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    min-width: 150px;
}

.jobs-grid .job-card .job-location {
    margin: 10px 0;
}

/* Responsive: On tablets and smaller, make all cards vertical */
@media (max-width: 992px) {
    .jobs-grid .job-card {
        flex-direction: column;
        padding: 30px;
    }
    
    .jobs-grid .job-card .job-header {
        flex-direction: row;
        margin-bottom: 15px;
    }
    
    .jobs-grid .job-card .job-title {
        font-size: 1.4rem;
    }
    
    .jobs-grid .job-card .job-description {
        margin-bottom: 20px;
    }
    
    .jobs-grid .job-card .job-footer {
        flex-direction: row;
        margin-top: 20px;
    }
}

.job-card {
    background: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 100%);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    /* border-left: 4px solid var(--primary-orange); */
}

.job-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(239, 127, 26, 0.15);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 15px;
}

.job-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-bg);
    margin: 0;
    flex: 1;
}

.job-badge {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.job-badge.remote {
    background: #10B981;
    color: var(--white);
}

.job-badge.hybrid {
    background: #F59E0B;
    color: var(--white);
}

.job-badge.onsite {
    background: var(--dark-bg);
    color: var(--white);
}

.job-location {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.job-location i {
    color: var(--primary-orange);
}

.job-description {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #E2E8F0;
}

.job-type {
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.apply-btn {
    background: var(--gradient-orange);
    color: var(--white);
    padding: 10px 25px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(239, 127, 26, 0.3);
}

.apply-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(239, 127, 26, 0.4);
}

/* ============================================
   CONTACT US PAGE
   ============================================ */

.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 60px;
}

/* .contact-info {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--secondary-blue) 100%);
    padding: 50px 40px;
    border-radius: 20px;
    color: var(--white);
    box-shadow: 0 20px 60px rgba(29, 40, 87, 0.2);
} */

.contact-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-support {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.info-items {
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.info-icon i {
    font-size: 1.3rem;
    color: var(--white);
}

.info-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.info-content p,
.info-content a {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.info-content a:hover {
    color: var(--primary-orange);
}

.social-links h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.social-icon:hover {
    background: var(--primary-orange);
    transform: translateY(-5px);
}

.contact-form-container {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-bg);
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 15px 20px;
    border: 2px solid #E2E8F0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 5px 20px rgba(239, 127, 26, 0.1);
}

.phone-input {
    display: flex;
    gap: 10px;
}

.phone-input select {
    flex: 0 0 130px;
}

.phone-input input {
    flex: 1;
}

.recaptcha-notice {
    grid-column: 1 / -1;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 15px;
    background: #F8FAFC;
    border-radius: 10px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.recaptcha-notice i {
    color: var(--primary-orange);
    margin-top: 2px;
}

.recaptcha-notice a {
    color: var(--dark-bg);
    text-decoration: none;
}

.recaptcha-notice a:hover {
    text-decoration: underline;
}

.submit-btn {
    grid-column: 1 / -1;
    background: var(--gradient-orange);
    color: var(--white);
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(239, 127, 26, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(239, 127, 26, 0.4);
}

/* ============================================
   RESPONSIVE - ABOUT, CAREER, CONTACT
   ============================================ */

@media (max-width: 1024px) {
    .vm-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .jobs-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .story-text {
        font-size: 1.05rem;
    }

    .vm-card {
        padding: 40px 30px;
    }

    .vm-card h3 {
        font-size: 1.7rem;
    }

    .department-title {
        font-size: 1.5rem;
    }

    .jobs-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .phone-input {
        flex-direction: column;
    }

    .phone-input select {
        flex: 1;
    }
}

@media (max-width: 480px) {

    .about-story,
    .vision-mission,
    .benefits-section,
    .faq-section,
    .career-section,
    .contact-section {
        padding: 60px 0;
    }

    .story-text {
        font-size: 1rem;
    }

    .vm-card {
        padding: 30px 20px;
    }

    .vm-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .vm-card h3 {
        font-size: 1.5rem;
    }

    .benefit-card {
        padding: 30px 20px;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .faq-question {
        padding: 20px 20px;
    }

    .faq-question h3 {
        font-size: 1.05rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }

    .career-filters {
        flex-direction: column;
    }

    .search-box,
    .location-filter {
        min-width: 100%;
    }

    .department-title {
        font-size: 1.3rem;
    }

    .job-card {
        padding: 25px 20px;
    }

    .job-header {
        flex-direction: column;
    }

    .job-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .apply-btn {
        width: 100%;
    }

    .contact-info,
    .contact-form-container {
        padding: 30px 25px;
    }

    .contact-info h3 {
        font-size: 1.6rem;
    }

    .info-item {
        flex-direction: column;
        align-items: flex-start;
    }
}