@import url("reset.css");
@import url("fonts.css");
@import url("variables.css");
@import url("header.css");
@import url("header-animated.css");
@import url("service.css");
@import url("projects.css");
@import url("tools.css");
@import url("logo-slider.css");
@import url("footer.css");
@import url("references.css");
@import url("tech-stack.css");
@import url("blog.css");
@import url("about.css");
@import url("consulting.css");
@import url("scrolltop.css");
@import url("contact-form.css");
@import url("ctx.css");


html {
    scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
  color: var(--ctnm-color-font);
  background: var(--ctnm-color-white);
}

@media only screen {
    .sr-only {
        display: none;
    }
}

.btn-primary {
    background: var(--ctnm-color-blue);
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}
.btn-primary:hover {
    color: white;
    background: #1d4ed8;
    transform: translateY(-2px);
}
.btn-secondary {
    background: white;
    color: #374151;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid #d1d5db;
    transition: all 0.2s;
}
.btn-secondary:hover {
    border-color: var(--ctnm-color-blue);
    transform: translateY(-2px);
}
section > .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 5rem 2rem;
}
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

section .header-container > .section-header:last-child {
    margin-bottom: 0;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ctnm-color-font);
    margin-bottom: 1rem;
    line-height: 1.35;
}
.section-header p {
    font-size: 1.05rem;
    color: #6b7280;
}
.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.feature-icon {
    width: 48px;
    height: 48px;
    background: #eff6ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ctnm-color-blue);
    font-size: 1.5rem;
    flex-shrink: 0;
}
.feature-text h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ctnm-color-font);
    margin-bottom: 0.25rem;
}
.feature-text h4 {
    font-weight: 600;
    color: var(--ctnm-color-font);
    margin-bottom: 0.25rem;
}
.feature-text p {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
}
.stats {
    display: flex;
    gap: 3rem;
}
.stat-item {
    text-align: left;
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ctnm-color-blue);
}
.stat-label {
    color: #6b7280;
    font-size: 0.95rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(1, 100%);
    gap: 2rem;
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(3, minmax(250px, 1fr));
    }
}


.team-card {
    text-align: center;
}
.team-photo {
    width: 100%;
    height: 280px;
    background: #e5e7eb;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}
.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.team-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ctnm-color-font);
    margin-bottom: 0.25rem;
}
.team-card p {
    color: #6b7280;
    font-size: 0.95rem;
}
.tag {
    background: #eff6ff;
    color: var(--ctnm-color-blue);
    padding: 0.35rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}
.blog-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}
.blog-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}
.blog-image {
    width: 100%;
    height: 200px;
    background: #e5e7eb;
}
.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-content {
    padding: 1.5rem;
}
.blog-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ctnm-color-font);
    margin-bottom: 0.5rem;
}
.blog-content p {
    color: #6b7280;
    font-size: 0.95rem;
}
.cta-section {
    background: var(--ctnm-color-blue);
    color: white;
    text-align: center;
    padding: 5rem 2rem;
    margin: 0;
    max-width: 100%;
}
.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}
.cta-section p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}
.btn-white {
    background: white;
    color: var(--ctnm-color-blue);
    padding: 0.9rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.2s;
}
.btn-white:hover {
    transform: translateY(-2px);
}

h1 {
    font-size: 3rem;
    line-height: 1.25;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {

    h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .xabout-content {
        grid-template-columns: 1fr;
    }
    .stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}

.logo img {
  height: 70px;
  width: 160px;
  object-fit: cover
}
