        /* CSS Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Inter', 'Segoe UI', Roboto, sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: #2d2d2d;
            background-color: #ffffff;
            overflow-x: hidden;
        }

        /* San Francisco Font Classes */
.sf-display-bold {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', sans-serif;
    font-weight: 700;
}

.sf-text-semibold {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Inter', sans-serif;
    font-weight: 600;
}

.sf-text-medium {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Inter', sans-serif;
    font-weight: 500;
}

.sf-text-regular {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Inter', sans-serif;
    font-weight: 400;
}
        
        /* Header Styles */
        .header {
            background: #ffffff;
            padding: 16px 0;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .logo {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 20px;
    color: #1f3bb3;
    margin-top: 7px;
}

.logo-image {
    height: 42px;
    width: auto;
    margin-right: 12px;
}
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 32px;
        }
        
        .nav-menu a {
            text-decoration: none;
            color: #2d2d2d;
            font-weight: 500;
            transition: color 0.2s;
        }
        
        .nav-menu a:hover {
            color: #1f3bb3;
        }
        
        .language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    cursor: pointer;
    position: relative;
}

.nav-menu a.active,
.footer-column ul li a.active {
    color: #1f3bb3 !important;
}

 /* Flag Icons */
.flag-icon {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    position: relative;
}

.flag-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

}

/* Language Dropdown */
.language-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid 
#E5E7EB;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    display: none;
}

.language-selector.open .language-dropdown {
    display: block;
}

