:root {
    --primary: #ff5722;
    --light-bg: #f9f9f9;
    --dark-text: #222;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-text);
}

.navbar {
    padding: 0.8rem 1rem;
    background-color: #fff;
}

.navbar-toggler {
    border: none;
    outline: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-collapse {
    flex-grow: 0;
    justify-content: center;
}

.navbar .btn-primary {
    padding: 0.5rem 1rem;
    background-color: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.navbar .btn-primary:hover {
    background-color: #682bbd;
}

.navbar .btn-primary:active {
    background-color: #4d1b8e;
}

/* Responsive Fix */
@media (max-width: 991.98px) {
    .navbar .btn-primary {
        display: block;
        width: 100%;
        margin-top: 10px;
        text-align: center;
    }
}

.orange-dot {
    position: relative;
    top: -3px;
    left: 3px;
    width: 6px;
    height: 6px;
    background-color: #ff5722;
    border-radius: 50%;
}


.hero {
    background: white;
    padding: 80px 20px;
}

#typewriter {
    display: inline-block;
    white-space: nowrap;
}

.img-illustration {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.hero-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.hero-text {
    flex: 1 1 50%;
    text-align: left;
}

.hero-img {
    flex: 1 1 40%;
    text-align: center;
}

.highlight {
    color: var(--primary);
}

.highlight-bg {
    background-color: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
}

.icon-placeholder {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.underwriting-reimagined {
    background-color: var(--light-bg);
}

.underwriting-reimagined .highlight {
    color: var(--primary);
}

.why-choose {
    background-color: var(--light-bg);
}



.feature-card {
  border-radius: 12px !important;  /* Slightly larger rounded corners */
}

.feature-icon {
  margin-bottom: 1.75rem !important;  /* More space below icons */
}

.feature-card h5 {
  margin-bottom: 1.25rem !important;  /* Better heading spacing */
  font-size: 1.25rem;  /* Slightly larger heading */
}

.feature-card p {
  line-height: 1.7;
  font-size: 1.05rem;  /* Slightly larger text */
  margin-bottom: 0.5rem;
}

/* Section Spacing */
.underwriting-reimagined {
  padding: 5rem 0 !important;  /* Increased section padding */
}

.feature-icon img {
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon img {
    transform: scale(1.1);
}

footer {
    background: #fff;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    border-top: 1px solid #eee;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
   padding: 6px 8px 6px 16px;
    background-color: #fff;
    border: 2px solid #444444;
    border-radius: 999px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #ff5722;
    border: 2px solid #444444;
}