:root {
    --primary: #0a2463;
    --secondary: #3e92cc;
    --accent: #fb8500;
    --light: #f8f9fa;
    --dark: #1a1a2e;
}

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

/* Page Load Animation */
@keyframes pageLoad {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body {
    animation: pageLoad 0.6s ease;
}

/* Smooth transitions for all interactive elements */
a, button, .btn, .nav-link, .service-card, .stat-card, .feature-box, .mission-card, .value-card, .journey-item, .client-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced navbar brand animation */
.navbar-brand {
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-brand:hover span {
    color: var(--accent) !important;
}

/* Navbar Styles */
.navbar {
    background: rgba(10, 36, 99, 0.95) !important;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 5px 30px rgba(0,0,0,0.2);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: white !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand .brand-logo {
    width: 45px;
    height: 45px;
    object-fit: contain;
    animation: float 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.navbar-brand:hover .brand-logo {
    transform: scale(1.1) rotate(5deg);
    animation: float 2s ease-in-out infinite, iconBounce 0.6s ease;
}

.brand-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--accent), #ff9a3c);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link:hover {
    color: white !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 100px 0 50px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,128C1248,117,1344,107,1392,101.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    animation: gradientShift 10s ease infinite;
}

.hero-image-carousel {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

.hero-image-carousel .carousel {
    border-radius: 16px;
}

.hero-image-carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-carousel .carousel-control-prev,
.hero-image-carousel .carousel-control-next {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    opacity: 0.8;
}

.hero-image-carousel .carousel-control-prev {
    left: 15px;
}

.hero-image-carousel .carousel-control-next {
    right: 15px;
}

.hero-image-carousel .carousel-control-prev:hover,
.hero-image-carousel .carousel-control-next:hover {
    background: rgba(255,255,255,0.5);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.hero-image-carousel .carousel-indicators {
    bottom: 15px;
    margin-bottom: 0;
}

.hero-image-carousel .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: 2px solid rgba(255,255,255,0.8);
    transition: all 0.3s ease;
}

.hero-image-carousel .carousel-indicators [data-bs-target].active {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.2);
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: floatShape 20s infinite ease-in-out;
}

.shape:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation: floatShape 20s infinite ease-in-out, rotate-slow 30s linear infinite;
}

.shape:nth-child(2) {
    top: 60%;
    right: 10%;
    animation-delay: 2s;
    animation: floatShape 25s infinite ease-in-out, rotate-slow 35s linear infinite reverse;
}

.shape:nth-child(3) {
    bottom: 20%;
    left: 30%;
    animation-delay: 4s;
    animation: floatShape 22s infinite ease-in-out, rotate-slow 28s linear infinite;
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
}

.hero .tagline {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero .description {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 3rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.4s backwards;
}

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

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.cta-buttons .btn {
    position: relative;
    overflow: hidden;
}

.cta-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.cta-buttons .btn:hover::before {
    left: 100%;
}

.btn-custom {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-primary-custom {
    background: var(--accent);
    color: white;
    border: none;
    box-shadow: 0 10px 30px rgba(251, 133, 0, 0.3);
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary-custom:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(251, 133, 0, 0.4);
}

.btn-outline-custom {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

/* Stats Section */
.stats {
    background: white;
    padding: 80px 0;
    margin-top: -50px;
    position: relative;
    z-index: 3;
}

.stat-card {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: var(--light);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.stat-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(180deg, white 0%, var(--light) 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--secondary));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-top: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.service-card:hover::before {
    opacity: 0;
}

.service-card > * {
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.service-card:hover h4,
.service-card:hover p {
    color: inherit;
}

.service-icon {
    font-size: 3.5rem;
    color: var(--accent);
    margin-bottom: 25px;
    display: inline-block;
}

.service-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.8;
}

/* Notice Marquee (below Hero) */
.notice-marquee-wrap {
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, var(--primary) 0%, #0d2d6d 100%);
    color: #fff;
    padding: 12px 0;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.notice-marquee-label {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 24px;
    margin-right: 20px;
    border-right: 2px solid rgba(255,255,255,0.3);
    font-weight: 700;
    font-size: 1rem;
}

.notice-marquee-label i {
    color: var(--accent);
    font-size: 1.2rem;
}

.notice-marquee {
    flex: 1;
    overflow: hidden;
}

.notice-marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    padding-right: 24px;
    animation: noticeScroll 40s linear infinite;
    white-space: nowrap;
}

.notice-marquee-wrap:hover .notice-marquee-track {
    animation-play-state: paused;
}

.notice-m-item {
    display: inline-flex;
    align-items: center;
    color: rgba(255,255,255,0.95);
    font-size: 0.95rem;
}

.notice-m-item strong {
    color: #fff;
    margin-right: 6px;
}

.notice-m-item.notice-m-urgent strong {
    color: #ffb3b3;
}

.notice-m-item.notice-m-important strong {
    color: var(--accent);
}

.notice-m-sep {
    color: rgba(255,255,255,0.35);
    font-weight: 300;
    user-select: none;
}

@keyframes noticeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 576px) {
    .notice-marquee-wrap {
        flex-direction: column;
        align-items: stretch;
        padding: 10px 12px;
    }
    .notice-marquee-label {
        border-right: none;
        border-bottom: 2px solid rgba(255,255,255,0.3);
        margin-right: 0;
        margin-bottom: 8px;
        padding: 0 0 8px 0;
        justify-content: center;
    }
    .notice-marquee-track {
        font-size: 0.85rem;
        gap: 16px;
    }
}

/* Industries Section */
.industries {
    padding: 100px 0;
    background: var(--primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.industries::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.03" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,128C1248,117,1344,107,1392,101.3L1440,96L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>');
    background-size: cover;
}

.industry-badge {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 50px;
    margin: 10px;
    display: inline-block;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

.industry-badge:hover {
    background: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* Why Choose Us */
.why-choose {
    padding: 100px 0;
    background: white;
}

.feature-box {
    text-align: center;
    padding: 40px 20px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--accent), #ff9a3c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(251, 133, 0, 0.3);
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon-wrapper {
    transform: rotate(360deg);
    box-shadow: 0 15px 40px rgba(251, 133, 0, 0.4);
}

.feature-icon-wrapper i {
    font-size: 2.5rem;
    color: white;
}

.feature-box h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.feature-box p {
    color: #666;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: white;
    position: relative;
    overflow: hidden;
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotateCTA 20s linear infinite;
}

@keyframes rotateCTA {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    animation: slideInLeft 0.8s ease;
}

.cta-content p {
    animation: slideInLeft 0.8s ease 0.2s backwards;
}

.cta-content .btn {
    animation: slideInRight 0.8s ease 0.4s backwards;
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-section h5 {
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

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

.footer-section ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.footer-section .footer-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 15px;
}

.social-links a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    margin-right: 10px;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent);
    transform: translateY(-5px);
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 30px;
    text-align: center;
    color: rgba(255,255,255,0.5);
}

/* Clients Section */
.clients {
    padding: 100px 0;
    background: var(--light);
}

.client-card {
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.client-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.client-card:hover::before {
    opacity: 0;
}

.client-card > * {
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.client-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.client-card:hover h5,
.client-card:hover p {
    color: inherit;
}

.client-card .client-icon {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

.client-card:hover .client-icon {
    transform: scale(1.2) rotate(10deg);
    color: white;
}

.client-card h5 {
    color: var(--primary);
    font-weight: 700;
    transition: all 0.4s ease;
}

.client-card p {
    color: #666;
    margin: 0;
    transition: all 0.4s ease;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: white;
}

.contact-info-box {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 50px;
    border-radius: 20px;
    color: white;
    height: 100%;
}

.contact-info-box h3 {
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-info-box h5 {
    color: var(--accent);
    margin-bottom: 10px;
}

.contact-form-box {
    background: var(--light);
    padding: 50px;
    border-radius: 20px;
    height: 100%;
}

.contact-form-box h3 {
    margin-bottom: 30px;
    font-weight: 700;
    color: var(--primary);
}

.form-control-custom {
    padding: 15px;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

/* Creative Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.9);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes flipIn {
    from {
        opacity: 0;
        transform: perspective(400px) rotateY(90deg);
    }
    to {
        opacity: 1;
        transform: perspective(400px) rotateY(0deg);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes textReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
        clip-path: inset(0 0 100% 0);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        clip-path: inset(0 0 0 0);
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes iconSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(251, 133, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(251, 133, 0, 0.6);
    }
}

/* Animation Classes */
.animate-slide-left {
    opacity: 0;
    animation: slideInLeft 0.8s ease forwards;
}

.animate-slide-right {
    opacity: 0;
    animation: slideInRight 0.8s ease forwards;
}

.animate-slide-up {
    opacity: 0;
    animation: slideInUp 0.8s ease forwards;
}

.animate-slide-down {
    opacity: 0;
    animation: slideInDown 0.8s ease forwards;
}

.animate-scale {
    opacity: 0;
    animation: scaleIn 0.6s ease forwards;
}

.animate-rotate {
    opacity: 0;
    animation: rotateIn 0.8s ease forwards;
}

.animate-bounce {
    opacity: 0;
    animation: bounceIn 0.8s ease forwards;
}

.animate-flip {
    opacity: 0;
    animation: flipIn 0.8s ease forwards;
}

.animate-zoom {
    opacity: 0;
    animation: zoomIn 0.6s ease forwards;
}

/* Stagger Animation Delays */
.animate-delay-1 {
    animation-delay: 0.1s;
}

.animate-delay-2 {
    animation-delay: 0.2s;
}

.animate-delay-3 {
    animation-delay: 0.3s;
}

.animate-delay-4 {
    animation-delay: 0.4s;
}

.animate-delay-5 {
    animation-delay: 0.5s;
}

.animate-delay-6 {
    animation-delay: 0.6s;
}

/* Enhanced Hover Effects */
.service-card,
.stat-card,
.feature-box,
.mission-card,
.value-card,
.journey-item {
    position: relative;
    overflow: hidden;
}

.service-card::after,
.stat-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.service-card:hover::after,
.stat-card:hover::after {
    width: 400px;
    height: 400px;
}

/* Icon Animations */
.service-icon,
.stat-icon,
.feature-icon-wrapper i,
.value-icon {
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(5deg);
    animation: iconBounce 0.6s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.15);
    animation: pulse 1s ease infinite;
}

.feature-box:hover .feature-icon-wrapper i {
    animation: iconSpin 0.6s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(-5deg);
    animation: iconBounce 0.5s ease;
}

/* Text Reveal Animation */
.text-reveal {
    opacity: 0;
    animation: textReveal 1s ease forwards;
}

/* Parallax Effect */
.parallax {
    transition: transform 0.3s ease-out;
}

/* Gradient Animation */
.gradient-animate {
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
}

/* Glow Effect */
.glow-on-hover {
    transition: all 0.3s ease;
}

.glow-on-hover:hover {
    animation: glow 1.5s ease infinite;
}

/* Shimmer Effect */
.shimmer {
    background: linear-gradient(
        90deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.2) 50%,
        rgba(255,255,255,0) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

/* Rotate Animation */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.rotate-slow {
    animation: rotate 20s linear infinite;
}

/* Scale Pulse */
@keyframes scalePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.scale-pulse {
    animation: scalePulse 2s ease-in-out infinite;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero .tagline {
        font-size: 1.1rem;
    }

    .hero-image-carousel .carousel-control-prev,
    .hero-image-carousel .carousel-control-next {
        width: 35px;
        height: 35px;
    }

    .hero-image-carousel .carousel-control-prev {
        left: 10px;
    }

    .hero-image-carousel .carousel-control-next {
        right: 10px;
    }

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

    .cta-buttons {
        flex-direction: column;
    }

    .btn-custom {
        width: 100%;
    }
}

/* Page Hero Animations */
.page-hero {
    min-height: 50vh;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,128C1248,117,1344,107,1392,101.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    animation: floatShape 25s infinite ease-in-out;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    animation: slideInLeft 0.8s ease;
}

.page-hero .breadcrumb-text {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    animation: slideInLeft 0.8s ease 0.2s backwards;
}

.page-hero .img-placeholder {
    animation: slideInRight 0.8s ease 0.3s backwards, float 4s ease-in-out infinite;
}

.img-placeholder {
    background: linear-gradient(135deg, rgba(10,36,99,0.08) 0%, rgba(62,146,204,0.08) 100%);
    border: 2px dashed rgba(10,36,99,0.2);
    border-radius: 16px;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.img-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(251,133,0,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
}

.img-placeholder:hover::before {
    animation: shimmer 1.5s infinite;
}

.img-placeholder:hover {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(251,133,0,0.06) 0%, rgba(62,146,204,0.06) 100%);
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(251,133,0,0.2);
}

.img-placeholder i {
    font-size: 3rem;
    opacity: 0.5;
    margin-right: 12px;
    transition: all 0.3s ease;
}

.img-placeholder:hover i {
    opacity: 1;
    transform: scale(1.1) rotate(5deg);
}

/* Common image hover effect (placeholder-style) – use wrapper .img-hover-effect */
.img-hover-effect {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.img-hover-effect::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(251,133,0,0.15), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
    z-index: 1;
    pointer-events: none;
}

.img-hover-effect:hover::before {
    animation: shimmer 1.5s infinite;
}

.img-hover-effect:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(251,133,0,0.25);
}

.img-hover-effect img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.about-story {
    padding: 100px 0;
    background: white;
}

.about-story h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.about-story h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--secondary));
    border-radius: 2px;
}

.about-story .lead {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.about-mission {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--light) 0%, white 100%);
}

.mission-card {
    background: white;
    border-radius: 20px;
    padding: 40px 35px;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    border-left: 5px solid var(--accent);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251,133,0,0.1), transparent);
    transition: left 0.6s;
}

.mission-card:hover::before {
    left: 100%;
}

.mission-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border-left-width: 8px;
}

.mission-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.mission-card:hover h3 {
    color: var(--accent);
    transform: translateX(5px);
}

.about-values {
    padding: 100px 0;
    background: white;
}

.value-card {
    text-align: center;
    padding: 35px 25px;
    background: var(--light);
    border-radius: 20px;
    height: 100%;
    transition: all 0.35s ease;
    border: 2px solid transparent;
}

.value-card:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(251,133,0,0.15);
}

.value-card .value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--accent), #ff9a3c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
}

