.elementor-17 .elementor-element.elementor-element-6316a87{--display:flex;}/* Start custom CSS for wp-widget-custom_html, class: .elementor-element-d157e5c *//* ==================== FULL PAGE STYLES ==================== */
.saran-full-page {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #ffffff;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #1f2937;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.75rem;
    font-weight: 700;
}

.logo-icon {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.nav-menu a {
    color: #e5e7eb;
    text-decoration: none;
    margin: 0 1.25rem;
    font-weight: 500;
}

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

/* Buttons */
.btn-primary {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 9999px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #2563eb;
    transform: translateY(-3px);
}

.btn-primary.large {
    padding: 18px 42px;
    font-size: 1.25rem;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid #4b5563;
    padding: 10px 26px;
    border-radius: 9999px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-outline:hover {
    border-color: #60a5fa;
    color: #93c5fd;
}

/* Hero */
.hero {
    background: linear-gradient(180deg, #0a0a0a 0%, #111827 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.badge {
    display: inline-block;
    background: #1f2937;
    color: #93c5fd;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid #334155;
}

.headline {
    font-size: 4.8rem;
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
}

.blue-text {
    background: linear-gradient(90deg, #60a5fa, #3b82f6, #1e40af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subheadline {
    font-size: 1.55rem;
    color: #9ca3af;
    max-width: 720px;
    margin: 0 auto 3rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Common Section */
.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3.5rem;
}

/* Services */
.services {
    background: #0f172a;
}

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

.service-card {
    background: #1e2937;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #93c5fd;
}

/* Case Studies */
.case-studies {
    background: #020617;
}

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

.case-card {
    background: #1e2937;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s;
}

.case-card:hover {
    transform: translateY(-12px);
}

.case-image {
    height: 220px;
    position: relative;
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
}

.case-category {
    background: rgba(0,0,0,0.6);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
}

.case-content {
    padding: 1.8rem;
}

.case-content h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.case-result {
    color: #60a5fa;
    font-weight: 600;
    margin: 0.4rem 0;
}

.case-desc {
    color: #94a3b8;
    margin-top: 1.2rem;
    line-height: 1.5;
}

/* Results */
.results {
    background: #0f172a;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.result-card {
    background: #1e2937;
    padding: 3rem 2rem;
    border-radius: 20px;
}

.result-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #60a5fa;
}

.result-label {
    color: #cbd5e1;
    font-size: 1.1rem;
}

/* CTA */
.cta {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    text-align: center;
    padding: 6rem 2rem;
}

.cta-content h2 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: #020617;
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid #1e2937;
}

/* Responsive */
@media (max-width: 768px) {
    .headline { font-size: 3.2rem; }
    .nav-menu { display: none; }
    .hero-buttons { flex-direction: column; align-items: center; }
}/* End custom CSS */