@font-face {
    font-family: 'rubik';
    src: url('../fonts/Rubik/static/Rubik-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-color: #FF7201;
    --primary-blue: #007bff;
    --primary-orange: #FF7201;
    --text-white: #ffffff;
    --bg-light: #f4f7fa;
    --accent-color: #35BCFF;
    --text-main: #000000;
    --bg-color: #fdf8e9;
    --card-bg: #ffffff;
    --text-main: #000000;
    --text-secondary: #757575;
    --accent-color: #f9b14d;
    --btn-bg: #000000;
    --text-muted: #939393;
    --bg-gradient: linear-gradient(135deg, #FFFFFF 0%, #F8FAFF 100%);
    --border-radius: 24px;
    --font-family: 'rubik', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

body {
    font-family: var(--font-family);
    color: var(--text-main);
    line-height: 1.5;
    min-height: 100vh;
}

/* .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
} */


.font-64 {
    font-weight: 400;
    font-size: 64px;
    line-height: 67px;
    letter-spacing: -4%;
}

.font-32 {
    font-weight: 600;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: -4%;
}

.font-24 {
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 100%;
    color: #6c6c6c;
    letter-spacing: -4%;

}

.font-16 {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -4%;
}

.font-14{
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -4%;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 9999;
    background-color: #ffffff;
    border-bottom: 1px solid #F9F9F9;
    /* box-shadow: 0px 4px 4px 0px #0000001A; */
    padding: 14px 0;
}


/* Header layout */
.nav-wrapper {
    width: 100%;
    align-items: center;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #000;
}

/* Mobile styles */
@media (max-width: 768px) {

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        display: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .desktop-auth {
        display: none;
    }

    .mobile-auth {
        display: block;
        margin-top: 10px;
    }
}

/* Desktop */
@media (min-width: 769px) {
    .mobile-auth {
        display: none;
    }
}

.navbar .container {
    max-width: 1253px;
    /* key fix */
    margin: 0 auto;
    /* centers navbar */
    padding-left: 46px;
    padding-right: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 24px;
    color: #6366F1;
}

.nav-links {
    display: flex;
    gap: 24px;
    align-items: center;

}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 16px;
    font-weight: 500;
}

.nav-item {
    position: relative;
}

.custom-dropdown {
    position: relative;
}

.custom-dropdown-menu {
    position: absolute;
    top: 140%;
    left: 0;
    background: #fff;
    min-width: 220px;
    border-radius: 12px;
    padding: 12px 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 1000;
}

.custom-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: var(--text-main);
}

.custom-dropdown-menu a:hover {
    background: #F5F7FF;
    color: #6366F1;
}

.custom-dropdown:hover .custom-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}



.btn-login {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 12px 8px 24px;
    border-radius: 30px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.arrow-circle-down {
    background: white;
    color: #FF7201;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.login-dropdown {
    position: relative;
}

.auth-buttons {
    margin-top: 0;
    display: flex;
    align-items: center;
}

.login-menu {
    position: absolute;
    top: 120%;
    right: 0;
    background: #fff;
    min-width: 220px;
    border-radius: 14px;
    padding: 10px 0;
    list-style: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 1000;
}

.login-menu li a {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    font-size: 14px;
    color: #000;
}

.login-menu li a:hover {
    background: #F5F7FF;
    color: #35BCFF;
}

/* Active state */
.login-dropdown.active .login-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/**************************************
 Hero Section 
 **************************************/
.hero {
    padding: 80px 0;
    background-image: url("../Images/nexure/thrid/Hero.jpg");
    background-size: cover;
    /* fills the section */
    background-position: center;
    /* keeps image centered */
    background-repeat: no-repeat;
    /* no tiling */
}



.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.hero-content h1 {
    font-weight: 600;
    font-style: Medium;
    font-size: 62px;
    line-height: 67px;
    letter-spacing: -1%;

}

.highlight {
    color: var(--accent-color);
}

.hero-content p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 480px;
    margin-bottom: 40px;
}

.cta-group {
    display: flex;
    gap: 16px;
}

