/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0;
}

.logo span {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: normal;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav a:hover,
.nav a.active {
    background-color: rgba(255,255,255,0.2);
    opacity: 1;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 4rem 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-badge {
    margin-bottom: 1.5rem;
}

.rbi-badge {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.7rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-feature .feature-icon {
    font-size: 1.1rem;
}

.hero-feature span:last-child {
    font-weight: 500;
    font-size: 0.9rem;
}



.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-simple {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 400px;
}

.value-proposition {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.prop-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 3px solid #ff6b35;
}

.prop-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.prop-content h4 {
    color: white;
    font-size: 1.1rem;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.prop-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.badge-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.trust-badge h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 600;
}

.trust-badge p {
    font-size: 1.2rem;
    opacity: 0.8;
    margin: 0;
    color: #ff6b35;
    font-weight: 500;
}

.key-metrics {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.metric-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 0.3rem;
}

.metric-label {
    font-size: 0.85rem;
    opacity: 0.9;
    color: white;
}

/* Trust & Innovation Section */
.trust-innovation {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.trust-innovation::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(247, 147, 30, 0.05));
    border-radius: 0 0 0 100px;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.trust-main {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #ff6b35;
}

.badge-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    padding: 1rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-content h3 {
    color: #1e3c72;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.badge-content p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
}

.trust-description h2 {
    font-size: 2.8rem;
    color: #1e3c72;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.trust-description p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.innovation-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.innovation-card {
    padding: 1.8rem;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.innovation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    border-radius: 15px;
}

.card-primary {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    transform: translateX(-20px);
}

.card-secondary {
    background: white;
    color: #1e3c72;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid #e9ecef;
}

.card-accent {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    transform: translateX(-20px);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.card-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
}

.card-secondary .card-icon {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
}

.innovation-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.innovation-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    opacity: 0.9;
}

.card-secondary p {
    opacity: 0.8;
    color: #666;
}

/* Services Preview */
.services-preview {
    padding: 4rem 0;
    background-color: white;
}

.services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e3c72;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-item {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 2rem;
    border-radius: 10px;
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-item p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}



/* Stats Section */
.stats {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #ff6b35;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #ff6b35;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ff6b35;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav ul {
        gap: 1rem;
    }
    
    .hero {
        padding: 3rem 0;
        min-height: 60vh;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-feature {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .hero-simple {
        max-width: 100%;
        gap: 1.5rem;
    }
    
    .trust-badge {
        padding: 1.5rem;
    }
    
    .badge-icon {
        font-size: 2rem;
    }
    
    .trust-badge h3 {
        font-size: 1.1rem;
    }
    
    .trust-badge p {
        font-size: 0.8rem;
    }
    
    .metric-item {
        padding: 1rem;
    }
    
    .metric-value {
        font-size: 1.3rem;
    }
    
    .metric-label {
        font-size: 0.8rem;
    }
    
    .trust-innovation {
        padding: 3rem 0;
    }
    
    .trust-innovation::before {
        display: none;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .trust-badge {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .badge-icon {
        font-size: 2.5rem;
        padding: 0.8rem;
    }
    
    .trust-description h2 {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .trust-description p {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .innovation-cards {
        gap: 1rem;
    }
    
    .innovation-card {
        transform: none !important;
        padding: 1.5rem;
    }
    
    .card-header {
        justify-content: center;
    }
    
    .innovation-card p {
        text-align: center;
    }
    
    .services-preview h2 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}