.value-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.value-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.about-journey {
    padding: 100px 0;
    background: var(--primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.about-journey::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.04" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,128C1248,117,1344,107,1392,101.3L1440,96L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>');
    background-size: cover;
}

.journey-item {
    position: relative;
    padding: 30px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.15);
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.journey-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(251,133,0,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.journey-item:hover::before {
    width: 300px;
    height: 300px;
}

.journey-item:hover {
    background: rgba(255,255,255,0.12);
    transform: scale(1.05) translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 15px 40px rgba(251,133,0,0.3);
}

.journey-item .year {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    display: block;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.journey-item:hover .year {
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(251,133,0,0.5);
}

.journey-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.journey-item:hover h4 {
    transform: translateY(-3px);
}

.journey-item p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.about-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: white;
    text-align: center;
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: scalePulse 4s ease-in-out infinite;
}

.about-cta h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    animation: slideInDown 0.8s ease;
    position: relative;
    z-index: 1;
}

.about-cta p {
    font-size: 1.15rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: slideInUp 0.8s ease 0.2s backwards;
    position: relative;
    z-index: 1;
}

.about-cta .btn {
    animation: bounceIn 0.8s ease 0.4s backwards;
    position: relative;
    z-index: 1;
}

.nav-link.active {
    color: white !important;
}

.nav-link.active::after {
    width: 80%;
}

@media (max-width: 768px) {
    .page-hero {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .mission-card,
    .value-card {
        margin-bottom: 0;
    }

    .journey-item .year {
        font-size: 2rem;
    }
}

/* Services Page Styles */
.services-overview {
    padding: 80px 0;
    background: white;
}

.service-detail-card {
    background: white;
    border-radius: 20px;
    padding: 40px 35px;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.service-detail-card:hover::before {
    opacity: 0;
}

.service-detail-card > * {
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}

.service-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-color: var(--accent);
}

.service-detail-card:hover h3,
.service-detail-card:hover p {
    color: inherit;
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent), #ff9a3c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(251,133,0,0.3);
}

.service-detail-card:hover .service-detail-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(251,133,0,0.5);
}

