/* Main Styles for Cypress Consultancy Limited Website */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #2EB14A; /* Cypress green from logo */
    --dark-gray: #333E48;    /* Cypress dark gray from logo */
    --light-gray: #f8f8f8;
    --medium-gray: #666;
    --white: #fff;
    --black: #000;
    --green-light: #e8f5ea; /* Light version of primary green for backgrounds */
    --green-dark: #1d8a36;  /* Darker version of primary green for hover states */
    --tile-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --tile-hover-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    
    /* Typography System - Noto Sans */
    --font-family-primary: 'Noto Sans', 'Noto Sans SC', 'Noto Sans TC', sans-serif;
    --font-family-fallback: 'Segoe UI', 'Arial', sans-serif;
    
    /* Font Sizes - Redesigned Scale */
    --font-size-xs: 0.75rem;    /* 12px */
    --font-size-sm: 0.875rem;   /* 14px */
    --font-size-base: 1rem;     /* 16px */
    --font-size-lg: 1.125rem;   /* 18px */
    --font-size-xl: 1.25rem;    /* 20px */
    --font-size-2xl: 1.5rem;    /* 24px */
    --font-size-3xl: 1.875rem;  /* 30px */
    --font-size-4xl: 2.25rem;   /* 36px */
    --font-size-5xl: 3rem;      /* 48px */
    --font-size-6xl: 3.75rem;   /* 60px */
    
    /* Font Weights */
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    
    /* Line Heights */
    --line-height-tight: 1.25;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.75;
    
    /* Letter Spacing */
    --letter-spacing-tight: -0.025em;
    --letter-spacing-normal: 0;
    --letter-spacing-wide: 0.025em;
    --letter-spacing-wider: 0.05em;
}

html {
    font-size: 16px; /* Base font size for better scaling */
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-normal);
    color: var(--dark-gray);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: var(--letter-spacing-normal);
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    max-width: 250px;
}

.header-logo {
    max-height: 60px;
    width: auto;
}

.language-selector {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.language-selector a {
    margin-left: 10px;
    margin-bottom: 5px;
    padding: 8px 12px;
    background-color: var(--light-gray);
    border-radius: 3px;
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
    color: var(--medium-gray);
    transition: all 0.3s ease;
    min-width: 44px;
    text-align: center;
    letter-spacing: var(--letter-spacing-wide);
}

.language-selector a:hover, 
.language-selector a.active {
    background-color: var(--primary-green);
    color: var(--white);
}

/* Language Dropdown - NEW UNIFIED SOLUTION FOR CHINESE FONT ISSUES */
.language-dropdown {
    position: relative;
}

.language-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background-color: var(--primary-green);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: var(--font-size-base);
    font-family: var(--font-family-primary);
    white-space: nowrap;
    min-width: fit-content;
    letter-spacing: var(--letter-spacing-wide);
}

.language-dropdown-toggle:hover {
    background-color: var(--green-dark);
    transform: translateY(-1px);
}

.language-dropdown-toggle i {
    font-size: 1rem;
}

.language-dropdown-toggle .fa-chevron-down {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.language-dropdown.active .language-dropdown-toggle .fa-chevron-down {
    transform: rotate(180deg);
}

.language-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(46, 177, 74, 0.4);
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    border: 1px solid rgba(46, 177, 74, 0.3);
    backdrop-filter: blur(10px);
}

.language-dropdown.active .language-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(46, 177, 74, 0.4);
}

.language-dropdown-menu li {
    margin: 0;
}

/* NOTO SANS TYPOGRAPHY: Redesigned language dropdown with unified typography */
.language-dropdown-menu a,
.language-dropdown-menu a:link,
.language-dropdown-menu a:visited,
.language-dropdown-menu a:hover,
.language-dropdown-menu a:active,
.language-dropdown-menu a:focus {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    color: var(--white);
    font-family: var(--font-family-primary) !important;
    font-weight: var(--font-weight-semibold) !important;
    font-size: var(--font-size-lg) !important;
    font-style: normal !important;
    text-decoration: none !important;
    text-transform: none !important;
    text-align: left !important;
    letter-spacing: var(--letter-spacing-wide) !important;
    line-height: var(--line-height-tight) !important;
    white-space: nowrap !important;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6) !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

