        /* General Body Styles */
        body {
            font-family: 'Inter', sans-serif;
            margin: 0;
            background-color: #e9ecef; /* Very light background for the page */
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            color: #343a40; /* Default dark text color */
        }

    /* -------- Header Base -------- */
/* ===========================
   HEADER STYLING
=========================== */
.sb-header {
    width: 100%;
    background: #f5f5f5; /* Light gray */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 1000;
}

/* Navbar container */
.sb-navbar-container {
    max-width: 1200px;
    margin: auto;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.sb-logo img {
    display: block;
    height: 45px;
}

/* ===========================
   DESKTOP NAVIGATION
=========================== */
.sb-nav-links-desktop {
    display: flex;
    align-items: center;
    gap: 25px;
}

.sb-nav-link {
    text-decoration: none;
    color: #0b3d91; /* Navy blue */
    font-weight: 500;
    transition: color 0.3s ease;
}

.sb-nav-link:hover {
    color: #ff6b00; /* Orange hover */
}

/* Call to Action Button */
.sb-cta-button {
    background-color: #ff6b00; /* Bright orange */
    color: #fff;
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 600;
    transition: 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.sb-cta-button:hover {
    background-color: #e65c00; /* Darker orange */
}
/* Mobile Menu Button */
.sb-mobile-menu-button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 2rem; /* make button clickable area big */
    color: #0b3d91;
    display: flex;
    align-items: center;
}

/* Style the SVG icons */
.sb-mobile-menu-button svg {
    width: 28px;   /* increase size */
    height: 28px;
    stroke-width: 2.5;
}

/* Hide close icon by default */
#sb-hamburger-icon-close {
    display: none;
}

/* ===========================
   MOBILE MENU TOGGLE BUTTON
=========================== */
.sb-mobile-menu-toggle-wrapper {
    display: none;
}

.sb-mobile-menu-button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.8rem;
    color: #0b3d91;
}

/* ===========================
   MOBILE MENU CONTENT
=========================== */
.sb-mobile-menu-content {
    display: none;
    flex-direction: column;
    background: #f5f5f5;
    width: auto;
    padding: 20px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: max-height 0.3s ease, opacity 0.3s ease;
    overflow: hidden;
}

.sb-mobile-menu-content a {
    margin: 10px 0;
    font-weight: 500;
    color: #0b3d91;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sb-mobile-menu-content a:hover {
    color: #ff6b00;
}

/* CTA inside mobile */
.sb-mobile-menu-content a.sb-cta-button {
    margin-top: 15px;
    text-align: center;
}

/* ===========================
   TOGGLE ACTIVE STATE
=========================== */
.sb-mobile-menu-content.active {
    display: flex;
    opacity: 1;
}

/* Hidden class for icons */
/*.hidden {
    display: none !important;
}*/

/* ===========================
   RESPONSIVE BREAKPOINTS
=========================== */
@media (max-width: 991px) {
    .sb-nav-links-desktop {
        display: none;
    }
    .sb-mobile-menu-toggle-wrapper {
        display: block;
    }
}

@media (max-width: 768px) {
    .sb-navbar-container {
        padding: 10px 15px;
    }
}

.ss-hero-banner {
    background: linear-gradient(135deg, #0b3d91, #1c75bc);
    color: #fff;
    padding: 120px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ss-hero-banner::after {
    content: '';
    background: url('images/banner-bg.png') no-repeat center/cover;
    opacity: 0.15;
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ss-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: auto;
}

.ss-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.ss-hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 35px;
    line-height: 1.6;
    color: #f0f0f0;
}

.ss-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.ss-hero-primary-button,
.ss-hero-secondary-button {
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s ease;
}

.ss-hero-primary-button {
    background-color: #ff6b00;
    color: #fff;
}

.ss-hero-primary-button:hover {
    background-color: #e65c00;
}

.ss-hero-secondary-button {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.ss-hero-secondary-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .ss-hero-title {
        font-size: 2rem;
    }

    .ss-hero-subtitle {
        font-size: 1rem;
    }

    .ss-hero-buttons {
        flex-direction: column;
    }

    .ss-hero-buttons a {
        width: auto;
        text-align: center;
    }
}
.ss-benefits-section {
    background-color: #f9fafb;
    padding: 100px 20px;
    text-align: center;
}

.ss-section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0b3d91;
    margin-bottom: 15px;
}

.ss-section-subheading {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.ss-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.ss-benefit-item {
    background-color: #fff;
    padding: 40px 25px;
    border-radius: 20px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ss-benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.ss-benefit-icon {
    width: 50px;
    height: 50px;
    color: #ff6b00;
    margin-bottom: 20px;
}

.ss-benefit-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #0b3d91;
    margin-bottom: 15px;
}

.ss-benefit-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .ss-benefits-grid {
        gap: 30px;
    }

    .ss-section-heading {
        font-size: 2rem;
    }

    .ss-section-subheading {
        font-size: 1rem;
    }
}

