@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
    --primary-blue: #1f78e6;
    --dark-blue: #1a66cc;
    --darker-blue: #1554b3;
    --light-blue: #3d8bea;
    --blue-gradient: linear-gradient(135deg, #1f78e6 0%, #1a66cc 100%);
    
    --success-green: #10b981;
    --success-green-light: #34d399;
    --success-gradient: linear-gradient(135deg, #10b981 0%, #059669 100%);
    
    --dark-gray: #1a1a1a;
    --medium-gray: #333333;
    --light-gray: #666666;
    --lighter-gray: #999999;
    --lightest-gray: #f8f9fa;
    
    --white: #ffffff;
    --off-white: #fafafa;
    
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 5px 20px rgba(0,0,0,0.15);
    --shadow-heavy: 0 15px 40px rgba(0,0,0,0.2);
    --shadow-blue: 0 4px 15px rgba(31, 120, 230, 0.3);
    --shadow-blue-hover: 0 6px 20px rgba(31, 120, 230, 0.4);
    --shadow-green: 0 4px 15px rgba(16, 185, 129, 0.3);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--medium-gray);
    background: var(--white);
}

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

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow-light);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    gap: 1rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border: none;
    background: transparent;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--dark-gray);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    z-index: 999;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    z-index: 1000;
    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    padding: 1.45rem 1.5rem 1rem;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-gray);
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.mobile-menu-close:hover {
    background: var(--lightest-gray);
}

.mobile-nav {
    padding: 2rem 0;
}

.mobile-nav a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav a:hover {
    background: var(--lightest-gray);
    color: var(--primary-blue);
    padding-left: 2rem;
}

.mobile-nav a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-blue);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.mobile-nav a:hover::before {
    transform: scaleY(1);
}

.mobile-menu-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem;
    background: var(--lightest-gray);
    border-top: 1px solid #e0e0e0;
}

.mobile-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--blue-gradient);
    color: var(--white);
    padding: 15px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-blue);
}

.mobile-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-blue-hover);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--dark-gray);
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.logo img {
    width: auto;
    height: 45px;
    object-fit: contain;
    border-radius: 0;
    transition: transform 0.3s ease;
}

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

.nav {
    display: flex;
    gap: 2.5rem;
}

.nav a {
    text-decoration: none;
    color: var(--medium-gray);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 8px 0;
    transition: all 0.3s ease;
}

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

.nav a:hover {
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.nav a:hover::before {
    width: 100%;
}

.header-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.header-whatsapp::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.6s;
}

.header-whatsapp:hover::before {
    left: 100%;
}

.header-whatsapp:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.header-whatsapp i {
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
}

.mobile-whatsapp {
    display: none;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.mobile-whatsapp::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.6s;
}

.mobile-whatsapp:hover::before {
    left: 100%;
}

.mobile-whatsapp i {
    position: relative;
    z-index: 1;
}

/* Header Right Section */
.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Hero Section */
.hero {
   background: 
        linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,249,250,0.9) 100%),
        url('https://img.freepik.com/premium-photo/diverse-happy-people-with-different-job-standing-front-camera-aig53f_31965-508686.jpg?w=2000') center/cover;
    padding: 140px 0 100px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(31, 120, 230, 0.08) 0%, transparent 70%);
    animation: float 25s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-30px, -20px) rotate(120deg); }
    66% { transform: translate(20px, -15px) rotate(240deg); }
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-family: 'Manrope', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
    z-index: 3;
}

.hero-text h1::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 0;
    width: 8px;
    height: 100%;
    background: var(--blue-gradient);
    border-radius: 4px;
    animation: slideDown 1.2s ease-out 0.5s both;
}

@keyframes slideDown {
    from { height: 0; }
    to { height: 100%; }
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--light-gray);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 600px;
}

.google-review-block {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  
   
   
   
   
    max-width: fit-content;
  
   
   
}

.review-avatars {
    display: flex;
    align-items: center;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin-left: -12px;
    border: 2px solid #f0f0f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.avatar:first-child {
    margin-left: 0;
}

