.elementor-3607 .elementor-element.elementor-element-976f4fb{--display:flex;}.elementor-3607 .elementor-element.elementor-element-ad6e6d0{width:100%;max-width:100%;}.elementor-3607 .elementor-element.elementor-element-ad6e6d0 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-ad6e6d0 *//* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #070B13; /* Deep Dark Space Color */
    background-image: radial-gradient(circle at top, #0C1526 0%, #070B13 100%);
    font-family: 'Inter', sans-serif;
    color: #FFFFFF;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    overflow-x: hidden;
}

/* Container Structure */
.landing-page {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header Section Styling */
.main-header {
    text-align: center;
    max-width: 800px;
    margin-bottom: 60px;
}

.sub-title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #38BDF8; /* Subtle Cyan Highlight */
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 16px;
}

.main-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 600;
    margin-bottom: 28px;
    letter-spacing: -0.5px;
    color: #FFFFFF;
}

.intro-text {
    font-size: 1.15rem;
    line-height: 1.75;
    color: #9CA3AF; /* Muted silver text */
    font-weight: 400;
}

/* Features Grid Architecture */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    margin-bottom: 50px;
}

/* Glassmorphism Card Style */
.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 35px 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
}

/* Icon Design & Shapes */
.icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.icon-wrapper svg {
    width: 22px;
    height: 22px;
}

/* Accent Colors for Icons based on image */
.icon-green { color: #34D399; }
.icon-blue { color: #60A5FA; }
.icon-yellow { color: #FBBF24; }

/* Card Content Typography */
.feature-card h2 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #FFFFFF;
}

.feature-card p {
    font-size: 0.98rem;
    line-height: 1.6;
    color: #9CA3AF;
}

.highlight {
    color: #E5E7EB;
    font-weight: 500;
}

/* Footer Section */
.main-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #6B7280;
}

.heart-icon {
    color: #EF4444;
    display: inline-block;
    margin: 0 4px;
}

/* ==========================================================================
   Mobile & Tablet Responsiveness (Media Queries)
   ========================================================================== */

/* For Tablets (1024px and below) */
@media (max-width: 1024px) {
    .main-heading {
        font-size: 2.8rem;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* For Mobile Devices (768px and below) */
@media (max-width: 768px) {
    body {
        padding: 30px 16px;
    }
    .main-header {
        margin-bottom: 40px;
    }
    .main-heading {
        font-size: 2.2rem;
        margin-bottom: 16px;
    }
    .intro-text {
        font-size: 1rem;
        line-height: 1.6;
    }
    .features-grid {
        grid-template-columns: 1fr; /* Stack cards vertically on mobile */
        gap: 16px;
    }
    .feature-card {
        padding: 30px 20px;
    }
}/* End custom CSS */