/* UNIFIED LANGUAGE SETTINGS - All languages now have consistent styling */
.language-dropdown-menu a[href*="zh-CN"],
.language-dropdown-menu a[href*="zh-CN"]:link,
.language-dropdown-menu a[href*="zh-CN"]:visited,
.language-dropdown-menu a[href*="zh-CN"]:hover,
.language-dropdown-menu a[href*="zh-CN"]:active,
.language-dropdown-menu a[href*="zh-CN"]:focus {
    font-weight: var(--font-weight-semibold) !important; /* Same as other languages */
    font-size: var(--font-size-lg) !important; /* Same as other languages */
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6) !important; /* Same as other languages */
    letter-spacing: var(--letter-spacing-wide) !important; /* Same as other languages */
}

.language-dropdown-menu a:hover {
    background-color: rgba(46, 177, 74, 0.5) !important;
    transform: translateX(5px);
    color: var(--white) !important;
    font-weight: var(--font-weight-bold) !important;
}

.language-dropdown-menu a i {
    font-size: 1rem;
    opacity: 0.9;
}



.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background-color: var(--primary-green);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 400; /* Normal font weight - removed bold effect */
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-family: 'Segoe UI', 'Arial', sans-serif; /* Unified font family */
    white-space: nowrap;
    min-width: fit-content;
}

.nav-dropdown-toggle:hover {
    background-color: var(--green-dark);
    transform: translateY(-1px);
}

.nav-dropdown-toggle i {
    font-size: 1rem;
    opacity: 0.9;
}

.nav-dropdown-toggle .fa-chevron-down {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.nav-dropdown.active .nav-dropdown-toggle .fa-chevron-down {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(46, 177, 74, 0.4); /* Increased transparency by 15% (from 0.55 to 0.4) */
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    border: 1px solid rgba(46, 177, 74, 0.3); /* Subtle green border */
    backdrop-filter: blur(10px);
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(46, 177, 74, 0.4); /* Match the background */
}

.nav-dropdown.active .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu li {
    margin: 0;
}

.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    color: var(--white); /* White text for contrast */
    font-weight: 400; /* Normal font weight - removed bold effect */
    font-size: 1rem;
    font-family: 'Segoe UI', 'Arial', sans-serif; /* Unified font family */
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.nav-dropdown-menu a:hover {
    background-color: rgba(46, 177, 74, 0.5); /* Increased transparency by 15% (from 0.65 to 0.5) */
    transform: translateX(5px);
    color: var(--white);
}

.nav-dropdown-menu a i {
    font-size: 1rem;
    opacity: 0.9;
}



/* Hero Section */
.hero {
    height: 100vh;
    background-image: linear-gradient(rgba(51, 62, 72, 0.7), rgba(51, 62, 72, 0.7)), url('../images/tree-tunnel.jpg?v=2.0');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-top: 0;
    padding: 0;
}

.hero .container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
}

.hero-content {
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-5xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wider);
    text-align: center;
    width: 100%;
    line-height: var(--line-height-tight);
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-medium);
    margin-bottom: 30px;
    text-align: center;
    max-width: 800px;
    width: 100%;
    line-height: var(--line-height-relaxed);
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    letter-spacing: var(--letter-spacing-wide);
}

/* Company Section */
.company-section {
    padding: 60px 0;
    background-color: var(--white);
}

.section-title {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-bold);
    color: var(--primary-green);
    margin-bottom: 40px;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: var(--letter-spacing-wider);
    line-height: var(--line-height-tight);
}

.company-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.overview-intro {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-medium);
    color: var(--dark-gray);
    text-align: center;
    margin-bottom: 30px;
    line-height: var(--line-height-relaxed);
    letter-spacing: var(--letter-spacing-wide);
}

.company-text {
    flex: 1;
}

.company-image {
    flex: 1;
}

.company-image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* About & Contact Section Layout */
.about-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 20px;
}

.about-content .service-text {
    flex: 1;
}

.about-content .service-image {
    flex: 1;
    margin: 0;
}

.about-content .service-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Service Sections */
.service-section {
    padding: 60px 0;
    position: relative;
}

.service-section:nth-child(odd) {
    background-color: var(--green-light);
}

.service-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.recruitment-images {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 1;
}

.recruitment-images .service-image {
    flex: 1;
    margin: 0;
}

.recruitment-images .service-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.service-text {
    flex: 1;
}