.avatar-photo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.review-text {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.review-line {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.projects-count {
    font-size: 15px;
   
    color: #dc2626;
}

.projects-text {
    font-size: 15px;
    color: #475467;

}

.stars-rating {
    display: flex;
    gap: 2px;
    color: #FACC15;
}

.stars-rating svg {
    flex-shrink: 0;
}

.rating-text {
    font-size: 15px;
    color: #475467;
}

.google-logo {
    height: 18px;
    margin-left: 2px;
  position:relative;
  top:1px
}

.google-logo img {
    height: 100%;
    width: auto;
}

.hero-badges {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(31, 120, 230, 0.1);
    color: var(--primary-blue);
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid rgba(31, 120, 230, 0.2);
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.badge:hover {
    background: rgba(31, 120, 230, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(31, 120, 230, 0.2);
}

.badge:nth-child(1) { animation-delay: 0.3s; }
.badge:nth-child(2) { animation-delay: 0.5s; }
.badge:nth-child(3) { animation-delay: 0.7s; }
.badge:nth-child(4) { animation-delay: 0.9s; }

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

.cta-button {
    background: var(--blue-gradient);
    color: var(--white);
    border: none;
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-blue);
    position: relative;
    overflow: hidden;
    font-family: inherit;
}

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

.cta-button:active::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    background: linear-gradient(135deg, #1a66cc 0%, #1554b3 100%);
    transform: translateY(-3px);
    box-shadow: var(--shadow-blue-hover);
}

/* Section Headers */
h2 {
    font-family: 'Manrope', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 15px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--blue-gradient);
    border-radius: 2px;
}

/* Desktop line break */
.desktop-break {
    display: inline;
}

/* Vacancies Section */
.vacancies {
    padding: 100px 0;
    background: var(--white);
}

.vacancies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    align-items: start;
    gap: 2.5rem;
}

.vacancy-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.vacancy-card.featured {
    border: 2px solid var(--success-green);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--success-gradient);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: var(--shadow-green);
}

.vacancy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--blue-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.vacancy-card.featured::before {
    background: var(--success-gradient);
    transform: scaleX(1);
}

.vacancy-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.vacancy-card.featured:hover {
    transform: translateY(-8px) scale(1.05);
}

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

.vacancy-icon {
    width: calc(100% + 5rem);
    height: 200px;
    margin: -2.5rem -2.5rem 1.5rem -2.5rem;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
}

.vacancy-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.vacancy-card:hover .vacancy-icon img {
    transform: scale(1.05);
}

.vacancy-card h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    text-align: left;
}

.salary {
 font-size: 1.1rem;
    font-weight: 700;
    color: var(--success-green);
    margin-bottom: 0.5rem;

    border-radius: 20px;
    display: block;
    text-align: left;
    width: fit-content;
}

.vacancy-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.vacancy-location,
.vacancy-type {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--light-gray);
}

.vacancy-location i,
.vacancy-type i {
    color: var(--primary-blue);
    font-size: 0.9rem;
    width: 16px;
    flex-shrink: 0;
}

.apply-button {
    background: var(--success-gradient);
    color: var(--white);
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-green);
    font-family: inherit;
    width: 100%;
}

.apply-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

/* Vacancies CTA Button */
.vacancies-cta {
    text-align: center;
    margin-top: 3rem;
}

.view-all-vacancies-btn {
    background: var(--blue-gradient);
    color: var(--white);
    border: none;
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-blue);
    position: relative;
    overflow: hidden;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

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

.view-all-vacancies-btn:active::before {
    width: 300px;
    height: 300px;
}