.ss-final-cta-section {
    background: linear-gradient(135deg, #0b3d91, #ff6b00);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    border-radius: 20px;
    margin: 60px auto;
    max-width: 1100px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.ss-final-cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.ss-final-cta-description {
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto 35px;
    line-height: 1.6;
}

.ss-final-cta-button {
    display: inline-block;
    background-color: #fff;
    color: #0b3d91;
    font-weight: 600;
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.ss-final-cta-button:hover {
    background-color: #ff6b00;
    color: #fff;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .ss-final-cta-title {
        font-size: 1.8rem;
    }
    .ss-final-cta-description {
        font-size: 1rem;
    }
    .ss-final-cta-button {
        padding: 14px 30px;
        font-size: 1rem;
    }
}
.ss-features-solutions-section {
    padding: 80px 20px;
    background-color: #f9faff;
    text-align: center;
}

.ss-features-solutions-section .ss-section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0a1f44;
    margin-bottom: 15px;
}

.ss-features-solutions-section .ss-section-subheading {
    font-size: 1.1rem;
    color: #334155;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.ss-features-solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 30px;
    justify-items: center;
}

.ss-feature-solution-item {
    background-color: #ffffff;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.ss-feature-solution-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.ss-feature-icon {
    font-size: 3rem;
    color: #ff6b00;
    margin-bottom: 20px;
}

.ss-feature-solution-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0a1f44;
    margin-bottom: 12px;
}

.ss-feature-solution-description {
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .ss-features-solutions-section {
        padding: 60px 15px;
    }
    .ss-section-heading {
        font-size: 2rem;
    }
    .ss-section-subheading {
        font-size: 1rem;
    }
}


/* Image & Info Section */
.ss-image-info-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: #f9faff;
    padding: 80px 20px;
    gap: 40px;
}

.ss-image-info-banner {
    flex: 1 1 500px;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.ss-image-info-content {
    flex: 1 1 500px;
}

.ss-image-info-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.ss-image-info-description {
    font-size: 18px;
    margin-bottom: 25px;
    color: #333;
    line-height: 1.6;
}

.ss-image-info-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.ss-image-info-list li {
    font-size: 16px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #555;
}

.ss-image-info-list li i {
    color: #28a745;
    margin-right: 12px;
    font-size: 20px;
}

.ss-final-cta-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #0073e6;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ss-final-cta-button:hover {
    background-color: #005bb5;
}

/* Responsive */
@media (max-width: 992px) {
    .ss-image-info-section {
        flex-direction: column-reverse;
        padding: 60px 20px;
    }

    .ss-image-info-banner {
        width: 100%;
        height: 300px;
    }

    .ss-image-info-content {
        width: 100%;
        text-align: center;
    }

    .ss-final-cta-button {
        margin: 20px auto 0 auto;
    }
}
.ss-faq-section {
    background-color: #0d1b2a;
    color: #fff;
    padding: 80px 20px;
    font-family: 'Inter', sans-serif;
}

.ss-section-heading {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.ss-section-subheading {
    font-size: 18px;
    text-align: center;
    margin-bottom: 50px;
    color: #fff;
}

.ss-faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.ss-faq-item {
    background-color: #1b2a42;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ss-faq-item:hover {
    background-color: #223b5d;
}

.ss-faq-question {
    padding: 20px 25px;
    font-size: 18px;
    font-weight: 600;
    position: relative;
}

.ss-faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.ss-faq-item.active .ss-faq-question::after {
    content: '-';
    transform: rotate(180deg);
}

.ss-faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    font-size: 16px;
    line-height: 1.6;
    color: #d1d9e6;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.ss-faq-item.active .ss-faq-answer {
    max-height: 500px; /* adjust depending on content */
    padding: 15px 25px 20px 25px;
}

.ss-how-it-works-section {
    background-color: #f4f8fc;
    padding: 80px 20px;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.ss-section-heading {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0a2540;
}

.ss-section-subheading {
    font-size: 18px;
    color: #4b5c6b;
    margin-bottom: 50px;
    color: #fff;
}

.ss-steps-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.ss-step-item {
    background: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    max-width: 280px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ss-step-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.ss-step-icon {
    font-size: 50px;
    margin-bottom: 20px;
    display: inline-block;
}

.ss-step-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #0a2540;
}

.ss-step-description {
    font-size: 16px;
    color: #4b5c6b;
    line-height: 1.6;
}

/* Footer Section */
.ss-footer {
    background-color: #0a2540; /* Dark Blue background */
    color: #fff;               /* White text */
    padding: 40px 20px;
    font-family: 'Inter', sans-serif;
}

.ss-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 50px;
}

.ss-footer-text {
    font-size: 14px;
    margin-bottom: 20px;
    text-align: center;
}

.ss-footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.ss-footer-links a.ss-footer-link {
    color: #ffcc00; /* Highlight color */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.ss-footer-links a.ss-footer-link:hover {
    color: #ffffff; /* Hover effect */
}

.ss-footer-links p {
    font-size: 12px;
    color: #ccc;
    max-width: 600px;
    line-height: 1.6;
    margin-top: 15px;
}

.ss-footer-links p a {
    color: #ffcc00;
    text-decoration: underline;
}

/* Responsive Footer for Mobile */
@media (max-width: 768px) {
    .ss-footer-container {
        flex-direction: column;
        align-items: center;
    }

    .ss-footer-links {
        align-items: center;
    }

    .ss-footer-text {
        font-size: 13px;
    }
}
/* Contact Section */
.contact-section {
    background-color: #f5f7fa;
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
}

.contact-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h2 {
    font-size: 32px;
    color: #0a2540;
    margin-bottom: 10px;
}

.contact-header p {
    font-size: 16px;
    color: #555;
}

.contact-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-form, .contact-info {
    flex: 1 1 45%;
    min-width: 300px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    width: 100%;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #0a2540;
    outline: none;
}

.contact-form button {
    padding: 12px;
    background-color: #0a2540;
    color: #fff;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #ffcc00;
    color: #0a2540;
}

.contact-info h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #0a2540;
}

.contact-info p {
    font-size: 14px;
    margin-bottom: 8px;
    color: #333;
}

.map-container {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-grid {
        flex-direction: column;
    }
}