.btn-primary {
    background: #FF7201;
    /* normal state */
    color: #fff;
    border: 1px solid #FF7201;
    padding: 16px 28px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary {
    background: #FFF;
    /* normal state */
    color: #000;
    border: 1px solid #000;
    padding: 16px 28px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* hide arrow initially */
.btn-primary .arrow-up-right {
    background: #bac;
    color: #000;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

/* hover effect */
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(39, 41, 43, 0.35);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(39, 41, 43, 0.35);
}




/* Hero Image */
.image-wrapper {
    width: 646px;
    height: 514px;
    border-radius: 24px;
    overflow: hidden;
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
}

.image-wrapper img {
    width: 646px;
    height: 514px;
    opacity: 1;

    object-fit: cover;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content p {
        margin: 0 auto 40px;
    }

    .cta-group {
        justify-content: center;
    }

    .nav-links {
        display: none;
    }
}

/**************************************
 logo-silder Section 
 **************************************/
.logo-slider-section {
    background: #ffff;
}

.logo-slider img {
    transition: 0.3s ease;
    max-height: 60px;
    margin: auto;
}

.logo-slider img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/**************************************
 Quote Section 
 **************************************/

.quote-section {
    background: url("../Images/nexure/thrid/Key Features.jpg") no-repeat center center;
    background-size: cover;
    padding: 80px 20px;
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: var(--bs-nav-pills-link-active-color);
    background-color:  transparent !important;
}

.nav-link {
    color: #000!important; 
}
.container-quote {
    width: 100%;
    max-width: 900px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.category-nav {
    background: white;
    width: 100%;
    max-width: 966px;
    height: 84px;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 100px;
    border: 1px solid #eee;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.nav-item {
    border: none;
    background: transparent;
    padding: 10px 25px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #444;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-item.active {
    background-color: var(--primary-orange);
    color: white;
}

.nav-item .icon {
    width: 22px;
    height: 22px;
    transition: 0.3s ease;
}

/* Default icon (black) */
.nav-item .icon {
    filter: none;
}

/* When active → make icon white */
.nav-item.active .icon {
    filter: brightness(0) invert(1);
}

.quote-card {
    background-color: var(--primary-blue);
    width: 100%;
    border-radius: 24px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    color: white;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.2);
}

.card-content {
    position: relative;
    z-index: 2;
}


.description {
    font-size: 16px;
    margin-bottom: 40px;
    font-weight: 600;
}

.quote-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}


/* Form Layout */
.nex-form-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
    gap: 30px;
    margin-top: 40px;
}

/* Input Container */
.nex-input-box {
    display: flex;
    flex-direction: column;
    min-width: 350px;
}

/* Label */
.nex-label {
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
}

/* Input Field */
.nex-input-field {
    height: 65px;
    padding: 0 25px;
    border-radius: 50px;
    border: none;
    background: #d9d9d9;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

/* Focus Effect */
.nex-input-field:focus {
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}




/* Button Wrapper */
.nex-btn-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

/* CTA Button */
.nex-cta-btn {
    background-color: #ff7a00;
    color: #ffffff;
    border: none;
    padding: 18px 60px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

/* Button Hover */
.nex-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    color: #ffff;
}

/* Active tab */
.nav-pills .nav-link.active {
    background-color: var(--primary-orange);
    color: #fff !important;
}




/* Decorative Patterns */
.pattern {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    pointer-events: none;
}

.pattern-top {
    top: -50px;
    right: -50px;
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.05), 0 0 0 40px rgba(255, 255, 255, 0.05), 0 0 0 60px rgba(255, 255, 255, 0.05);
}

.pattern-bottom {
    bottom: -80px;
    left: -80px;
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.05), 0 0 0 40px rgba(255, 255, 255, 0.05), 0 0 0 60px rgba(255, 255, 255, 0.05), 0 0 0 80px rgba(255, 255, 255, 0.05);
}
/* ===============================
 MOBILE RESPONSIVE FIX
=============================== */

/* Tablet */
@media (max-width: 992px) {
    .category-nav {
        width: 100%;
        gap: 15px;
        justify-content: center;
        flex-wrap: wrap;
        height: auto;
        border-radius: 20px;
    }

    .nav-item {
        padding: 8px 16px;
        font-size: 14px;
    }
}