.view-all-vacancies-btn:hover {
    background: linear-gradient(135deg, #1a66cc 0%, #1554b3 100%);
    transform: translateY(-3px);
    box-shadow: var(--shadow-blue-hover);
}

.view-all-vacancies-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.view-all-vacancies-btn:hover i {
    transform: translateX(3px);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background: var(--lightest-gray);
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(31, 120, 230, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(31, 120, 230, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.why-choose-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.why-choose-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
    max-width: 350px;
    width: 100%;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--blue-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.why-choose-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(31, 120, 230, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

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

.why-choose-card:hover::after {
    opacity: 1;
}

.why-choose-icon {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.why-choose-icon::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.1));
    z-index: 1;
}

.why-choose-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.why-choose-card:hover .why-choose-icon img {
    transform: scale(1.08);
}

.why-choose-content {
    padding: 2rem;
    position: relative;
}

.why-choose-content h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    position: relative;
}

.why-choose-content h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--blue-gradient);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.why-choose-card:hover .why-choose-content h3::after {
    width: 60px;
}

.why-choose-content p {
    color: var(--light-gray);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* Four Steps Section */
.four-steps {
    padding: 100px 0;
    background: var(--lightest-gray);
    position: relative;
    overflow: hidden;
}

.four-steps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(31, 120, 230, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(31, 120, 230, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.steps-subtitle {
    text-align: center;
    font-size: 1.2rem;
/* Horizontal Line Design */
}

.advanced-step[data-step="2"] .connection-line {
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
}

.advanced-step[data-step="3"] .connection-line {
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
}

.advanced-step:hover .connection-line {
    opacity: 1;
    width: 80px;
}

.advanced-progress {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.progress-track {
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.progress-fill-advanced {
    height: 100%;
    background: var(--blue-gradient);
    border-radius: 3px;
    width: 25%;
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.progress-fill-advanced::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4));
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-20px); }
    100% { transform: translateX(20px); }
}

.progress-indicators {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
}

.indicator {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #e0e0e0;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
}

.indicator.active {
    background: var(--blue-gradient);
    box-shadow: 0 0 0 4px rgba(31, 120, 230, 0.2);
    transform: scale(1.2);
}

.indicator:hover {
    transform: scale(1.3);
    background: var(--primary-blue);
}

/* Design Switcher */
.design-switcher {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.design-btn {
    padding: 10px 20px;
    border: 2px solid var(--primary-blue);
    background: transparent;
    color: var(--primary-blue);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: inherit;
}

.design-btn:hover,
.design-btn.active {
    background: var(--primary-blue);
    color: var(--white);
}

/* Horizontal Line Steps Design */
.steps-horizontal {
    padding: 2rem 0;
}

.horizontal-steps-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.horizontal-connecting-line {
    height: 2px;
    background: linear-gradient(90deg, #e5e7eb 0%, #3b82f6 50%, #e5e7eb 100%);
    opacity: 0.2;
}

.horizontal-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 250px;
}

.step-circle-horizontal {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-circle-horizontal::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6, #06b6d4, #3b82f6);
    border-radius: 50%;
    z-index: -1;
    animation: rotate 3s linear infinite;
}

.step-circle-horizontal i {
    font-size: 1.8rem;
    color: white;
    z-index: 1;
}

.step-info-horizontal h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.step-info-horizontal h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.step-info-horizontal p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.horizontal-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 1rem 0;
    position: relative;
    z-index: 3;
}

.horizontal-arrow i {
    font-size: 1.5rem;
    color: #3b82f6;
    transition: all 0.3s ease;
}

/* Hover effects */
.horizontal-step:hover .step-circle-horizontal {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.horizontal-step:hover .step-info-horizontal h3 {
    color: #3b82f6;
}

.horizontal-arrow:hover i {
    transform: translateX(3px);
    color: #1d4ed8;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Original Cards Design */
.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.steps-cta {
    text-align: center;
    position: relative;
}
.partner-logo {
    height: 50px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    object-position: center;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    cursor: pointer;
    flex: 1;
    margin: 0 10px;
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Partners Section */
.partners {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}

.partners-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--light-gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.partners-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.partner-logo {
    height: 50px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    object-position: center;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    cursor: pointer;
    flex: 1;
    margin: 0 10px;
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Advantages */
.advantages {
    padding: 100px 0;
    background: var(--white);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.advantage-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.4s ease;
    position: relative;
}

.advantage-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(31, 120, 230, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.advantage-card:hover::after {
    opacity: 1;
}

.advantage-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.advantage-content {
    padding: 2.5rem;
    padding-top: 1.5rem;
}

.advantage-content h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.advantage-content p {
    color: var(--light-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.learn-more {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-family: inherit;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.learn-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--blue-gradient);
    transition: left 0.3s ease;
    z-index: -1;
}

.learn-more:hover::before {
    left: 0;
}

.learn-more:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-blue);
}

/* Trust Section */
.trust-section {
    padding: 100px 0;
    background: var(--blue-gradient);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.trust-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.trust-text h2 {
    color: var(--white);
    text-align: left;
    margin-bottom: 2rem;
}

.trust-text h2::after {
    background: var(--white);
    left: 0;
    transform: none;
}

.trust-text p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.7;
}

.trust-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.stat {
    text-align: center;
    background: transparent;

    border-radius: 12px;
   
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white) !important;
    margin-bottom: 0.5rem;
    font-family: 'Manrope', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--white) !important;
    opacity: 0.9;
}

.trust-text .cta-button {
    background: var(--white);
    color: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.trust-text .cta-button:hover {
    background: var(--off-white);
    color: var(--dark-blue);
}

.trust-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Documents Section */
.documents-section {
    padding: 100px 0;
    background: var(--white);
      padding-top: 0;
}

.documents-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.documents-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.documents-text h2::after {
    left: 0;
    transform: none;
}

.documents-text > p {
    color: var(--light-gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.documents-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: grid;
    gap: 1rem;
}

.documents-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--lightest-gray);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.documents-list li:hover {
    background: #e8f5ff;
    transform: translateX(5px);
}

.documents-list i {
    color: var(--success-green);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.documents-list span {
    color: var(--dark-gray);
    font-size: 1.05rem;
    font-weight: 500;
}

.documents-note-wrapper {
    margin-bottom: 2rem;
}

.documents-note-image {
    display: none;
}

.documents-note {
    color: var(--primary-blue);
    font-size: 1rem;
    line-height: 1.6;
    padding: 1.5rem;
    background: #e8f5ff;
    border-radius: 12px;
    border-left: 4px solid var(--primary-blue);
    margin: 0;
}

.documents-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--lightest-gray);
    padding-bottom: 5px;
}

.testimonials-swiper {
    padding: 40px 20px 60px !important;
    margin-bottom: 2rem;
    touch-action: pan-y;
}

.swiper-slide {
    height: auto;
    display: flex;
}

.testimonial-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: relative;
    border-left: 5px solid transparent;
    transition: all 0.4s ease;
    height: 100%;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
}

.testimonial-card:hover {
    border-left-color: var(--success-green);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.stars {
    color: #ffc107;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.testimonial-card p {
    color: var(--light-gray);
    margin-bottom: auto;
    font-style: italic;
    line-height: 1.7;
    font-size: 1.05rem;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-shrink: 0;
}

.testimonial-author img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(16, 185, 129, 0.2);
}

.testimonial-author strong {
    display: block;
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 1.05rem;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--success-green);
    font-weight: 500;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-blue);
    background: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 16px;
    font-weight: 600;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(31, 120, 230, 0.2);
}

.swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed !important;
}

