/* Exact Sura UI Clone - CSS System */
:root {
    --sura-blue: #0033a0;
    --sura-yellow: #e3e829;
    --sura-yellow-hover: #d4da24;
    --sura-light-blue: #cadbef;
    --sura-gray-text: #666666;
    --sura-footer-bg: #4d4d4d;
    --sura-input-border: #d0d0d0;
    --sura-input-bg: #f9f9f9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    background-color: #ffffff;
    color: var(--sura-blue);
    overflow-x: hidden;
}

/* Header Replicated 1:1 */
.sura-navbar {
    background-color: #fff;
    border-bottom: 3.5px solid var(--sura-light-blue);
    padding: 30px 0 10px 0;
}

.sura-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.flex-header {
    display: flex;
    justify-content: center; /* Centered as per Sura consultation page */
    align-items: center;
}

.sura-brand img {
    height: 40px;
}

/* Main Content Area */
.sura-main {
    padding: 60px 20px;
    text-align: center;
}

.sura-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.sura-title {
    font-size: 3.5rem; /* ~56px */
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.sura-subtitle {
    font-size: 1.15rem;
    color: var(--sura-gray-text);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* Form Elements */
.sura-form {
    max-width: 480px;
    margin: 0 auto;
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.sura-input {
    width: 100%;
    height: 54px;
    padding: 12px 20px;
    border: 1px solid var(--sura-input-border);
    border-radius: 6px;
    font-size: 1.05rem;
    color: #495057;
    background-color: var(--sura-input-bg);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.sura-input:focus {
    border-color: var(--sura-blue);
    box-shadow: 0 0 0 0.2rem rgba(0, 51, 160, 0.15);
    background-color: #fff;
}

select.sura-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 12px;
}

.uppercase {
    text-transform: uppercase;
}

/* The Sura Button */
.sura-btn-wrap {
    text-align: center;
    padding-top: 20px;
}

.sura-btn-yellow {
    display: inline-block;
    background-color: var(--sura-yellow);
    color: var(--sura-blue);
    border: none;
    padding: 16px 60px;
    border-radius: 40px;
    font-size: 1.35rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.sura-btn-yellow:hover {
    background-color: var(--sura-yellow-hover);
}

.sura-btn-yellow:active {
    transform: scale(0.98);
}

/* Footer & Security Sura Style */
.sura-footer {
    background-color: var(--sura-footer-bg);
    color: #ffffff;
    padding: 40px 0 25px;
    margin-top: 80px;
}

.footer-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 20px;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
}

.footer-item img {
    height: 30px;
}

.footer-bottom {
    text-align: center;
    font-size: 13px;
    color: #e0e0e0;
}

.footer-bottom a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 8px;
}

/* Spinner Integration */
.sura-spinner-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(255,255,255,0.95);
    z-index: 10000;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--sura-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .sura-title { font-size: 2.5rem; }
    .footer-top { gap: 30px; }
    .sura-main { padding: 40px 15px; }
}
/* Landing Page Home CSS - Sura Style Clone */
:root {
    --sura-blue: #0033a0;
    --sura-yellow: #e3e829;
    --sura-yellow-hover: #d4da24;
    --white: #ffffff;
    --sura-dark-gray: #333333;
    --sura-light-gray: #f8f9fa;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    color: var(--sura-dark-gray);
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    position: relative;
    background-color: var(--sura-blue);
    min-height: 550px;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    padding: 60px 0;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    max-width: 500px;
    font-family: 'Montserrat', sans-serif;
}

.hero-image-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    z-index: 1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* The Sura Curve Mask */
.hero-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -1px;
    width: 150px;
    height: 100%;
    background: var(--sura-blue);
    clip-path: ellipse(100% 100% at 0% 50%);
    z-index: 2;
}

/* CTA Button - Home Style */
.btn-home-cta {
    display: inline-flex;
    align-items: center;
    background-color: var(--sura-yellow);
    color: var(--sura-blue);
    padding: 16px 45px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, background-color 0.2s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-home-cta:hover {
    background-color: var(--sura-yellow-hover);
    transform: translateY(-2px);
}

.btn-home-cta i {
    margin-left: 15px;
    font-size: 1rem;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: var(--white);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    border-radius: 12px;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
}

.feature-card h3 {
    color: var(--sura-blue);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

/* Responsive Adjustments */
/* Floating Help Widget */
.sura-help-trigger {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--sura-yellow);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    cursor: pointer;
    z-index: 9999;
    transition: transform 0.3s;
}

.sura-help-trigger:hover {
    transform: scale(1.1);
}

.sura-help-trigger i {
    color: var(--sura-blue);
    font-size: 1.8rem;
}

.sura-chat-window {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 300px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 9998;
    display: none;
    overflow: hidden;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.chat-header {
    background: var(--sura-blue);
    color: #fff;
    padding: 20px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
}

.chat-body {
    padding: 25px;
    text-align: center;
}

.btn-chat-action {
    display: block;
    width: 100%;
    padding: 12px;
    background: var(--sura-yellow);
    color: var(--sura-blue);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 15px;
}

@media (max-width: 992px) {
    .hero-title { font-size: 2.8rem; }
    .hero-image-container { width: 40%; }
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        min-height: auto;
    }
    .hero-title {
        max-width: 100%;
        margin-bottom: 40px;
    }
    .hero-image-container {
        position: relative;
        width: 100%;
        height: 300px;
    }
    .hero-image-container::before {
        display: none;
    }
    .hero-content-wrapper {
        padding: 50px 20px;
    }
}

/* Sura Style Modal */
.sura-modal-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0,0,0,0.6) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 999999 !important;
    opacity: 0;
    font-family: 'Open Sans', sans-serif !important;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sura-modal-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
}

.sura-modal-content {
    background: #fff;
    width: 95%;
    max-width: 550px;
    padding: 40px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.sura-modal-overlay.active .sura-modal-content {
    transform: translateY(0);
}

.sura-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    color: var(--sura-blue);
    cursor: pointer;
    font-weight: bold;
}

.sura-modal-title {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 700;
}

.sura-modal-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4d4d4d;
    text-align: center;
    margin-bottom: 25px;
}

.sura-modal-list {
    text-align: left;
    padding-left: 20px;
    margin-top: 20px;
}

.sura-modal-list li {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #4d4d4d;
    line-height: 1.5;
    list-style-type: disc;
}
