/* Custom CSS for InsureResolve */

/* Variables */
:root {
    --primary-color: #0b4372;
    /* Logo Dark Blue */
    --primary-soft: rgba(11, 67, 114, 0.1);
    --accent-color: #82b434;
    /* Logo Leaf Green */
    --secondary-color: #f8f9fa;
    --dark-color: #1a1d20;
    --font-family: 'Outfit', sans-serif;

    /* Override Bootstrap variables */
    --bs-primary: #0b4372;
    --bs-primary-rgb: 11, 67, 114;
    --bs-success: #82b434;
    --bs-success-rgb: 130, 180, 52;
}

.text-primary {
    color: var(--primary-color) !important;
}

/* Removed .bg-primary to allow Bootstrap opacity utilities */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #093459;
    border-color: #093459;
    color: white;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: #fff;
}

html,
body {
    font-family: var(--font-family);
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4a5568;
    background-color: #ffffff;
    overflow-x: clip;
}

/* Typography Enhancements */
h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
    font-family: var(--font-family);
    color: var(--dark-color);
    letter-spacing: -0.02em;
}

.fw-extrabold {
    font-weight: 800;
}

.tracking-wide {
    letter-spacing: 0.1em;
}

.lh-sm {
    line-height: 1.2 !important;
}

/* Colors & Backgrounds */
.bg-soft-primary {
    background-color: var(--primary-soft) !important;
}

.bg-soft-success {
    background-color: rgba(25, 135, 84, 0.1) !important;
}

.bg-soft-warning {
    background-color: rgba(255, 193, 7, 0.15) !important;
}

.bg-soft-danger {
    background-color: rgba(220, 53, 69, 0.1) !important;
}

.bg-soft-info {
    background-color: rgba(13, 202, 240, 0.1) !important;
}

/* Topbar */
.topbar {
    background-color: var(--primary-color);
    font-size: 0.85rem;
}

/* Navbar */
.navbar {
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-link {
    color: #4a5568 !important;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
}

.blur-effect {
    filter: blur(60px);
}

.z-n1 {
    z-index: -1;
}

.z-1 {
    z-index: 1;
}

.z-2 {
    z-index: 2;
}

/* Cards & Hover Effects */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03) !important;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important;
}

.icon-box {
    transition: transform 0.3s ease;
}

.service-card:hover .icon-box {
    transform: scale(1.1);
}

.service-link {
    transition: margin-left 0.3s ease;
}

.service-card:hover .service-link {
    margin-left: 5px;
}

/* Process Section */
.process-step {
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.border-dashed {
    border-style: dashed !important;
}

/* Buttons */
.btn {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Utilities */
.py-6 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.max-w-700 {
    max-width: 700px;
}

/* Footer */
.footer-links a {
    transition: padding-left 0.3s ease, color 0.3s ease;
}

.footer-links a:hover {
    padding-left: 5px;
    color: #fff !important;
}

.hover-primary:hover {
    background-color: var(--primary-color) !important;
    color: white !important;
}

.hover-success:hover {
    background-color: var(--accent-color) !important;
    color: white !important;
}

.hover-white:hover {
    color: white !important;
}

/* FAQ Accordion Styles */
.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, .125);
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: var(--primary-soft);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}

.accordion-item {
    transition: all 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .08) !important;
}

/* Floating Action Widget */
.floating-widget {
    transition: all 0.3s ease;
    overflow: hidden;
    animation: floating 3s ease-in-out infinite;
}

.floating-widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
    animation-play-state: paused;
}

.floating-widget .widget-icon {
    transition: transform 0.3s ease;
}