.service-image {
    flex: 1;
    overflow: hidden;
    border-radius: 5px;
}

.service-image img {
    width: 100%;
    transition: transform 0.5s ease;
}

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

.service-title {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px 20px;
    font-size: 2.5em;
    font-weight: 700;
    color: #ffffff;
    background-image: url('../images/Containerleavesbackground.avif?v=2.0');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    position: relative;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.service-title:hover {
    transform: translateY(-2px);
}

.service-title span {
    display: block;
    letter-spacing: 1px;
}

.recruitment-header-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 60px;
}

.recruitment-header-content .service-image {
    flex: 1;
    margin: 0;
}

.recruitment-header-content .service-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.recruitment-header-content .service-text {
    flex: 1;
}

.recruitment-secondary-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-top: 60px;
}

.recruitment-secondary-content .service-image {
    flex: 1;
}

.recruitment-header-image {
    margin: 0 0 40px 0;
}

.recruitment-header-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.recruitment-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.sub-service-title {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin: 30px 0 15px;
    font-weight: 600;
}

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

.service-list li {
    margin-bottom: 20px;
    padding-left: 25px;
    position: relative;
}

.service-list li:before {
    content: "•";
    color: var(--primary-green);
    font-size: 1.5em;
    position: absolute;
    left: 0;
    top: -5px;
}

.service-list li strong {
    color: var(--dark-gray);
    display: block;
    margin-bottom: 5px;
}

.service-cta {
    margin-top: 30px;
    padding: 20px;
    background-color: var(--green-light);
    border-radius: 5px;
    border-left: 4px solid var(--primary-green);
}

.service-cta p:last-child {
    margin-bottom: 0;
    font-weight: 500;
}

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

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
    padding: 0 15px;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.footer-column h3:nth-of-type(2) {
    margin-top: 30px;
}

.footer-column ul {
    list-style: none;
}

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

.footer-column a {
    color: #ccc;
    transition: color 0.3s ease;
    display: inline-block;
    padding: 5px 0;
}

.footer-column a:hover {
    color: var(--primary-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 1.1rem;
    color: #999;
}

/* Social Media */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: #444;
    border-radius: 50%;
    color: var(--white);
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-green);
}

/* Contact Info */
.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* Welcome Page Styles */
.welcome-page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../images/Welcome_background_v2.jpg?v=3.0');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

/* Mobile focus on red boat */
@media (max-width: 768px) {
    .welcome-page {
        background-position: 65% center; /* Focus on red boat area */
    }
}

@media (max-width: 480px) {
    .welcome-page {
        background-position: 70% center; /* Stronger focus on red boat for very small screens */
    }
}

/* Remove the overlay tint - NO MORE TINT */
/* .welcome-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
} */

.welcome-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    text-align: center;
    padding: 0 20px;
}

/* Simple Logo Enhancement with Transparent White Shadows */
.welcome-logo {
    max-width: 840px; /* Increased from 600px by 1.4 times */
    width: 100%;
    margin: 0 auto 40px;
    height: auto;
    position: relative;
    filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.5)) 
            drop-shadow(0 4px 8px rgba(255, 255, 255, 0.4)) 
            drop-shadow(0 8px 16px rgba(255, 255, 255, 0.3)); /* Increased white shadow levels */
}

.welcome-title {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-5xl);
    font-weight: var(--font-weight-bold);
    color: var(--primary-green);
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    letter-spacing: var(--letter-spacing-tight);
    line-height: var(--line-height-tight);
}

.welcome-subtitle {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-medium);
    color: var(--white);
    margin-bottom: 40px;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    line-height: var(--line-height-relaxed);
    letter-spacing: var(--letter-spacing-wide);
}

