/* Custom CSS for Accurix Advisors */
:root {
    --primary-green: #198754;
    --primary-navy: #1e3a5f;
    --light-green: #d1f2e8;
	--primary-white: #ffffff;
}

body {
    font-family: 'Work Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	color: #1e293b;
}
.fw-bold {
    font-weight: 600 !important;
}
.btn{
	font-size: 1.15rem;	
}

/* Hero Slider */
.hero-slider {
    height: 500px;
    position: relative;
}

.hero-slider .carousel-item {
    height: 500px;
}

.hero-slider .carousel-item img {
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.carousel-caption-custom {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    color: white;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.carousel-indicators .active {
    width: 32px;
    border-radius: 6px;
}

/* Header Styles */
.top-bar {
   /* background-color: #f8f9fa;*/
   background-color: var(--primary-navy);
    border-bottom: 1px solid #dee2e6;
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.top-bar a {
    color: var(--primary-white);
    text-decoration: none;
    transition: color 0.3s;
}

.top-bar a:hover {
    color: #B3B3B3;
}

.top-bar .text-muted {
    color: var(--primary-white) !important;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-green), #20c997);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
}

.navbar-nav .nav-link {
    position: relative;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-green) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: var(--primary-green);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s, box-shadow 0.3s;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
}
/*  */
.text-secondary-custom {
    color: var(--primary-green) !important;
}
/* Icon Styles */
.icon-box {
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.icon-circle {
    box-shadow: 0 4px 15px rgba(25, 135, 84, 0.3);
}

/* Industry Section */
.industry-item {
    background-color: #f8f9fa;
    cursor: pointer;
    transition: all 0.3s;
}
.industry-item h5 {
    font-size: 1.0rem;
}

.industry-item:hover,
.industry-item.active {
    background-color: var(--primary-green);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(25, 135, 84, 0.3);
}

.industry-image-container img {
    transition: opacity 0.5s;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px #0000001a;
}

/* Page Banner */
.border-green {
    
    border-color: var(--primary-green) !important;
}
.border-blue {
    
    border-color: var(--primary-navy) !important;
}
.card{
	border-radius: 0.75rem;
	
}
.card-body, .border-success, .border-primary{
transition: all .3s ease;	
}
.border-success:hover, .border-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px #0000001a;
}
.card-body:hover{
	box-shadow: 0 20px 25px -5px #0000001a;
}

.icon-box-secondary {
    background-color: #10b9811a;
    color: var(--primary-green);
}
.icon-box-accent {
    background-color: #1e3a5f24;
    color: var(--primary-navy);
}
.icon-box {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.text-primary {
    
    color: var(--primary-navy) !important;
}
.btn-primary-navy{
	color: #ffffff;
	background-color: #1e3a5f;
}
.btn-primary-navy:hover{
	color: #ffffff;
	background-color: #1d375b;
}
.page-banner {
    height: 250px;
    position: relative;
    background-size: cover;
    background-position: center;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(30,58,95,0.9) 0%, rgba(30,58,95,0.6) 100%);
}

.page-banner-content {
    position: relative;
    z-index: 10;
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Tables */
.table th{
	text-transform: uppercase;
	background-color: var(--primary-navy);
	color: #ffffff;
}
.table-custom {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.table-custom thead {
    background: linear-gradient(135deg, var(--primary-green), #20c997);
    color: white;
}

.table-custom tbody tr:hover {
    background-color: #f8f9fa;
}

/* Footer */
footer {
    background-color: var(--primary-navy);
    color: #adb5bd;
}

footer a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--primary-green);
}

/* Contact Form */
.form-control:focus,
.form-select:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

/* Google Maps */
#map {
    height: 450px;
    border-radius: 8px;
}

/* ===============================
   FAQ ACCORDION – MODERN UI
   =============================== */

/* Width control */
.faq-wrapper {
    width: 60%;
}

/* Mobile width */
@media (max-width: 768px) {
    .faq-wrapper {
        width: 100%;
    }
}

/* Accordion item */
.accordion-item {
    border: none;
    margin-bottom: 12px;
}

/* Button (heading) */
.accordion-button {
	font-size: 1.15rem; /* desktop */
    font-weight: 700;
    padding: 1.25rem 1rem;
    border-radius: 8px;
    box-shadow: none;
}

/* Remove default Bootstrap arrow */
.accordion-button::after {
    display: none;
}

/* Plus icon */
.accordion-button::before {
    content: "+";
    font-size: 22px;
    font-weight: 600;
    margin-right: 12px;
    transition: transform 0.3s ease;
}

/* Minus icon when open */
.accordion-button:not(.collapsed)::before {
    content: "–";
}

/* Smooth animation */
.accordion-collapse {
    transition: height 0.35s ease;
}

/* Body spacing */
.accordion-body {
    padding: 1rem 1.25rem 1.25rem;
    line-height: 1.6;
}

/* Mobile spacing */
@media (max-width: 768px) {
    .accordion-button {
        padding: 1rem;
		font-size: 1.05rem;
    }

    .accordion-body {
        padding: 0.75rem 1rem 1rem;
    }
}



/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-slider,
    .hero-slider .carousel-item {
        height: 400px;
    }
    
    .page-banner {
        height: 200px;
    }
    
    .display-4,
    .display-5,
    .display-6 {
        font-size: 2rem;
    }
}

/* Banner Overlay */
/* ===============================
   HERO BANNER – FINAL STABLE CSS
   =============================== */

/* Banner height */
.hero-slider .carousel-item {
    position: relative;
    height: 70vh;
    min-height: 450px;
}

/* Mobile height */
@media (max-width: 768px) {
    .hero-slider .carousel-item {
        height: 45vh;
        min-height: 360px;
    }
}

/* Banner image */
.hero-slider .carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* Gradient navy overlay */
.hero-slider .banner-overlay {
    position: absolute;
    inset: 0;
background: linear-gradient(to right, #1e3a5fd9, #1e3a5f99);
    z-index: 1;
    pointer-events: none;
}

/* Banner text */
.carousel-caption-custom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #fff;
    text-align: center;
    width: 100%;
    max-width: 900px;
    padding: 0 1rem;
}

/* Mobile text */
@media (max-width: 768px) {
    .carousel-caption-custom h1 {
        font-size: 1.4rem;
        line-height: 1.3;
    }

    .carousel-caption-custom p {
        font-size: 0.95rem;
    }
}

/* Carousel arrows */
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    /*width: 50px;*/
    z-index: 3;
}

/* Arrow icons */
.hero-slider .carousel-control-prev-icon,
.hero-slider .carousel-control-next-icon {
    width: 44px;
    height: 44px;
    background-size: 60% 60%;
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
}

/* Mobile arrows */
@media (max-width: 768px) {
    .hero-slider .carousel-control-prev,
    .hero-slider .carousel-control-next {
        width: 36px;
    }

    .hero-slider .carousel-control-prev-icon,
    .hero-slider .carousel-control-next-icon {
        width: 30px;
        height: 30px;
        background-size: 55% 55%;
    }
}