.floating-widget:hover .widget-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Card Enhancements */
.card,
.process-step {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.card:hover,
.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Keyframe Animations */
@keyframes floating {
    0% {
        transform: translate(0, 0px);
    }

    50% {
        transform: translate(0, -10px);
    }

    100% {
        transform: translate(0, 0px);
    }
}

@keyframes pulse-soft {
    0% {
        box-shadow: 0 0 0 0 rgba(11, 67, 114, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(11, 67, 114, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(11, 67, 114, 0);
    }
}

.hover-lift {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hover-lift:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Timeline Process Styles */
.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

/* The center line */
.timeline-container::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #e9ecef;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 10px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item.left {
    left: 0;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
}

/* The circles on the line */
.timeline-item::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    right: -12px;
    background-color: white;
    border: 4px solid #6f42c1;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 0 4px rgba(111, 66, 193, 0.2);
}

.timeline-item.right::after {
    left: -12px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: white;
    position: relative;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #f8f9fa;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Media query for timeline on mobile */
@media screen and (max-width: 768px) {
    .timeline-container::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
        text-align: left !important;
    }

    .timeline-item.right {
        left: 0;
    }

    .timeline-item.left::after,
    .timeline-item.right::after {
        left: 19px;
    }
}

/* Carousel Text Shadows */
.carousel-text-shadow-lg {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.carousel-text-shadow-sm {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

/* Carousel Backgrounds & Overlay */
.hero-carousel-item {
    background-size: cover;
    background-position: center;
    min-height: 75vh;
    padding-top: 80px;
    padding-bottom: 100px;
}

.slide-1-bg {
    background-image: url('../images/hero_slide_1.png');
}

.slide-2-bg {
    background-image: url('../images/hero_slide_2.png');
}

.slide-3-bg {
    background-image: url('../images/hero_slide_3.png');
}

.carousel-overlay {
    background: linear-gradient(90deg, rgba(11, 67, 114, 0.95) 0%, rgba(11, 67, 114, 0.5) 100%);
}

.service-icon-bg {
    width: 80px;
    height: 80px;
    min-width: 80px;
}

/* Extracted Inline Styles */
.brand-logo-img {
    /* max-width: 200px; width: auto; */
    height: 50px;
    width: 250px;
    object-fit: contain;
}

@media (max-width:400px) {
    .brand-logo-img {
        width: 200px !important;
    }
}

.trust-stats-container {
    margin-top: -50px;
    border-radius: 20px 20px 0 0;
    max-width: 90%;
}

.z-index-3 {
    z-index: 3;
}

.process-badge-purple {
    z-index: 3;
    background-color: #6f42c1;
}

.why-choose-svg {
    width: 50px;
    transform: translate(-10%, -60%) !important;
}

.why-choose-img {
    height: 180px;
}

.cta-support-img {
    max-width: 300px;
    height: 300px;
    object-fit: cover;
}

.abstract-shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
}

.abstract-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
}

.testimonial-card-width {
    max-width: 800px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
}

.scroll-top-btn {
    width: 45px;
    height: 45px;
}

/* Responsive Navbar Scrolling Fix */
.navbar-collapse {
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

@media (min-width: 992px) {
    .navbar-collapse {
        max-height: none;
        overflow-y: visible;
    }
}

/* Mobile Action Bar Body Padding Adjustment */
@media (max-width: 767.98px) {
    body {
        padding-bottom: 0 !important;
    }

    .footer-mobile-pad {
        padding-bottom: 90px !important;
    }
}

/* Site Preloader */
.site-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: #ffffff;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.site-preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    max-height: 80px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Dark Mode Premium Section */
.bg-dark-premium {
    background-color: #081a2e;
    /* Deep dark blue */
    background-image: radial-gradient(circle at top right, #0b4372 0%, transparent 40%),
        radial-gradient(circle at bottom left, #0b4372 0%, transparent 40%);
}

.bg-dark-premium .text-muted {
    color: #a0aec0 !important;
}

/* Glassmorphism Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-5px);
}

.glass-card h4 {
    color: white !important;
}

.glass-icon-bg {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Bento Box Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: 1.5rem;
}

.bento-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-item-wide {
    grid-column: span 2;
    grid-row: span 1;
}

.bento-item-square {
    grid-column: span 1;
    grid-row: span 1;
}

@media (max-width: 991.98px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-item-large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .bento-item-wide {
        grid-column: span 2;
    }
}

@media (max-width: 575.98px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-item-large,
    .bento-item-wide,
    .bento-item-square {
        grid-column: span 1;
        grid-row: auto;
    }
}

/* Premium UX Features */
/* 1. Glassmorphism Navbar */
.glass-navbar {
    background-color: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.glass-navbar.scrolled {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.95) !important;
}

/* 2. Glowing Buttons */
.btn-glow-success {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-glow-success:hover {
    box-shadow: 0 8px 25px rgba(130, 180, 52, 0.5) !important;
    transform: translateY(-2px);
}

.btn-glow-primary {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-glow-primary:hover {
    box-shadow: 0 8px 25px rgba(11, 67, 114, 0.4) !important;
    transform: translateY(-2px);
}

/* 3. Floating WhatsApp Widget */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1050;
    transition: all 0.3s ease;
    animation: pulse-green 2s infinite;
}

.floating-whatsapp:hover {
    color: white;
    transform: scale(1.1);
    animation-play-state: paused;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}



/* ==========================================================================
   EXTRACTED INTERNAL STYLE TAGS
   ========================================================================== */

/* Extracted from about.html */
/* Premium Enhancements */
.premium-hero-bg {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.blob-shape-1 {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1) 0%, rgba(25, 135, 84, 0.1) 100%);
    filter: blur(60px);
    border-radius: 50%;
    z-index: 0;
}

.blob-shape-2 {
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(25, 135, 84, 0.1) 0%, rgba(13, 110, 253, 0.1) 100%);
    filter: blur(50px);
    border-radius: 50%;
    z-index: 0;
}

.value-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 4px solid #0d6efd;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-card-success {
    border-bottom-color: #198754;
}

.icon-circle-gradient {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.15) 0%, rgba(25, 135, 84, 0.15) 100%);
    color: #0d6efd;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.value-card:hover .icon-circle-gradient {
    background: linear-gradient(135deg, #0d6efd 0%, #198754 100%);
    color: white !important;
    transform: scale(1.1) rotate(5deg);
}

.leader-card {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(13, 110, 253, 0.3);
}

.leader-img-wrapper {
    position: relative;
    align-self: center;
    padding: 8px;
    background: linear-gradient(135deg, #0d6efd 0%, #198754 100%);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.leader-img-wrapper img {
    margin-bottom: 0 !important;
    border: 4px solid white !important;
}

.journey-accordion {
    width: 100%;
    height: 380px;
    display: flex;
    gap: 1rem;
}

.journey-panel {
    flex: 1;
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.journey-panel:hover,
.journey-panel.active-panel {
    flex: 3;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(13, 110, 253, 0.2);
    background: #f8f9fa;
}

.journey-panel.highlight-panel {
    background: linear-gradient(135deg, #198754 0%, #20c997 100%);
    border: none;
}

.journey-panel.highlight-panel:hover,
.journey-panel.highlight-panel.active-panel {
    box-shadow: 0 20px 40px rgba(25, 135, 84, 0.3);
}

.journey-year-bg {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.08);
    transition: all 0.6s ease;
    letter-spacing: -2px;
    line-height: 1;
    z-index: 0;
}

.journey-panel:hover .journey-year-bg,
.journey-panel.active-panel .journey-year-bg {
    font-size: 8rem;
    color: rgba(13, 110, 253, 0.16);
    top: -10px;
    right: -10px;
}

.journey-panel.highlight-panel .journey-year-bg {
    color: rgba(255, 255, 255, 0.2);
}

.journey-panel.highlight-panel:hover .journey-year-bg,
.journey-panel.highlight-panel.active-panel .journey-year-bg {
    color: rgba(255, 255, 255, 0.3);
}

.journey-content {
    width: 50%;
    min-width: 250px;
    z-index: 2;
    position: relative;
}

.journey-title-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.journey-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.journey-panel:hover .journey-icon,
.journey-panel.active-panel .journey-icon {
    background: #0d6efd;
    color: white;
    transform: rotate(360deg);
}

.journey-panel.highlight-panel .journey-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.journey-panel.highlight-panel:hover .journey-icon,
.journey-panel.highlight-panel.active-panel .journey-icon {
    background: white;
    color: #198754;
}

.journey-title {
    font-weight: 700;
    margin: 0;
    font-size: 1.2rem;
    white-space: nowrap;
    transition: all 0.4s ease;
}

.journey-panel:hover .journey-title,
.journey-panel.active-panel .journey-title {
    white-space: normal;
    font-size: 1.3rem;
}

.journey-desc {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    margin-top: 0;
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
}

.journey-panel:hover .journey-desc,
.journey-panel.active-panel .journey-desc {
    opacity: 1;
    max-height: 150px;
    margin-top: 1.25rem;
}

.journey-panel.highlight-panel .journey-title {
    color: white;
}

.journey-panel.highlight-panel .journey-desc {
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 991px) {
    .journey-accordion {
        flex-direction: column;
        height: auto;
    }

    .journey-panel {
        flex: none;
        height: 110px;
        padding: 1.5rem;
        justify-content: center;
    }

    .journey-panel:hover,
    .journey-panel.active-panel {
        height: 240px;
        justify-content: flex-end;
    }

    .journey-year-bg {
        font-size: 4rem;
        top: 20px;
    }

    .journey-panel:hover .journey-year-bg,
    .journey-panel.active-panel .journey-year-bg {
        font-size: 6rem;
    }
}

.team-grid-item {
    position: relative;
    border-radius: 1.25rem;
    background: white;
    padding: 2rem 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    z-index: 1;
}

.team-grid-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.1);
    border-color: rgba(13, 110, 253, 0.2);
    z-index: 2;
}

.team-grid-item::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 1.25rem;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.2) 0%, rgba(25, 135, 84, 0.2) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-grid-item:hover::before {
    opacity: 1;
}

.team-avatar-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.25rem;
}

