* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
} .main-container {
min-height: 100vh;
width: 100%;
background-color: #0b0f14;
color: white;
} .header {
position: sticky;
top: 0;
z-index: 40;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
background-color: rgba(11, 15, 20, 0.8);
backdrop-filter: blur(8px);
}
.header-container {
max-width: 1280px;
margin: 0 auto;
padding: 1rem 1.5rem;
display: flex;
align-items: center;
justify-content: space-between;
}
.header-logo {
display: flex;
align-items: center;
gap: 0.5rem;
}
.logo-image {
border: none !important;
outline: none !important;
}
.logo-link {
border: none !important;
outline: none !important;
text-decoration: none;
}
.logo-link:hover,
.logo-link:focus,
.logo-link:active,
.logo-link:visited {
border: none !important;
outline: none !important;
}
.logo-link:focus-visible {
outline: none !important;
border: none !important;
}
.logo-icon {
height: 1.5rem;
width: 1.5rem;
border-radius: 0.25rem;
background: linear-gradient(to bottom right, #22d3ee, #10b981);
}
.logo-text {
font-weight: 600;
letter-spacing: 0.025em;
}
.header-nav {
display: none;
align-items: center;
gap: 1.5rem;
font-size: 0.875rem;
color: rgba(255, 255, 255, 0.8);
}
.nav-link {
color: rgba(255, 255, 255, 0.8);
text-decoration: none;
transition: color 0.2s;
}
.nav-link:hover {
color: white;
} .nav-dropdown {
position: relative;
}
.nav-link-dropdown {
position: relative;
cursor: pointer;
}
.nav-link-dropdown::after {
content: '';
display: inline-block;
margin-left: 0.5rem;
width: 0;
height: 0;
border-left: 4px solid transparent;
border-right: 4px solid transparent;
border-top: 4px solid rgba(255, 255, 255, 0.8);
transition: transform 0.2s;
vertical-align: middle;
}
.nav-dropdown:hover .nav-link-dropdown::after,
.nav-dropdown.active .nav-link-dropdown::after {
transform: rotate(180deg);
}
.dropdown-menu {
position: absolute;
top: 100%;
left: 0;
margin-top: 0.5rem;
min-width: 200px;
background-color: rgba(11, 15, 20, 0.98);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 0.75rem;
padding: 0.5rem 0;
opacity: 0;
visibility: hidden;
transform: translateY(-10px);
transition: all 0.3s ease;
z-index: 50;
backdrop-filter: blur(8px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.active .dropdown-menu {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
.dropdown-item {
display: block;
padding: 0.75rem 1.25rem;
color: rgba(255, 255, 255, 0.8);
text-decoration: none;
font-size: 0.875rem;
transition: all 0.2s;
border-radius: 0.5rem;
margin: 0 0.5rem;
}
.dropdown-item:hover {
color: white;
background-color: rgba(255, 255, 255, 0.05);
background: linear-gradient(to right, rgba(34, 211, 238, 0.1), rgba(16, 185, 129, 0.1));
} @media (max-width: 767px) {
.nav-dropdown {
position: static;
}
.dropdown-menu {
position: absolute;
left: 0;
right: 0;
width: 100%;
max-width: calc(100vw - 3rem);
}
}
.header-cta {
display: none;
align-items: center;
justify-content: center;
border-radius: 0.75rem;
padding: 0.5rem 1rem;
font-size: 0.875rem;
font-weight: 600;
background: linear-gradient(to right, #22d3ee, #10b981);
color: black;
text-decoration: none;
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
transition: opacity 0.2s;
}
.header-cta:hover {
opacity: 0.9;
} .mobile-menu-toggle {
display: none;
flex-direction: column;
justify-content: space-around;
width: 1.5rem;
height: 1.5rem;
min-width: 2rem;
min-height: 2rem;
background: transparent;
border: none;
cursor: pointer;
padding: 0.25rem;
z-index: 100;
position: relative;
-webkit-tap-highlight-color: transparent;
touch-action: manipulation;
}
.mobile-menu-toggle:focus {
outline: none;
}
.mobile-menu-toggle:active {
opacity: 0.7;
}
.hamburger-line {
width: 100%;
height: 2px;
background-color: white;
border-radius: 2px;
transition: all 0.3s ease;
display: block;
}
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
opacity: 0;
}
.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
transform: rotate(-45deg) translate(7px, -6px);
} .mobile-menu-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.7);
z-index: 45;
opacity: 0;
transition: opacity 0.3s ease;
pointer-events: none;
}
.mobile-menu-overlay.active {
opacity: 1;
pointer-events: auto;
} .mobile-menu {
position: fixed;
top: 0;
right: -100%;
width: 85%;
max-width: 400px;
height: 100vh;
background-color: rgba(11, 15, 20, 0.98);
backdrop-filter: blur(8px);
z-index: 50;
transition: right 0.3s ease;
overflow-y: auto;
border-left: 1px solid rgba(255, 255, 255, 0.1);
box-shadow: -10px 0 25px rgba(0, 0, 0, 0.3);
-webkit-overflow-scrolling: touch;
}
.mobile-menu.active {
right: 0;
}
.mobile-menu-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 1rem 1.5rem;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu-logo {
display: flex;
align-items: center;
border: none !important;
outline: none !important;
text-decoration: none;
}
.mobile-menu-logo:hover,
.mobile-menu-logo:focus,
.mobile-menu-logo:active,
.mobile-menu-logo:visited {
border: none !important;
outline: none !important;
}
.mobile-menu-logo:focus-visible {
outline: none !important;
border: none !important;
}
.mobile-menu-logo .logo-image {
border: none !important;
outline: none !important;
}
.mobile-menu-close {
display: flex;
align-items: center;
justify-content: center;
width: 2rem;
height: 2rem;
background: transparent;
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 0.5rem;
cursor: pointer;
padding: 0;
transition: all 0.2s;
}
.mobile-menu-close:hover {
border-color: rgba(255, 255, 255, 0.3);
background-color: rgba(255, 255, 255, 0.05);
}
.close-icon {
position: relative;
width: 1rem;
height: 1rem;
}
.close-icon::before,
.close-icon::after {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 100%;
height: 2px;
background-color: white;
border-radius: 2px;
}
.close-icon::before {
transform: translate(-50%, -50%) rotate(45deg);
}
.close-icon::after {
transform: translate(-50%, -50%) rotate(-45deg);
}
.mobile-menu-content {
padding: 1.5rem;
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.mobile-nav-link {
display: block;
padding: 0.875rem 1rem;
color: rgba(255, 255, 255, 0.8);
text-decoration: none;
font-size: 1rem;
border-radius: 0.75rem;
transition: all 0.2s;
border: 1px solid transparent;
}
.mobile-nav-link:hover {
color: white;
background-color: rgba(255, 255, 255, 0.05);
border-color: rgba(255, 255, 255, 0.1);
}
.mobile-nav-link-dropdown {
position: relative;
padding-right: 2.5rem;
}
.mobile-nav-link-dropdown::after {
content: '';
position: absolute;
right: 1rem;
top: 50%;
transform: translateY(-50%);
width: 0;
height: 0;
border-left: 5px solid transparent;
border-right: 5px solid transparent;
border-top: 5px solid rgba(255, 255, 255, 0.8);
transition: transform 0.2s;
}
.mobile-nav-dropdown.active .mobile-nav-link-dropdown::after {
transform: translateY(-50%) rotate(180deg);
}
.mobile-dropdown-menu {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
margin-top: 0.5rem;
margin-left: 1rem;
}
.mobile-nav-dropdown.active .mobile-dropdown-menu {
max-height: 500px;
}
.mobile-dropdown-item {
display: block;
padding: 0.75rem 1rem;
color: rgba(255, 255, 255, 0.7);
text-decoration: none;
font-size: 0.875rem;
border-radius: 0.5rem;
transition: all 0.2s;
margin-bottom: 0.25rem;
}
.mobile-dropdown-item:hover {
color: white;
background-color: rgba(255, 255, 255, 0.05);
background: linear-gradient(to right, rgba(34, 211, 238, 0.1), rgba(16, 185, 129, 0.1));
}
.mobile-menu-cta {
display: flex;
align-items: center;
justify-content: center;
margin-top: 1rem;
border-radius: 0.75rem;
padding: 0.875rem 1.25rem;
font-size: 0.875rem;
font-weight: 600;
background: linear-gradient(to right, #22d3ee, #10b981);
color: black;
text-decoration: none;
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
transition: opacity 0.2s;
}
.mobile-menu-cta:hover {
opacity: 0.9;
} @media (max-width: 767px) {
.mobile-menu-toggle {
display: flex !important;
visibility: visible !important;
opacity: 1 !important;
}
.mobile-menu-overlay {
display: block;
}
.mobile-menu {
display: block;
}
.header-cta {
display: none !important;
}
} @media (min-width: 768px) {
.mobile-menu-toggle {
display: none !important;
}
.mobile-menu-overlay {
display: none !important;
}
.mobile-menu {
display: none !important;
}
} .hero {
position: relative;
overflow: hidden;
min-height: 570px;
display: flex;
align-items: center;
}
.hero-background {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: 1;
}
.hero-overlay {
position: absolute;
inset: 0;
background: radial-gradient(circle at center, rgba(11, 15, 20, 0.85) 0%, rgba(11, 15, 20, 0.6) 50%, rgba(11, 15, 20, 0.4) 100%);
z-index: 2;
}
.hero-container {
max-width: 1280px;
margin: 0 auto;
padding: 5rem 1.5rem;
position: relative;
z-index: 10;
}
.hero-badge {
display: inline-flex;
align-items: center;
gap: 0.5rem;
border-radius: 9999px;
border: 1px solid rgba(255, 255, 255, 0.1);
background-color: rgba(255, 255, 255, 0.05);
padding: 0.25rem 0.75rem;
font-size: 0.75rem;
}
.badge-dot {
height: 0.375rem;
width: 0.375rem;
border-radius: 9999px;
background: linear-gradient(to right, #22d3ee, #10b981);
}
.hero-title {
margin-top: 1rem;
font-size: 2.25rem;
font-weight: 800;
line-height: 1.2;
}
.title-line {
display: block;
}
.title-gradient {
background: linear-gradient(to right, #22d3ee, #10b981);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
color: transparent;
}
.hero-subtitle {
margin-top: 1.25rem;
max-width: 48rem;
font-size: 1.125rem;
line-height: 1.5;
font-weight: 500;
}
.text-cyan {
color: #22d3ee;
}
.text-green {
color: #10b981;
}
.hero-description {
margin-top: 1.25rem;
max-width: 48rem;
color: rgba(255, 255, 255, 0.8);
font-size: 1rem;
line-height: 1.5;
}
.hero-buttons {
margin-top: 2rem;
display: flex;
flex-direction: column;
gap: 0.75rem;
} @media (min-width: 375px) {
.hero {
min-height: 500px;
}
}
@media (min-width: 600px) {
.hero {
min-height: 400px;
}
}
@media (min-width: 640px) {
.hero {
min-height: 500px;
}
}
@media (min-width: 768px) {
.hero {
min-height: 600px;
}
}
@media (min-width: 1024px) {
.hero {
min-height: 700px;
}
} .btn {
display: inline-flex;
align-items: center;
justify-content: center;
border-radius: 1rem;
padding: 0.75rem 1.25rem;
font-size: 0.875rem;
font-weight: 600;
text-decoration: none;
transition: all 0.2s;
border: none;
cursor: pointer;
}
.btn-primary {
background: linear-gradient(to right, #22d3ee, #10b981);
color: black;
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.btn-primary:hover {
opacity: 0.9;
}
.btn-secondary {
border: 1px solid rgba(255, 255, 255, 0.15);
color: white;
background: transparent;
}
.btn-secondary:hover {
border-color: rgba(255, 255, 255, 0.3);
}
.page .hero-background {
background-size: cover;
background-repeat: no-repeat;
background-position: center;
} .container {
max-width: 1280px;
margin: 0 auto;
padding: 0 1.5rem;
} .operations {
padding: 4rem 0;
}
.operations-grid {
display: grid;
gap: 2rem;
grid-template-columns: 1fr;
} .ops-card,
.process-card {
position: relative;
border-radius: 1rem;
border: 1px solid rgba(255, 255, 255, 0.1);
background-color: rgba(255, 255, 255, 0.05);
padding: 1.5rem;
transition: all 0.3s;
}
.ops-card:hover,
.process-card:hover {
border-color: rgba(255, 255, 255, 0.2);
background-color: rgba(255, 255, 255, 0.08);
}
.card-glow {
position: absolute;
inset: -1px;
border-radius: 1rem;
opacity: 0;
background: linear-gradient(to right, rgba(34, 211, 238, 0.1), rgba(16, 185, 129, 0.1));
filter: blur(16px);
transition: opacity 0.3s;
}
.ops-card:hover .card-glow,
.process-card:hover .card-glow {
opacity: 1;
}
.card-content {
position: relative;
z-index: 10;
}
.card-icon {
display: inline-flex;
height: 2.5rem;
width: 2.5rem;
align-items: center;
justify-content: center;
border-radius: 0.75rem;
background: linear-gradient(to bottom right, rgba(34, 211, 238, 0.2), rgba(16, 185, 129, 0.2));
border: 1px solid rgba(255, 255, 255, 0.1);
color: white;
}
.card-title {
margin-top: 0.75rem;
font-size: 1.125rem;
font-weight: 600;
}
.card-text {
margin-top: 0.5rem;
font-size: 0.875rem;
color: rgba(255, 255, 255, 0.8);
line-height: 1.5;
}
.card-text strong {
font-weight: 600;
color: white;
} .process {
padding: 4rem 0;
border-top: 1px solid rgba(255, 255, 255, 0.1);
background-color: rgba(255, 255, 255, 0.02);
}
.process-title {
font-size: 1.875rem;
font-weight: 800;
line-height: 1.2;
}
.process-description {
margin-top: 1rem;
max-width: 48rem;
color: rgba(255, 255, 255, 0.8);
line-height: 1.5;
}
.process-grid {
margin-top: 2.5rem;
display: grid;
gap: 1.5rem;
grid-template-columns: 1fr;
}
.process-cta {
margin-top: 3rem;
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 0.75rem;
}
.process-tagline {
font-size: 0.875rem;
color: rgba(255, 255, 255, 0.6);
} .footer {
padding: 6rem 0;
padding-bottom: 3.2rem;
}
.home-footer {
background-color: rgba(255, 255, 255, 0.02);
border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-grid {
display: grid;
gap: 2rem;
grid-template-columns: 1fr;
}
.footer-title {
font-size: 1.5rem;
font-weight: 700;
}
.footer-description {
margin-top: 0.75rem;
color: rgba(255, 255, 255, 0.8);
line-height: 1.5;
}
.footer-buttons {
margin-top: 1.5rem;
display: flex;
flex-direction: column;
gap: 0.75rem;
}
.footer-form-container {
border-radius: 1rem;
border: 1px solid rgba(255, 255, 255, 0.1);
background-color: rgba(255, 255, 255, 0.05);
padding: 1.5rem;
}
.footer-form {
display: grid;
gap: 1rem;
}
.form-input,
.form-textarea {
border-radius: 0.75rem;
background: transparent;
border: 1px solid rgba(255, 255, 255, 0.15);
padding: 0.75rem 1rem;
font-size: 0.875rem;
color: white;
transition: border-color 0.2s;
font-family: inherit;
}
.form-input:focus,
.form-textarea:focus {
outline: none;
border-color: rgba(255, 255, 255, 0.3);
}
.form-input::placeholder,
.form-textarea::placeholder {
color: rgba(255, 255, 255, 0.5);
}
.form-textarea {
min-height: 120px;
resize: vertical;
}
.form-submit {
width: 100%;
}
.footer-copyright {
max-width: 1280px;
margin: 3rem auto 0;
padding: 0 1.5rem;
font-size: 0.75rem;
color: rgba(255, 255, 255, 0.5);
text-align: center;
} .footer-info-section {
margin-top: 4rem;
padding-top: 3rem;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-info-grid {
display: grid;
grid-template-columns: 1fr;
gap: 2rem;
padding: 0 1.5rem;
}
.footer-info-col {
display: flex;
flex-direction: column;
}
.footer-logo {
margin-bottom: 1rem;
height: auto;
border: none !important;
outline: none !important;
}
.footer-info-text {
color: rgba(255, 255, 255, 0.8);
line-height: 1.6;
font-size: 0.9375rem;
margin: 0;
}
.footer-info-heading {
font-size: 1rem;
font-weight: 600;
color: rgba(255, 255, 255, 0.9);
margin: 0 0 1rem 0;
}
.footer-info-menu {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
gap: 0.75rem;
}
.footer-info-menu.footer-info-menu-other {
margin-top: 1.5em;
}
.footer-info-menu li {
margin: 0;
}
.footer-info-menu li.footer-info-text {
line-height: 1.3;
}
.footer-info-menu a {
color: rgba(255, 255, 255, 0.7);
text-decoration: none;
font-size: 0.9375rem;
transition: color 0.2s ease;
}
.footer-info-menu a:hover {
color: rgba(255, 255, 255, 0.9);
} @media (min-width: 640px) {
.hero-title {
font-size: 3.75rem;
}
.hero-description {
font-size: 1.125rem;
}
.hero-buttons {
flex-direction: row;
}
.header-cta {
display: inline-flex;
}
.process-cta {
flex-direction: row;
align-items: center;
}
.footer-buttons {
flex-direction: row;
}
.footer-info-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (min-width: 768px) {
.header-nav {
display: flex;
}
.hero-container {
padding: 7rem 1.5rem;
}
.page-template-page-clients .hero-container {
min-width: 100%;
}
.hero-badge {
font-size: 0.875rem;
}
.operations {
padding: 6rem 0;
}
.operations-grid {
grid-template-columns: repeat(2, 1fr);
}
.process {
padding: 6rem 0;
}
.process-title {
font-size: 3rem;
}
.process-grid {
grid-template-columns: repeat(2, 1fr);
gap: 2rem;
}
.footer {
padding: 6rem 0;
padding-bottom: 3.2rem;
}
.footer-grid {
grid-template-columns: repeat(2, 1fr);
}
.footer-title {
font-size: 1.875rem;
}
} @media (min-width: 1024px) {
.footer {
padding-bottom: 4rem;
}
.operations-grid {
grid-template-columns: repeat(4, 1fr);
}
.process-grid {
grid-template-columns: repeat(4, 1fr);
}
.footer-info-grid {
grid-template-columns: repeat(4, 1fr);
gap: 2.5rem;
}
.footer-info-section {
padding-top: 4rem;
}
.footer-copyright {
margin: 3rem auto 0;
}
}
@media (min-width: 1280px) {
.page-template-page-clients .hero-container {
min-width: 1280px;
}
} .quick-nav {
position: sticky;
top: 0;
z-index: 30;
border-top: 1px solid rgba(255, 255, 255, 0.1);
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
background-color: rgba(11, 15, 20, 0.9);
backdrop-filter: blur(8px);
padding-top: 12px;
padding-bottom: 12px;
}
.quick-nav-links {
display: flex;
flex-wrap: wrap;
gap: 0.75rem;
padding: 0.75rem 0;
font-size: 0.75rem;
}
.quick-nav-link {
display: inline-flex;
align-items: center;
padding: 0.375rem 0.75rem;
border-radius: 0.75rem;
border: 1px solid rgba(255, 255, 255, 0.1);
background-color: rgba(255, 255, 255, 0.05);
color: rgba(255, 255, 255, 0.8);
text-decoration: none;
transition: all 0.2s;
}
.quick-nav-link:hover {
border-color: rgba(255, 255, 255, 0.2);
background-color: rgba(255, 255, 255, 0.08);
color: white;
} .section-header {
margin-bottom: 2.5rem;
}
.section-title {
margin-top: 1rem;
font-size: 1.875rem;
font-weight: 800;
line-height: 1.2;
}
.section-description {
margin-top: 0.75rem;
max-width: 48rem;
color: rgba(255, 255, 255, 0.8);
line-height: 1.5;
} .expertise-section,
.stack-section,
.delivery-section,
.governance-section,
.security-section,
.knowledge-section {
padding: 4rem 0;
}
.expertise-section {
border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.stack-section,
.governance-section,
.knowledge-section {
border-top: 1px solid rgba(255, 255, 255, 0.1);
background-color: rgba(255, 255, 255, 0.02);
}
.expertise-grid {
display: grid;
gap: 2rem;
grid-template-columns: 1fr;
}
.expertise-area {
border-radius: 1rem;
border: 1px solid rgba(255, 255, 255, 0.1);
background-color: rgba(255, 255, 255, 0.05);
padding: 1.5rem;
transition: all 0.3s;
}
.expertise-area:hover {
border-color: rgba(255, 255, 255, 0.2);
background-color: rgba(255, 255, 255, 0.08);
}
.area-header {
display: flex;
align-items: center;
gap: 0.75rem;
margin-bottom: 1.5rem;
}
.area-title {
font-size: 1.25rem;
font-weight: 600;
}
.area-content {
margin-top: 1.5rem;
}
.sub-grid {
display: grid;
gap: 1.5rem;
grid-template-columns: 1fr;
}
.sub-card {
position: relative;
border-radius: 1rem;
border: 1px solid rgba(255, 255, 255, 0.1);
background-color: rgba(255, 255, 255, 0.05);
padding: 1.25rem;
transition: all 0.3s;
}
.sub-card:hover {
border-color: rgba(255, 255, 255, 0.2);
background-color: rgba(255, 255, 255, 0.08);
}
.card-list {
list-style: none;
margin-top: 0.75rem;
padding: 0;
}
.card-list li {
display: flex;
gap: 0.5rem;
margin-top: 0.5rem;
font-size: 0.875rem;
color: rgba(255, 255, 255, 0.8);
line-height: 1.5;
}
.card-list li::before {
content: '';
display: inline-block;
margin-top: 0.5rem;
height: 0.5rem;
width: 0.5rem;
min-width: 0.5rem;
border-radius: 9999px;
background: linear-gradient(to right, #22d3ee, #10b981);
} .stack-grid {
display: grid;
gap: 1.5rem;
grid-template-columns: 1fr;
}
.stack-card {
position: relative;
border-radius: 1rem;
border: 1px solid rgba(255, 255, 255, 0.1);
background-color: rgba(255, 255, 255, 0.05);
padding: 1.5rem;
transition: all 0.3s;
}
.stack-card:hover {
border-color: rgba(255, 255, 255, 0.2);
background-color: rgba(255, 255, 255, 0.08);
}
.stack-card .card-glow {
position: absolute;
inset: -1px;
border-radius: 1rem;
opacity: 0;
background: linear-gradient(to right, rgba(34, 211, 238, 0.1), rgba(16, 185, 129, 0.1));
filter: blur(16px);
transition: opacity 0.3s;
}
.stack-card:hover .card-glow {
opacity: 1;
} .step-number {
position: absolute;
right: 1rem;
top: 1rem;
font-size: 0.75rem;
font-weight: 600;
color: rgba(255, 255, 255, 0.6);
} @media (min-width: 640px) {
.quick-nav-links {
font-size: 0.875rem;
}
.section-title {
font-size: 2.25rem;
}
.sub-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (min-width: 768px) {
.section-title {
font-size: 3rem;
}
.stack-grid {
grid-template-columns: repeat(2, 1fr);
}
.expertise-section,
.stack-section,
.delivery-section,
.governance-section,
.security-section,
.knowledge-section {
padding: 6rem 0;
}
} @media (min-width: 1024px) {
.stack-grid {
grid-template-columns: repeat(3, 1fr);
}
.sub-grid {
grid-template-columns: repeat(2, 1fr);
}
} .staff-augmentation-section {
background-color: rgba(255, 255, 255, 0.02);
border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.staff-augmentation-section .container {
padding: 1.5rem 1.5rem 5rem 1.5rem;
}
.section-subheading {
margin-top: 0.5rem;
font-size: 1.125rem;
color: rgba(255, 255, 255, 0.7);
line-height: 1.5;
}
.intro-grid {
margin-top: 3rem;
display: grid;
gap: 1.5rem;
grid-template-columns: 1fr;
}
@media (min-width: 768px) {
.intro-grid {
margin-top: 5rem;
display: grid;
gap: 1.5rem;
grid-template-columns: 1fr;
}
}
.intro-text {
color: rgba(255, 255, 255, 0.8);
line-height: 1.6;
}
.intro-text-full {
margin-top: 1.5rem;
max-width: 64rem;
}
.whitespace-nowrap {
white-space: nowrap;
}
.why-nextdev-box {
margin-top: 3rem;
border-radius: 1rem;
border: 1px solid rgba(255, 255, 255, 0.1);
background-color: rgba(255, 255, 255, 0.05);
padding: 1.5rem;
}
.why-nextdev-box:first-child {
margin-top: 0;
}
.why-nextdev-title {
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 1.25rem;
}
.why-nextdev-list {
display: grid;
gap: 1rem;
grid-template-columns: 1fr;
}
.why-nextdev-description {
margin-top: 1.5rem;
color: rgba(255, 255, 255, 0.8);
line-height: 1.6;
}
.why-nextdev-description strong {
font-weight: 600;
color: white;
}
.section-cta {
margin-top: 2.5rem;
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 0.75rem;
}
.section-tagline {
font-size: 0.875rem;
color: rgba(255, 255, 255, 0.7);
font-style: italic;
} @media (min-width: 640px) {
.section-subheading {
font-size: 1.25rem;
}
.intro-grid {
grid-template-columns: repeat(2, 1fr);
}
.section-cta {
flex-direction: row;
align-items: center;
}
.section-tagline {
font-size: 1rem;
}
}
@media (min-width: 768px) {
.staff-augmentation-section {
padding: 0;
}
.why-nextdev-box {
padding: 2rem;
}
.why-nextdev-title {
font-size: 1.875rem;
}
.team-section-title {
font-size: 1.875rem !important;
margin-bottom: 50px !important;
}
.why-nextdev-list {
grid-template-columns: repeat(2, 1fr);
}
.staff-augmentation-section .container {
padding: 1.5rem 1.5rem 7rem 1.5rem;
}
} .staff-augmentation-hero {
position: relative;
width: 100%;
overflow: hidden;
min-height: 570px;
display: flex;
align-items: center;
justify-content: center;
margin-top: 0;
padding-top: 0;
}
@media (min-width: 375px) {
.staff-augmentation-hero {
min-height: 500px;
}
}
@media (min-width: 600px) {
.staff-augmentation-hero {
min-height: 400px;
}
}
.staff-augmentation-hero-background {
position: absolute;
inset: 0;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.staff-augmentation-hero-overlay {
position: absolute;
inset: 0;
background: radial-gradient(circle at center, rgba(11, 15, 20, 0.85) 0%, rgba(11, 15, 20, 0.6) 50%, rgba(11, 15, 20, 0.4) 100%);
}
.staff-augmentation-hero-container {
position: relative;
z-index: 10;
max-width: 1280px;
width: 100%;
padding: 0 1.5rem;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
} @media (min-width: 640px) {
.staff-augmentation-hero {
min-height: 500px;
}
}
@media (min-width: 768px) {
.staff-augmentation-hero {
min-height: 600px;
}
}
@media (min-width: 1024px) {
.staff-augmentation-hero {
min-height: 700px;
}
} .dedicated-team-section {
background-color: rgba(255, 255, 255, 0.02);
border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.dedicated-team-section .container {
padding: 1.5rem 1.5rem 5.5rem 1.5rem;
} .dedicated-hero {
position: relative;
width: 100%;
overflow: hidden;
min-height: 570px;
display: flex;
align-items: center;
justify-content: center;
margin-top: 0;
padding-top: 0;
}
@media (min-width: 375px) {
.dedicated-hero {
min-height: 500px;
}
}
@media (min-width: 600px) {
.dedicated-hero {
min-height: 400px;
}
}
.dedicated-hero-background {
position: absolute;
inset: 0;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.dedicated-hero-overlay {
position: absolute;
inset: 0;
background: radial-gradient(circle at center, rgba(11, 15, 20, 0.85) 0%, rgba(11, 15, 20, 0.6) 50%, rgba(11, 15, 20, 0.4) 100%);
}
.dedicated-hero-container {
position: relative;
z-index: 10;
max-width: 1280px;
width: 100%;
padding: 0 1.5rem;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
}
.dedicated-hero-title {
font-size: 1.875rem;
font-weight: 800;
color: white;
text-align: center;
line-height: 1.2;
margin-top: 1rem;
margin-bottom: 1rem;
}
.dedicated-hero-subheading {
color: rgba(255, 255, 255, 0.9);
font-size: 1rem;
line-height: 1.5;
margin-top: 0.5rem;
font-weight: 500;
}
.dedicated-hero-text {
color: rgba(255, 255, 255, 0.9);
font-size: 1rem;
line-height: 1.6;
margin-top: 1rem;
max-width: 48rem;
}
.dedicated-hero-text:first-of-type {
margin-top: 1.5rem;
} @media (min-width: 640px) {
.dedicated-hero {
min-height: 500px;
}
.dedicated-hero-title {
font-size: 3rem;
}
.dedicated-hero-subheading {
font-size: 1.125rem;
}
.dedicated-hero-text {
font-size: 1.125rem;
}
}
@media (min-width: 768px) {
.dedicated-hero {
min-height: 600px;
}
.dedicated-hero-title {
font-size: 3rem;
margin-bottom: 1.5rem;
}
.dedicated-hero-subheading {
font-size: 1.125rem;
margin-top: 1rem;
}
.dedicated-hero-text {
font-size: 1.125rem;
margin-top: 1.5rem;
}
.dedicated-team-section .container {
padding: 1.5rem 1.5rem 7rem 1.5rem;
}
}
@media (min-width: 1024px) {
.dedicated-hero {
min-height: 700px;
}
.dedicated-hero-title {
font-size: 3rem;
}
.dedicated-hero-text {
font-size: 1.25rem;
}
.dedicated-team-section .container {
padding: 1.5rem 1.5rem 7rem 1.5rem;
}
}
.dedicated-cards-grid {
margin-top: 5rem;
display: grid;
gap: 2rem;
grid-template-columns: 1fr;
}
.dedicated-card {
position: relative;
border-radius: 1rem;
border: 1px solid rgba(255, 255, 255, 0.1);
background-color: rgba(255, 255, 255, 0.05);
padding: 1.5rem;
transition: all 0.3s;
}
.dedicated-card:hover {
border-color: rgba(255, 255, 255, 0.2);
background-color: rgba(255, 255, 255, 0.08);
}
.dedicated-card-header {
display: flex;
align-items: center;
gap: 0.75rem;
margin-bottom: 1.25rem;
}
.dedicated-card-icon {
height: 1.25rem;
width: 1.25rem;
color: white;
flex-shrink: 0;
}
.dedicated-card-title {
font-size: 1.25rem;
font-weight: 600;
color: white;
}
.dedicated-card-list {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
gap: 0.75rem;
}
.dedicated-card-list li {
display: flex;
gap: 0.75rem;
color: rgba(255, 255, 255, 0.8);
line-height: 1.5;
font-size: 0.875rem;
}
.dedicated-list-icon {
height: 1rem;
width: 1rem;
color: rgba(255, 255, 255, 0.8);
flex-shrink: 0;
margin-top: 0.125rem;
}
.dedicated-card-list li strong {
font-weight: 600;
color: white;
}
.dedicated-why-section {
margin-top: 3rem;
}
.dedicated-why-title {
font-size: 1.875rem;
font-weight: 700;
line-height: 1.2;
margin-bottom: 1.5rem;
}
.dedicated-benefits-grid {
display: grid;
gap: 1.5rem;
grid-template-columns: 1fr;
}
.dedicated-benefit-card {
position: relative;
border-radius: 1rem;
border: 1px solid rgba(255, 255, 255, 0.1);
background-color: rgba(255, 255, 255, 0.05);
padding: 1.5rem;
transition: all 0.3s;
}
.dedicated-benefit-card:hover {
border-color: rgba(255, 255, 255, 0.2);
background-color: rgba(255, 255, 255, 0.08);
}
.dedicated-benefit-card:hover .dedicated-benefit-glow {
opacity: 1;
}
.dedicated-benefit-glow {
position: absolute;
inset: -1px;
border-radius: 1rem;
opacity: 0;
background: linear-gradient(to right, rgba(34, 211, 238, 0.1), rgba(16, 185, 129, 0.1));
filter: blur(16px);
transition: opacity 0.3s;
pointer-events: none;
}
.dedicated-benefit-icon-wrapper {
display: inline-flex;
height: 2.5rem;
width: 2.5rem;
align-items: center;
justify-content: center;
border-radius: 0.75rem;
background: linear-gradient(to bottom right, rgba(34, 211, 238, 0.2), rgba(16, 185, 129, 0.2));
border: 1px solid rgba(255, 255, 255, 0.1);
margin-bottom: 0.75rem;
}
.dedicated-benefit-icon {
height: 1.25rem;
width: 1.25rem;
color: white;
}
.dedicated-benefit-title {
font-size: 1.125rem;
font-weight: 600;
color: white;
margin-bottom: 0.5rem;
}
.dedicated-benefit-text {
font-size: 0.875rem;
color: rgba(255, 255, 255, 0.8);
line-height: 1.5;
margin: 0;
}
.dedicated-benefit-text strong {
font-weight: 600;
color: white;
} @media (min-width: 640px) {
.dedicated-why-title {
font-size: 2.25rem;
}
.dedicated-cards-grid {
grid-template-columns: repeat(2, 1fr);
}
.dedicated-benefits-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (min-width: 768px) {
.dedicated-card {
padding: 2rem;
}
.dedicated-why-title {
font-size: 3rem;
}
}
@media (min-width: 1024px) {
.dedicated-benefits-grid {
grid-template-columns: repeat(3, 1fr);
}
} .it-outsourcing-hero {
position: relative;
width: 100%;
overflow: hidden;
min-height: 570px;
display: flex;
align-items: center;
justify-content: center;
margin-top: 0;
padding-top: 0;
}
@media (min-width: 375px) {
.it-outsourcing-hero {
min-height: 500px;
}
}
@media (min-width: 600px) {
.it-outsourcing-hero {
min-height: 400px;
}
}
.it-outsourcing-hero-background {
position: absolute;
inset: 0;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.it-outsourcing-hero-overlay {
position: absolute;
inset: 0;
background: radial-gradient(circle at center, rgba(11, 15, 20, 0.85) 0%, rgba(11, 15, 20, 0.6) 50%, rgba(11, 15, 20, 0.4) 100%);
}
.it-outsourcing-hero-container {
position: relative;
z-index: 10;
max-width: 1280px;
width: 100%;
padding: 0 1.5rem;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
} @media (min-width: 640px) {
.it-outsourcing-hero {
min-height: 500px;
}
}
@media (min-width: 768px) {
.it-outsourcing-hero {
min-height: 600px;
}
}
@media (min-width: 1024px) {
.it-outsourcing-hero {
min-height: 700px;
}
}
.it-outsourcing-section {
padding: 0 0 5rem 0;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.outsourcing-deliver-section {
margin-top: 5rem;
}
.outsourcing-deliver-grid {
display: grid;
gap: 1.5rem;
grid-template-columns: 1fr;
}
.outsourcing-tags {
margin-top: 0.75rem;
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
}
.outsourcing-tag {
display: inline-block;
border-radius: 9999px;
border: 1px solid rgba(255, 255, 255, 0.1);
background-color: rgba(255, 255, 255, 0.05);
padding: 0.25rem 0.625rem;
font-size: 0.75rem;
color: rgba(255, 255, 255, 0.8);
}
.outsourcing-more-link {
margin-top: 1.5rem;
}
.outsourcing-more-link .btn {
display: inline-flex;
align-items: center;
gap: 0.5rem;
}
.outsourcing-link-icon {
height: 1rem;
width: 1rem;
flex-shrink: 0;
}
.outsourcing-link-note {
margin-left: 0.25rem;
font-size: 0.875rem;
color: rgba(255, 255, 255, 0.6);
font-weight: normal;
}
.outsourcing-how-work {
margin-top: 3rem;
border-radius: 1rem;
border: 1px solid rgba(255, 255, 255, 0.1);
background-color: rgba(255, 255, 255, 0.05);
padding: 1.5rem;
}
.outsourcing-how-grid {
margin-top: 1rem;
display: grid;
gap: 1rem;
grid-template-columns: 1fr;
}
.outsourcing-how-item {
display: flex;
align-items: flex-start;
gap: 0.5rem;
font-size: 0.875rem;
color: rgba(255, 255, 255, 0.8);
line-height: 1.5;
}
.outsourcing-check-icon {
height: 1rem;
width: 1rem;
color: rgba(255, 255, 255, 0.8);
flex-shrink: 0;
margin-top: 0.125rem;
}
.outsourcing-how-item strong {
font-weight: 600;
color: white;
}
.outsourcing-benefits-grid {
margin-top: 3rem;
display: grid;
gap: 1.5rem;
grid-template-columns: 1fr;
} @media (min-width: 640px) {
.outsourcing-deliver-grid {
grid-template-columns: repeat(2, 1fr);
}
.outsourcing-how-grid {
grid-template-columns: repeat(2, 1fr);
}
.outsourcing-benefits-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (min-width: 768px) {
.it-outsourcing-section {
padding: 0 0 7rem 0;
}
.outsourcing-how-work {
padding: 2rem;
}
}
@media (min-width: 1024px) {
.outsourcing-deliver-grid {
grid-template-columns: repeat(3, 1fr);
}
} .industries-section {
padding: 0 0 5rem 0;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.industries-grid {
margin-top: 7rem;
display: grid;
gap: 1.5rem;
grid-template-columns: 1fr;
}
@media (max-width: 767px) {
.industries-grid {
margin-top: 5.5rem;
}
}
.industries-tagline {
margin-top: 0.5rem;
margin-bottom: 0.5rem;
font-size: 0.875rem;
font-style: italic;
color: rgba(255, 255, 255, 0.7);
}
.industries-other-list {
margin-top: 0.75rem;
}
.industries-other-list li {
display: flex;
align-items: flex-start;
gap: 0.5rem;
font-size: 0.875rem;
color: rgba(255, 255, 255, 0.8);
line-height: 1.5;
}
.industries-other-list li::before {
content: '';
display: inline-block;
margin-top: 0.5rem;
height: 0.625rem;
width: 0.625rem;
min-width: 0.625rem;
border-radius: 9999px;
background: linear-gradient(to right, #22d3ee, #10b981);
flex-shrink: 0;
}
.industries-hero {
position: relative;
width: 100%;
overflow: hidden;
min-height: 570px;
display: flex;
align-items: center;
justify-content: center;
margin-top: 0;
padding-top: 0;
}
@media (min-width: 375px) {
.industries-hero {
min-height: 500px;
}
}
@media (min-width: 600px) {
.industries-hero {
min-height: 400px;
}
}
.industries-hero-background {
position: absolute;
inset: 0;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.industries-hero-overlay {
position: absolute;
inset: 0;
background: radial-gradient(circle at center, rgba(11, 15, 20, 0.85) 0%, rgba(11, 15, 20, 0.6) 50%, rgba(11, 15, 20, 0.4) 100%);
}
.industries-hero-container {
position: relative;
z-index: 10;
max-width: 1280px;
width: 100%;
padding: 0 1.5rem;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
} @media (min-width: 640px) {
.industries-hero {
min-height: 500px;
}
}
@media (min-width: 768px) {
.industries-hero {
min-height: 600px;
}
}
@media (min-width: 1024px) {
.industries-hero {
min-height: 700px;
}
} @media (min-width: 640px) {
.industries-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (min-width: 768px) {
.industries-section {
padding: 0 0 7rem 0;
}
}
@media (min-width: 1024px) {
.industries-grid {
grid-template-columns: repeat(3, 1fr);
}
} .it-recruitment-section {
padding: 0 0 5rem 0;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.recruitment-features-list {
margin-top: 1.5rem;
list-style: none;
padding: 0;
display: grid;
gap: 0.75rem;
grid-template-columns: 1fr;
}
.recruitment-features-list li {
display: flex;
align-items: flex-start;
gap: 0.5rem;
color: rgba(255, 255, 255, 0.8);
line-height: 1.5;
font-size: 0.875rem;
}
.recruitment-check-dot {
display: inline-block;
height: 1rem;
width: 1rem;
min-width: 1rem;
border-radius: 9999px;
background: linear-gradient(to right, #22d3ee, #10b981);
margin-top: 0.125rem;
flex-shrink: 0;
}
.it-recruitment-hero {
position: relative;
width: 100%;
overflow: hidden;
min-height: 570px;
display: flex;
align-items: center;
justify-content: center;
margin-top: 0;
padding-top: 0;
}
@media (min-width: 375px) {
.it-recruitment-hero {
min-height: 500px;
}
}
@media (min-width: 600px) {
.it-recruitment-hero {
min-height: 400px;
}
}
.it-recruitment-hero-background {
position: absolute;
inset: 0;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.it-recruitment-hero-overlay {
position: absolute;
inset: 0;
background: radial-gradient(circle at center, rgba(11, 15, 20, 0.85) 0%, rgba(11, 15, 20, 0.6) 50%, rgba(11, 15, 20, 0.4) 100%);
}
.it-recruitment-hero-container {
position: relative;
z-index: 10;
max-width: 1280px;
width: 100%;
padding: 0 1.5rem;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
} @media (min-width: 640px) {
.it-recruitment-hero {
min-height: 500px;
}
}
@media (min-width: 768px) {
.it-recruitment-hero {
min-height: 600px;
}
}
@media (min-width: 1024px) {
.it-recruitment-hero {
min-height: 700px;
}
}
.recruitment-excel-box {
margin-top: 7rem;
border-radius: 1rem;
border: 1px solid rgba(255, 255, 255, 0.1);
background-color: rgba(255, 255, 255, 0.05);
padding: 1.5rem;
display: flex;
flex-direction: column;
gap: 1.5rem;
}
@media (max-width: 767px) {
.recruitment-excel-box {
margin-top: 5.5rem;
}
}
.recruitment-excel-content {
flex: 1;
}
.recruitment-excel-title {
font-size: 1.875rem;
font-weight: 700;
line-height: 1.2;
margin-bottom: 0.5rem;
}
.recruitment-excel-text {
margin-top: 0.5rem;
color: rgba(255, 255, 255, 0.8);
line-height: 1.5;
}
.recruitment-excel-text strong {
font-weight: 600;
color: white;
}
.recruitment-benefits-grid {
margin-top: 3rem;
display: grid;
gap: 1.5rem;
grid-template-columns: 1fr;
}
.recruitment-process-box {
margin-top: 3rem;
border-radius: 1rem;
border: 1px solid rgba(255, 255, 255, 0.1);
background-color: rgba(255, 255, 255, 0.05);
padding: 1.5rem;
}
.recruitment-process-header {
display: flex;
align-items: center;
gap: 0.75rem;
margin-bottom: 0.75rem;
}
.recruitment-process-icon {
height: 1.25rem;
width: 1.25rem;
color: white;
flex-shrink: 0;
}
.recruitment-process-description {
margin-top: 0.75rem;
color: rgba(255, 255, 255, 0.8);
line-height: 1.5;
max-width: 48rem;
}
.recruitment-process-description strong {
font-weight: 600;
color: white;
}
.recruitment-process-steps {
margin-top: 1.5rem;
display: grid;
gap: 1.5rem;
grid-template-columns: 1fr;
}
.recruitment-step-card {
position: relative;
border-radius: 1rem;
border: 1px solid rgba(255, 255, 255, 0.1);
background-color: rgba(255, 255, 255, 0.05);
padding: 1.5rem;
}
.recruitment-step-number {
position: absolute;
right: 1rem;
top: 1rem;
font-size: 0.75rem;
font-weight: 600;
color: rgba(255, 255, 255, 0.6);
}
.recruitment-step-title {
font-size: 1rem;
font-weight: 600;
color: white;
margin-bottom: 0.5rem;
}
.recruitment-step-text {
font-size: 0.875rem;
color: rgba(255, 255, 255, 0.8);
line-height: 1.5;
margin: 0;
}
.recruitment-domains-section {
margin-top: 3rem;
}
.recruitment-domains-grid {
margin-top: 1.5rem;
display: grid;
gap: 1rem;
grid-template-columns: 1fr;
}
.recruitment-domain-item {
display: flex;
align-items: center;
gap: 0.5rem;
border-radius: 0.75rem;
border: 1px solid rgba(255, 255, 255, 0.1);
background-color: rgba(255, 255, 255, 0.05);
padding: 0.5rem 0.75rem;
color: rgba(255, 255, 255, 0.8);
font-size: 0.875rem;
}
.recruitment-domain-icon-wrapper {
display: inline-flex;
height: 1.75rem;
width: 1.75rem;
align-items: center;
justify-content: center;
border-radius: 0.5rem;
background: linear-gradient(to bottom right, rgba(34, 211, 238, 0.2), rgba(16, 185, 129, 0.2));
border: 1px solid rgba(255, 255, 255, 0.1);
flex-shrink: 0;
}
.recruitment-domain-icon {
height: 1rem;
width: 1rem;
color: white;
} @media (min-width: 640px) {
.recruitment-features-list {
grid-template-columns: repeat(2, 1fr);
}
.recruitment-excel-box {
flex-direction: row;
align-items: center;
justify-content: space-between;
}
.recruitment-excel-title {
font-size: 2.25rem;
}
.recruitment-benefits-grid {
grid-template-columns: repeat(2, 1fr);
}
.recruitment-process-steps {
grid-template-columns: repeat(2, 1fr);
}
.recruitment-domains-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (min-width: 768px) {
.it-recruitment-section {
padding: 0 0 7rem 0;
}
.recruitment-excel-box {
padding: 2rem;
}
.recruitment-excel-title {
font-size: 3rem;
}
.recruitment-process-box {
padding: 2rem;
}
.recruitment-features-list {
grid-template-columns: repeat(3, 1fr);
}
}
@media (min-width: 1024px) {
.recruitment-benefits-grid {
grid-template-columns: repeat(3, 1fr);
}
.recruitment-process-steps {
grid-template-columns: repeat(4, 1fr);
}
.recruitment-domains-grid {
grid-template-columns: repeat(3, 1fr);
}
}
@media (min-width: 1280px) {
.recruitment-domains-grid {
grid-template-columns: repeat(4, 1fr);
}
} .about-section {
border-top: 1px solid rgba(255, 255, 255, 0.1);
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
background-color: rgba(255, 255, 255, 0.02);
} .about-hero {
position: relative;
width: 100%;
overflow: hidden;
min-height: 570px;
display: flex;
align-items: center;
justify-content: center;
}
@media (min-width: 375px) {
.about-hero {
min-height: 500px;
}
}
@media (min-width: 600px) {
.about-hero {
min-height: 400px;
}
}
.about-hero-background {
position: absolute;
inset: 0;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.about-hero-overlay {
position: absolute;
inset: 0;
background: radial-gradient(circle at center, rgba(11, 15, 20, 0.85) 0%, rgba(11, 15, 20, 0.6) 50%, rgba(11, 15, 20, 0.4) 100%);
}
.about-hero-container {
position: relative;
z-index: 10;
max-width: 1280px;
width: 100%;
padding: 0 1.5rem;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
}
.about-hero-title {
font-size: 1.875rem;
font-weight: 800;
color: white;
text-align: center;
line-height: 1.2;
margin-bottom: 1.5rem;
}
.about-hero-intro {
max-width: 48rem;
margin-top: 1.5rem;
}
.about-hero-text {
color: rgba(255, 255, 255, 0.9);
font-size: 1rem;
line-height: 1.6;
margin-top: 1rem;
}
.about-hero-text:first-child {
margin-top: 0;
} .about-section .container {
padding: 5rem 1.5rem;
} @media (min-width: 640px) {
.about-hero {
min-height: 500px;
}
.about-hero-title {
font-size: 3rem;
}
.about-hero-text {
font-size: 1.125rem;
}
}
@media (min-width: 768px) {
.about-hero {
min-height: 600px;
}
.about-hero-title {
font-size: 3rem;
margin-bottom: 2rem;
}
.about-hero-intro {
margin-top: 2rem;
}
.about-hero-text {
font-size: 1.125rem;
}
.about-section .container {
padding: 7rem 1.5rem;
}
}
@media (min-width: 1024px) {
.about-hero {
min-height: 700px;
}
.about-hero-title {
font-size: 3rem;
}
.about-hero-text {
font-size: 1.25rem;
}
} .team-section {
border-top: 1px solid rgba(255, 255, 255, 0.1);
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
background-color: rgba(255, 255, 255, 0.02);
padding: 4rem 0;
}
.team-section .container {
max-width: 1280px;
margin: 0 auto;
padding: 0 1.5rem;
}
.team-section-title {
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 50px;
}
.team-grid {
display: grid;
grid-template-columns: 1fr;
gap: 2rem;
}
.team-member-card {
border-radius: 1rem;
border: 1px solid rgba(255, 255, 255, 0.1);
background-color: rgba(255, 255, 255, 0.05);
padding: 2rem;
}
.team-member-photo {
width: 100%;
margin-bottom: 1.5rem;
}
.team-member-photo img {
width: 100%;
max-width: 100%;
height: auto;
display: block;
border-radius: 0.5rem;
object-fit: cover;
}
.team-member-header {
margin-bottom: 1.5rem;
}
.team-member-name {
font-size: 1.5rem;
font-weight: 800;
line-height: 1.2;
margin-bottom: 0.5rem;
display: flex;
align-items: center;
gap: 0.75rem;
}
.team-linkedin-icon {
display: inline-flex;
align-items: center;
text-decoration: none;
}
.team-linkedin-icon svg {
width: 20px;
height: 20px;
fill: #22d3ee;
}
.team-member-title {
font-size: 0.9rem;
color: rgba(255, 255, 255, 0.7);
font-weight: 500;
margin-top: 0.25rem;
}
.team-member-bio {
margin-bottom: 1.5rem;
}
.team-member-bio p {
color: rgba(255, 255, 255, 0.8);
font-size: 0.9375rem;
line-height: 1.6;
margin-top: 1rem;
}
.team-member-bio p:first-child {
margin-top: 0;
}
.team-member-contact {
margin-top: 1.5rem;
padding-top: 1.5rem;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.team-member-contact p {
color: rgba(255, 255, 255, 0.8);
font-size: 0.9375rem;
line-height: 1.6;
}
.team-contact-link {
background: linear-gradient(to right, #22d3ee, #10b981);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
text-decoration: none;
} @media (min-width: 640px) {
.team-section {
padding: 4rem 0;
}
.team-member-card {
padding: 2.5rem;
}
.team-member-name {
font-size: 1.5rem;
}
}
@media (min-width: 768px) {
.team-grid {
grid-template-columns: repeat(2, 1fr);
}
.team-section {
padding: 6rem 0;
}
.team-member-name {
font-size: 1.86rem;
}
.team-member-bio p {
font-size: 1rem;
}
}
@media (min-width: 1024px) {
.team-grid {
grid-template-columns: repeat(3, 1fr);
}
.team-section {
padding: 6rem 0;
}
.team-member-card {
padding: 32px;
}
} .clients-section {
width: 100%; background-color: #121824;
color: white;
padding: 5rem 0;
overflow-x: hidden;
}
.clients-section .container {
max-width: 1280px;
margin: 0 auto;
padding: 0 1.5rem;
width: 100%;
box-sizing: border-box;
}
.clients-header {
text-align: center;
max-width: 48rem;
margin: 0 auto;
}
.clients-section-title {
margin-top: 1rem;
font-size: 1.875rem;
font-weight: 800;
line-height: 1.25;
color: white;
}
.clients-section-description {
margin-top: 0.75rem;
font-size: 0.875rem;
color: rgba(255, 255, 255, 0.7);
line-height: 1.5;
}
.clients-grid {
margin-top: 2.5rem;
display: flex;
flex-direction: column;
gap: 1.5rem;
width: 100%;
box-sizing: border-box;
}
.clients-grid-row-1 {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 1rem;
align-items: stretch;
width: 100%;
box-sizing: border-box;
}
.clients-grid-row-2 {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 1rem;
align-items: stretch;
width: 100%;
margin: 0 auto;
box-sizing: border-box;
}
.client-logo-card {
position: relative;
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
border-radius: 1rem;
border: 1px solid rgba(255, 255, 255, 0.1);
background-color: rgba(255, 255, 255, 0.05);
padding: 0.75rem 1rem;
min-height: 72px;
transition: all 0.3s;
}
.client-logo-card:hover {
border-color: rgba(255, 255, 255, 0.25);
background-color: rgba(255, 255, 255, 0.08);
}
.client-logo-card .card-glow {
position: absolute;
inset: -1px;
border-radius: 1rem;
opacity: 0;
background: linear-gradient(to right, rgba(34, 211, 238, 0.1), rgba(16, 185, 129, 0.1));
filter: blur(16px);
transition: opacity 0.3s;
}
.client-logo-card:hover .card-glow {
opacity: 1;
}
.client-logo-wrapper {
position: relative;
z-index: 10;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
flex: 1;
}
.client-logo {
width: 100%;
height: 100%;
max-width: 100%;
max-height: 100%;
object-fit: contain;
opacity: 0.9;
transition: opacity 0.3s;
} .clients-grid-row-1 .client-logo-wrapper {
width: 100%;
height: 100%;
}
.clients-grid-row-1 .client-logo {
width: 100%;
height: 100%;
max-width: 100%;
max-height: 100%;
}
.client-logo-card:hover .client-logo {
opacity: 1;
}
.client-country {
margin-top: auto;
font-size: 1rem;
color: rgba(255, 255, 255, 0.5);
text-align: center;
line-height: 1.2;
margin-top: 5px;
}
.clients-more-wrapper {
margin-top: 2rem;
display: flex;
justify-content: center;
}
.clients-more-button {
display: inline-flex;
align-items: center;
gap: 0.5rem;
border-radius: 1rem;
border: 1px solid rgba(255, 255, 255, 0.15);
background-color: rgba(255, 255, 255, 0.05);
padding: 0.625rem 1.25rem;
font-size: 0.875rem;
font-weight: 600;
color: white;
cursor: pointer;
transition: all 0.3s;
text-decoration: none;
}
.clients-more-button:hover {
border-color: rgba(255, 255, 255, 0.3);
background-color: rgba(255, 255, 255, 0.08);
}
.clients-more-icon {
height: 1rem;
width: 1rem;
}
.clients-partner-box {
margin-top: 2.5rem;
border-radius: 1rem;
border: 1px solid rgba(255, 255, 255, 0.1);
background-color: rgba(255, 255, 255, 0.05);
padding: 1rem 1.25rem;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
gap: 1rem;
}
.clients-partner-text {
font-size: 0.875rem;
color: rgba(255, 255, 255, 0.8);
text-align: center;
}
.clients-partner-name {
font-weight: 600;
}
.clients-partner-logo-wrapper {
display: flex;
align-items: center;
justify-content: center;
}
.clients-partner-logo {
height: 2rem;
width: auto;
object-fit: contain;
} @media (min-width: 640px) {
.clients-section {
padding: 5rem 0 7rem 0;
}
.clients-section-title {
font-size: 3rem;
}
.clients-section-description {
font-size: 1rem;
}
.clients-grid-row-1 {
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 1.5rem;
}
.clients-grid-row-2 {
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 1.5rem;
max-width: 100%;
}
.client-logo-card {
min-height: 80px;
padding: 1rem 1.25rem;
}
.clients-partner-box {
flex-direction: row;
padding: 1.25rem 1.5rem;
}
.clients-partner-text {
text-align: left;
font-size: 1rem;
}
.clients-partner-logo {
height: 2.5rem;
}
}
@media (min-width: 768px) {
.clients-grid-row-1 {
grid-template-columns: repeat(6, minmax(0, 1fr));
}
.clients-grid-row-2 { display: flex;
justify-content: center;
} .clients-grid-row-2 .client-logo-card {
display: flex !important;
align-items: center !important;
justify-content: center !important;
max-width: 150px;
}
.clients-grid-row-2 .client-logo-card .client-logo-wrapper {
width: auto !important;
height: auto !important;
flex-shrink: 0 !important;
display: flex !important;
align-items: center !important;
justify-content: center !important;
padding: 10px;
}
.clients-grid-row-2 .client-logo-card .client-logo-wrapper .client-logo {
max-width: 130px !important;
width: auto !important;
height: auto !important;
max-height: 100% !important;
object-fit: contain !important;
}
.clients-grid-row-2 .client-logo-card .client-logo-wrapper .client-logo img {
max-width: 130px !important;
width: auto !important;
height: auto !important;
max-height: calc(100% - 20px) !important;
object-fit: contain !important;
}
}
@media (min-width: 1024px) {
.clients-grid-row-1 {
grid-template-columns: repeat(6, minmax(0, 1fr));
} .clients-grid-row-2 .client-logo-card {
display: flex !important;
align-items: center !important;
justify-content: center !important;
}
.clients-grid-row-2 .client-logo-card .client-logo-wrapper {
width: auto !important;
max-width: 130px !important;
height: auto !important;
flex-shrink: 0 !important;
display: flex !important;
align-items: center !important;
justify-content: center !important;
}
.clients-grid-row-2 .client-logo-card .client-logo-wrapper .client-logo {
max-width: 130px !important;
width: auto !important;
height: auto !important;
max-height: 100% !important;
object-fit: contain !important;
}
}