body {
    font-family: sans-serif;
    background-color: #f8f9fc;
}
/* nav bar */
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: #1a53ff;
}

#ImgS9D1 {
    width: 420px;
}

.navbar-brand span {
    color: #000;
    font-weight: normal;
}

.btn-quote {
    background-color: #7ac943;
    color: white;
    font-weight: 600;
    padding: 9px 20px;
}

.btn-quote:hover {
    background-color: #468820;
    color: white;
}

.navbar-nav .nav-link {
    position: relative;
    font-weight: 500;
    transition: color 0.3s ease;
    text-decoration: none;
    border-bottom: none;
}

/* Remove default dropdown arrow */
.navbar .dropdown-toggle::after {
    display: none !important;
}

/* Hover underline effect */
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: #7ac943; /* green underline */
    transition: width 0.3s ease;
}
.header-svg svg,
    .new-svg-btn svg{
    width:14px;
}
.lg-min-max{
    max-width:420px;
}
.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Smooth dropdown hover effect */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

/* Optional: Style dropdown items */
.dropdown-menu {
    border-radius: 0.5rem;
    box-shadow: none;
    border: none;
    padding: 0.5rem 0;
}

.dropdown-item {
    padding: 0.5rem 1.5rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-item:hover {
    background-color: #7ac943;
    color: white;
}
Remove Bootstrap default black arrow
.navbar .dropdown-toggle::after {
    display: none !important;
}

/* Optional: Rotate arrow icon on hover (smooth transition) */
.arrow-icon {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

/* Rotate when parent dropdown is hovered */
.nav-item.dropdown:hover .arrow-icon {
    transform: rotate(180deg);
}



/* hero-section */
.hero-section {
    position: relative;
    margin-top: 40px;
    min-height: 90vh;
    background: url('img/bg-img.jpg') center center/cover no-repeat;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* backdrop-filter: blur(3px); */
    background-color: rgba(255, 255, 255, 0.719);
    z-index: 0;
}
.hero-title{
    font-weight: 600;
}
.hero-title span{
    color: #2163e8;
}
.hero-section .container {
    position: relative;
    z-index: 2;
}

.card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* services-section */
.services-section {
    background-color: #f8f9fc;
}

.service-card {
    background-color: #fff;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.icon-box {
    font-size: 1.5rem;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-light-green {
    background-color: #e6f9e6;
    color: #28a745;
}

.bg-light-blue {
    background-color: #e6f3ff;
    color: #007bff;
}

.bg-light-red {
    background-color: #ffe6e6;
    color: #dc3545;
}

.bg-light-purple {
    background-color: #f3e6ff;
    color: #6f42c1;
}

.bg-light-teal {
    background-color: #e6ffff;
    color: #17a2b8;
}

.bg-light-orange {
    background-color: #fff2e6;
    color: #fd7e14;
}

.bg-light-indigo {
    background-color: #e6e6ff;
    color: #6610f2;
}

.learn-more {
    color: #28a745;
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
}

/* why-choose */
.feature-box {
    /* background-color: #f8fbff; */
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}


/* trusted by */
.trusted-section .icon-box {
    width: 60px;
    height: 60px;
    background-color: #f0f2f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.text-purple{
    color:#a12bd4 !important;
}

/* how it work */

.how-it-works {
    background-color: #f9fbfc;
    padding: 60px 20px;
    text-align: center;
}

.how-it-works-heading h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.how-it-works-heading p {
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 16px;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.step-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    width: 260px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-card .icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 15px;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-card h6 {
    color: #64748b;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 5px;
}

.step-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 14px;
    color: #475569;
}

/* instant quote */
.quote-section {
    background-color: #eaf3ff;
    /* light blue background */
    padding: 80px 0;
}

.quote-section h2 {
    color: #0f172a;
}

.quote-card {
    border-radius: 20px;
    background-color: #fff;
}

.btn-outline-secondary {
    font-weight: 500;
    padding: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-select {
    border-radius: 8px;
    padding: 10px;
}

.btn-success {
    background-color: #4CAF50;
    border: none;
    border-radius: 8px;
    font-size: 16px;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background-color: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.custom-list{
    line-height: 2.0rem;
    padding-top: 22px;
    padding-left: 14px;
}

/* testimonial */
.testimonial-section {
    background-color: #eaf3ff;
    padding: 80px 0;
    position: relative;
}

.testimonial-box {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.testimonial-box p {
    font-size: 16px;
    color: #333;
}

.stars {
    font-size: 18px;
    color: #ffc107;
}

.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
    pointer-events: none;
}

.owl-nav button {
    background-color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-size: 20px;
    line-height: 1;
    pointer-events: auto;
    color: #333;
    border: none;
}

.owl-dots {
    margin-top: 20px;
}

.owl-dot span {
    width: 10px;
    height: 10px;
    background: #ccc;
    display: block;
    border-radius: 50%;
    margin: 5px;
}

.owl-dot.active span {
    background: #4CAF50 !important;
}

.testimonial-avatar {
    width: 48px !important;
    height: 48px;
    border-radius: 100%;
    object-fit: cover;
}

.owl-theme .owl-nav [class*=owl-] {
    color: #000 !important;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #fff !important;
    display: inline-block;
    cursor: pointer;
    border-radius: 50%;
}

/* sequrity */
.security-section {
    background-color: #ffffff;
}

.security-card {
    background-color: #f9f9f9;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.security-card:hover {
    background-color: #f1f5f9;
}

.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #111;
}

/* Custom color backgrounds */
.bg-blue {
    background-color: #e0edff;
    color: #2563eb;
}

.bg-green {
    background-color: #d1fae5;
    color: #10b981;
}

.bg-purple {
    background-color: #ede9fe;
    color: #7c3aed;
}

.bg-orange {
    background-color: #fff7ed;
    color: #f97316;
}

.bg-pink {
    background-color: #fde2e4;
    color: #ec4899;
}

.bg-teal {
    background-color: #d1f1f1;
    color: #0d9488;
}


/* Aditional Sequrity */
.security-extra-section {
    background-color: #ffffff;
}

.security-extra-card {
    background-color: #f8f9fc;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* trusted section */

.trusted-section {
    background-color: #fff;
}

.partner-logo img {
    max-height: 40px;
    object-fit: contain;
    width: 100%;
}

.cert-card {
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.icon-badge {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #f9fbfd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #007bff;
    margin-inline: auto;
}

/* .financial-section */
.financial-section {
    background-color: #f9fbfd;
}

.financial-card {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    max-width: 900px;
}

.financial-icon {
    background-color: #d1fae5;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #10b981;
}
.font-size{
    font-size: larger;
}

/* faq */
.faq-section {
    background-color: #fff;
}

.accordion-button {
    border-radius: 8px !important;
    font-weight: 500;
}

.accordion-item {
    border: none;
    border-radius: 8px;
    background-color: #f9fafb;
}

.accordion-button::after {
    font-size: 16px;
    color: #666;
}


.modern-btn {
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    /* border-radius: 50px; */
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.25);
    transition: all 0.3s ease;
}

.modern-btn:hover {
    background-color: #0056d2;
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(0, 123, 255, 0.35);
}

/* Latest New & Update */

.badge-color{
    background-color: #f7f7f7;
    color: #007bff;
}
.text-link{
    text-decoration: none;
}
/* cta section */
/* CTA Section Styling */
.cta-section {
    background-color:#085c99;
}

.btn-white-custom {
    background-color: #fff;
    color: #0056b3;
    border: none;
    padding: 0.6rem 1.5rem;
    /* border-radius: 50px; */
    font-weight: 500;
    transition: 0.3s ease-in-out;
    align-self: center;
}

.btn-white-custom:hover {
    background-color: #e6e6e6;
    transform: scale(1.05);
}

.btn-outline-white-custom {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 0.6rem 1.5rem;
    /* border-radius: 50px; */
    font-weight: 500;
    transition: 0.3s ease-in-out;
}

.btn-outline-white-custom:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

/* footer section */
.footer-section {
    background-color: #0b1120;
    color: #ccc;
}

.footer-logo-img {
    max-width: 160px;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
}

.footer-heading {
    color: #fff;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-links li i {
    color: #4ea3ff;
}

.social-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    background-color: #085c99;
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-btn:hover {
    background-color: #4ea3ff;
    color: #0b1120;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
}

.footer-bottom-links a {
    color: #bbb;
    text-decoration: none;
    margin-left: 10px;
    transition: color 0.3s;
}
.social-btn svg {
    width: 14px;
}

.footer-bottom-links a:hover {
    color: #fff;
}

@media(max-width:991px){
    .lg-min-max{
        max-width:100%;
    }
}

.mobile-nav-btn{
    padding-bottom: 5px;
    justify-content: space-between;
}

@media(min-width:991px){
    .mobile-nav-btn{
        display: none  !important;
    } 
}

@media(max-width:768px){
    .lg-nav-btn{
        display: none !important;   
    }
}

.mobile-btn-quote{
    padding:7px 45px !important; 
}

.mobile-btn-login{
    padding:9px 20px !important; 
    border: 1px solid;
    border-radius: 5px;
    background: #0661a8;
    font-weight: 600;
}

.mobile-btn-login:hover{
    background: #054372;
}