.team-avatar-wrapper img {
    transition: all 0.4s ease;
    width: 90px;
    height: 90px;
    object-fit: cover;
}

.team-grid-item:hover .team-avatar-wrapper img {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.team-connect-btn {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%) scale(0.5);
    opacity: 0;
    background: #0d6efd;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.4);
    z-index: 5;
}

.team-grid-item:hover .team-connect-btn {
    transform: translateX(-50%) scale(1);
    opacity: 1;
}

.partner-gradient {
    background-color: #0b4372;
    position: relative;
}

.partner-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 2px, transparent 2px);
    background-size: 30px 30px;
    opacity: 0.5;
}


/* Extracted from services.html */
.services-hero {
    background: linear-gradient(135deg, #0b4372 0%, #062b4a 100%);
    padding: 60px 0 60px;
    color: white;
    position: relative;
    overflow: hidden;
}

.services-tabs-container {
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

.nav-pills.custom-pills .nav-link {
    background: #f8f9fa;
    color: #0b4372;
    border-radius: 50px;
    padding: 12px 24px;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    margin: 0 5px 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(11, 67, 114, 0.15);
}

.nav-pills.custom-pills .nav-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(11, 67, 114, 0.15);
    color: #0b4372;
    background: white;
}

.nav-pills.custom-pills .nav-link.active {
    background: #198754 !important;
    color: white !important;
    box-shadow: 0 8px 25px rgba(25, 135, 84, 0.4);
    transform: translateY(-2px);
    border-color: #198754;
}

.service-content-card {
    background: #ffffff;
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    padding: 3rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.hero-floating-img {
    border-radius: 1.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.bento-card {
    background: #ffffff;
    border-radius: 1.2rem;
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(25, 135, 84, 0.3);
}

.form-container {
    background: linear-gradient(135deg, #fceceb 0%, #fae1df 100%);
    border-radius: 1.5rem;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.form-control,
.form-select {
    padding: 0.8rem 1.2rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 0.25rem rgba(11, 67, 114, 0.25);
    border-color: #0b4372;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(11, 67, 114, 0.05);
    color: #0b4372;
    font-weight: bold;
}

.premium-quote-box {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-left: 5px solid #0b4372;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    position: relative;
}

.premium-quote-box::before {
    content: '\F4B4';
    font-family: bootstrap-icons !important;
    font-size: 3.5rem;
    color: rgba(11, 67, 114, 0.08);
    position: absolute;
    top: 10px;
    right: 20px;
}


/* ==========================================================================
   EXTRACTED INLINE STYLES
   ========================================================================== */
.style-padding-bottom-0-important {
    padding-bottom: 0 !important;
}

.style-opacity-0-visibility-hidden {
    opacity: 0;
    visibility: hidden;
}

.style-width-2-5rem-height-2-5rem-border-width-0-2rem {
    width: 2.5rem;
    height: 2.5rem;
    border-width: 0.2rem;
}

.style-z-index-1040 {
    z-index: 1040;
}

.style-line-height-1-4-opacity-0-9 {
    line-height: 1.4;
    opacity: 0.9;
}

.style-z-index-1050 {
    z-index: 1050;
}

.style-height-12px-z-index-1 {
    height: 12px;
    z-index: -1;
}

.style-line-height-1-8 {
    line-height: 1.8;
}

.style-line-height-1-7-opacity-0-9 {
    line-height: 1.7;
    opacity: 0.9;
}

.style-transform-scale-0-9-z-index-1 {
    transform: scale(0.9);
    z-index: -1;
}

.style-max-height-450px-filter-drop-shadow-0-20px-30px-rg {
    max-height: 450px;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.1));
    animation: float 6s ease-in-out infinite;
}

.style-max-width-600px {
    max-width: 600px;
}

.style-line-height-1-6 {
    line-height: 1.6;
}

.style-color-198754 {
    color: #198754;
}

.style-width-140px-height-140px-object-fit-cover {
    width: 140px;
    height: 140px;
    object-fit: cover;
}

.style-font-size-0-75rem {
    font-size: 0.75rem;
}

.style-background-linear-gradient-135deg-198754-0-20c997 {
    background: linear-gradient(135deg, #198754 0%, #20c997 100%);
}

.style-background-color-f8f9fa {
    background-color: #f8f9fa;
}

.style-width-16px-height-16px {
    width: 16px;
    height: 16px;
}

.style-font-size-0-8rem-font-weight-500 {
    font-size: 0.8rem;
    font-weight: 500;
}

.style-font-weight-300 {
    font-weight: 300;
}

.style-width-48px-height-48px {
    width: 48px;
    height: 48px;
}

.style-filter-blur-40px-opacity-0-4 {
    filter: blur(40px);
    opacity: 0.4;
}

.style-max-height-400px-object-fit-cover {
    max-height: 400px;
    object-fit: cover;
}

.style-transform-translate-20-10-animation-float-4s-ease {
    transform: translate(20%, -10%);
    animation: float 4s ease-in-out infinite;
}

.style-font-size-0-7rem {
    font-size: 0.7rem;
}

.style-width-300px-height-300px-filter-blur-40px-transfor {
    width: 300px;
    height: 300px;
    filter: blur(40px);
    transform: translate(30%, -30%);
}

.style-width-50px-height-50px-font-size-1-5rem {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
}

.style-font-size-1-1rem-line-height-1-8 {
    font-size: 1.1rem;
    line-height: 1.8;
}

.style-font-size-1-05rem-line-height-1-8 {
    font-size: 1.05rem;
    line-height: 1.8;
}

.style-bottom-20px-right-20px-transform-rotate-3deg {
    bottom: -20px;
    right: -20px;
    transform: rotate(-3deg);
}

.style-width-35px-height-35px {
    width: 35px;
    height: 35px;
}

.style-background-color-fff8eb-height-200px-padding-20px {
    background-color: #fff8eb;
    height: 200px;
    padding: 20px;
}

.style-max-height-100-object-fit-contain {
    max-height: 100%;
    object-fit: contain;
}

.style-background-color-f8f5fc-height-200px-padding-20px {
    background-color: #f8f5fc;
    height: 200px;
    padding: 20px;
}

.style-background-color-fff5f5-height-200px-padding-20px {
    background-color: #fff5f5;
    height: 200px;
    padding: 20px;
}

.style-height-350px {
    height: 350px;
}

.style-object-fit-cover {
    object-fit: cover;
}

.style-width-60px-height-60px-border-2px-solid-white-back {
    width: 60px;
    height: 60px;
    border: 2px solid white;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(2px);
    cursor: pointer;
}

.style-border-2px-solid-1a1a1a-border-bottom-right-radius {
    border: 2px solid #1a1a1a;
    border-bottom-right-radius: 4px;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
}

.style-bottom-16px-right-20px-width-0-height-0-border-top {
    bottom: -16px;
    right: 20px;
    width: 0;
    height: 0;
    border-top: 15px solid #1a1a1a;
    border-left: 15px solid transparent;
}

.style-bottom-11px-right-22px-width-0-height-0-border-top {
    bottom: -11px;
    right: 22px;
    width: 0;
    height: 0;
    border-top: 11px solid #ffffff;
    border-left: 11px solid transparent;
    z-index: 2;
}

.style-top-25px-left-10px-color-1a1a1a {
    top: -25px;
    left: -10px;
    color: #1a1a1a;
}

.style-font-family-cursive-font-size-0-95rem-line-height {
    font-family: cursive;
    font-size: 0.95rem;
    line-height: 1.5;
}

.style-border-2px-solid-1a1a1a-border-bottom-left-radius {
    border: 2px solid #1a1a1a;
    border-bottom-left-radius: 4px;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
}

.style-bottom-16px-left-20px-width-0-height-0-border-top {
    bottom: -16px;
    left: 20px;
    width: 0;
    height: 0;
    border-top: 15px solid #1a1a1a;
    border-right: 15px solid transparent;
}

.style-bottom-11px-left-22px-width-0-height-0-border-top {
    bottom: -11px;
    left: 22px;
    width: 0;
    height: 0;
    border-top: 11px solid #ffffff;
    border-right: 11px solid transparent;
    z-index: 2;
}

.style-width-10px-height-10px {
    width: 10px;
    height: 10px;
}

.style-max-height-350px-animation-float-5s-ease-in-out-in {
    max-height: 350px;
    animation: float 5s ease-in-out infinite;
}

.style-width-55px-height-55px-min-width-55px {
    width: 55px;
    height: 55px;
    min-width: 55px;
}

.style-line-height-1-5-font-size-0-95rem {
    line-height: 1.5;
    font-size: 0.95rem;
}

.style-height-150px {
    height: 150px;
}

.style-border-0-display-block-filter-grayscale-10-contras {
    border: 0;
    display: block;
    filter: grayscale(10%) contrast(110%);
}

.w-50 {
    width: 50% !important;
}
