/* ==========================================================================
   CSS BRANDING & CORE DESIGN SYSTEM (Career Consultancy & Toy Products)
   ========================================================================== */

:root {
    --primary: #0F4C81;
    /* Professional Blue */
    --primary-light: #1e6ea8;
    --primary-rgb: 15, 76, 129;
    --secondary: #E21F26;
    /* Vibrant Corporate Red */
    --secondary-hover: #C1161C;
    --accent: #00B894;
    /* Success Green */
    --accent-rgb: 0, 184, 148;
    --bg-light: #F8FAFC;
    /* Off-white Background */
    --bg-white: #FFFFFF;
    --dark: #1E293B;
    /* Sleek Charcoal Dark */
    --text-dark: #334155;
    /* Text color */
    --text-muted: #64748B;
    /* Muted text */
    --border-color: #E2E8F0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-premium: 0 20px 40px rgba(15, 76, 129, 0.08);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* --- RESET & BASIC STYLES --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--dark);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- REUSABLE COMPONENTS & UTILITIES --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 30px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-eyebrow {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 12px;
    display: inline-block;
    position: relative;
    padding-bottom: 6px;
}

.section-eyebrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background-color: var(--secondary);
}

.section-title {
    font-size: 2.25rem;
    line-height: 1.3;
    margin-bottom: 20px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 76, 129, 0.2);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--bg-white);
}

.btn-secondary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(226, 31, 38, 0.2);
}

.btn-outline {
    border-color: var(--primary);
    color: var(--primary);
    background-color: transparent;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.btn-white {
    background-color: var(--bg-white);
    color: var(--primary);
}

.btn-white:hover {
    background-color: var(--primary);
    color: var(--bg-white);
    transform: translateY(-2px);
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 1.8rem;
    color: var(--primary);
    display: flex;
    position: relative;
}

.logo-icon i:first-child {
    color: var(--primary);
}

.logo-icon i:last-child {
    color: var(--secondary);
    font-size: 1.2rem;
    position: absolute;
    bottom: -4px;
    right: -8px;
    transform: rotate(15deg);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.5px;
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-subtext {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    color: var(--secondary);
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition);
}

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

.nav-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--dark);
    transition: var(--transition);
    border-radius: 2px;
}

/* ==========================================================================
   HERO BANNER
   ========================================================================== */
.hero-section {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    padding: 100px 0;
    background-color: #0f172a;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 5;
    pointer-events: none;
}

.hero-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background-color: rgba(15, 76, 129, 0.4);
    color: #ffffff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: auto;
    outline: none;
}

.hero-nav-btn:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    transform: scale(1.1);
}

