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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Nohemi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    line-height: 1.2;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0f1629 0%, #1e3a8a 25%, #1e40af 50%, #1e3a8a 75%, #0f1629 100%);
    min-height: 100vh;
}

/* Remove underlines from all links */
a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* Header Styles */
.header {
    position: static;
    width: 100%;
    background: rgba(15, 22, 41, 0.98);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo h2 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
}

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

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #60a5fa;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f1629 0%, #1e3a8a 50%, #1e40af 100%);
    padding: 10px 0;
}

/* Binary Square Dot Background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 14%, rgba(255, 255, 255, 0.15) 14%, rgba(255, 255, 255, 0.15) 16%, transparent 16%) 0 25%,
        linear-gradient(90deg, transparent 84%, rgba(0, 212, 255, 0.12) 84%, rgba(0, 212, 255, 0.12) 86%, transparent 86%) 0 15%,
        linear-gradient(90deg, transparent 34%, rgba(255, 255, 255, 0.1) 34%, rgba(255, 255, 255, 0.1) 36%, transparent 36%) 0 70%,
        linear-gradient(90deg, transparent 74%, rgba(0, 212, 255, 0.08) 74%, rgba(0, 212, 255, 0.08) 76%, transparent 76%) 0 80%,
        linear-gradient(90deg, transparent 54%, rgba(255, 255, 255, 0.12) 54%, rgba(255, 255, 255, 0.12) 57%, transparent 57%) 0 40%,
        linear-gradient(90deg, transparent 24%, rgba(0, 212, 255, 0.1) 24%, rgba(0, 212, 255, 0.1) 26%, transparent 26%) 0 90%,
        linear-gradient(90deg, transparent 89%, rgba(255, 255, 255, 0.08) 89%, rgba(255, 255, 255, 0.08) 91%, transparent 91%) 0 60%,
        linear-gradient(90deg, transparent 9%, rgba(0, 212, 255, 0.15) 9%, rgba(0, 212, 255, 0.15) 12%, transparent 12%) 0 55%,
        linear-gradient(90deg, transparent 64%, rgba(255, 255, 255, 0.1) 64%, rgba(255, 255, 255, 0.1) 66%, transparent 66%) 0 20%,
        linear-gradient(90deg, transparent 44%, rgba(0, 212, 255, 0.12) 44%, rgba(0, 212, 255, 0.12) 46%, transparent 46%) 0 85%,
        linear-gradient(90deg, transparent 79%, rgba(255, 255, 255, 0.14) 79%, rgba(255, 255, 255, 0.14) 82%, transparent 82%) 0 35%,
        linear-gradient(90deg, transparent 19%, rgba(0, 212, 255, 0.09) 19%, rgba(0, 212, 255, 0.09) 21%, transparent 21%) 0 65%;
    background-size: 200px 8px, 180px 6px, 220px 10px, 160px 6px, 240px 12px, 190px 8px, 210px 10px, 170px 14px, 230px 8px, 200px 10px, 250px 12px, 180px 6px;
    background-repeat: repeat-x, repeat-x, repeat-x, repeat-x, repeat-x, repeat-x, repeat-x, repeat-x, repeat-x, repeat-x, repeat-x, repeat-x;
    z-index: 1;
}

@keyframes binaryFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-200px); }
}



.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 30;
    height: 100%;
    min-height: 500px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
}
.hero-label {
    color: #00d4ff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.hero-subtitle {
    font-weight: 300;
    color: #ffffff;
}

.hero-content p {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 2.5rem;
    line-height: 1.5;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cta-hero {
    background: #00d4ff;
    color: #1e3a8a;
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
}

.btn-cta-hero:hover {
    background: #00bde6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

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

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

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

.hero-img {
    max-width: 400px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    margin-bottom: -30px;
}

/* Geometric Shapes */
.geometric-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.shape-1 {
    position: absolute;
    top: 15%;
    right: 20%;
    width: 120px;
    height: 120px;
    border: 3px solid #00d4ff;
    border-radius: 20px;
    transform: rotate(15deg);
    animation: float-shape 4s ease-in-out infinite;
}

