body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: white;
}

.top-banner {
    background: #f21b3f;
    text-align: center;
    padding: 10px;
    font-size: 14px;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #0e0033;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    font-family: 'Montserrat', sans-serif;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.main-nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
}

.contact-btn {
    background-color: #ff4c8b;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 40px;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 2.8rem;
    line-height: 1.2;
}

.hero-text h1 span {
    color: #4B00AB;
    font-weight: 900;
}

.hero-text p {
    margin-top: 20px;
    font-size: 1.1rem;
}

.cta-btn {
    display: inline-block;
    margin-top: 30px;
    background-color: #D7BEFF;
    padding: 15px 25px;
    border-radius: 30px;
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.partners {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.partners img {
    height: 30px;
}

.hero-image {
    flex: 1;
    text-align: center;
    position: relative;
}

.hero-image img {
    max-width: 300px;
    border-radius: 10px;
}

.icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.icons img {
    width: 40px;
    height: 40px;
}

.services-section {
    background: #f4f6fc;
    padding: 60px 40px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.section-label {
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #222;
}

.section-title .highlight-blue {
    color: #207bff;
}

.section-title .highlight-pink {
    color: #ff6f61;
}

.section-subtitle {
    font-size: 1rem;
    max-width: 800px;
    margin: 20px auto 30px;
    line-height: 1.6;
    color: #444;
    text-align: center;
}

.services-heading {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: black;
}

.services-heading .highlight-purple {
    color: #4B00AB;
}

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

.service-box {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    text-align: left;
    color: #222;
}

.service-box h4 {
    font-weight: bold;
    margin-bottom: 15px;
    color: #222;
}

.service-box ul {
    padding-left: 0;
    list-style: none;
    line-height: 1.8;
    font-size: 15px;
}

.partners-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.partners-logos img {
    height: 30px;
    object-fit: contain;
}

.stats-section {
    background: url('images/team.webp') no-repeat center center/cover;
    position: relative;
    color: white;
    padding: 80px 40px;
    text-align: center;
}

.stats-section .overlay {
    background: rgba(0, 0, 0, 0.6);
    padding: 60px 20px;
    border-radius: 12px;
    max-width: 1300px;
    margin: 0 auto;
}

.stats-section h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.stats-section .subtitle {
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    justify-items: center;
    align-items: center;
}

.stat-box {
    text-align: center;
}

.stat-box img {
    height: 50px;
    margin-bottom: 10px;
}

.stat-box h3 {
    color: #D7BEFF;
    font-size: 2rem;
    margin: 0;
    font-weight: bold;
}

.stat-box p {
    font-size: 0.95rem;
    margin-top: 10px;
    line-height: 1.4;
}

.clientes {
    padding: 60px 20px;
    text-align: center;
    background: #fff;
    overflow: hidden;
}

.clientes-heading {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: #222222;
}

.clientes-heading .highlight.blue {
    color: #2e7df7;
}

.clientes-heading .highlight.gradient {
    background: linear-gradient(90deg, #d6249f, #f58529, #ff8a00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.clientes-slider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.slider-track {
    display: flex;
    gap: 20px;
    align-items: center;
    transition: transform 0.5s ease;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 0;
}

.slider-track img {
    height: 80px;
    scroll-snap-align: center;
    flex: 0 0 auto;
}

.slider-btn {
    background: none;
    border: none;
    font-size: 2rem;
    color: #2e004f;
    cursor: pointer;
    padding: 10px;
    transition: opacity 0.3s ease;
}

.slider-btn:hover {
    opacity: 0.7;
}

.section-subtitle {
    font-size: 14px;
    color: #999;
    margin-bottom: 10px;
}


/*contact page*/

.contact-hero {
    position: relative;
    background: linear-gradient(135deg, #5a00e0, #9b32ff);
    color: white;
    text-align: center;
    padding: 100px 20px 80px;
    overflow: hidden;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-subtitle {
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 20px;
    opacity: 0.85;
}

.contact-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.3;
}

.contact-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}


.contact-form-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.contact-form-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #52008c;
    margin-bottom: 10px;
}

.contact-form-section p {
    font-size: 1rem;
    margin-bottom: 40px;
    color: #333;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.form-row input,
.form-row textarea {
    flex: 1 1 100%;
    padding: 15px 20px;
    border-radius: 8px;
    border: none;
    background: #f8f9fc;
    box-shadow: 0 2px 0 #d3d6ea;
    font-size: 1rem;
    color: #222;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: 2px solid #9d4edd;
}

.form-row input[type="text"],
.form-row input[type="email"] {
    max-width: 100%;
}

.form-row input[type="tel"] {
    max-width: 100%;
}

.form-legal {
    text-align: left;
    margin-top: 10px;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    margin-top: 10px;
}

.checkbox-wrapper input[type="checkbox"] {
    accent-color: #52008c;
    transform: scale(1.2);
}

.checkbox-wrapper a {
    color: #52008c;
    text-decoration: underline;
    font-weight: 600;
}

.form-submit {
    text-align: right;
}

.form-submit button {
    background: #9d4edd;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(157, 78, 221, 0.3);
    letter-spacing: 2px;
    transition: background 0.3s ease;
}

.form-submit button:hover {
    background: #7a2fc1;
}


/*service pages*/

.seo-strategy.right {
    color: white;
    padding: 80px 20px;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #16002c, #430089);
}

.seo-strategy.left {
    padding: 80px 20px;
    font-family: 'Montserrat', sans-serif;
    color: black;
}

.seo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.seo-content.left {
    flex-direction: row;
}

.seo-text {
    flex: 1 1 500px;
    max-width: 600px;
}

.seo-text h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.seo-text p {
    font-size: 1rem;
    line-height: 1.7;
}

.seo-image {
    flex: 1 1 300px;
    text-align: center;
}

.seo-image img {
    max-width: 100%;
    border-radius: 12px;
}

.logo a {
    text-decoration: none;
    color: white;
}

.contact-button {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid #6e2594;
    color: #9b4cc7;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
}