.service-detail-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    transition: all 0.4s ease;
}

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

.service-detail-card p {
    color: #666;
    line-height: 1.85;
    margin-bottom: 1.25rem;
    transition: all 0.4s ease;
}

.service-detail-card:hover p {
    color: #666;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    color: #666;
    margin-bottom: 0.75rem;
    padding-left: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.service-features li i {
    color: var(--accent);
    margin-top: 4px;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.service-detail-card:hover .service-features li {
    color: #666;
}

.service-detail-card:hover .service-features li i {
    color: var(--accent);
    transform: scale(1);
}

.overseas-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 35px 30px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.overseas-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.overseas-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.overseas-card h4 i {
    color: var(--accent);
    margin-right: 10px;
    font-size: 1.5rem;
}

.overseas-card p {
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
    margin: 0;
}

.services-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: white;
    text-align: center;
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    position: relative;
    overflow: hidden;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: scalePulse 4s ease-in-out infinite;
}

.services-cta h2,
.services-cta p,
.services-cta .btn {
    position: relative;
    z-index: 1;
}

.recruitment-services,
.support-services {
    position: relative;
}

.recruitment-services::before,
.support-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

/* Industries Page Styles */
.industries-overview {
    padding: 80px 0;
    background: white;
}

.industry-stat-box {
    text-align: center;
    padding: 20px 15px;
    background: var(--light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.industry-stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    background: white;
    border: 2px solid var(--accent);
}

.industry-stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 4px;
}

.industry-stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.industry-detail-card {
    background: white;
    border-radius: 20px;
    padding: 35px 30px;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.industry-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.industry-detail-card:hover::before {
    opacity: 0;
}

.industry-detail-card > * {
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}

.industry-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-color: var(--accent);
}

.industry-detail-card:hover h3,
.industry-detail-card:hover p {
    color: inherit;
}

.industry-detail-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent), #ff9a3c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(251,133,0,0.3);
}

