.elementor-6 .elementor-element.elementor-element-0745e24{--spacer-size:150px;}/* Start custom CSS for html, class: .elementor-element-26d9e4a *//* GLOBAL STYLES & RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0f172a;
    color: #f8fafc;
    line-height: 1.6;
    overflow-x: hidden; /* Prevents unwanted horizontal scrolling on mobile */
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px; /* Slightly wider side gutters for smaller viewports */
}

:root {
    --gold: #d4af37;
    --gold-hover: #b8962e;
    --slate-light: #1e293b;
    --text-muted: #94a3b8;
}

.text-gold {
    color: var(--gold);
}

/* HERO SECTION WRAPPER */
.hero-section {
    padding: 80px 0;
    background: radial-gradient(circle at 50% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* RESPONSIVE LAYOUT ENGINE */
.hero-container {
    display: grid;
    grid-template-columns: 1fr; /* Defaults to single column for mobile */
    align-items: center;
    gap: 60px;
}

/* HERO CONTENT ELEMENTS */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center-aligned for mobile text */
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content h1 {
    /* Responsive font resizing dynamically between mobile and desktop styles */
    font-size: clamp(2rem, 5vw + 1rem, 3.5rem); 
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero-tagline {
    font-size: clamp(0.95rem, 1vw + 0.5rem, 1.15rem);
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 540px;
}

/* TARGET BUTTON WRAPPERS FOR SMARTPHONE DISPLAYS */
.hero-cta-group {
    display: flex;
    flex-direction: column; /* Stack vertically on small mobile screens */
    gap: 16px;
    width: 100%;
    max-width: 400px;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 16px 28px; /* Taller touch targets */
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%; /* Spans full width inside wrapper */
}

.btn-primary {
    background-color: var(--gold);
    color: #0f172a;
}

.btn-primary:hover {
    background-color: var(--gold-hover);
}

.btn-secondary {
    background-color: var(--slate-light);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--gold);
}

/* HERO VISUALIZATION (MOBILE SAFE GRID) */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.tech-grid-bg {
    width: 100%;
    aspect-ratio: 1 / 1; /* Maintains perfect circle scaling across device widths */
    border: 1px dashed rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    position: relative;
    background: radial-gradient(circle, rgba(30, 41, 59, 0.4) 0%, transparent 70%);
}

.floating-box {
    position: absolute;
    background: var(--slate-light);
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 12px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: clamp(0.8rem, 2vw, 0.95rem);
    white-space: nowrap;
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.code-box { 
    top: 25%; 
    left: -5%; 
}
.infra-box { 
    bottom: 25%; 
    right: -5%; 
}

.floating-box span {
    color: var(--gold);
    margin-right: 6px;
}

/* DESKTOP VIEWPORT RESPONSIVE RULES */
@media (min-width: 768px) {
    .hero-cta-group {
        flex-direction: row; /* Horizontal button layout on tablets/desktop */
        max-width: none;
        justify-content: center;
    }
    .btn-primary, .btn-secondary {
        width: auto; /* Reverts dynamic full width layout scaling */
    }
}

@media (min-width: 992px) {
    .hero-section {
        background: radial-gradient(circle at 85% 30%, rgba(212, 175, 55, 0.07) 0%, transparent 50%);
    }
    .hero-container {
        grid-template-columns: 1.2fr 1fr; /* Transforms layout block to 2 columns side-by-side */
        gap: 40px;
    }
    .hero-content {
        align-items: flex-start; /* Resets left alignment styles for desktop profiles */
        text-align: left;
    }
    .hero-cta-group {
        justify-content: flex-start;
    }
    .code-box { left: -10%; }
    .infra-box { right: -10%; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-264a78e *//* SERVICES SECTION STYLES */
.services-section {
    padding: 80px 0;
    background-color: #0f172a; /* Blends cleanly with your layout */
}

/* Fluid, responsive header layout */
.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px auto;
}

.section-badge {
    display: inline-block;
    background-color: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold, #d4af37);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw + 0.5rem, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.3;
}

.section-header p {
    font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
    color: var(--text-muted, #94a3b8);
}

/* Dynamic grid system: auto-adjusts columns based on width */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
    gap: 30px;
}

/* Card layout wrapper */
.service-card {
    background-color: var(--slate-light, #1e293b);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    border-color: rgba(212, 175, 55, 0.2);
}

/* Mobile-safe fluid container for artwork */
.card-image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 10; /* Keeps images scaled correctly on any screen size */
    overflow: hidden;
    background-color: rgba(15, 23, 42, 0.2);
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Prevents squishing or distortion */
}

/* Card context layout padding */
.card-body {
    padding: clamp(20px, 4vw, 30px);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-body h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.card-body p {
    font-size: 0.95rem;
    color: var(--text-muted, #94a3b8);
    margin-bottom: 24px;
    flex-grow: 1; /* Aligns list elements equally on desktop rows */
}

/* Mobile responsive features list layout */
.card-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
}

.card-features li {
    font-size: 0.9rem;
    color: #f8fafc;
    display: flex;
    align-items: flex-start; /* Ensures tick alignment matches multi-line wraps */
    gap: 10px;
}

.card-features li span {
    color: var(--gold, #d4af37);
    font-weight: 700;
    flex-shrink: 0; /* Keeps the checkmark from squishing on tight viewports */
}/* End custom CSS */