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

:root {
    --primary-color: #0fa4ea;
    --secondary-color: #e74c3c;
    --text-dark: #333;
    --text-light: #666;
    --text-white: #fff;
    --bg-light: #f8f9fa;
    --bg-white: #fff;
    --border-color: #e9ecef;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
}

body {
    /* font-family: "DM Sans", sans-serif; */
    /* font-family: "League Spartan", sans-serif; */
    font-family: "Ubuntu", sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.3rem;
    color: var(--secondary-color);
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    /* color: var(--secondary-color); */
}

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

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    transition: padding 0.3s ease;
}

.header.scrolled .navbar {
    padding: 1rem 0;
}

.brand-logo-img {
    height: 50px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
}

.bg-white {
    background: var(--bg-light);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    font-weight: 500;
    font-size: 15px;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    color: var(--primary-color);
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
    background: transparent;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.primary-color {
    color: var(--primary-color) !important;
}

.secondary-color {
    color: var(--secondary-color) !important;
}

.primary-bg {
    background: var(--primary-color) !important;
}

.secondary-bg {
    background: var(--secondary-color) !important;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: var(--bg-white);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--text-dark);
    padding: 60px 0 0px;
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    /* min-height: 70vh; */
}

.hero-left {
    flex: 0 0 50%;
    padding-right: 2rem;
}

.hero-left h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.hero-left .highlight {
    color: var(--secondary-color);
    font-weight: 700;
}

.hero-left p {
    font-size: 1rem;
    margin-bottom: 3rem;
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 400;
}