.language-options {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

/* Welcome Page Language Options - NOTO SANS TYPOGRAPHY */
.language-option,
.language-option:link,
.language-option:visited,
.language-option:hover,
.language-option:active,
.language-option:focus {
    display: inline-block;
    padding: 20px 40px;
    margin: 12px;
    background: rgba(46, 177, 74, 0.4);
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-family: var(--font-family-primary) !important;
    font-weight: var(--font-weight-semibold) !important;
    font-size: var(--font-size-xl) !important;
    font-style: normal !important;
    text-transform: none !important;
    text-align: center !important;
    letter-spacing: var(--letter-spacing-wide) !important;
    line-height: var(--line-height-tight) !important;
    white-space: nowrap !important;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(46, 177, 74, 0.4);
    outline: none !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

/* UNIFIED WELCOME PAGE LANGUAGE SETTINGS - All languages now have consistent styling */
.language-option[href*="zh-CN"],
.language-option[href*="zh-CN"]:link,
.language-option[href*="zh-CN"]:visited,
.language-option[href*="zh-CN"]:hover,
.language-option[href*="zh-CN"]:active,
.language-option[href*="zh-CN"]:focus {
    font-weight: var(--font-weight-semibold) !important; /* Same as other languages */
    font-size: var(--font-size-xl) !important; /* Same as other languages */
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6) !important; /* Same as other languages */
    letter-spacing: var(--letter-spacing-wide) !important; /* Same as other languages */
    box-shadow: 0 6px 20px rgba(0,0,0,0.25) !important; /* Same as other languages */
}

.language-option:hover {
    background: rgba(46, 177, 74, 0.5) !important;
    color: var(--white) !important;
    transform: translateY(-5px);
    border-color: rgba(46, 177, 74, 0.5);
    font-weight: var(--font-weight-bold) !important;
}

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

.animate {
    animation: fadeIn 1s ease forwards;
}

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

.welcome-logo, .welcome-title, .welcome-subtitle, .language-options {
    opacity: 0;
    animation: slideIn 0.8s ease forwards;
}

.welcome-logo {
    animation-delay: 0.2s;
}

.welcome-title {
    animation-delay: 0.4s;
}

.welcome-subtitle {
    animation-delay: 0.6s;
}

.language-options {
    animation-delay: 0.8s;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    .company-content,
    .service-content {
        flex-direction: column;
    }
    
    .service-image {
        margin-bottom: 30px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title,
    .service-title {
        font-size: 1.8rem;
    }
    
    .welcome-logo {
        max-width: 500px;
    }
    
    .welcome-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 18.7px;
    }
    
    .container {
        max-width: 540px;
    }
    
    .header-top {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 8px 15px;
    }
    
    .logo {
        max-width: 180px;
        flex: 0 0 auto;
    }
    
    .header-logo {
        max-height: 45px;
    }
    
    .header-nav {
        justify-content: flex-end;
        gap: 10px;
        flex: 0 0 auto;
    }
    

    
    .nav-dropdown {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .nav-dropdown-toggle {
        padding: 10px 16px;
        font-size: 0.7rem;
    }
    
    .nav-dropdown-menu {
        min-width: 200px;
        max-width: 90vw;
    }
    
    .nav-main a {
        padding: 12px 16px;
        border-bottom: none;
        font-size: 1rem;
        text-align: center;
        border-radius: 4px;
        transition: all 0.3s ease;
        white-space: normal;
        overflow: visible;
        line-height: 1.2;
    }
    
    .nav-main a:hover {
        background-color: rgba(46, 177, 74, 0.9);
        transform: translateY(-1px);
    }
    
    .hero {
        margin-top: 0;
        height: 85vh;
        padding: 20px 0;
        min-height: 500px;
    }
    
    .hero .container {
        padding: 0 20px;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 15px;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    }
    
    .hero p {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 25px;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    }
    
    .section-title,
    .service-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 25px;
        padding: 0 10px;
        text-align: center;
    }
    
    .company-section,
    .service-section {
        padding: 35px 0;
    }
    
    .service-content {
        gap: 25px;
        flex-direction: column;
    }
    
    .about-content {
        gap: 25px;
        flex-direction: column;
    }
    
    .service-text {
        padding: 0 10px;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px 0;
    }
    
    .pricing-card.premium {
        transform: none;
    }
    
    .pricing-card {
        margin: 0 10px;
    }
    
    .service-text p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .overview-intro {
        font-size: 1rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .immigration-section {
        padding: 40px 0;
    }
    
    .immigration-intro {
        padding: 0 15px;
        margin-bottom: 30px;
    }
    
    .immigration-intro p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .scheme-title {
        font-size: 1.2rem;
        margin: 25px 0 15px;
        padding: 0 15px;
    }
    
    .immigration-schemes {
        padding: 0 10px;
    }
    
    .immigration-schemes > p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 15px;
        padding: 0 5px;
    }
    
    .footer-column {
        flex: 0 0 100%;
    }
    
    .welcome-logo {
        max-width: 400px;
    }
    
    .welcome-title {
        font-size: 2.5rem;
    }
    
    .welcome-subtitle {
        font-size: 1rem;
    }
    
    .language-option {
        padding: 12px 20px;
        font-size: 1rem;
        min-width: 120px;
    }
    
    .sub-service-title {
        font-size: 1.3rem;
    }
    
    .service-list li {
        padding-left: 20px;
    }
    
    .service-cta {
        padding: 15px;
    }
    
    .recruitment-header-content,
    .recruitment-secondary-content {
        flex-direction: column;
    }
    
    .recruitment-header-content .service-image,
    .recruitment-secondary-content .service-image {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .scheme-table {
        display: table;
        width: 100%;
        table-layout: fixed;
        font-size: 0.9rem;
    }
    
    .scheme-table th:first-child,
    .scheme-table td:first-child {
        width: 30%;
        padding: 10px 8px;
        word-wrap: break-word;
        hyphens: auto;
        line-height: 1.3;
    }
    
    .scheme-table th:last-child,
    .scheme-table td:last-child {
        width: 70%;
        padding: 10px 12px;
    }
    
    .scheme-table th,
    .scheme-table td {
        vertical-align: top;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 17.6px;
    }
    
    .container {
        padding: 0 8px;
    }
    
    .header-top {
        padding: 6px 10px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo {
        text-align: left;
        flex: 0 0 auto;
    }
    
    .header-nav {
        justify-content: flex-end;
        flex: 0 0 auto;
        gap: 8px;
    }
    
    .nav-dropdown-toggle,
    .language-dropdown-toggle {
        padding: 6px 10px;
        font-size: 0.7rem;
        white-space: nowrap;
        min-width: fit-content;
    }
    
    .nav-dropdown {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .nav-dropdown-toggle {
        padding: 10px 16px;
        font-size: 1.1rem;
    }
    
    .nav-dropdown-menu {
        min-width: 180px;
        max-width: 95vw;
    }
    
    .nav-dropdown-menu a {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .hero {
        margin-top: 0;
        height: 80vh;
        min-height: 450px;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 12px;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .section-title,
    .service-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
        padding: 0 5px;
    }
    
    .company-section,
    .service-section {
        padding: 30px 0;
    }
    
    .company-content,
    .service-content {
        gap: 20px;
    }
    
    .about-content {
        gap: 20px;
        flex-direction: column;
    }
    
    .service-text {
        padding: 0 5px;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 20px 0;
    }
    
    .pricing-card {
        margin: 0 5px;
    }
    
    .card-header {
        padding: 20px 15px;
    }
    
    .package-name {
        font-size: 1.2rem;
    }
    
    .package-price .amount {
        font-size: 2rem;
    }
    
    .card-features {
        padding: 15px;
    }
    
    .card-action {
        padding: 0 15px 15px;
    }
    
    .service-text p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .overview-intro {
        font-size: 1rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .scheme-table {
        font-size: 0.8rem;
        margin: 15px 0;
    }
    
    .scheme-table th:first-child,
    .scheme-table td:first-child {
        width: 28%;
        padding: 8px 6px;
        font-size: 0.8rem;
    }
    
    .scheme-table th:last-child,
    .scheme-table td:last-child {
        width: 72%;
        padding: 8px 10px;
        font-size: 0.8rem;
    }
    
    .scheme-title {
        font-size: 1.1rem;
        margin: 20px 0 12px;
        padding: 0 10px;
    }
    
    .immigration-schemes {
        padding: 0 5px;
    }
    
    .immigration-schemes > p {
        font-size: 0.85rem;
        padding: 0 5px;
    }
    
    .welcome-logo {
        max-width: 280px;
    }
    
    .welcome-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .welcome-subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .language-options {
        gap: 8px;
    }
    
    .language-option {
        padding: 10px 15px;
        min-width: 90px;
        font-size: 0.9rem;
    }
}

/* Touch-friendly improvements */
@media (hover: none) {
    .nav-dropdown-toggle,
    .nav-dropdown-menu a,
    .language-dropdown-toggle,
    .language-dropdown-menu a,
    .footer-column a,
    .language-option {
        padding: 12px 20px;
    }
    
    .social-links a {
        width: 50px;
        height: 50px;
    }
}

.immigration-section {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.immigration-intro {
    margin-bottom: 40px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.immigration-schemes {
    margin-bottom: 60px;
}

.scheme-title {
    color: var(--primary-green);
    font-size: 1.5rem;
    margin: 30px 0 20px;
    font-weight: 600;
}

.scheme-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.scheme-table th,
.scheme-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.scheme-table th {
    background-color: var(--dark-gray);
    color: var(--white);
    font-weight: 600;
}

.scheme-table tr:last-child td {
    border-bottom: none;
}

.scheme-table tr:hover td {
    background-color: var(--green-light);
}

.scheme-note {
    font-size: 0.9rem;
    color: var(--medium-gray);
    font-style: italic;
    margin-top: 20px;
}

/* Modern Pricing Cards Styles */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Standard Package - Blue Theme */
.pricing-card.standard {
    border-color: #3498db;
}

.pricing-card.standard .card-header {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: var(--white);
}

/* Premium Package - Green Theme (Featured) */
.pricing-card.premium {
    border-color: var(--primary-green);
    transform: scale(1.05);
}

.pricing-card.premium .card-header {
    background: linear-gradient(135deg, var(--primary-green), var(--green-dark));
    color: var(--white);
}

/* VIP Package - Purple Theme */
.pricing-card.vip {
    border-color: #9b59b6;
}

.pricing-card.vip .card-header {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    color: var(--white);
}

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #e74c3c;
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Card Header */
.card-header {
    padding: 30px 25px;
    text-align: center;
    position: relative;
}

.package-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    text-align: center;
}

.package-price {
    margin: 15px 0;
}

.package-price .currency {
    font-size: 1.2rem;
    vertical-align: top;
    margin-right: 2px;
}

.package-price .amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.package-subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 10px;
    font-weight: 400;
}

/* Card Features */
.card-features {
    padding: 25px;
}

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

.feature-list li {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f8f9fa;
    font-size: 0.95rem;
    color: var(--dark-gray);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li i {
    color: var(--primary-green);
    margin-right: 10px;
    font-size: 0.9rem;
    width: 16px;
    flex-shrink: 0;
}

/* Card Action */
.card-action {
    padding: 0 25px 25px;
}

.package-btn {
    display: block;
    width: 100%;
    padding: 12px 20px;
    background: var(--primary-green);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-btn:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 177, 74, 0.3);
}

/* Standard package button */
.pricing-card.standard .package-btn {
    background: #3498db;
}

.pricing-card.standard .package-btn:hover {
    background: #2980b9;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

/* VIP package button */
.pricing-card.vip .package-btn {
    background: #9b59b6;
}

.pricing-card.vip .package-btn:hover {
    background: #8e44ad;
    box-shadow: 0 4px 12px rgba(155, 89, 182, 0.3);
}

.helper-additional-services {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.helper-additional-services h4 {
    color: var(--dark-gray);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.service-note {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
}

.service-note p {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.service-note ul {
    list-style-type: disc;
    margin-left: 20px;
}

.service-note li {
    margin-bottom: 8px;
    color: var(--medium-gray);
}

/* Services Tiles Grid - Modern Professional Design */
.services-overview {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-tiles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.service-tile {
    background: var(--white);
    border-radius: 20px;
    padding: 50px 30px 30px 30px;
    text-align: center;
    box-shadow: var(--tile-shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--green-dark));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-tile:hover {
    transform: translateY(-15px);
    box-shadow: var(--tile-hover-shadow);
}

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

.service-icon-large {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-green), var(--green-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: all 0.3s ease;
    position: relative;
}

.service-icon-large::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green), var(--green-dark));
    opacity: 0.2;
    transform: scale(1.3);
    transition: all 0.3s ease;
}

.service-tile:hover .service-icon-large::after {
    transform: scale(1.5);
    opacity: 0.1;
}

.service-icon-large i {
    font-size: 3.5rem;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.3;
}

.service-description {
    font-size: 1rem;
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--primary-green), var(--green-dark));
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
}

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

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

.service-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 177, 74, 0.3);
}

.service-cta i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.service-cta:hover i {
    transform: translateX(5px);
}

/* Responsive Design for Services Tiles */
@media (max-width: 1200px) {
    .services-tiles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .services-overview {
        padding: 60px 0;
        min-height: auto;
    }
    
    .services-tiles-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 20px;
        margin-top: 30px;
    }
    
    .service-tile {
        padding: 18px 12px 12px 12px;
        min-height: 200px;
    }
    
    .service-icon-large {
        width: 70px;
        height: 70px;
        margin-bottom: 12px;
    }
    
    .service-icon-large i {
        font-size: 2.2rem;
    }
    
    .service-title {
        font-size: 1.4rem;
    }
    
    .service-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .service-tile {
        padding: 15px 10px 10px 10px;
        min-height: 180px;
    }
    
    .service-icon-large {
        width: 60px;
        height: 60px;
    }
    
    .service-icon-large i {
        font-size: 1.8rem;
    }
    
    .service-cta {
        padding: 8px 18px;
        font-size: 0.9rem;
    }
}

/* Service Tile Structure - Exact Design from Image */
.service-tile-header {
    position: relative;
    height: 120px;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    margin: -50px -30px 0 -30px;
    margin-bottom: 0;
}

.service-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-green), var(--green-dark));
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.service-icon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 2;
    width: auto;
    height: auto;
}

