body {
    margin: 0;
    padding: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background-color: white;
    color: #0f172a;
    line-height: 1.6;
}
.hp-section {
    display: flex;
    width: 100%;
    min-height: 520px;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    align-items: stretch;
}
.hp-left {
    flex: 1;
    background: #0066cc;
    color: white;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}
.hp-logo {
    width: 80px;
    margin: 0;
}
.hp-title {
    font-size: 35px;
    font-weight: 800;
    margin: 0 0 8px;
}
.hp-text {
    font-size: 15px;
    max-width: 80%;
    margin: 0 0 22px;
    opacity: .95;
}
.hp-list-box {
    background: #ffffff;
    color: #000;
    padding: 20px;
    border-radius: 12px;
    margin: 0;
}
.hp-list-box ul {
    padding-left: 18px;
    margin: 0;
}
.hp-list-box li {
    margin: 0;
    padding: 4px 0;
}
.hp-list-box .heading {
    font-size: 16px;
    margin: 0;
}
.hp-call {
    display: block;
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
    color: #0066cc;
    margin: 12px 0 10px;
    line-height: 1.6;
}
.hp-btn {
    padding: 12px 20px;
    background: #0066cc;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 600;
    margin: 0;
    transition: background 0.3s ease;
}
.hp-btn:hover {
    background: #004a99;
}
.hp-right {
    flex: 1;
}
.right-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scaleX(-1);
    display: block;
}
@media (max-width: 900px) {
    .hp-section {
        flex-direction: column;
    }

    .right-img {
        height: 300px;
    }
}
.info-section {
    display: flex;
    width: 100%;
    min-height: 400px;
    align-items: center;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  
    margin-top:-20px;
}
.info-left, .info-right {
    flex: 1;
    padding: 40px;
    box-sizing: border-box;
}
.info-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius:15px;
}
.info-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 10px;
    color: #0b1526; 
}
.info-text {
    font-size: 15px;
    margin: 0 0 16px;
    color: #333;
}
.info-btn {
    padding: 12px 24px;
    background: #0066cc;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}
.info-btn:hover {
    background: #004a99;
}
/* Responsive */
@media (max-width: 900px) {
    .info-section {
        flex-direction: column;
    }

    .info-left, .info-right {
        padding: 20px;
    }

    .info-img {
        height: 250px;
    }
}
.features-section {
    width: 100%;
    text-align: center;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    
    
}
.features-header {
    margin-bottom: 40px;
}

.features-title {
    margin: 0 0 16px;
    font-weight: 800;
    font-size: 40px;
    color: #1b3d6d;
    text-align: center;
    margin-bottom: 10px;
}
.features-text {
    font-size: 16px;
   
   
    color: #5a6b7f;
    margin-bottom: 28px;
}
.features-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.feature-card {
    
    padding: 20px;
    border-radius: 12px;
    width: 250px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    text-align: left;       
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
.feature-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 16px;
    opacity: .92;
}
.feature-title {
    color: #1f6ad6;
    font-weight: 800;
    font-size: 20px;
    margin: 4px 0 6px;
}
.feature-text {
    margin: 0;
    color: #5f6b7a;
    font-size: 15px;
}
/* Responsive */
@media (max-width: 900px) {
    .features-cards {
        flex-direction: column;
        align-items: center;
    }
    .feature-card {
        width: 80%;
    }
}
.step-section {
    display: flex;
    justify-content: center;
    padding: 40px 20px; 
    margin-bottom:-50px;
}
.step-card {
    display: flex;
    background-color: #e1eef45e;
    width: 1200px;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 18px;
    box-shadow: var(--shadow);
    border: 1px solid #e7eef7;
}
.blue-strip {
    width: 8px;
    background-color: #2764ff;
}
.step-content {
    padding: 25px;
    flex: 1;
}
.step-content h3 {
    color: #2b6fdc;
    font-weight: 800;
    font-size: 22px;
    margin-bottom: 10px;
    margin-top:-6px;
}
.step-content p {
    font-size: 14px;
    color: #444;
    margin: 0 0 15px 0;
        
}
.step-content ol {
    margin: 0 0 15px 0;
    padding-left: 20px;
    line-height: 1.7;
    font-size: 14px;
    color: #444;
}
.step-image {
    display: block;
    margin-top: 20px;
    border-radius: 0 0 12px 12px;
    object-fit: cover;
    max-width: 460px;
    width: 100%;
    height: auto;
}
.chat-btn:hover {
    background-color: #2764ff;}
.main-section {
    width: 90%;
    margin-top:-10px;
    margin: 50px auto;
    text-align: center;
    padding: 40px 20px;
    border-radius: 15px;
}
.section-header h2 {
    font-weight: 800;
    font-size: 38px;
    color: #1b3d6d;
    text-align: center;
    margin-bottom: 8px;
}
.section-header p {
    font-size: 20px;
    color: #556576;
    text-align: center;
    margin-bottom: 26px;
}
.sub-sections {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}
.sub-section {
    background-color:white;
    padding: 20px;
    border-radius: 12px;
    width: 500px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sub-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
.sub-section img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
    object-fit: cover;
}
.sub-section h3 {
    
    font-weight: 800;
    color: #233d73;
    font-size: 20px;
    margin: 8px 0 6px;
    text-align: center;
}
.sub-section p {
    color: #5b6978;
    font-size: 15px;
    text-align: center;
}
.main-btn {
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 40px;
    background: #0b7bff;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 20px;
    font-weight: 700;
    box-shadow: var(--shadow);
}
.main-btn:hover {
    background-color: #2764ff;
}
.site-footer {
    background-color:#0f172a;
    color: #fff;
    font-family: Arial, sans-serif;
    padding: 40px 20px 20px;
}
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}
.footer-col {
    flex: 1 1 220px;
    min-width: 220px;
}
.footer-col{
    font-family: "Poppins", Sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: #FFFFFF;
}
.footer-logo {
    font-size: 24px;
    color: white;
    margin-bottom: 10px;
}
.footer-desc {
    
    color: #8195AA;
    font-size: 14px;
    font-family: "Raleway", Sans-serif;
    line-height: inherit;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    color: #8195AA;
    font-size: 14px;
    font-family: "Raleway", Sans-serif;
    line-height: inherit;
    color
}  
.footer-links li {
    margin-bottom: 8px;
}   
.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 15px;
    margin-top: 30px;

    text-align: left;
    font-family: "Poppins", Sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #637588;
}
/* Responsive */
@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