.hero-right {
    flex: 0 0 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    position: relative;
    /* width: 400px; */
    /* height: 400px; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-graphic {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.graphic-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.8;
}

.circle-1 {
    width: 200px;
    height: 200px;
    background: var(--primary-color);
    top: 50px;
    right: 50px;
    z-index: 1;
}

.circle-2 {
    width: 150px;
    height: 150px;
    background: var(--secondary-color);
    bottom: 100px;
    left: 30px;
    z-index: 2;
}

.hero-person {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.w-100 {
    width: 100%;
}

.person-avatar {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 50%;
    border: 4px solid var(--bg-white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.person-avatar::before {
    /* content: '👨‍💻'; */
    font-size: 4rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-buttons {
    animation: fadeInUp 1s ease 0.4s both;
}

.btn {
    font-family: "Ubuntu", sans-serif;
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    /* text-transform: uppercase; */
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(15, 164, 234, 0.3);
    border: none;
    font-weight: 600;
    /* text-transform: uppercase; */
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: var(--secondary-color);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(231, 17, 126, 0.4);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
}

.scroll-indicator span {
    display: block;
    margin-bottom: 1rem;
    opacity: 0.7;
    color: var(--text-light);
    font-weight: 500;
}

.arrow-down {
    font-size: 2rem;
    animation: bounce 2s infinite;
    color: var(--text-light);
}

/* Sections */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Service Sections */
.service-section {
    padding: 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.service-content {
    display: flex;
    width: 100%;
    min-height: 70vh;
    align-items: center;
}

/* Odd sections - Image left, Content right */
.service-section.odd .service-left {
    flex: 0 0 35%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    /* min-height: 70vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
}

.service-section.odd .service-right {
    flex: 0 0 65%;
    padding: 4rem;
    background: var(--bg-white);
}

/* Even sections - Content left, Image right */
.service-section.even .service-left {
    flex: 0 0 65%;
    padding: 4rem;
    background: var(--bg-white);
}

.service-section.even .service-right {
    flex: 0 0 35%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    /* min-height: 70vh; */
    display: flex;
    background: var(--bg-white);
    align-items: center;
    justify-content: center;
}

.service-image {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    padding: 0;
    margin: 0;
}

.service-graphic {
    width: 80%;
    height: 80%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect width="400" height="300" fill="%23ffffff" opacity="0.1"/><circle cx="120" cy="80" r="25" fill="%23ffffff" opacity="0.2"/><circle cx="280" cy="220" r="35" fill="%23ffffff" opacity="0.15"/><rect x="150" y="120" width="100" height="60" rx="8" fill="%23ffffff" opacity="0.1"/></svg>') no-repeat center;
    background-size: contain;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon {
    font-size: 5rem;
    opacity: 0.9;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-info h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.service-info h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 400;
}

.service-info .highlight {
    color: var(--secondary-color);
    font-weight: 600;
}

.service-info p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.technologies {
    padding-top: 1rem;
    border-top: 2px solid var(--bg-light);
}

.technologies h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.tech-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 1rem;
    padding: .5rem 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: left;
    gap: 0.8rem;
}

.tech-item:hover {
    background: var(--bg-white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.tech-icon {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tech-icon i {
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.tech-item:hover .tech-icon i {
    transform: scale(1.1);
}

.tech-item span {
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Our Values Section */
.values {
    background: var(--bg-light);
    padding: 80px 0;
    padding-top: 10px;
}

@media (min-width: 1024px) {
    .pl-0 {
        padding-left: 0 !important;
    }
    
    .pr-0 {
        padding-right: 0 !important;
    }
}

.values-content {
    display: flex;
    /* gap: 4rem; */
    align-items: stretch;
}

.values-left {
    flex: 0 0 30%;
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

.values-image {
    width: 100%;
    height: 100%;
    min-height: 600px;
    /* border-radius: 15px; */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    background: linear-gradient(rgba(13, 114, 184, 0.8) 0.96%, rgba(223, 46, 39, 0.8) 97.82%);
}

.values-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    flex: 1;
}

.values-right {
    flex: 0 0 70%;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
}

.values-header {
    margin-bottom: 3rem;
}

.values-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.values-underline {
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.values-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
}

.service-info {
    /* text-align: justify; */
}

.value-card {
    background: var(--bg-white);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-left-color: var(--secondary-color);
}

.value-icon {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* About Section */
.about {
    background: #1a1a1a;
    padding: 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.about-content {
    display: flex;
    width: 100%;
    min-height: 70vh;
    align-items: center;
}

.custom-section-header {
    padding: 20px 0 0;
}

.custom-section-header .values-underline {
    margin-bottom: 0;
}

.about-left {
    flex: 0 0 50%;
    padding: 4rem;
    color: var(--text-white);
}

.about-left h2 {
    font-size: 2.5rem;
    color: var(--text-white);
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-underline {
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    margin-bottom: 2rem;
}

.about-left p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-button {
    margin-top: 2.5rem;
}

.about-right {
    flex: 0 0 50%;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about-graphic {
    width: 80%;
    height: 80%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect width="400" height="300" fill="%23ffffff" opacity="0.1"/><circle cx="100" cy="80" r="30" fill="%23ffffff" opacity="0.2"/><circle cx="300" cy="220" r="40" fill="%23ffffff" opacity="0.15"/><rect x="150" y="120" width="100" height="60" rx="10" fill="%23ffffff" opacity="0.1"/></svg>') no-repeat center;
    background-size: contain;
    position: relative;
}

.about-graphic::before {
    content: '💼';
    font-size: 4rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.7;
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--text-white);
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* Process Section */
.process {
    background: var(--bg-white);
    padding: 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.process-content {
    display: flex;
    width: 100%;
    min-height: 80vh;
    align-items: center;
}

.process-left {
    flex: 0 0 45%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.process-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.process-graphic {
    width: 80%;
    height: 80%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect width="400" height="300" fill="%23ffffff" opacity="0.1"/><circle cx="150" cy="100" r="40" fill="%23ffffff" opacity="0.2"/><circle cx="250" cy="200" r="30" fill="%23ffffff" opacity="0.15"/><rect x="100" y="150" width="200" height="80" rx="10" fill="%23ffffff" opacity="0.1"/></svg>') no-repeat center;
    background-size: contain;
    position: relative;
}

.process-graphic::before {
    content: '⚙️';
    font-size: 5rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.8;
}

.process-right {
    flex: 0 0 55%;
    padding: 4rem;
    background: var(--bg-white);
}

.process-info h2 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.process-info h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 400;
}

.process-info .highlight {
    color: var(--secondary-color);
    font-weight: 600;
}

.process-info > p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.process-section {
    margin-bottom: 3rem;
}

.process-section h4 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.process-items {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.process-item-inline {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex: 0 0 calc(50% - 0.75rem);
}

.process-item-inline.single-item {
    flex: 0 0 100%;
}

.bullet {
    color: var(--text-dark);
    font-size: 0.8rem;
    font-weight: bold;
    flex-shrink: 0;
}

.process-item-inline span:last-child {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.4;
}

/* Careers Section */
.careers {
    background: var(--primary-color);
    color: var(--text-white);
    text-align: center;
}

.careers-content h2 {
    color: var(--text-white);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.careers-content h3 {
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.careers-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.careers-content a {
    color: var(--secondary-color);
    font-weight: 600;
}

.careers-content a:hover {
    color: var(--text-white);
}

/* Contact Section */
.contact {
    background: var(--bg-light);
    padding: 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.contact-content {
    display: flex;
    width: 100%;
    min-height: 80vh;
    align-items: center;
}

.contact-left {
    flex: 0 0 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
    position: relative;
}

.contact-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: var(--primary-color);
    border-radius: 30px;
    padding: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
}

.app-interface {
    padding: 2rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-header h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 600;
}

.app-cards {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.app-card {
    flex: 1;
    padding: 1.5rem 1rem;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
}

.app-card.orange {
    background: var(--secondary-color);
}

.app-card.dark {
    background: #333;
}

.app-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    flex: 1;
}

.service-item {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 500;
}

.contact-right {
    flex: 0 0 55%;
    padding: 4rem;
    background: var(--bg-white);
}

.contact-info h2 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-info h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-weight: 400;
}

.contact-info .highlight {
    color: var(--secondary-color);
    font-weight: 600;
}

.contact-method {
    margin-bottom: 2.5rem;
}

.contact-method h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.contact-method p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.8rem;
    font-size: .8rem;
}

.contact-email {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
}

.contact-email:hover {
    color: var(--secondary-color);
}

.contact-method address {
    font-style: normal;
    color: var(--text-light);
    line-height: 1.6;
    font-size: .8rem;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
}

.app-button {
    flex: 1;
    background: #000;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.app-button:hover {
    /* background: var(--primary-color); */
    /* transform: translateY(-2px); */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.button-icon {
    font-size: 1.5rem;
}

.button-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.button-text span {
    font-size: 0.8rem;
    opacity: 0.8;
}

.button-text strong {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Footer */
/* Get In Touch Section */
.get-in-touch {
    background: var(--bg-light);
    padding: 80px 0;
}

.get-in-touch .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.get-in-touch .section-header h2 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.get-in-touch .section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-section h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-section {
    padding-top: 20px;
}

.contact-item:nth-child(1) .contact-icon {
    background: var(--primary-color);
}

.contact-item:nth-child(2) .contact-icon {
    background: var(--secondary-color);
}

.contact-item:nth-child(3) .contact-icon {
    background: var(--primary-color);
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-details h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-details p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}

.contact-form-section {
    background: var(--bg-white);
    border-radius: 12px;
    max-width: 500px;
    margin: 0px auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-container {
    padding: 2.5rem;
}

.form-container h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-container > p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    padding: .5rem;
    border: 2px solid var(--bg-light);
    border-radius: 8px;
    font-size: .8rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: var(--bg-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    padding: .8rem 2rem;
    font-size: .8rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    font-family: "Ubuntu", sans-serif;
}

.footer {
    background: var(--bg-white);
    color: var(--text-dark);
    padding: 3rem 0 1rem;
    border-top: 2px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.footer-columns {
    display: flex;
    gap: 4rem;
    flex: 1;
}

.footer-column {
    flex: 1;
}

.footer-column h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: var(--text-light);
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.5rem;
    width: 100%;
    align-items: center;
}

.brand-logo h2 {
    font-size: 3rem;
    font-weight: 700;
    /* color: var(--text-dark); */
    margin: 0;
    text-align: right;
    line-height: 0.9;
    letter-spacing: -2px;
}

.brand-logo span {
    font-weight: 400;
}

.social-links {
    display: flex;
    gap: 0.5rem;
}

.m-0 {
    margin: 0 !important;
}

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

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer-divider {
    border: none;
    height: 1px;
    background: var(--border-color);
    margin: 2rem 0 1.5rem;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 1rem;
    width: 100%;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-legal a {
    color: var(--text-light);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.separator {
    color: var(--text-light);
    font-size: 0.9rem;
}

.footer-copyright {
    text-align: right;
}

.footer-copyright p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }
    
    .nav-menu a {
        color: var(--text-dark) !important;
        text-shadow: none !important;
    }
    
    .brand-logo-img {
        height: 35px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 130px 0 0px;
        min-height: auto;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-left {
        flex: 1;
        padding-right: 0;
    }
    
    .hero-left h1 {
        font-size: 2.5rem;
    }
    
    .hero-left p {
        font-size: 1.1rem;
    }
    
    .hero-right {
        flex: 1;
    }
    
    .hero-image {
        width: 300px;
        height: 300px;
    }
    
    .circle-1 {
        width: 150px;
        height: 150px;
    }
    
    .circle-2 {
        width: 120px;
        height: 120px;
    }
    
    .person-avatar {
        width: 140px;
        height: 140px;
    }
    
    .person-avatar::before {
        font-size: 3rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .process-item {
        padding: 2rem;
    }
    
    .careers-content h2 {
        font-size: 2.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-columns {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-brand {
        align-items: center;
        text-align: center;
    }
    
    .brand-logo h2 {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-copyright {
        text-align: center;
    }
    
    .values-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .values-left {
        position: static;
    }
    
    .values-image {
        height: 300px;
    }
    
    .values-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .values-header h2 {
        font-size: 2rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-left {
        flex: 1;
        padding: 3rem 2rem;
    }
    
    .about-left h2 {
        font-size: 2rem;
    }
    
    .about-right {
        flex: 1;
        min-height: 40vh;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .contact-left {
        flex: 1;
        padding: 3rem 2rem;
    }
    
    .phone-mockup {
        width: 240px;
        height: 480px;
    }
    
    .contact-right {
        flex: 1;
        padding: 3rem 2rem;
    }
    
    .contact-info h2 {
        font-size: 2.5rem;
    }
    
    .contact-info h3 {
        font-size: 1.5rem;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .process-content {
        flex-direction: column;
    }
    
    .process-left {
        flex: 1;
        min-height: 40vh;
    }
    
    .process-right {
        flex: 1;
        padding: 3rem 2rem;
    }
    
    .process-info h2 {
        font-size: 2.5rem;
    }
    
    .process-info h3 {
        font-size: 1.5rem;
    }
    
    .process-item-inline {
        flex: 0 0 100%;
    }
    
    .service-content {
        flex-direction: column;
    }
    
    /* Mobile: Always show title first, then image, then description */
    .service-section.odd .service-left {
        flex: 1;
        min-height: 40vh;
        padding: 3rem 2rem;
        order: 2; /* Image comes second */
    }
    
    .service-section.odd .service-right {
        flex: 1;
        min-height: 40vh;
        padding: 3rem 2rem;
        order: 1; /* Content (title + description) comes first */
    }
    
    .service-section.even .service-left {
        flex: 1;
        min-height: 40vh;
        padding: 3rem 2rem;
        order: 1; /* Content (title + description) comes first */
    }
    
    .service-section.even .service-right {
        flex: 1;
        min-height: 40vh;
        padding: 3rem 2rem;
        order: 2; /* Image comes second */
    }
    
    .service-info h2 {
        font-size: 2.2rem;
    }
    
    .service-info h3 {
        font-size: 1.4rem;
    }
    
    .service-icon {
        font-size: 4rem;
    }
    
    .tech-grid {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 0.8rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .get-in-touch .section-header h2 {
        font-size: 2.8rem;
    }
    
    .tech-item {
        padding: 0.8rem;
    }
    
    .technologies h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .hero-left h1 {
        font-size: 2rem;
    }
    
    .hero-left p {
        font-size: 1rem;
    }
    
    .hero-image {
        width: 250px;
        height: 250px;
    }
    
    .circle-1 {
        width: 120px;
        height: 120px;
    }
    
    .circle-2 {
        width: 100px;
        height: 100px;
    }
    
    .person-avatar {
        width: 120px;
        height: 120px;
    }
    
    .person-avatar::before {
        font-size: 2.5rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .process-item {
        padding: 1.5rem;
    }
    
    .footer-columns {
        gap: 1.5rem;
    }
    
    .brand-logo h2 {
        font-size: 2rem;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
    }
    
    .footer-legal {
        gap: 0.3rem;
    }
    
    .footer-legal a {
        font-size: 0.8rem;
    }
    
    .separator {
        font-size: 0.8rem;
    }
    
    .footer-copyright p {
        font-size: 0.8rem;
    }
    
    .brand-logo-img {
        height: 35px;
    }
    
    .values-image {
        height: 250px;
        display: none;
    }
    
    .value-card {
        padding: 1.5rem;
    }
    
    .values-header h2 {
        font-size: 1.8rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .about-left {
        padding: 2rem 1.5rem;
    }
    
    .about-left h2 {
        font-size: 1.8rem;
    }
    
    .about-right {
        min-height: 30vh;
    }
    
    .contact-left {
        padding: 2rem 1rem;
    }
    
    .contact-right {
        padding: 2rem 1.5rem;
    }
    
    .contact-info h2 {
        font-size: 2rem;
    }
    
    .contact-info h3 {
        font-size: 1.3rem;
    }
    
    .app-interface {
        padding: 1.5rem 1rem;
    }
    
    .app-card {
        padding: 1rem 0.5rem;
        font-size: 0.8rem;
    }
    
    .service-item {
        padding: 0.8rem;
        font-size: 0.7rem;
    }
    
    .process-left {
        min-height: 30vh;
    }
    
    .process-right {
        padding: 2rem 1.5rem;
    }
    
    .process-info h2 {
        font-size: 2rem;
    }
    
    .process-info h3 {
        font-size: 1.3rem;
    }
    
    .process-section h4 {
        font-size: 1.2rem;
    }
    
    /* Mobile: Always show title first, then image, then description */
    .service-section.odd .service-left {
        padding: 2rem .5rem;
        min-height: 30vh;
        order: 2; /* Image comes second */
    }
    
    .service-section.odd .service-right {
        padding: 2rem .5rem;
        min-height: 30vh;
        order: 1; /* Content (title + description) comes first */
    }
    
    .service-section.even .service-left {
        padding: 2rem .5rem;
        min-height: 30vh;
        order: 1; /* Content (title + description) comes first */
    }
    
    .service-section.even .service-right {
        padding: 2rem .5rem;
        min-height: 30vh;
        order: 2; /* Image comes second */
    }

    .values-right {
        padding: 0rem .5rem;
    }
    
    .service-info h2 {
        font-size: 1.8rem;
    }
    
    .service-info h3 {
        font-size: 1.2rem;
    }
    
    .service-icon {
        font-size: 3.5rem;
    }
    
    .tech-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 0.5rem;
    }
    
    .tech-item {
        padding: 0.6rem;
    }
    
    .tech-item span {
        font-size: 0.8rem;
    }
    
    .technologies h4 {
        font-size: 1rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .get-in-touch .section-header h2 {
        font-size: 2.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Additional hover effects */
.service-card:hover h3 {
    color: var(--secondary-color);
}

.process-item:hover .process-content h3 {
    color: var(--secondary-color);
}

/* Focus states for accessibility */
.btn:focus,
.nav-menu a:focus {
    outline: none;
    /* outline: 2px solid var(--secondary-color); */
    /* outline-offset: 2px; */
}