/* Swiper Pagination */
.swiper-pagination {
    position: relative;
    margin-top: 2rem;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #e0e0e0;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin: 0 6px;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--primary-blue);
    transform: scale(1.2);
    box-shadow: 0 0 0 3px rgba(31, 120, 230, 0.2);
}

/* Objects Gallery Section */
.objects-gallery-section {
    padding: 100px 0;
    background: var(--white);
}

.objects-gallery-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.objects-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--light-gray);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    aspect-ratio: 3/2;
    transition: all 0.4s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay i {
    color: var(--white);
    font-size: 2.5rem;
}

/* Gallery Lightbox */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.gallery-lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.lightbox-close:hover {
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-nav.prev {
    left: -80px;
}

.lightbox-nav.next {
    right: -80px;
}

/* Leadership Section */
.leadership-section {
    padding: 100px 0;
    background: var(--dark-gray);
    position: relative;
    overflow: hidden;
}

.leadership-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(31, 120, 230, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(31, 120, 230, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.leadership-section h2 {
    color: var(--white);
    position: relative;
    z-index: 2;
}

.leadership-section h2::after {
    background: var(--blue-gradient);
    height: 4px;
    width: 80px;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.leader-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-light);
    position: relative;
}

.leader-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--blue-gradient);
    opacity: 0;
    transform: scaleX(0);
    transition: opacity 0.4s ease;
}

.leader-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(31, 120, 230, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.leader-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

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

.leader-card:hover::after {
    opacity: 1;
}

.leader-photo {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.leader-photo::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.2));
    z-index: 1;
}

.leader-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

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

.leader-info {
    padding: 2.5rem;
    position: relative;
}

.leader-badge {
    display: inline-block;
    background: var(--blue-gradient);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-blue);
    position: relative;
    overflow: hidden;
}

.leader-badge::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.6s ease;
}

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

.leader-info h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: -5px;
}

.leader-position {
    font-size: 0.8rem !important;
    color: var(--light-gray);
    font-weight: 500;
    margin-bottom: 1rem;
    font-style: normal;
}

.leader-info p {
    color: var(--light-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.leader-stats {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
}

.leader-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 1px;
    background: var(--blue-gradient);
    transition: width 0.4s ease;
}

.leader-card:hover .leader-stats::before {
    width: 100%;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-value {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-blue);
    font-family: 'Manrope', sans-serif;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--lighter-gray);
    font-weight: 500;

}