.industry-detail-card:hover .industry-detail-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(251,133,0,0.5);
}

.industry-detail-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    transition: all 0.4s ease;
}

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

.industry-detail-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    transition: all 0.4s ease;
}

.industry-detail-card:hover p {
    color: #666;
}

.industry-roles {
    list-style: none;
    padding: 0;
    margin: 0;
}

.industry-roles li {
    color: #666;
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    transition: all 0.4s ease;
}

.industry-roles li i {
    color: var(--accent);
    margin-top: 4px;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.industry-detail-card:hover .industry-roles li {
    color: #666;
}

.industry-detail-card:hover .industry-roles li i {
    color: var(--accent);
    transform: scale(1);
}

.industries-overseas {
    padding: 100px 0;
    background: var(--primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.industries-overseas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.04" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,128C1248,117,1344,107,1392,101.3L1440,96L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>');
    background-size: cover;
}

.industries-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: white;
    text-align: center;
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    position: relative;
    overflow: hidden;
}

.industries-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: scalePulse 4s ease-in-out infinite;
}

.industries-cta h2,
.industries-cta p,
.industries-cta .btn {
    position: relative;
    z-index: 1;
}

.industries-grid {
    position: relative;
}

/* Clients Page Styles */
.clients-overview {
    padding: 80px 0;
    background: white;
}