.shape-2 {
    position: absolute;
    top: 60%;
    right: 10%;
    width: 80px;
    height: 80px;
    border: 3px solid #00d4ff;
    border-radius: 15px;
    transform: rotate(-20deg);
    animation: float-shape 4s ease-in-out infinite 1s;
}

.shape-3 {
    position: absolute;
    bottom: 20%;
    right: 35%;
    width: 60px;
    height: 60px;
    border: 2px solid #00d4ff;
    border-radius: 12px;
    transform: rotate(25deg);
    animation: float-shape 4s ease-in-out infinite 2s;
}

@keyframes float-shape {
    0%, 100% { 
        transform: translateY(0px) rotate(var(--rotation, 0deg));
        opacity: 0.7;
    }
    50% { 
        transform: translateY(-15px) rotate(var(--rotation, 0deg));
        opacity: 1;
    }
}

.shape-1 { --rotation: 15deg; }
.shape-2 { --rotation: -20deg; }
.shape-3 { --rotation: 25deg; }



/* Stats Section */
.stats {
    padding: 60px 0;
    background: #182f78;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.stats-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
}



.clutch-review {
    flex-shrink: 0;
}

.clutch-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.reviewed-on {
    font-size: 0.75rem;
    font-weight: 600;
    color: #00d4ff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.clutch-logo {
    margin: 0.5rem 0;
}

.clutch-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
}

.clutch-rating {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.stars {
    color: #fbbf24;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.reviews-count {
    font-size: 0.75rem;
    font-weight: 600;
    color: #e2e8f0;
    letter-spacing: 1px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    flex: 1;
    position: relative;
}

.stats-grid::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: center;
    padding: 0 1rem;
}

.stat-item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -20px;
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-percent {
    font-size: 1.4rem;
    color: #e2e8f0;
}

.stat-label {
    font-size: 0.9rem;
    color: #e2e8f0;
    line-height: 1.3;
    font-weight: 500;
}