.service-icon-circle {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    margin: 0;
}

.service-icon-circle i {
    font-size: 1.8rem;
    color: var(--white);
}

.service-title-overlay {
    color: var(--white);
    font-family: 'Segoe UI', 'Arial', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-block;
    white-space: nowrap;
    margin: 0;
    text-align: center;
}

.service-tile-content {
    background: var(--white);
    padding: 2px 4px 4px 4px;
    border-radius: 0 0 20px 20px;
    flex-grow: 0.8;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 0;
}

.service-tile-content .service-description {
    margin-bottom: 1px;
    flex-grow: 1;
    color: var(--dark-gray);
    font-family: 'Segoe UI', 'Arial', sans-serif;
    line-height: 1.0;
    font-size: 1.1rem;
    padding: 0 1px;
    text-align: left;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-weight: 700;
}

.service-tile-content .service-cta {
    align-self: center;
    margin-top: 2px;
    background: var(--primary-green);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Segoe UI', 'Arial', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-tile-content .service-cta:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 177, 74, 0.3);
}

.service-tile-content .service-cta i {
    transition: transform 0.3s ease;
}

.service-tile-content .service-cta:hover i {
    transform: translateX(3px);
}

/* Pricing elements within service tiles */
.service-tile-content .package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 10px;
    gap: 5px;
}