.client-stat-box {
    text-align: center;
    padding: 20px 15px;
    background: var(--light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.client-stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    background: white;
    border: 2px solid var(--accent);
}

.client-stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 4px;
}

.client-stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.client-region-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--accent);
    display: inline-block;
}

.client-region-heading i {
    color: var(--accent);
    margin-right: 10px;
}

.client-detail-card {
    background: white;
    border-radius: 20px;
    padding: 35px 30px;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.client-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.client-detail-card:hover::before {
    opacity: 0;
}

.client-detail-card > * {
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}

.client-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-color: var(--accent);
}

.client-detail-card:hover h3,
.client-detail-card:hover p {
    color: inherit;
}

.client-detail-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent), #ff9a3c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(251,133,0,0.3);
}

.client-detail-card:hover .client-detail-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(251,133,0,0.5);
}

.client-detail-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    transition: all 0.4s ease;
}

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

.client-location {
    font-size: 0.95rem;
    color: var(--secondary) !important;
    font-weight: 600;
    margin-bottom: 1rem !important;
}

.client-location i {
    color: var(--accent);
    margin-right: 8px;
}

.client-detail-card:hover .client-location {
    color: var(--secondary) !important;
}

.client-detail-card p:not(.client-location) {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    transition: all 0.4s ease;
}

.client-detail-card:hover p:not(.client-location) {
    color: #666;
}

.client-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.client-highlights li {
    color: #666;
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    transition: all 0.4s ease;
}

.client-highlights li i {
    color: var(--accent);
    margin-top: 4px;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.client-detail-card:hover .client-highlights li {
    color: #666;
}

.client-detail-card:hover .client-highlights li i {
    color: var(--accent);
    transform: scale(1);
}

.clients-trust {
    padding: 100px 0;
    background: var(--primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.clients-trust::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.04" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,128C1248,117,1344,107,1392,101.3L1440,96L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>');
    background-size: cover;
}

.trust-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 35px 25px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.trust-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.trust-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--accent), #ff9a3c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.trust-card:hover .trust-icon {
    transform: scale(1.1) rotate(5deg);
}

