.elementor-280 .elementor-element.elementor-element-39bfca2{padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-39bfca2 *//* ==========================================================================
   Base & Theme Setup
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #0a192f;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Color Variables */
:root {
    --bg-dark: #0a192f;
    --card-bg: rgba(16, 36, 64, 0.7);
    --orange: #ff7a00;
    --cyan: #00d2ff;
    --green: #22c55e;
    --nav-green: #28a745;
    --text-gray: #a0aec0;
}

/* ==========================================================================
   Header Navbar (Matches Screenshot)
   ========================================================================== */
.navbar {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(220, 240, 255, 0.9) 100%);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(0, 210, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    height: 48px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    text-decoration: none;
    color: #e53e3e;
    font-size: 15px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.nav-links a.active {
    color: #000000;
    border-bottom: 3px solid #00d2ff;
    padding-bottom: 4px;
}

.btn-nav-contact {
    background-color: #22c55e;
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-nav-contact:hover {
    background-color: #16a34a;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    padding: 90px 0 70px;
    background: radial-gradient(circle at top left, rgba(0, 210, 255, 0.15), transparent 40%),
                radial-gradient(circle at bottom right, rgba(255, 122, 0, 0.15), transparent 40%);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 122, 0, 0.1);
    border: 1px solid rgba(255, 122, 0, 0.4);
    color: var(--orange);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
}

.dot-green {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.highlight-orange { color: var(--orange); }
.highlight-cyan { color: var(--cyan); }

.hero-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    max-width: 650px;
    margin-bottom: 36px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-green {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 10px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
    transition: transform 0.2s;
}

.btn-green:hover { transform: translateY(-2px); }

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
}

/* ==========================================================================
   Stats Section
   ========================================================================== */
.stats-section {
    padding: 60px 0;
    text-align: center;
}

.section-label {
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--cyan);
    margin-bottom: 32px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.icon-circle.orange { background: rgba(255, 122, 0, 0.2); color: var(--orange); }
.icon-circle.blue   { background: rgba(0, 210, 255, 0.2); color: var(--cyan); }
.icon-circle.cyan   { background: rgba(59, 130, 246, 0.2); color: #60a5fa; }
.icon-circle.green  { background: rgba(34, 197, 94, 0.2); color: var(--green); }

.stat-card h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 4px;
}

.stat-card p {
    color: var(--text-gray);
    font-size: 14px;
}

/* ==========================================================================
   Advisor & Form Section
   ========================================================================== */
.advisor-section {
    padding: 80px 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.pill-badge {
    background: rgba(0, 210, 255, 0.1);
    color: var(--cyan);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
}

.title-heading {
    font-size: 40px;
    font-weight: 800;
    margin: 16px 0;
}

.desc-text {
    color: var(--text-gray);
    margin-bottom: 30px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: #ffffff;
    background: var(--card-bg);
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.icon-box {
    color: var(--orange);
}

.contact-card span {
    display: block;
    font-size: 12px;
    color: var(--text-gray);
}

.contact-card strong {
    font-size: 16px;
    word-break: break-all;
}

/* Form Styling */
.form-box {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 36px;
    border-radius: 20px;
}

.input-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.input-field label {
    font-size: 14px;
    font-weight: 600;
    color: #cbd5e1;
}

.input-field input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 14px 16px;
    border-radius: 10px;
    color: #ffffff;
    outline: none;
}

.input-field input:focus {
    border-color: var(--orange);
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--orange), #ff5500);
    color: #ffffff;
    padding: 16px;
    border: none;
    border-radius: 10px;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Floating WhatsApp Widget */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background-color: #25d366;
    color: #ffffff;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
    z-index: 999;
}

/* Responsive Rules */
@media (max-width: 992px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .grid-2 { grid-template-columns: 1fr; }
    .nav-links { display: none; }
}

@media (max-width: 600px) {
    .hero-title { font-size: 40px; }
    .stats-grid { grid-template-columns: 1fr; }
}/* End custom CSS */