/* Mobile */
@media (max-width: 768px) {

    .quote-section {
        padding: 50px 15px;
    }

    .category-nav {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        padding: 10px;
    }

    .nav-item {
        flex: 1 1 calc(50% - 10px); /* 2 per row */
        justify-content: center;
        padding: 10px;
        font-size: 13px;
    }

    .nav-item .icon {
        width: 18px;
        height: 18px;
    }

    .quote-card {
        padding: 30px 20px;
        border-radius: 16px;
    }

    .description {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .submit-btn {
        width: 100%;
        justify-content: center;
        padding: 12px;
        font-size: 15px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {

    .category-nav {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-item {
        width: 100%;
        justify-content: center;
        padding: 12px;
    }

    .quote-card {
        padding: 25px 15px;
    }

    .submit-btn {
        font-size: 14px;
    }

    .main-laptop {
 display: none;
}
}

/**************************************
 Why Nexsure Section 
 **************************************/

.nexsure-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.container-nexsure {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Visual Content Styles */
.visual-content {
    position: relative;
    opacity: 1;

}



.main-laptop {
    width: 100%;
    border-radius: 12px;
}


.card-left {
    top: 0;
    left: 0;
    width: 180px;
    font-size: 12px;
    line-height: 1.4;
    color: var(--text-secondary);
}

.card-right-bottom {
    bottom: 20px;
    right: -20px;
    width: 200px;
    font-size: 11px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-icon {
    position: absolute;
    top: 60px;
    right: 20px;
    background: white;
    padding: 12px;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
}

/* Text Content Styles */
.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 40px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: #F9F9F9;
    border-radius: 20px;
    transition: transform 0.2s ease;
}

.feature-item:hover {
    transform: translateX(10px);
}

.icon-box {
    width: 56px;
    height: 56px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-box svg {
    width: 28px;
    height: 28px;
}

.feature-text h3 {
    margin: 0 0 4px 0;
    font-size: 20px;
    font-weight: 600;
}

.feature-text p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 15px;
}

/* Responsive */
@media (max-width: 992px) {
    .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .visual-content {
        order: 2;
    }

    .feature-item {
        text-align: left;
    }
}

/**************************************
 Insurance Individual Section 
 **************************************/
.insurance-section-individual {
    margin: 0 auto;
    background: url("../Images/nexure/thrid/Key Features.jpg") no-repeat center center;
    background-size: cover;
    padding: 60px 80px;


}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}


.insurance-container {
    max-width: 1114px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
}

.insurance-card {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.header-text h2 {
    font-weight: 800;
    font-style: normal;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: -4%;
    margin: 0 0 8px 0;
    font-weight: 700;
}

.header-text p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

.view-more {
    background: #000;
    color: #fff;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    transition: opacity 0.2s;
}

.view-more:hover {
    opacity: 0.8;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.icon-item {
    background: #F9F9F9;
    border-radius: 16px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
    border: 1px solid #f0f0f0;
}

.icon-circle {
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* image stays original color */
.icon-circle img,
.icon-circle svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}



.grid-item h3 {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    color: var(--text-main);
}

@media (max-width: 1100px) {
    .container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-header {
        flex-direction: column;
        gap: 15px;
    }

    .insurance-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .insurance-container {
        grid-template-columns: 1fr;
    }

    .insurance-section-individual{
        padding: 0px 0px;
    }

    .container-nexsure {
    display: block;
    align-items: center;
}
}




/**************************************
 Insurance  Corporate Section 
 **************************************/


.insurance-section-corporate {
    margin: 0 auto;
    background: #FFFAEB;
    background-size: cover;
    padding: 60px 80px;
    
}

.section-header-corporate {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}


.view-more-btn {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.2s;
}

.view-more-btn:hover {
    opacity: 0.8;
}

.insurance-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.insurance-card {
    background-color: var(--card-bg);
    border-radius: 20px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px;
    box-sizing: border-box;
    transition: transform 0.2s ease;
}

.insurance-card:hover {
    transform: translateY(-5px);
}

.icon-wrapper {
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon {
    font-size: 24px;
    color: white;
}

.insurance-card h3 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    color: var(--text-main);
    word-wrap: break-word;
}

/* Responsive adjustments */
@media (max-width: 1100px) {
    .insurance-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .insurance-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-header {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .insurance-grid {
        grid-template-columns: 1fr;
    }
}

/**************************************
 Blogs   Section 
 **************************************/

.blog-section {
    padding: 60px 0;
}

.section-header-blog {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-weight: 700;
}

/* Arrows */
.custom-arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-left: 10px;
}

.custom-arrow.next {
    background: #FF7201;
    color: white;
}

/* Card */
.blog-card {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    margin: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    
    height: 100%;
    min-height: 420px; /* keeps all cards same size */
}

.blog-img {
    width: 100%;
    border-radius: 10px;
    height: 200px;
    object-fit: cover;
}


.blog-card h5 {
    min-height: 50px;
}

/* Fix description height */
.blog-card p {
    min-height: 60px;
    flex-grow: 1;
}


.badge-blog {
    background: #F8D34F33;
    color: #F9BA1D;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.read-btn {
    background: #FFA03A;
    color: white;
    border-radius: 25px;
    padding: 8px 20px;
    border: none;
}

.date {
    font-size: 14px;
    color: gray;
}


.blog-slider .slick-slide {
    height: auto;
}

.blog-slider .slick-slide > div {
    height: 100%;
    display: flex;
}


  
/**************************************
 Testimonials   Section 
 **************************************/
.review-section {
    padding: 60px 80px;
    margin: 0 auto;
    background: #F9F9F9;

}

.slider-arrows{
    margin-top: -3%;
}

.review-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    margin: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.profile-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.review-text {
    color: #555;
    font-size: 18px;
    line-height: 1.6;
}

.slider-arrows button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    margin-left: 10px;
    background: #eee;
    transition: 0.3s;
}

.slider-arrows {
    position: relative;
    z-index: 10;
    /* bring arrows above slider */
}

.review-slider {
    position: relative;
    z-index: 1;
}

.slider-arrows .next-arrow {
    background: #ff6a00;
    color: #fff;
}

.slider-arrows button:hover {
    transform: scale(1.1);
}

/**************************************
 FAQ   Section 
 **************************************/

.faq-section {
    padding: 80px 0;
}


.faq-image-wrapper img {
    width: 260px;
    margin-top: 5%;
}

/* TABS */
.faq-tabs {
    background: #ffffff;
    border-radius: 50px;
    padding: 6px;
    display: inline-flex;
    /* gap: 10px; */
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.faq-tabs  .nav-item{
    padding: 0px 0px;
}

.faq-tabs .nav-link {
    border-radius: 50px !important;
    padding: 8px 25px;
    color: #6c757d;
    font-weight: 500;
}

.faq-tabs .nav-link.active {
    background: #ff6a00 !important;
    color: #fff !important;
}

/* ACCORDION */
.accordion-item {
    border: 1px solid #e6e6e6;
    border-radius: 15px !important;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Active Accordion Border */
.accordion-item:has(.accordion-button:not(.collapsed)) {
    border: 2px solid #ff6a00;
}

.accordion-button {
    font-weight: 600;
    font-size: 18px;
    background: #fff;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: #fff;
    color: #000;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    color: #6c757d;
    font-size: 15px;
}

/* Custom Plus/Minus */



@media (max-width: 992px) {
    .faq-image-wrapper {
        width: 300px;
        height: 300px;
        margin: 40px auto;
    }
}

/**************************************
 Contact Section 
 **************************************/

.contact-section {
    background: #f8f9fb;
}

/* Image */
.contact-img img {
    border-radius: 20px;
    width: 85%;
    height: auto;
}

/* Form Card */
.contact-form-box {
    background: #fff;
    padding: 63px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Inputs */
.contact-form-box label {
    font-weight: 500;
    margin-bottom: 6px;
}

.contact-form-box .form-control {
    border-radius: 12px;
    padding: 12px;
    border: 1px solid #dcdcdc;
}

/* Button */
.send-btn {
    background-color: #ff6a00;
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
    border: none;
    transition: 0.3s;
}

.send-btn:hover {
    background-color: #e65c00;
}
/**************************************
 Footer Section 
 **************************************/

.site-footer {
    line-height: 1.6;
    color: #444444;
    background-color: #ffffff;
    border-top: 1px solid #eeeeee;
}

/* TOP SECTION */
.footer-top {
    padding: 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr; /* Left wide, company right */
    gap: 80px;
    align-items: start;
}

/* LEFT SIDE */
.footer-left {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px;
}

/* COMPANY SIDE */
.footer-company {
    text-align: left;
}

.footer-logo {
    height: 55px;
    margin-bottom: 20px;
    margin-left: -4%;
}

.powered-by {
    font-size: 12px;
    color: #444;
    margin-bottom: 5px;
}

.company-name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
}

.license-details p {
    font-size: 13px;
    margin: 3px 0;
}

/* HEADINGS */
.footer-heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
}

/* LINKS */
.footer-links,
.social-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.social-links li {
    margin-bottom: 15px;
}

.footer-links a,
.social-links a {
    text-decoration: none;
    color: #858080;
    font-size: 14px;
    transition: 0.3s;
    display: flex;
    align-items: center;
}

.footer-links a:hover,
.social-links a:hover {
    color: #000;
}

.social-links i {
    width: 20px;
    margin-right: 10px;
    font-size: 16px;
}

/* BOTTOM FOOTER */
.footer-bottom {
    background-color: #000000;
    color: #ffffff;
    padding: 25px 0;
}

.bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.legal-links {
    display: flex;
    gap: 50px;
}

.legal-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 992px) {

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-left {
        grid-template-columns: 1fr 1fr;
    }

    .footer-company {
        text-align: left;
    }
}

@media (max-width: 768px) {

    .footer-left {
        grid-template-columns: 1fr;
    }

    .bottom-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .legal-links {
        gap: 25px;
    }
}

/* responsive */

@media (max-width: 480px) {

    .image-wrapper {
        display: none;
    }

    .image-wrapper img {
        display: none;
    }

    .image-wrapper-capabilities {
        display: none;
    }

    .image-wrapper-capabilities img {
        display: none;
    }

    .card-grid-solutions {
        display: block;

    }

    .card-tall,
    .card-low,
    .card-mid {
        width: 100%;
        height: auto;
        margin-top: 5%;
    }
}

.modal-content {
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.modal-header {
    background: #f8f9fa;
    border-bottom: 1px solid #ddd;
}

.form-label {
    font-weight: 500;
    color: #444;
}

.required {
    color: red;
}

.form-control {
    border-radius: 8px;
    border: 1px solid #ccc;
    padding: 4px;
}

.form-control:focus {
    border-color: #5a67d8;
    box-shadow: 0 0 0 0.1rem rgba(90, 103, 216, 0.2);
}

.input-group-text {
    background: #eee;
    border-radius: 8px 0 0 8px;
    font-size: 0.8rem;
}

textarea.form-control {
    min-height: 50px !important;
}

#remark {
    height: 40px;
    resize: none;
}

/* Buttons */

.btn-submit,
.btn-clear {
    min-width: 120px;
}

.btn-submit {
    background: #5a67d8;
    color: white;
    border-radius: 8px;
    padding: 10px;
    border: none;
}

.btn-submit:hover {
    background: #4c51bf;
}

.btn-clear {
    background: #e2e8f0;
    border-radius: 8px;
    padding: 10px;
    border: none;
}

.btn-clear:hover {
    background: #cbd5e0;
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    margin-left: 8px;
}

@media (min-width: 576px) {
    .modal {
        --bs-modal-margin: 5.75rem;
        --bs-modal-box-shadow: var(--bs-box-shadow);
    }
}

@media (min-width: 1920px) {
 .navbar .container {
    max-width: 1328px;
    padding-left: 0px;
}

.nexsure-section {
    max-width: 1281px;
}

.insurance-container {
    max-width: 1280px;
}
}