.trust-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: white;
}

.trust-card p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    margin: 0;
}

.clients-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: white;
    text-align: center;
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    position: relative;
    overflow: hidden;
}

.clients-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: scalePulse 4s ease-in-out infinite;
}

.clients-cta h2,
.clients-cta p,
.clients-cta .btn {
    position: relative;
    z-index: 1;
}

.clients-grid {
    position: relative;
}

@media (max-width: 768px) {
    .service-detail-card {
        margin-bottom: 1.5rem;
    }

    .service-detail-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }

    .service-detail-card h3 {
        font-size: 1.3rem;
    }

    .overseas-card {
        margin-bottom: 1.5rem;
    }

    .services-cta h2 {
        font-size: 2rem;
    }

    .services-overview h2 {
        font-size: 2rem;
    }

    .industry-detail-card {
        margin-bottom: 1.5rem;
    }

    .industry-detail-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .industry-detail-card h3 {
        font-size: 1.2rem;
    }

    .industries-overview h2 {
        font-size: 2rem;
    }

    .industries-cta h2 {
        font-size: 2rem;
    }

    .industry-stat-num {
        font-size: 1.5rem;
    }

    .client-detail-card {
        margin-bottom: 1.5rem;
    }

    .client-detail-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .client-detail-card h3 {
        font-size: 1.2rem;
    }

    .clients-overview h2 {
        font-size: 2rem;
    }

    .clients-cta h2 {
        font-size: 2rem;
    }

    .client-stat-num {
        font-size: 1.5rem;
    }

    .trust-card {
        margin-bottom: 1.5rem;
    }

    .trust-icon {
        width: 55px;
        height: 55px;
        font-size: 1.25rem;
    }
}

/* Contact Page Styles */
.contact-details {
    padding: 80px 0;
    background: white;
}

.contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: all 0.35s ease;
    text-align: center;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    border-color: var(--accent);
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent), #ff9a3c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    transition: all 0.35s ease;
}

.contact-info-card:hover .contact-info-icon {
    transform: scale(1.1);
}

.contact-info-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: #666;
    line-height: 1.8;
    margin: 0;
    font-size: 1rem;
}

.contact-info-card p a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-card p a:hover {
    color: var(--accent);
}

.contact-info-note {
    margin-top: 0.75rem !important;
    font-size: 0.9rem !important;
    color: #888 !important;
}

.contact-hours {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 30px 40px;
    border-radius: 16px;
    text-align: center;
}

.contact-hours h5 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-hours h5 i {
    margin-right: 10px;
    color: var(--accent);
}

.contact-hours p {
    margin: 0;
    font-size: 1.05rem;
    opacity: 0.95;
}

.contact-form-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--light) 0%, white 100%);
}

.contact-form-box {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: all 0.35s ease;
}

.contact-form-box:hover {
    border-color: var(--accent);
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.form-message {
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
}

.form-message-success {
    background: rgba(40, 167, 69, 0.12);
    color: #155724;
    border: 2px solid rgba(40, 167, 69, 0.4);
}

.form-message-error {
    background: rgba(220, 53, 69, 0.12);
    color: #721c24;
    border: 2px solid rgba(220, 53, 69, 0.4);
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.form-control-contact {
    padding: 14px 18px;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control-contact:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(251, 133, 0, 0.15);
    outline: none;
}

.contact-map-section {
    padding: 0 0 100px;
    background: white;
}

.contact-map-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-form .form-select.form-control-contact {
    padding: 14px 18px;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    font-size: 1rem;
}

.contact-form .form-select.form-control-contact:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(251, 133, 0, 0.15);
    outline: none;
}

.contact-map-wrapper iframe {
    display: block;
}

.contact-map-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 2;
}

.btn-map-link {
    background: white;
    color: var(--primary);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-map-link:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 133, 0, 0.35);
}

@media (max-width: 768px) {
    .contact-info-card {
        margin-bottom: 1.5rem;
    }

    .contact-form-box {
        padding: 30px 20px;
    }

    .contact-map-wrapper iframe {
        height: 350px;
    }

    .contact-map-overlay {
        bottom: 10px;
        right: 10px;
    }

    .btn-map-link {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
}