/* Responsive Stats Layout */
@media (max-width: 1024px) {
    .stats-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-item:nth-child(2n) {
        border-right: none;
    }
    
    .stat-item:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .stats {
        padding: 40px 0;
    }
    
    .stats-content {
        gap: 1.5rem;
        flex-direction: column;
    }
    
    .clutch-review {
        text-align: center;
        width: 100%;
    }
    
    .clutch-header {
        align-items: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        width: 100%;
    }
    
    .stats-grid::after {
        height: 1px;
        background: rgba(255, 255, 255, 0.2);
        left: 0;
        right: 0;
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
    }
    
    .stats-grid::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 1px;
        background: rgba(255, 255, 255, 0.2);
        transform: translateX(-50%);
    }
    
    .stat-item {
        border-right: none !important;
        border-bottom: none;
        padding: 0;
        position: relative;
        z-index: 1;
    }
    
    .stat-item:not(:last-child)::after {
        display: none;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .clutch-name {
        font-size: 1.5rem;
    }
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #182f78;
    position: relative;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.services-header {
    text-align: left;
    margin-bottom: 4rem;
    max-width: 600px;
}

.services-label {
    color: #00d4ff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.services-header h2 {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.2;
    color: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(15, 22, 41, 0.4);
    border: 2px solid #00d4ff;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #00bde6;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.service-number {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    color: #00d4ff;
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.9;
}

.service-content {
    flex-grow: 1;
    margin-top: 0;
    margin-bottom: 1rem;
}

.service-content h3 {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 1.2rem;
    color: #ffffff;
    line-height: 1.3;
}

.service-highlight {
    font-weight: 700;
    color: #ffffff;
}

.service-content p {
    color: #e2e8f0;
    line-height: 1.5;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.service-link {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    color: #00d4ff;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.service-link:hover {
    color: #00bde6;
    opacity: 1;
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Client Reviews Section */
.reviews {
    padding: 100px 0;
    background: #182d6d;
    position: relative;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.reviews-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.reviews-label {
    color: #00d4ff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.reviews-header h2 {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.2;
    color: #ffffff;
}

.reviews-slider {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 2rem;
}

.reviews-slider .review-card {
    flex: 0 0 calc(33.333% - 1.33rem);
    min-width: 0;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #00d4ff;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(0, 212, 255, 0.7);
}

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

.review-card {
    background: rgba(15, 22, 41, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    text-align: center;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

.reviewer-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 3px solid #00d4ff;
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.reviewer-details p {
    font-size: 0.9rem;
    color: #94a3b8;
    margin: 0;
}

.review-rating {
    margin-bottom: 1rem;
}

.review-rating .star {
    color: #fbbf24;
    font-size: 1.2rem;
    margin: 0 0.1rem;
}

.review-text {
    color: #e2e8f0;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
    font-style: italic;
}

.reviews-cta {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

/* Responsive Reviews Grid */
@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .reviews-slider .review-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .reviews-slider .review-card {
        flex: 0 0 100%;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .reviews-track {
        gap: 1rem;
    }
    
    .reviews-header {
        text-align: center;
        max-width: none;
    }
}

/* Our Technologies Section */
.technologies {
    padding: 100px 0 60px 0;
    background: #182d6d;
    position: relative;
}

.technologies-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.technologies::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.technologies-content {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 6rem;
    align-items: center;
}

.technologies-text {
    max-width: 450px;
}

.technologies-label {
    color: #00d4ff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: block;
}

.technologies-text h2 {
    font-size: 2.8rem;
    font-weight: 300;
    line-height: 1.2;
    color: #ffffff;
    margin: 0;
}

.technologies-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem 1rem;
    align-items: center;
    justify-items: center;
}

.tech-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100%;
    height: 80px;
    opacity: 0.9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tech-logo:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(0, 212, 255, 0.4);
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 212, 255, 0.2);
}

.tech-logo img {
    max-width: 120px;
    max-height: 50px;
    object-fit: contain;
    filter: brightness(1.3) contrast(1.2) saturate(1.1);
    transition: filter 0.3s ease;
}

.tech-logo:hover img {
    filter: brightness(1.5) contrast(1.3) saturate(1.2);
}

.technologies-cta {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

/* Process Flow Section */
.process-flow {
    padding: 100px 0;
    background: #182d6d;
    position: relative;
}

.process-flow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.process-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.process-label {
    color: #00d4ff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.process-header h2 {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.3;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
}

.process-highlight {
    font-weight: 700;
    color: #ffffff;
}

.process-header p {
    font-size: 1.1rem;
    color: #e2e8f0;
    line-height: 1.6;
    margin: 0;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: linear-gradient(to right, 
        rgba(255, 255, 255, 0.3) 0%, 
        rgba(255, 255, 255, 0.3) 62.5%, 
        #ff6b47 62.5%, 
        #ff6b47 75%, 
        rgba(255, 255, 255, 0.3) 75%, 
        rgba(255, 255, 255, 0.3) 100%);
    z-index: 1;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.process-step.active .step-circle {
    background: #ff6b47;
    border-color: #ff6b47;
    box-shadow: 0 0 20px rgba(255, 107, 71, 0.4);
}

.step-number {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
}

.step-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.step-content p {
    font-size: 0.85rem;
    color: #e2e8f0;
    line-height: 1.4;
    margin: 0;
}

/* Responsive Process Flow */
@media (max-width: 1024px) {
    .process-steps {
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .process-step {
        flex: 0 0 calc(25% - 1.5rem);
        min-width: 200px;
    }
    
    .process-steps::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .process-header h2 {
        font-size: 2rem;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .process-step {
        flex: none;
        max-width: 300px;
    }
    
    .step-circle {
        width: 60px;
        height: 60px;
    }
    
    .step-number {
        font-size: 1.2rem;
    }
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #182f78;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-label {
    color: #00d4ff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.services-header h2 {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.3;
    color: #ffffff;
    margin: 0;
}

.services-highlight {
    font-weight: 700;
    color: #ffffff;
}

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

.service-card {
    background: #182d6d;
    border: 1px solid #00d4ff;
    border-radius: 12px;
    padding: 2rem;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    background: #1e3a8a;
    border-color: #00d4ff;
}

.service-number {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    font-size: 1.2rem;
    font-weight: 500;
    color: #00d4ff;
    line-height: 1;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: #ffffff;
    line-height: 1.4;
}

.service-card p {
    color: #e2e8f0;
    line-height: 1.6;
    margin: 0 0 2.5rem 0;
    font-size: 0.95rem;
}

.service-read-more {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    color: #00d4ff;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-read-more:hover {
    color: #ffffff;
}

.services-cta {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

/* Responsive Services Layout */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-number {
        font-size: 1rem;
        bottom: 1rem;
        left: 1rem;
    }
    
    .service-read-more {
        bottom: 1rem;
        right: 1rem;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .services-header h2 {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
}

/* Responsive Technologies Layout */
@media (max-width: 1024px) {
    .technologies-content {
        grid-template-columns: 1fr 1.5fr;
        gap: 4rem;
    }
    
    .technologies-logos {
        gap: 2rem 1.5rem;
    }
    
    .tech-logo {
        height: 70px;
        padding: 1rem;
    }
    
    .tech-logo img {
        max-width: 100px;
        max-height: 40px;
    }
}

@media (max-width: 768px) {
    .technologies-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .technologies-text {
        max-width: none;
    }
    
    .technologies-text h2 {
        font-size: 2.2rem;
    }
    
    .technologies-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1rem;
    }
    
    .tech-logo {
        height: 60px;
        padding: 0.8rem;
    }
    
    .tech-logo img {
        max-width: 90px;
        max-height: 35px;
    }
}

@media (max-width: 480px) {
    .technologies-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem 1rem;
    }
    
    .tech-logo {
        height: 50px;
        padding: 0.6rem;
    }
    
    .tech-logo img {
        max-width: 120px;
        max-height: 50px;
    }
}

/* Portfolio Section */
.portfolio {
    padding: 100px 0;
    background: rgba(15, 22, 41, 0.2);
}

.portfolio-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.portfolio-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.2;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.portfolio-image {
    height: 200px;
    background: linear-gradient(45deg, #3b82f6, #60a5fa);
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-placeholder {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
}

.portfolio-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 1.5rem 1.5rem 1rem;
    color: #60a5fa;
}

.portfolio-item p {
    color: #e2e8f0;
    margin: 0 1.5rem 1rem;
    line-height: 1.6;
}

.tech-stack {
    display: flex;
    gap: 0.5rem;
    margin: 0 1.5rem 1.5rem;
    flex-wrap: wrap;
}

.tech-stack span {
    background: rgba(96, 165, 250, 0.2);
    color: #60a5fa;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Our Clients Section */
.clients {
    padding: 100px 0 60px 0;
    background: #182f78;
    position: relative;
}

.clients-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.clients::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.clients-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.clients-label {
    color: #00d4ff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.clients-header h2 {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.3;
    color: #ffffff;
    margin: 0;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    align-items: center;
    justify-items: center;
}

.clients-cta {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100%;
    height: 80px;
    opacity: 0.9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.client-logo:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(0, 212, 255, 0.4);
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 212, 255, 0.2);
}

.client-logo img {
    max-width: 120px;
    max-height: 50px;
    object-fit: contain;
    filter: brightness(1.3) contrast(1.2) saturate(1.1);
    transition: filter 0.3s ease;
}

.client-logo:hover img {
    filter: brightness(1.5) contrast(1.3) saturate(1.2);
}

/* Responsive Clients Grid */
@media (max-width: 1024px) {
    .clients-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem 1rem;
    }
    
    .clients-header {
        text-align: center;
        max-width: none;
    }
    
    .clients-header h2 {
        font-size: 2rem;
    }
    
    .client-logo {
        height: 70px;
        padding: 1rem;
    }
    
    .client-logo img {
        max-width: 100px;
        max-height: 40px;
    }
}

@media (max-width: 480px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .client-logo {
        height: 60px;
        padding: 0.8rem;
    }
    
    .client-logo img {
        max-width: 80px;
        max-height: 35px;
    }
}

/* Products Section */
.products {
    padding: 100px 0;
    background: #182d6d;
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.products-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.products-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.products-label {
    color: #00d4ff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.products-header h2 {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.3;
    color: #ffffff;
    margin: 0;
}

.products-slider {
    position: relative;
    margin-bottom: 2rem;
}

.products-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    transition: transform 0.5s ease;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.product-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.2);
}

.product-image {
    height: 200px;
    background: linear-gradient(135deg, #1a365d 0%, #2d5a87 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-placeholder {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    opacity: 0.8;
}

.product-content {
    padding: 2rem;
}

.product-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.product-content p {
    color: #e2e8f0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature {
    color: #00d4ff;
    font-size: 0.85rem;
    font-weight: 500;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
}

.price-period {
    color: #e2e8f0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.btn-add-to-cart {
    width: 100%;
    background: #ff6b47;
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-add-to-cart:hover {
    background: #e55a3a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 71, 0.4);
}

.products-dots {
    display: none;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.product-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-dot.active {
    background: #00d4ff;
    transform: scale(1.2);
}

.product-dot:hover {
    background: rgba(0, 212, 255, 0.6);
}

.products-cta {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

/* Responsive Products */
@media (max-width: 1024px) {
    .products-track {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products-slider {
        overflow: hidden;
    }
    
    .products-track {
        display: flex;
        grid-template-columns: none;
    }
    
    .product-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .products-dots {
        display: flex;
    }
    
    .product-content {
        padding: 1.5rem;
    }
    
    .products-header h2 {
        font-size: 2rem;
    }
}

/* Resources Section */
.resources {
    padding: 100px 0;
    background: #182d6d;
    position: relative;
}

.resources-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.resources::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.resources-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.2;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.resources-cta {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.resource-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.resource-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.resource-type {
    background: #60a5fa;
    color: #1e3a8a;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.resource-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1rem 0;
    color: #ffffff;
}

.resource-item p {
    color: #e2e8f0;
    line-height: 1.6;
}

/* Blog Section */
.blog {
    padding: 100px 0;
    background: #182f78;
    position: relative;
}

.blog::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.blog-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.2;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-cta {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.blog-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.blog-image {
    height: 180px;
    background: linear-gradient(45deg, #1e40af, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-placeholder {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    color: #60a5fa;
    font-size: 0.9rem;
    font-weight: 500;
}

.blog-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0.5rem 0 1rem;
    color: #ffffff;
}

.blog-content p {
    color: #e2e8f0;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: #0f1629;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.cta-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #ffffff;
}

.cta-container p {
    font-size: 1.2rem;
    color: #e2e8f0;
    margin-bottom: 2rem;
}

.btn-cta {
    background: #60a5fa;
    color: #1e3a8a;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: #3b82f6;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: rgba(15, 22, 41, 0.95);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #60a5fa;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section p {
    color: #e2e8f0;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #60a5fa;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #e2e8f0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-img {
        max-width: 300px;
    }
    
    .shape-1, .shape-2, .shape-3 {
        display: none;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .services-grid,
    .portfolio-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .hero-container,
    .stats-container,
    .services-container,
    .portfolio-container,
    .resources-container,
    .blog-container,
    .cta-container,
    .footer-container {
        padding: 0 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .services-container h2,
    .portfolio-container h2,
    .resources-container h2,
    .blog-container h2,
    .cta-container h2 {
        font-size: 2rem;
    }
}