@media (max-width: 1400px) {
    .hero-section {
        min-height: auto;
        height: auto;
        aspect-ratio: 1400 / 600;
        padding: 0;
    }

    .hero-slide {
        background-attachment: scroll;
        background-size: cover;
    }

    .hero-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .hero-nav {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .hero-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .hero-nav {
        padding: 0 15px;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-content h1 em {
    font-style: normal;
    color: var(--primary);
    position: relative;
}

.hero-content h1 em::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(226, 31, 38, 0.3);
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    font-weight: 400;
}

.hero-btns {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-image-wrap {
    position: relative;
}

.hero-image-bg {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 90%;
    height: 90%;
    background-color: var(--secondary);
    border-radius: var(--radius-lg);
    z-index: 1;
    transform: rotate(3deg);
    opacity: 0.15;
}

.hero-image-img {
    position: relative;
    z-index: 2;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 8px solid var(--bg-white);
    transform: rotate(-1deg);
    transition: var(--transition);
}

.hero-image-img:hover {
    transform: rotate(0deg) scale(1.02);
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge-1 {
    top: 20%;
    left: -40px;
    animation: float 6s ease-in-out infinite;
}

.badge-2 {
    bottom: 15%;
    right: -20px;
    animation: float 6s ease-in-out infinite 3s;
}

.badge-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.badge-2 .badge-icon {
    background-color: var(--accent);
}

.badge-info h4 {
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.badge-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* ==========================================================================
   STATISTICS SECTION
   ========================================================================== */
.stats-section {
    background-color: var(--dark);
    color: var(--bg-white);
    padding: 10px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
    border-right: none;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 16px;
}

.stat-num {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    font-family: var(--font-heading);
    color: var(--bg-white);
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   ABOUT SHORT SECTION
   ========================================================================== */
.about-short-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: center;
}

.about-img-collage {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    width: 85%;
}

.about-img-sub {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 50%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--bg-white);
}

.about-short-content h2 {
    font-size: 2.25rem;
    margin-bottom: 20px;
}

.about-short-text {
    /* font-size: 1.1rem; */
    color: var(--text-muted);
    margin-bottom: 30px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.about-feat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-feat-item i {
    color: var(--accent);
    font-size: 1.2rem;
}

/* ==========================================================================
   WHAT WE OFFER (SERVICES CARDS)
   ========================================================================== */
.services-section {
    background-color: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--bg-light);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    background-color: var(--bg-white);
    border-color: var(--secondary);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(15, 76, 129, 0.08);
    color: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--secondary);
    color: var(--bg-white);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.service-link i {
    transition: var(--transition);
}

.service-card:hover .service-link {
    color: var(--secondary);
}

.service-card:hover .service-link i {
    transform: translateX(4px);
}

/* ==========================================================================
   FEATURED PRODUCTS ( SECTION)
   ========================================================================== */
.products-section {
    background-color: var(--bg-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.product-img-wrap {
    position: relative;
    padding-top: 100%;
    /* 1:1 Aspect Ratio */
    background-color: #F1F5F9;
    overflow: hidden;
}

.product-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--secondary);
    color: var(--dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    z-index: 2;
}

.product-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-sku {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 6px;
    font-weight: 500;
}

.product-name {
    font-size: 1.15rem;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.3;
}

.product-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

.product-action {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* ==========================================================================
   LATEST JOBS SECTION
   ========================================================================== */
.jobs-section {
    background-color: var(--bg-white);
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.job-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.job-card:hover {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
    transform: translateY(-2px);
}

.job-card:hover h3 {
    color: var(--secondary);
}

.job-card:hover .btn-outline {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: #ffffff;
}

.job-info h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 16px;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.job-tag {
    display: inline-block;
    padding: 4px 12px;
    background-color: rgba(15, 76, 129, 0.08);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
}

.job-btn {
    flex-shrink: 0;
}

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.why-section {
    background-color: var(--bg-light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 20px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
}

.why-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 184, 148, 0.1);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.why-info h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.why-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ==========================================================================
   TESTIMONIALS (CAROUSEL / SLIDER)
   ========================================================================== */
.testimonials-section {
    background-color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.testimonials-slider-wrap {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slide {
    display: none;
    text-align: center;
    padding: 20px;
    animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-stars {
    color: var(--secondary);
    font-size: 1.25rem;
    margin-bottom: 24px;
}

.testimonial-quote {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 30px;
    position: relative;
}

.testimonial-quote::before,
.testimonial-quote::after {
    content: '"';
    font-size: 3rem;
    color: rgba(15, 76, 129, 0.15);
    position: absolute;
}

.testimonial-quote::before {
    top: -20px;
    left: -20px;
}

.testimonial-quote::after {
    bottom: -40px;
    right: -20px;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.testimonial-author p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px auto;
    display: block;
    border: 3px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-slide:hover .testimonial-img {
    border-color: var(--secondary);
    transform: scale(1.08);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border-color);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dot.active {
    background-color: var(--primary);
    transform: scale(1.2);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* ==========================================================================
   CALL TO ACTION
   ========================================================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--bg-white);
    position: relative;
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
}

.cta-left {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    padding-right: 50px;
}

.cta-right {
    padding-left: 10px;
}

.cta-section h2 {
    color: var(--bg-white);
    font-size: 2.25rem;
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
    background: linear-gradient(rgba(21, 31, 116, 0.94), rgba(16, 38, 94, 0.97)), url('../assets/image/footer-bg.jpg') no-repeat;
    background-size: 110% 110%;
    background-position: center;
    color: #ffffff;
    padding: 80px 0 30px 0;
    border-top: 4px solid #ffffff;
    animation: slowPan 25s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

@keyframes slowPan {
    0% {
        background-position: 50% 50%;
    }

    50% {
        background-position: 55% 45%;
    }

    100% {
        background-position: 50% 50%;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1.2fr 1.2fr 1.2fr;
    gap: 30px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    /* margin-bottom: 20px; */
}

.footer-logo .logo-icon {
    color: var(--bg-white);
}

.footer-logo .logo-icon i:last-child {
    color: #ffffff;
}

.footer-logo .logo-text {
    color: var(--bg-white);
}

.footer-logo .logo-subtext {
    color: rgba(255, 255, 255, 0.7);
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.95);
}

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

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.06);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 0.95rem;
}

.social-link:hover {
    background-color: var(--secondary);
    color: #ffffff;
    border: 1px solid var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(226, 31, 38, 0.5);
}

.footer-col h5 {
    color: var(--bg-white);
    font-size: 1.1rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes lineGlow {

    0%,
    100% {
        box-shadow: 0 0 4px rgba(255, 255, 255, 0.4);
        width: 30px;
    }

    50% {
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
        width: 45px;
    }
}

.footer-col h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #ffffff;
    animation: lineGlow 3s infinite ease-in-out;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.92rem;
    display: inline-block;
    position: relative;
    transition: var(--transition);
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--secondary);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary);
    transform: translateX(6px);
    text-shadow: 0 0 8px rgba(226, 31, 38, 0.4);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-info-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
    transition: var(--transition);
}

.footer-info-item:hover {
    transform: translateX(6px);
    color: var(--secondary);
}

.footer-info-item i {
    color: #ffffff;
    margin-top: 4px;
    transition: var(--transition);
}

.footer-info-item:hover i {
    color: var(--secondary);
    transform: scale(1.2);
    text-shadow: 0 0 8px rgba(226, 31, 38, 0.6);
}

.newsletter-form {
    margin-top: 15px;
}

.newsletter-input-group {
    display: flex;
}

.newsletter-input {
    flex-grow: 1;
    padding: 12px 16px;
    border: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
}

.newsletter-btn {
    background-color: var(--secondary);
    color: var(--dark);
    border: none;
    padding: 0 20px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.newsletter-btn:hover {
    background-color: var(--secondary-hover);
}

.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.25);
    margin-bottom: 30px;
}

.copyright-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    padding-left: 120px;
    padding-right: 120px;
}

/* ==========================================================================
   WHATSAPP & APPLY STICKY
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.sticky-apply {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    box-shadow: var(--shadow-lg);
    animation: bounce 3s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* ==========================================================================
   WHO WE ARE PAGE (ABOUT.PHP)
   ========================================================================== */
.page-hero {
    background: linear-gradient(rgba(15, 76, 129, 0.85), rgba(15, 76, 129, 0.95)), url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-4.0.3&auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    color: var(--bg-white);
    padding: 100px 0;
    text-align: center;
}

.page-hero h1 {
    color: var(--bg-white);
    font-size: 3rem;
    margin-bottom: 12px;
}

.page-breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.page-breadcrumbs a:hover {
    color: var(--secondary);
}

.our-story-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.story-content h2 {
    font-size: 2.25rem;
    margin-bottom: 24px;
}

.story-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.story-img img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

/* Story Blockquote Style */
.story-blockquote {
    position: relative;
    padding: 20px 25px 20px 45px;
    margin: 25px 0;
    background: linear-gradient(135deg, rgba(15, 76, 129, 0.06) 0%, rgba(15, 76, 129, 0.02) 100%);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    box-shadow: var(--shadow-sm);
}

.story-blockquote p {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.5;
    margin-bottom: 0 !important;
    font-style: italic;
}

.story-blockquote i {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 1.8rem;
    color: rgba(15, 76, 129, 0.12);
    pointer-events: none;
}

/* Vision Mission Values */
.vmv-section {
    background-color: var(--bg-white);
}

.vmv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding-top: 20px;
}

.vmv-card {
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.vmv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background-color: var(--bg-white);
    border-color: var(--secondary);
}

.vmv-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(15, 76, 129, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 24px auto;
    transition: var(--transition);
}

.vmv-card:hover .vmv-icon {
    background-color: var(--secondary);
    color: var(--bg-white);
}

.vmv-card h3 {
    margin-bottom: 16px;
    font-size: 1.3rem;
}

.vmv-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Timeline */
.timeline-section {
    background-color: var(--bg-light);
}

.timeline-wrap {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    background-color: var(--border-color);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-dot-indicator {
    width: 20px;
    height: 20px;
    background-color: var(--secondary);
    border: 4px solid var(--bg-light);
    border-radius: 50%;
    position: absolute;
    top: 30px;
    z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-dot-indicator {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-dot-indicator {
    left: -10px;
}

.timeline-content {
    background-color: var(--bg-white);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.timeline-year {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.timeline-title {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.timeline-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ==========================================================================
   WHAT WE DO PAGE (SERVICES.PHP)
   ========================================================================== */
.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-detail-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.service-detail-icon {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 24px;
}

.service-detail-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.service-detail-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.service-detail-list i {
    color: var(--accent);
    font-size: 1rem;
}

/* ==========================================================================
   PRODUCTS PAGE (PRODUCTS.PHP)
   ========================================================================== */
.products-filter-wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}

.filter-btn {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 10px 24px;
    font-family: var(--font-heading);
    font-weight: 500;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary);
    color: var(--bg-white);
    border-color: var(--primary);
}

/* Modal details */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(5px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-content {
    background-color: var(--bg-white);
    max-width: 900px;
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    animation: modalSlide 0.4s ease;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    color: var(--text-muted);
}

.modal-body {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 40px;
}

.modal-gallery img {
    border-radius: var(--radius-md);
    width: 100%;
    height: auto;
}

.modal-info h2 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.modal-sku {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 16px;
    display: block;
}

.modal-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.modal-desc {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.modal-specs {
    margin-bottom: 30px;
}

.modal-specs li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 4px;
}

.modal-specs strong {
    color: var(--dark);
}

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

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

/* ==========================================================================
   JOBS PAGE (JOBS.PHP)
   ========================================================================== */
.jobs-search-bar {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    margin-bottom: 50px;
}

.search-form {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: flex-end;
}

.search-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.search-field label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--dark);
}

.search-field input,
.search-field select {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    outline: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
}

/* Drag and Drop Resume */
.resume-upload-section {
    background-color: var(--bg-light);
}

.upload-card {
    background-color: var(--bg-white);
    max-width: 600px;
    margin: 0 auto;
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.dropzone {
    border: 2px dashed var(--primary);
    border-radius: var(--radius-md);
    padding: 40px;
    text-align: center;
    cursor: pointer;
    background-color: rgba(15, 76, 129, 0.02);
    transition: var(--transition);
    margin-bottom: 24px;
}

.dropzone:hover,
.dropzone.dragover {
    background-color: rgba(15, 76, 129, 0.05);
    border-color: var(--accent);
}

.dropzone-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.dropzone-text h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.dropzone-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.upload-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.upload-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.upload-field label {
    font-size: 0.85rem;
    font-weight: 600;
}

.upload-field input {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.page-num {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.page-num:hover,
.page-num.active {
    background-color: var(--primary);
    color: var(--bg-white);
    border-color: var(--primary);
}

/* ==========================================================================
   GALLERY PAGE (GALLERY.PHP)
   ========================================================================== */
.gallery-filter-wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 76, 129, 0.9), rgba(15, 76, 129, 0.3));
    opacity: 0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: var(--bg-white);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.gallery-title {
    font-size: 1.15rem;
    font-weight: 600;
}

/* ==========================================================================
   CONTACT PAGE (CONTACT.PHP)
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
}

.contact-info-wrap {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-detail-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.contact-detail-card h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 16px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(15, 76, 129, 0.08);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.contact-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.map-container {
    height: 250px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Contact Form styling */
.contact-form-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.contact-form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    outline: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(15, 76, 129, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-full-width {
    grid-column: span 2;
}

/* FAQ Accordion */
.faq-section {
    background-color: var(--bg-white);
}

.faq-wrap {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-header {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 1.05rem;
}

.faq-icon {
    font-size: 1.1rem;
    transition: var(--transition);
}

.faq-body {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.faq-item.active {
    border-color: var(--primary);
    background-color: var(--bg-white);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-body {
    padding: 0 24px 20px 24px;
    max-height: 200px;
}


/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.75rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .nav-container {
        height: 70px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--bg-white);
        z-index: 1000;
        transition: var(--transition);
        border-top: 1px solid var(--border-color);
        overflow-y: auto;
    }

    .nav-nav.open {
        left: 0;
    }

    .nav-menu {
        flex-direction: column;
        padding: 40px 24px;
        gap: 24px;
        align-items: flex-start;
    }

    .nav-link {
        font-size: 1.1rem;
        width: 100%;
    }

    .nav-btn-item {
        width: 100%;
        margin-top: 16px;
    }

    .nav-btn-item .nav-btn {
        width: 100%;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-image-wrap {
        max-width: 450px;
        margin: 0 auto;
    }

    .badge-1 {
        left: -20px;
    }

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

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 30px;
    }

    .stat-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .about-short-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-img-collage {
        max-width: 450px;
        margin: 0 auto;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .job-card {
        flex-direction: column;
        gap: 20px;
    }

    .job-btn {
        width: 100%;
    }

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

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

    .cta-left {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        padding-bottom: 30px;
    }

    .our-story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .timeline-wrap::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 0;
        text-align: left !important;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-dot-indicator {
        left: 10px !important;
        right: auto !important;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

    .modal-body {
        grid-template-columns: 1fr;
        padding: 30px 20px;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

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

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

    .copyright-bar {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding-left: 0;
        padding-right: 0;
    }
}

/* ==========================================================================
   DROPDOWN NAVIGATION STYLES
   ========================================================================== */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 0.75rem;
    transition: var(--transition);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    min-width: 260px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1001;
    padding: 10px 0;
    list-style: none;
    margin: 0;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.02);
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background-color: rgba(15, 76, 129, 0.05);
    color: var(--primary);
    padding-left: 24px;
}

/* Hover behavior on Desktop */
@media (min-width: 769px) {
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown:hover .dropdown-arrow {
        transform: rotate(180deg);
    }
}

/* Mobile Dropdown styles */
@media (max-width: 768px) {
    .dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background-color: rgba(15, 76, 129, 0.02);
        padding: 0;
        margin: 5px 0 0 10px;
        display: none;
        border-left: 2px solid var(--primary);
    }

    .dropdown.open-mobile .dropdown-menu {
        display: block;
    }

    .dropdown.open-mobile .dropdown-arrow {
        transform: rotate(180deg);
    }

    .dropdown-menu a {
        padding: 10px 15px;
        font-size: 0.95rem;
        color: var(--text-muted);
    }

    .dropdown-menu a:hover {
        padding-left: 20px;
        color: var(--primary);
        background-color: transparent;
    }
}

/* ==========================================================================
   PARTNERS SECTION STYLES
   ========================================================================== */
.partners-section {
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 80px 0;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 60px;
    margin-top: 30px;
}

.partner-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.65;
    transition: var(--transition);
    cursor: pointer;
    user-select: none;
}

.partner-logo-item img {
    height: 45px;
    width: auto;
    object-fit: contain;
    /* filter: grayscale(100%); */
    transition: var(--transition);
}

.partner-logo-item:hover {
    opacity: 1;
}

.partner-logo-item:hover img {
    filter: none;
}

.partner-logo-item:hover {
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .partners-grid {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 30px;
    }

    .partner-logo-item img {
        height: 35px;
    }
}

@media (max-width: 480px) {
    .partners-grid {
        gap: 20px;
    }

    .partner-logo-item img {
        height: 30px;
    }
}

/* --- SCROLL REVEAL ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-delay-5 {
    transition-delay: 0.5s;
}

.reveal-delay-6 {
    transition-delay: 0.6s;
}

/* --- LATEST JOB CARD ANIMATE ICON --- */
.animate-job-icon {
    color: var(--primary);
    margin-right: 12px;
    font-size: 1.5rem;
    transition: var(--transition);
}

.job-card:hover .animate-job-icon {
    color: var(--secondary);
    transform: scale(1.2);
}

/* --- MOTIVATIONAL QUOTE BANNER --- */
.quote-banner {
    position: relative;
    background: url('../assets/image/quote-bg.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    /* Parallax effect */
    padding: 30px 0;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
    margin: 15px 0;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.3);
}

.quote-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 76, 129, 0.9) 0%, rgba(30, 41, 59, 0.85) 100%);
    z-index: 1;
}

.quote-banner .container {
    position: relative;
    z-index: 2;
}

.quote-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.quote-decor-line {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--secondary), transparent);
    opacity: 0.5;
    position: relative;
}

.quote-decor-line::after {
    content: '';
    position: absolute;
    top: -3px;
    width: 8px;
    height: 8px;
    background-color: var(--secondary);
    border-radius: 50%;
}

.left-line::after {
    right: 0;
}

.right-line::after {
    left: 0;
}

.quote-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 15px;
}

.quote-icon {
    font-size: 1.3rem;
    color: var(--secondary);
    opacity: 0.8;
    transition: var(--transition);
}

.quote-icon-right {
    font-size: 1.3rem;
    color: var(--secondary);
    opacity: 0.8;
    transition: var(--transition);
}

.quote-quote {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 600;
    line-height: 1.3;
    font-style: italic;
    color: #ffffff;
    max-width: 800px;
    margin: 0;
    transition: var(--transition);
}

.quote-banner:hover .quote-quote {
    color: var(--secondary);
    transform: scale(1.02);
}

.quote-banner:hover .quote-icon {
    transform: scale(1.15);
    color: #ffffff;
}

.quote-banner:hover .quote-icon-right {
    transform: scale(1.15);
    color: #ffffff;
}

@media (max-width: 768px) {
    .quote-banner {
        padding: 20px 0;
    }

    .quote-quote {
        font-size: 1.15rem;
    }

    .quote-decor-line {
        display: none;
    }
}

/* --- VALUES & CAREERS SECTION --- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.value-card {
    background: linear-gradient(145deg, var(--bg-white) 0%, #f8fafc 100%);
    padding: 45px 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    z-index: 1;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.value-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: rgba(15, 76, 129, 0.05);
    user-select: none;
    line-height: 1;
    transition: var(--transition);
}

.value-icon {
    width: 65px;
    height: 65px;
    border-radius: 16px;
    background: rgba(15, 76, 129, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(15, 76, 129, 0.05);
    transition: var(--transition);
}

.value-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
    transition: var(--transition);
}

.value-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Hover effects */
.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(15, 76, 129, 0.2);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(15, 76, 129, 0.2);
}

.value-card:hover h3 {
    color: var(--primary);
}

.value-card:hover .value-number {
    color: rgba(226, 31, 38, 0.12);
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}