.elementor-9 .elementor-element.elementor-element-dcea69c{--display:flex;--min-height:0px;}.elementor-9 .elementor-element.elementor-element-dcea69c.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-9 .elementor-element.elementor-element-f3290a1{width:100%;max-width:100%;}.elementor-9 .elementor-element.elementor-element-ecc1991{--display:flex;}.elementor-9 .elementor-element.elementor-element-54ccf43{width:100%;max-width:100%;}.elementor-9 .elementor-element.elementor-element-9a2e7c4{--display:flex;}.elementor-9 .elementor-element.elementor-element-4e82ac6{--display:flex;}.elementor-9 .elementor-element.elementor-element-50a62a0{--display:flex;}.elementor-9 .elementor-element.elementor-element-d446a80{--display:flex;}body.elementor-page-9:not(.elementor-motion-effects-element-type-background), body.elementor-page-9 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-9 .elementor-element.elementor-element-dcea69c{--width:101.065%;}}/* Start custom CSS for container, class: .elementor-element-dcea69c *//* ==========================================
   MILITARY HUD & RADAR COMPONENT STYLES
   ========================================== */

:root {
    --radar-green: #00FF66;
    --radar-bg: rgba(5, 25, 18, 0.85);
}

.hud-card {
    background: var(--radar-bg);
    border: 2px solid var(--radar-green);
    border-radius: 12px;
    padding: 1.2rem;
    width: 340px;
    box-shadow: 0 0 25px rgba(0, 255, 102, 0.2);
    backdrop-filter: blur(8px);
    font-family: 'Orbitron', sans-serif;
    color: var(--radar-green);
}

.hud-header {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(0, 255, 102, 0.3);
    padding-bottom: 8px;
    margin-bottom: 1.2rem;
    display: flex;
    justify-content: space-between;
}

.hud-header span {
    color: #fff;
}

/* Radar Circle Display */
.radar-screen {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 1.5rem auto;
    border: 2px solid var(--radar-green);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,255,102,0.05) 0%, rgba(0,0,0,0.8) 100%);
    overflow: hidden;
}

/* Crosshair Grid Lines */
.radar-screen::before, 
.radar-screen::after {
    content: '';
    position: absolute;
    background: rgba(0, 255, 102, 0.3);
}

.radar-screen::before { top: 50%; left: 0; width: 100%; height: 1px; }
.radar-screen::after { left: 50%; top: 0; width: 1px; height: 100%; }

/* Rotating Radar Sweep Animation */
.radar-sweep {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 0deg, transparent 270deg, rgba(0, 255, 102, 0.4) 360deg);
    animation: radar-spin 3s linear infinite;
}

@keyframes radar-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Radar Target Blips */
.radar-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: var(--radar-green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--radar-green);
}

.dot-1 { top: 35%; left: 60%; }
.dot-2 { top: 70%; left: 40%; }
.dot-3 { top: 50%; left: 80%; }

/* HUD Text Output */
.hud-data {
    font-size: 0.75rem;
    line-height: 1.6;
    text-transform: uppercase;
}

.hud-data p {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
}

.hud-data .value {
    font-weight: 700;
    color: #fff;
}/* ==========================================
   MAIN HERO SECTION & PAGE STYLES
   ========================================== */

:root {
    --navy-blue: #0A192F;
    --navy-dark: #071120;
    --accent-orange: #FF9E00;
    --accent-orange-hover: #E68E00;
    --text-muted: #475569;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    background-color: #f4f6f8;
}

.hero-section {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(90deg, rgba(248, 249, 250, 0.95) 0%, rgba(248, 249, 250, 0.8) 40%, rgba(248, 249, 250, 0.2) 100%),
                url('https://images.unsplash.com/photo-1570129477492-45c003edd2be?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    padding: 4rem 5% 2rem 5%;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    flex-grow: 1;
}

.hero-left {
    max-width: 580px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--navy-blue);
    line-height: 1.1;
    letter-spacing: -1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    line-height: 1.5;
    letter-spacing: 0.5px;
    margin-bottom: 2.5rem;
}

/* Call to Action Buttons */
.btn-group {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    width: 100%;
    max-width: 380px;
}

.btn {
    display: inline-block;
    text-align: center;
    padding: 1rem 2rem;
    font-size: 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background-color: var(--accent-orange);
    color: #000;
    border: 2px solid var(--accent-orange);
}

.btn-primary:hover {
    background-color: var(--accent-orange-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--navy-blue);
    color: var(--accent-orange);
    border: 2px solid var(--navy-blue);
}

.btn-secondary:hover {
    background-color: var(--navy-dark);
    transform: translateY(-2px);
}

/* Feature Bar */
.feature-bar-wrapper {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 2rem auto 0 auto;
    width: 100%;
}

.feature-bar {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 1.5rem 1rem;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border-right: 1px solid #e2e8f0;
    padding: 0 1rem;
}

.feature-item:last-child {
    border-right: none;
}

.feature-icon {
    font-size: 2rem;
    color: var(--navy-blue);
}

.feature-text {
    font-size: 1rem;
    font-weight: 800;
    color: var(--navy-blue);
    text-transform: uppercase;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--accent-orange);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 10;
}

/* Responsive Rules */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    .btn-group { margin: 0 auto; }
    .feature-bar { grid-template-columns: repeat(2, 1fr); }
    .feature-item { border-right: none; }
}

@media (max-width: 640px) {
    .hero-title { font-size: 2.2rem; }
    .feature-bar { grid-template-columns: 1fr; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-54ccf43 *//* Core Resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    text-align: center; 
    overflow-x: hidden; /* Scrollbar avoid karne ke liye */
}

/* Strict Full Width (100vw Reset) */
.features-section {
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 24px;
    background-color: #ffffff;
}

/* Centered Inner Container */
.container {
    max-width: 1280px; /* Standard full desktop view spread */
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header Section */
.section-header {
    width: 100%;
    max-width: 750px;
    margin: 0 auto 50px auto;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0d131f;
    letter-spacing: -0.8px;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.15rem;
    color: #556070;
    line-height: 1.6;
    font-weight: 400;
}

/* Full Grid Layout */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    align-items: stretch;
}

/* Feature Card Container Styling */
.feature-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 28px 32px 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(229, 25, 36, 0.2);
}

/* Icon Wrapper Styling */
.icon-wrapper {
    width: 64px;
    height: 64px;
    background-color: #fff1f2;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    transition: background-color 0.25s ease;
}

.feature-card:hover .icon-wrapper {
    background-color: #ffe4e6;
}

.icon-wrapper svg {
    width: 30px;
    height: 30px;
}

/* Typography Inside Cards */
.card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0d131f;
    margin-bottom: 12px;
}

.card-text {
    font-size: 0.98rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 28px;
    flex-grow: 1;
}

/* Buttons Styling */
.card-btn {
    display: inline-block;
    width: 100%;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    color: #e51924;
    background-color: #fff1f2;
    border: 1px solid rgba(229, 25, 36, 0.15);
    transition: all 0.2s ease;
}

.card-btn:hover {
    background-color: #FEA14D;
    color: #ffffff;
    border-color: #FEA14D;
}

/* Highlight Primary Action Button for Card 3 */
.card-btn-primary {
    background-color: #FEA14D;
    color: #ffffff;
    border-color: #e51924;
}

.card-btn-primary:hover {
    background-color: #c4121d;
    border-color: #c4121d;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 50px 16px;
    }
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .section-title {
        font-size: 2.1rem;
    }
}/* End custom CSS */