.leader-stat-label {
    color: var(--lighter-gray);
    font-size: 0.8rem;
    font-weight: 500;
}

/* Services List */
.services-list {
    padding: 100px 0;
    background: var(--lightest-gray);
}

.services-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.services-column h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.services-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--blue-gradient);
    border-radius: 2px;
}

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

.services-column li {
    padding: 10px 0;
    color: var(--light-gray);
    position: relative;
    padding-left: 25px;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.services-column li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.services-column li:hover {
    color: var(--medium-gray);
    padding-left: 30px;
}

.services-column li:hover:before {
    transform: translateX(5px);
}

.services-list .cta-button {
    display: block;
    margin: 0 auto;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--off-white);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.8rem 2rem;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin: 0;
}

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

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer > p:first-child {
    padding: 0 2rem 1.8rem 2rem;
    margin: 0;
    color: var(--light-gray);
    line-height: 1.7;
}

.faq-answer ul {
    padding: 0 2rem 0.5rem 3.5rem;
    margin: 0;
    list-style: disc;
}

.faq-answer li {
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.faq-answer > p:last-child {
    padding: 1rem 2rem 1.8rem 2rem;
    margin: 0;
    color: var(--light-gray);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--blue-gradient);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

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

.cta-content h2 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.cta-content h2::after {
    background: var(--white);
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-section .cta-button {
    background: var(--white);
    color: var(--primary-blue);
    font-size: 1.2rem;
    padding: 20px 45px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.cta-section .cta-button:hover {
    background: var(--off-white);
    color: var(--dark-blue);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    width: 170px;
    height: 35px;
    object-fit: contain;
    border-radius: 6px;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.footer-section h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

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

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-section a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-blue);
}

.footer-section a:hover::before {
    width: 100%;
}

.contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border: none;
    padding: 0;
}

.contact-info i {
    color: var(--primary-blue);
    margin-top: 2px;
    flex-shrink: 0;
    position: relative;
    top: 4px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 2.5rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-blue);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
    overflow-y: auto;
    padding: 20px 0;
}

.modal[style*="block"] {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    position: relative;
    background-color: var(--white);
    margin: auto;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 800px;
    min-height: auto;
    max-height: none;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.4s ease;
}

@keyframes slideIn {
    from { 
        transform: translateY(-30px) scale(0.95);
        opacity: 0;
    }
    to { 
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-content img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
}

.modal-info {
    padding: 2.5rem;
}

.modal-info h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.modal-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--blue-gradient);
    border-radius: 2px;
}

.modal-info p {
    color: var(--light-gray);
    line-height: 1.7;
    font-size: 1.1rem;
}

.modal-info h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin: 2rem 0 1rem;
}

.modal-info ul {
    list-style: none;
    margin-bottom: 2rem;
}

.modal-info li {
    padding: 8px 0;
    color: var(--light-gray);
    position: relative;
    padding-left: 25px;
}

.modal-info li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
    font-size: 1.1rem;
}

.close {
    position: fixed;
    top: 20px;
    right: 20px;
    color: var(--white);
    cursor: pointer;
    z-index: 2001;
    width: 30px;
    height: 30px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    padding: 0;
}

.close svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.5));
}

.close:hover svg {
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.5));
}

/* Job Application Modal Styles */
.job-application-modal {
    max-width: 500px;
    padding: 0;
    background: var(--white);
}

.application-header {
    background: var(--blue-gradient);
    color: var(--white);
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    position: relative;
    border-radius: 16px 16px 0 0;
}

.application-header h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.application-header p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.application-form {
    padding: 2.5rem 2rem 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(31, 120, 230, 0.1);
    transform: translateY(-2px);
}

.form-group input::placeholder {
    color: #999;
    font-style: italic;
}

.application-submit {
    width: 100%;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
    padding: 18px;
}

.application-benefits {
    background: var(--lightest-gray);
    padding: 1.5rem 2rem 2rem;
    border-radius: 0 0 16px 16px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--light-gray);
}

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

.benefit-item i {
    color: var(--primary-blue);
    font-size: 1rem;
    width: 16px;
    flex-shrink: 0;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 3rem 2rem;
    display: none;
}

.success-message.show {
    display: block;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--success-gradient);
    border-radius: 50%;
}