.language-option {
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.language-option:hover {
    background: 
#F3F4F6;
}

/* Country Flag Variations */
.flag-uk { 
        background: 
        linear-gradient(90deg, transparent 40%, #C8102E 40%, #C8102E 60%, transparent 60%),
        linear-gradient(0deg, transparent 40%, #C8102E 40%, #C8102E 60%, transparent 60%),
        #ffffff
}
.flag-portugal { background: linear-gradient(to right, 
#006600 40%, 
#FF0000 40%); }
.flag-germany { background: linear-gradient(to bottom, #000 33%, 
#FF0000 33%, 
#FF0000 66%, 
#FFCC00 66%); }
.flag-spain { background: linear-gradient(to bottom, 
#AA151B 25%, 
#F1BF00 25%, 
#F1BF00 75%, 
#AA151B 75%); }
.flag-belgium { background: linear-gradient(to right, #000 33%, 
#FFD700 33%, 
#FFD700 66%, 
#FF0000 66%); }

/* About Us Hero Section */
.about-hero {
    position: relative;
    color: white;
    padding: 80px 0;
    overflow: hidden;
    min-height: 400px;
}

.about-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('hybrid-working-at-the-view-blog.jpg');
    background-size: cover;
    background-position: center 70%;
    background-repeat: no-repeat;
    z-index: 1;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(58, 58, 58, 0.55);
    z-index: 2;
}

.about-hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #1f3bb3 0%, rgba(0, 0, 0, 0) 60%);
    opacity: 0.8;
    z-index: 3;
}

/* Remove the about-box from hero content and make it separate */
.about-hero-content {
    position: relative;
    z-index: 4;
}

.about-box {
    background: #1f3bb3;
    border-radius: 40px;
    padding: 40px 60px;
    max-width: 550px;
    position: relative;
    z-index: 2;
    top: -150px;
    left: 300px;
    transform: translateX(-50%);
}

.about-box-border {
    position: absolute;
    top: -150px; /* Adjust relative to about-box position */
    left: 40px; /* Adjust relative to about-box position */
    width: 560px; /* Adjust size as needed */
    height: 265px; /* Adjust size as needed */
    border: 3px solid rgba(20, 3, 3, 0.199);
    border-radius: 50px;
    z-index: 1;
}

.about-box h1 {
    color: white;
    font-size: 42px; /* Adjust size as needed */
    font-weight: 700; /* Adjust weight (100-900) */
}

.about-box p {
    color: white;
    font-size: 16px; /* Adjust size as needed */
    font-weight: 400; /* Adjust weight (100-900) */
}

/* What Makes Us Stand Out Section */
.stand-out-section {
    background: #ffffff;
    padding: 0px 0 50px;
    position: relative;
    margin-bottom: 100px; /* Add this for space below */
}

.stand-out-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
    margin-top: -50px; 
}

/* Decorative grey rectangle */
.decorative-rectangle {
    position: absolute;
    width: 37vw; /* Responsive width based on viewport */
    min-width: 450px; /* Minimum width for small screens */
    height: 600px;
    background: #F3F4F6;
    border-radius: 150px;
    top: 100px;
    right: -100px;
    z-index: 1;
}

.stand-out-left {
    padding-right: 40px;
    max-width: 1200px;
    grid-column: 1; /* First column */
}

.stand-out-right {
    text-align: left; /* Change to right */
    padding-left: 0px; /* Remove left padding */
    padding-right: 0px; /* Add right padding */
    grid-column: 2; /* Second column */
}

.stand-out-left ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stand-out-left li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 18px;
    color: #595959;
    line-height: 1.4;
}

.stand-out-left li::before {
    content: '•';
    color: #1f3bb3;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: -2px;
}

.stand-out-right h2 {
    font-size: 48px;
    font-weight: 700;
    color: #2d2d2d;
    line-height: 1.1;
    margin-bottom: 0;
    opacity: 0;
    transform: translateY(80px);
    transition: all 2.5s cubic-bezier(0.16, 1, 0.3, 1); /* Much smoother easing */
    will-change: transform, opacity;
}

.stand-out-right h2.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.stand-out-right .highlight {
    color: #1f3bb3;
}

/* Office Sections */
.office-section {
    background: #ffffff;
    padding: 0;
    position: relative;
    overflow: visible;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    height: 450px; /* Fixed height */
}

.office-grid {
    display: grid;
    grid-template-columns: 550px 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.office-content {
    padding: 40px;
    padding-right: 40px;
    grid-column: 2;
    background: white;
    border-radius: 80px 0 0 0px;
    margin-left: -100px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(80px);
    transition: all 2.5s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.office-content.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.office-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: 
#2d2d2d;
    line-height: 1.1;
    margin-bottom: 32px;
}

.office-content h2 .highlight {
    color: 
#1f3bb3;
}

.office-content p {
    font-size: 16px;
    color: 
#595959;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Malahide Office - Image on LEFT (opposite of the other sections) */
.office-images {
    position: absolute;
    left: -75px; 
    top: 0px;
    bottom: 0px;
    width: 715px;
    height: 450px;
    z-index: 1;
    overflow: hidden;
    grid-column: 1;
}

.office-images .image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 0px;
    overflow: hidden;
}

/* Multiple images handling */
.office-images .image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center; /* ADDED: Centers the image */
    opacity: 0;
    transition: opacity 0.5s ease;
}

.office-images .image-container img.active {
    opacity: 1;
}

/* Paris Office Section */
.paris-office-section {
    background: #F3F4F6;
    padding: 0px;
    position: relative;
    overflow: visible;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-top: 0px;
    height: 450px; 
}

.paris-office-grid {
    display: grid;
    grid-template-columns: 1fr 550px;
    gap: 80px;
    align-items: center;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.paris-office-content {
    position: absolute;
    left: -70px;
    padding: 40px;
    padding-left: 40px;
    grid-column: 1;
    background: white;
    border-radius: 0 80px 0px 0;
    margin-right: -100px;
    margin-top: 80px;
    margin-bottom: -70px;
    min-width: 650px;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(80px);
    transition: all 2.5s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.paris-office-content.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.paris-office-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2d2d2d;
    line-height: 1.1;
    margin-bottom: 32px;
}

.paris-office-content h2 .highlight {
    color: #1f3bb3;
}

.paris-office-content p {
    font-size: 16px;
    color: #595959;
    line-height: 1.6;
    margin-bottom: 24px;
}

.paris-office-images {
    position: absolute;
    right: -75px;
    top: 0px;
    bottom: 0px;
    width: 675px;
    height: 450px;
    z-index: 1;
    overflow: hidden;
    grid-column: 2;
}

.paris-office-images .image-container {
    width: 100%;
    height: 100%;
    border-radius: 0px;
    overflow: hidden;
}

/* Multiple images handling for Paris office */
.paris-office-images .image-container img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover; /* CHANGED FROM 'fill' TO 'cover' */
    object-position: center; /* ADDED: Centers the image */
}

/* Image navigation */
.image-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 5;
}

.nav-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    color: #2d2d2d;
}

.nav-arrow:hover {
    background: #1f3bb3;
    color: white;
    border-color: #1f3bb3;
}

.nav-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #D1D5DB;
    cursor: pointer;
    transition: background 0.3s ease;
}

.nav-dot.active {
    background: #1f3bb3;
}

/* Connecting Global Talent Section */
.global-talent-section {
    background: #F3F4F6;
    padding: 50px 0;
    position: relative;
    overflow: visible; 
    width: 100vw; 
    margin-left: calc(50% - 50vw); 
    height: 450px;
}

.global-talent-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.global-talent-text {
    padding-right: 40px;
    padding-left: 40px;
}

.global-talent-text h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2d2d2d;
    line-height: 1.1;
    margin-bottom: 32px;
}

.global-talent-text h2 .highlight {
    color: #1f3bb3;
}

.global-talent-text p {
    font-size: 16px;
    color: #595959;
    line-height: 1.6;
    margin-bottom: 18px;
}

.global-talent-image {
    position: absolute;
    right: -50px;
    top: -50px;
    width: 550px;
    height: 450px; /* This should control the height */
    z-index: 1;
    overflow: hidden; /* Add this to clip the image */
}

.global-talent-image .image-container {
    width: 100%;
    height: 100%; /* Make sure container takes full size */
    border-radius: 0px;
    overflow: hidden; /* Add this too */
}

.global-talent-image .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center;
}

 /* Social Icons Fixed */
        .social-fixed {
            position: fixed;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 12px;
            z-index: 50;
        }
        
        .social-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: white;
            transition: transform 0.2s;
        }
        
        .social-icon:hover {
            transform: scale(1.1);
        }
        
        .social-icon.linkedin {
            background: #0077B5;
        }
        
        .social-icon.instagram {
            background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
        }
        
        .social-icon.facebook {
            background: #1877F2;
        }

        .social-icon.tiktok {
            background: #000000;
        }

        /* Empowering Global Workforce Section */
.empowering-section {
    background: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.empowering-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.empowering-section h2 {
    font-size: 48px;
    font-weight: 700;
    color: #2d2d2d;
    line-height: 1.1;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(80px);
    transition: all 2.5s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.empowering-section h2.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.empowering-section h2 .highlight {
    color: #1f3bb3;
}

.empowering-section p {
    font-size: 18px;
    color: #595959;
    line-height: 1.6;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(80px);
    transition: all 2.5s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.2s;
    will-change: transform, opacity;
}

.empowering-section p.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.empowering-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
}

.view-jobs-btn {
    background: white;
    color: #1f3bb3;
    border: 2px solid #1f3bb3;
    padding: 16px 32px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.view-jobs-btn:hover {
    background: #1f3bb3;
    color: white;
}

.contact-btn {
    background: white;
    color: #1f3bb3;
    border: 2px solid #1f3bb3;
    padding: 16px 32px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-btn:hover {
    background: #1f3bb3;
    color: white;
}

        /* Newsletter Section */
.newsletter-section {
    background: #f0f0f0;
    padding: 60px 0;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 32px;
    font-weight: 400;
    color: #2d2d2d;
    margin-bottom: 12px;
}

.newsletter-content h2 .highlight {
    font-weight: 700; /* Bold for "Forward" */
}

.newsletter-content .highlight {
    color: #1f3bb3;
}

.newsletter-content p {
    font-size: 16px;
    color: #595959;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/*.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 400px;
    margin: 0 auto 20px;
}*/
.newsletter-form .ajax-newsletter{
    display: flex;
    gap: 12px;
    max-width: 400px;
    margin: 0 auto 20px;
}
.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 14px;
}

.newsletter-btn {
    background: #1f3bb3;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
}

.newsletter-disclaimer {
    font-size: 12px;
    color: #9CA3AF;
    margin-top: 15px;
    white-space: nowrap;
}

.forward-text {
    display: inline-block;
}

@keyframes slideRight {
    0% {
        transform: translateX(0px);
    }
    100% {
        transform: translateX(10px);
    }
}

/* Footer */
.footer {
    background: #1f3bb3;
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-left {
    flex: 1;
    margin-left: -20px; /* Move more to the left */
}

.footer-logo {
    display: flex;
    align-items: flex-start; /* Changed from center to flex-start */
    gap: 2px;
    margin-bottom: 12px;
    margin-top: -20px; /* Move up to align with headers */
}

.logo-img {
    width: 280px;
    height: 120px;
}

.logo-text {
    font-size: 18px;
    font-weight: 600;
}

.say-hello-btn {
    display: inline-block;
    background: transparent;
    color: white;
    border: 1px solid white;
    padding: 4px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 8px;
    margin-left: 25px;
}

.footer-tagline {
    font-size: 22px;
    color: #ffffff;
    font-weight: 700;
    margin-left: 25px;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #B5BDDB;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;  
}

.footer-newsletter {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

 .footer-newsletter input {
    padding: 8px 12px;
    border: 1px solid 
#B5BDDB;
    border-radius: 4px 0 0 4px;
    background: white;
    color: 
#2d2d2d;
    font-size: 12px;
}

.footer-newsletter input::placeholder {
    color: 
#9CA3AF;  /* Light gray placeholder text */
}

.footer-newsletter button {
    background: 
#1f3bb3;
    color: white;
    border: 1px solid white;
    padding: 8px 16px;
    border-radius: 0 4px 4px 0;  /* Only right side rounded */
    font-size: 12px;
    font-weight: 500;
}

.footer-help h5 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.footer-help p {
    font-size: 12px;
    color: #B5BDDB;
    font-weight: 700;
}

.footer-help a {
    color: inherit;
    text-decoration: none;
    font-size: inherit;
    font-weight: inherit;
}

/* Mobile Responsive Design */

/* Mobile Menu Button (hidden by default, shown on mobile) */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: #2d2d2d;
    transition: all 0.3s ease;
}

/*new about style*/
.global-talent-section .container{height:100%; display:flex;}
.global-talent-section .global-talent-text p{margin-bottom:0;}
.office-section .container{height:100%; display:flex;}
.office-section{padding:0 !important;}
.office-section .office-content p{margin-bottom:0;}
.office-section .office-content{margin-top:0;}
.paris-office-section .paris-office-content{margin-top:90px;}
.paris-office-section .container{height:100%; display:block;}
/*newsletter message alignments*/
.newsletter-form .ajax-newsletter{flex-wrap:wrap;}
.newsletter-form .ajax-newsletter .alert-success, .newsletter-form .ajax-newsletter .alert-danger{padding:10px; font-size:14px; width:100%; text-align:left;}
.footer-newsletter .ajax-newsletter{display:inline-block !important;}
.footer-newsletter .ajax-newsletter .alert-success, .footer-newsletter .ajax-newsletter .alert-danger{margin-top:10px; padding:10px; font-size:14px;}


/* Large Mobile Devices (430px and below) */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Header */
    .mobile-menu-btn {
        display: flex !important;
    }
    
    .nav {
        position: relative;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
        border-radius: 0 0 8px 8px;
        gap: 0;
    }
    
    .nav-menu.mobile-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        border-bottom: 1px solid #E5E7EB;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        padding: 16px 20px;
        display: block;
    }
    
    .logo {
        font-size: 16px;
    }
    
    .logo-image {
        height: 30px;
        margin-right: 8px;
    }
    
    .language-selector {
        padding: 6px 8px;
        font-size: 14px;
    }

        .language-dropdown {
        left: auto;
        right: 0;
        min-width: 120px;
    }
    
    .language-option {
        padding: 6px 8px;
        font-size: 13px;
    }
    
    .flag-icon {
        width: 16px;
        height: 12px;
    }

    /* Social Icons */
        .social-fixed {
        display: flex !important;
        position: fixed;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        flex-direction: column;
        gap: 10px;
        z-index: 100;
    }
    
    .social-icon {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: white;
        transition: transform 0.2s ease;
        font-size: 16px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }
    
    .social-icon:hover {
        transform: scale(1.1);
    }
    
    .social-icon.linkedin {
        background: #0077B5;
    }
    
    .social-icon.instagram {
        background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
    }
    
    .social-icon.facebook {
        background: #1877F2;
    }

     /* Prevent horizontal scrolling */
    body {
        overflow-x: hidden;
    }
    
    html {
        overflow-x: hidden;
    }

     /* About Us Hero Section */
    .about-hero {
        padding: 60px 0;
        min-height: 250px;
    }
    
    .about-hero-background {
        background-position: center center; /* Better mobile positioning */
    }
    
    .about-hero-overlay {
        background: rgba(58, 58, 58, 0.7); /* Darker for mobile readability */
    }
    
    .about-hero-overlay::after {
        background: linear-gradient(90deg, #1f3bb3 0%, rgba(0, 0, 0, 0) 80%);
        opacity: 0.9;
    }
    
    .about-hero-content {
        padding: 0 15px;
    }
    
    /* About Box - Mobile Centered */
    .about-box {
        max-width: 100%;
        padding: 30px 25px;
        border-radius: 25px;
        top: -81px;
        left: 46%;
        transform: translateX(-50%);
        margin: 0 15px;
        text-align: center;
    }
    
    .about-box h1 {
        font-size: 26px;
        margin-bottom: 12px;
        line-height: 1.2;
    }
    
    .about-box p {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 0;
    }

    .about-box-border {
        display: none;
    }
    
    /* Stand Out Section - Mobile */
    .stand-out-section {
        padding: 0 0 40px;
        margin-bottom: 60px;
    }
    
    .stand-out-content {
        grid-template-columns: 1fr;
        gap: 5px;
        margin-top: -40px;
        padding: 0 15px;
        text-align: center;
    }
    
    .stand-out-left {
        padding-right: 0;
        order: 2;
        max-width: 100%;
        width: 100vw;
        margin-left: -15px;
        margin-right: -15px;
        padding-left: 15px;
        padding-right: 15px;
    }
    
       .stand-out-right {
        order: 1;
        padding-left: 0;
        padding-right: 0;
        text-align: left;
        margin-bottom: 10px;
        width: 100vw;
        margin-left: -15px;
        margin-right: 0;
        position: relative;
        left: -360px;
    }
    
    .stand-out-left li {
        font-size: 16px;
        white-space: normal;
        margin-bottom: 16px;
        justify-content: flex-start;
        text-align: left;
        width: 100%;
        display: flex;
        align-items: flex-start;
    }
    
    .stand-out-left li::before {
        font-size: 20px;
        margin-right: 8px;
        flex-shrink: 0;
    }
    
    .stand-out-right h2 {
        font-size: 28px;
        margin-bottom: 0;
        line-height: 1.3;
    }

     /* Decorative Rectangle - Mobile */
    .decorative-rectangle {
        display: none;
    }

        /* Prevent horizontal scrolling */
    body {
        overflow-x: hidden;
    }
    
    html {
        overflow-x: hidden;
    }
    
    /* Office Section - Malahide */
    .office-section {
        width: 100%;
        margin-left: 0;
        height: auto;
        padding: 40px 0;
    }
    
    .office-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
        padding: 0 15px;
    }
    
    .office-content {
        grid-column: 1;
        padding: 30px 20px;
        margin-left: 0;
        margin-top: 0;
        border-radius: 20px;
        background: white;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        order: 2;
    }
    
    .office-content h2 {
        font-size: 24px;
        margin-bottom: 20px;
        line-height: 1.3;
        text-align: center;
    }
    
    .office-content p {
        font-size: 15px;
        margin-bottom: 16px;
        text-align: center;
    }
    
    .office-images {
        position: static;
        left: auto;
        top: auto;
        bottom: auto;
        width: 100%;
        height: 250px;
        grid-column: 1;
        order: 1;
        margin-bottom: 20px;
    }
    
    .office-images .image-container {
        border-radius: 15px;
        height: 100%;
    }
    
    .office-images .image-container img {
        object-fit: cover;
    }
    
    /* Paris Office Section */
    .paris-office-section {
        width: 100%;
        margin-left: 0;
        margin-top: 40px;
        height: auto;
        padding: 40px 0;
        background: #F3F4F6;
    }
    
    .paris-office-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
        padding: 0 15px;
    }
    
    .paris-office-content {
        position: static;
        left: auto;
        grid-column: 1;
        padding: 30px 20px;
        margin-left: 0;
        margin-right: 0;
        margin-top: 0;
        margin-bottom: 0;
        min-width: auto;
        border-radius: 20px;
        background: white;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        order: 2;
    }
    
    .paris-office-content h2 {
        font-size: 24px;
        margin-bottom: 20px;
        line-height: 1.3;
        text-align: center;
    }
    
    .paris-office-content p {
        font-size: 15px;
        margin-bottom: 16px;
        text-align: center;
    }
    
.paris-office-images {
        position: static;
        right: auto;
        top: auto;
        bottom: auto;
        width: 100%;
        height: 250px;
        grid-column: 1;
        order: 1;
        margin-bottom: 20px;
        margin-left: 0; /* Add this */
        margin-right: 0; /* Add this */
    }
    
    .paris-office-images .image-container {
        border-radius: 15px;
        height: 100%;
        width: 100%;
        overflow: hidden;
        position: relative; /* Add this */
    }
    
    .paris-office-images .image-container img {
        object-fit: cover !important;
        width: 100% !important;
        height: 100% !important;
        max-height: 250px !important;
        position: absolute; /* Add this */
        top: 0;
        left: 0;
    }
    
    /* Image Navigation - Mobile */
    .image-nav {
        bottom: 15px;
        gap: 8px;
    }
    
    .nav-arrow {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .nav-dots {
        gap: 6px;
    }
    
    .nav-dot {
        width: 6px;
        height: 6px;
    }
    
    /* Global Talent Section */
    .global-talent-section {
        width: 100%;
        margin-left: 0;
        height: auto;
        padding: 60px 0;
        background: #F3F4F6;
    }
    
    .global-talent-content {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 100%;
        padding: 0 15px;
    }
    
    .global-talent-text {
        padding-right: 0;
        padding-left: 0;
        order: 2;
        text-align: center;
    }
    
    .global-talent-text h2 {
        font-size: 24px;
        margin-bottom: 20px;
        line-height: 1.3;
    }
    
    .global-talent-text p {
        font-size: 15px;
        margin-bottom: 16px;
    }
    
    .global-talent-image {
        position: static;
        right: auto;
        top: auto;
        width: 100%;
        height: 250px;
        order: 1;
        margin-bottom: 20px;
    }
    
    .global-talent-image .image-container {
        border-radius: 15px;
        height: 100%;
    }
    
    .global-talent-image .image-container img {
        object-fit: cover;
    }

            /* Newsletter Section */
    .newsletter-section {
        padding: 40px 0;
    }
    
    .newsletter-content h2 {
        font-size: 24px;
        margin-bottom: 8px;
        padding: 0 15px;
        line-height: 1.3;
    }
    
    .newsletter-content p {
        font-size: 15px;
        margin-bottom: 24px;
        padding: 0 15px;
        max-width: 100%;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 12px;
        max-width: 100%;
        margin: 0 15px 16px;
    }
    
    .newsletter-input {
        width: 100%;
        padding: 12px 16px;
        font-size: 15px;
        border-radius: 10px;
    }
    
    .newsletter-btn {
        width: 100%;
        padding: 12px 24px;
        font-size: 15px;
        border-radius: 10px;
    }
    
    .newsletter-disclaimer {
        font-size: 11px;
        margin-top: 12px;
        padding: 0 15px;
        white-space: normal;
        line-height: 1.4;
    }
    
    /* Footer */
    .footer {
        padding: 35px 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
        align-items: center;
    }
    
    .footer-left {
        margin-left: 0;
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-logo {
        justify-content: center;
        margin-bottom: 15px;
        margin-top: 0;
    }
    
    .logo-img {
        width: 220px;
        height: 95px;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    .say-hello-btn {
        font-size: 12px;
        padding: 8px 20px;
        margin-left: 0;
        margin-bottom: 10px;
        border-radius: 8px;
    }
    
    .footer-tagline {
        font-size: 18px;
        margin-left: 0;
        margin-bottom: 0;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 25px;
        text-align: center;
        width: 100%;
        align-items: center;
    }
    
    .footer-column {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-column h4 {
        font-size: 15px;
        margin-bottom: 15px;
        color: white;
    }
    
    .footer-column ul li {
        margin-bottom: 8px;
    }
    
    .footer-column ul li a {
        font-size: 13px;
    }
    
    .footer-newsletter {
        flex-direction: column;
        gap: 10px;
        max-width: 280px;
        margin: 0 auto 18px;
    }
    
    .footer-newsletter input {
        width: 100%;
        padding: 12px 16px;
        border-radius: 8px;
        font-size: 13px;
        border: 1px solid #B5BDDB;
    }
    
    .footer-newsletter button {
        width: 100%;
        padding: 12px 16px;
        border-radius: 8px;
        font-size: 13px;
        background: #ffffff;
        color: #1f3bb3;
        border: 2px solid #ffffff;
        font-weight: 600;
    }
    
    .footer-help {
        text-align: center;
    }
    
    .footer-help h5 {
        font-size: 13px;
        margin-bottom: 5px;
    }
    
    .footer-help p {
        font-size: 11px;
    }
    .newsletter-form .ajax-newsletter{
      display:flex;
        flex-direction: column;
        gap: 12px;
        max-width: 100%;
        margin: 0 15px 16px;
    }
 .footer-newsletter .ajax-newsletter{
      display:flex;
        flex-direction: column;
        gap: 12px;
        max-width: 100%;
        margin: 0;
    }
  .image-nav {bottom:auto;margin-top: 10px;}
  .office-images{margin-bottom: 50px !important;}
  .nav-dot{min-width:8px !important; min-height:8px !important; }
  .paris-office-section .paris-office-content{margin-top: 0px;}
 .global-talent-section .container{display:inline; height:auto;}
 .paris-office-section .container{display:inline; height:auto;}
.footer-newsletter input{margin-bottom:10px !important;}
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .about-box {
        /* Ensure proper touch interaction */
        position: relative;
    }
}

/* Landscape orientation adjustments */
@media (max-height: 430px) and (orientation: landscape) {
    .about-hero {
        padding: 20px 0;
        min-height: 250px;
    }
    
    .about-box {
        padding: 15px 20px;
        top: -40px;
        border-radius: 18px;
    }
    
    .about-box h1 {
        font-size: 20px;
        margin-bottom: 6px;
    }
    
    .about-box p {
        font-size: 11px;
    }
    
    .about-box-border {
        top: -45px;
        height: 120px;
        border-radius: 22px;
    }
    
    .stand-out-section {
        padding: 0 0 20px;
        margin-bottom: 30px;
    }
    
    .stand-out-content {
        gap: 15px;
        margin-top: -20px;
    }
    
    .stand-out-left li {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .stand-out-right h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .decorative-rectangle {
        display: none;
    }
}

@media (max-height: 480px) and (orientation: landscape) {
    .about-hero {
        padding: 25px 0;
        min-height: 280px;
    }
    
    .about-box {
        padding: 18px 22px;
        top: -50px;
        border-radius: 20px;
    }
    
    .about-box h1 {
        font-size: 22px;
        margin-bottom: 8px;
    }
    
    .about-box p {
        font-size: 12px;
    }
    
    .about-box-border {
        top: -55px;
        height: 140px;
        border-radius: 25px;
    }
    
    .stand-out-content {
        gap: 18px;
        margin-top: -25px;
    }
    
    .stand-out-left li {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .stand-out-right h2 {
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .decorative-rectangle {
        display: none;
    }
}

@media (max-height: 580px) and (orientation: landscape) {
    .about-hero {
        padding: 30px 0;
        min-height: 320px;
    }
    
    .about-box {
        padding: 20px 25px;
        top: -60px;
        border-radius: 22px;
    }
    
    .about-box h1 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .about-box p {
        font-size: 13px;
    }
    
    .about-box-border {
        top: -65px;
        height: 150px;
        border-radius: 27px;
    }
    
    .stand-out-content {
        gap: 20px;
        margin-top: -30px;
    }
    
    .stand-out-left li {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .stand-out-right h2 {
        font-size: 24px;
        margin-bottom: 14px;
    }
    
    .decorative-rectangle {
        display: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .about-hero-overlay {
        background: rgba(0, 0, 0, 0.8) !important;
    }
    
    .about-box {
        background: #000 !important;
        border: 2px solid #fff;
    }
    
    .about-box-border {
        border-color: #000;
    }
    
    .decorative-rectangle {
        background: #f0f0f0;
        border: 1px solid #000;
    }
}

/* Mobile-specific optimizations */
@media (max-width: 430px) {
    /* Disable complex animations on mobile for better performance */
    .office-content,
    .paris-office-content {
        transition: none;
        opacity: 1;
        transform: none;
    }
    
    .office-content.animate-in,
    .paris-office-content.animate-in {
        opacity: 1;
        transform: none;
    }
.footer-newsletter .ajax-newsletter{display:flex!important; flex-wrap:wrap;}
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .nav-arrow {
        min-width: 44px;
        min-height: 44px;
    }
    
    .nav-dot {
        min-width: 32px;
        min-height: 32px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-dot::after {
        content: '';
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #D1D5DB;
        transition: background 0.3s ease;
    }
    
    .nav-dot.active::after {
        background: #1f3bb3;
    }
    
    .nav-arrow:hover {
        background: rgba(255, 255, 255, 0.9);
        color: #2d2d2d;
        border-color: #E5E7EB;
        transform: none;
    }
    
    .nav-arrow:active {
        background: #1f3bb3;
        color: white;
        border-color: #1f3bb3;
    }
}

/* Landscape orientation adjustments */
@media (max-height: 430px) and (orientation: landscape) {
    .office-section,
    .paris-office-section {
        padding: 20px 0  !important;
    }
    
    .office-grid,
    .paris-office-grid {
        gap: 15px;
    }
    
    .office-content,
    .paris-office-content {
        padding: 20px 15px;
    }
    
    .office-content h2,
    .paris-office-content h2 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .office-content p,
    .paris-office-content p {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .office-images,
    .paris-office-images {
        height: 180px;
        margin-bottom: 15px;
    }
    
    .nav-arrow {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }
  .footer-newsletter .ajax-newsletter{
	 display: flex;
	flex-direction: row;
	max-width: 300px;
	gap: 10px;
}

.footer-newsletter #newsletter-email {
	margin-bottom: 0px;
	flex: 1;
}
.footer-newsletter input{margin-bottom:0;}
.footer-newsletter button {
	/*width: auto !important; padding: 10px 16px;*/
}
}

@media (max-height: 480px) and (orientation: landscape) {
    .office-section,
    .paris-office-section {
        padding: 25px 0 !important;
    }
    
    .office-content h2,
    .paris-office-content h2 {
        font-size: 20px;
        margin-bottom: 14px;
    }
    
    .office-content p,
    .paris-office-content p {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .office-images,
    .paris-office-images {
        height: 200px;
    }
}

@media (max-height: 580px) and (orientation: landscape) {
    .office-section,
    .paris-office-section {
        padding: 30px 0 !important;
    }
    
    .office-content h2,
    .paris-office-content h2 {
        font-size: 22px;
        margin-bottom: 16px;
    }
    
    .office-content p,
    .paris-office-content p {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .office-images,
    .paris-office-images {
        height: 220px;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .office-content,
    .paris-office-content {
        border: 2px solid #000;
        background: #fff;
    }
    
    .nav-arrow {
        background: #fff;
        border: 2px solid #000;
        color: #000;
    }
    
    .nav-arrow:hover,
    .nav-arrow:active {
        background: #000;
        color: #fff;
    }
    
    .nav-dot {
        background: #000;
    }
    
    .nav-dot.active {
        background: #000;
        border: 2px solid #fff;
    }
}
@media (max-width:430px){
.footer-newsletter button {width: auto !important; padding: 10px 16px;}
.footer-newsletter input{margin-bottom:0px !important;}
}