.elementor-1756 .elementor-element.elementor-element-c400bec{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1756 .elementor-element.elementor-element-c400bec.e-con{--align-self:stretch;}/* Start custom CSS for html, class: .elementor-element-f98f2be *//* General Styles */
:root {
    --primary-color: #6366f1; /* Modern Indigo */
    --secondary-color: #1e293b;
    --text-dark: #0f172a;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    padding: 20px 0;
    background: var(--white);
    border-bottom: 1px solid #e2e8f0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -1px;
}

.logo span {
    color: var(--primary-color);
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    margin-left: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Buttons */
.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: 0.3s;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    margin-left: 10px;
}

.btn-primary:hover { background: #4f46e5; }

/* Hero Section */
.hero {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(to bottom, #f8fafc, #ffffff);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.highlight { color: var(--primary-color); }

.hero p {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Trusted By */
.trusted-by {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #f1f5f9;
}

.trusted-by p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #94a3b8;
    margin-bottom: 20px;
}

.logos {
    display: flex;
    justify-content: center;
    gap: 50px;
    filter: grayscale(1);
    opacity: 0.6;
    font-weight: bold;
}

/* Services */
.services {
    padding: 100px 0;
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover { transform: translateY(-5px); }

.service-card .icon {
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Footer */
footer {
    padding: 80px 0 20px;
    background: var(--secondary-color);
    color: var(--white);
    text-align: center;
}

footer h2 { margin-bottom: 10px; }
footer p { margin-bottom: 30px; opacity: 0.8; }

.footer-bottom {
    margin-top: 60px;
    font-size: 0.8rem;
    opacity: 0.5;
    border-top: 1px solid #334155;
    padding-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .hero-btns a { display: block; margin: 10px 0; }
}/* End custom CSS */