.service-tile-content .package-price .currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-green);
}

.service-tile-content .package-price .amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1;
}

.service-tile-content .package-subtitle {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-bottom: 20px;
    text-align: center;
}

.service-tile-content .feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    text-align: left;
}

.service-tile-content .feature-list li {
    padding: 8px 0;
    font-size: 1rem;
    color: var(--medium-gray);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.service-tile-content .feature-list li i {
    color: var(--primary-green);
    font-size: 0.8rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Compact tile height */
.service-tile {
    min-height: 350px;
}

@media (max-width: 768px) {
    .service-tile {
        min-height: 400px;
    }
}

@media (max-width: 480px) {
    .service-tile {
        min-height: 450px;
    }
}

/* Responsive adjustments for the new structure */
@media (max-width: 768px) {
    .service-tile-header {
        height: 100px;
        margin: -40px -25px 0 -25px;
    }
    
    .service-icon-circle {
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .service-icon-circle i {
        font-size: 1.5rem;
    }
    
    .service-title-overlay {
        font-size: 1.1rem;
        padding: 5px 10px;
        white-space: nowrap;
        text-align: center;
        margin: 0;
    }
    
    .service-tile-content {
        padding: 1px 3px 3px 3px;
    }
}

@media (max-width: 480px) {
    .service-tile-header {
        height: 80px;
        margin: -30px -20px 0 -20px;
    }
    
    .service-icon-circle {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .service-icon-circle i {
        font-size: 1.2rem;
    }
    
    .service-title-overlay {
        font-size: 1rem;
        padding: 4px 8px;
        white-space: nowrap;
        text-align: center;
        margin: 0;
    }
    
    .service-tile-content {
        padding: 1px 2px 2px 2px;
    }
    
    .service-tile-content .service-cta {
        padding: 4px 12px;
        font-size: 0.9rem;
    }
}


