/* Custom Styles for Hire Talent Solutions - Enhanced Premium Theme */

:root {
    --primary-color: #154360; /* Deep Blue */
    --accent-color: #ffdb58; /* Mustard Gold */
    --light-gray: #f8f9fa;
    --dark-gray: #212529;
    --text-color: #5a6470;
    --primary-rgb: 21, 67, 96;
    --accent-rgb: 255, 219, 88;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: #fff;
    line-height: 1.7; /* Improved readability */
}
html { scroll-behavior: smooth; }

/* --- Global Styles & Helpers --- */
.section-padding { padding: 80px 0; }
.text-accent { color: var(--accent-color) !important; }
.btn-accent {
    background-color: var(--accent-color);
    color: var(--primary-color);
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
    display: inline-block;
    text-transform: uppercase; /* Added for more impact */
    letter-spacing: 0.5px;
}
.btn-accent:hover {
    background-color: transparent;
    color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(var(--accent-rgb), 0.3); /* Subtle shadow on hover */
}
.section-title {
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
    font-size: 2.5rem; 
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 2px;
}
.section-title.text-start::after { left: 0; transform: none; }
.section-subtitle { max-width: 700px; margin: 0 auto; font-size: 1.1rem; color: #777;}

/* --- Navbar --- */
#mainNavbar {
    transition: background-color 0.4s ease-out, padding 0.4s ease-out;
    background-color: transparent;
    padding-top: 1rem;
    padding-bottom: 1rem;
}
#mainNavbar.scrolled {
    background-color: var(--primary-color);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
.navbar-brand {
    font-size: 1.9rem;
    color: white !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}
.nav-link { 
    font-weight: 500; 
    color: rgba(255,255,255,0.8) !important;
    transition: color 0.3s ease;
}
.nav-link:hover { color: var(--accent-color) !important; }
.nav-link.active { color: var(--accent-color) !important; }

/* --- Hero Slider --- */
#hero-slider .carousel-item {
    height: 100vh;
    min-height: 700px;
    background-size: cover;
    background-position: center;
    position: relative;
}
#hero-slider .carousel-item::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(var(--primary-rgb), 0.85) 0%, rgba(var(--primary-rgb), 0.3) 100%);
}
#hero-slider .carousel-caption { 
    top: 50%; 
    transform: translateY(-50%); 
    z-index: 10;
    text-align: center;
    padding-bottom: 120px;
}
#hero-slider .carousel-caption h1 {
    font-size: 3.8rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}
#hero-slider .carousel-caption p {
    font-size: 1.35rem;
    max-width: 800px;
    margin: 0 auto 30px;
    color: rgba(255,255,255,0.9);
}
#hero-slider .carousel-control-prev, 
#hero-slider .carousel-control-next {
    width: 60px;
    height: 60px; 
    background: rgba(255, 255, 255, 0.25);
    top: 50%; 
    transform: translateY(-50%); 
    border-radius: 50%;
    opacity: 0.8;
    transition: all 0.3s ease;
}
#hero-slider .carousel-control-prev:hover, 
#hero-slider .carousel-control-next:hover {
    background: var(--accent-color);
    opacity: 1;
    box-shadow: 0 5px 15px rgba(var(--accent-rgb), 0.4);
}
#hero-slider .carousel-control-prev-icon,
#hero-slider .carousel-control-next-icon {
    width: 2rem;
    height: 2rem;
}

/* --- Enhanced About Us Section --- */
.usp-item { 
    display: flex; 
    align-items: flex-start;
    background: var(--light-gray);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.usp-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.usp-icon {
    flex-shrink: 0; 
    width: 55px;
    height: 55px; 
    background: var(--accent-color);
    color: var(--primary-color); 
    border-radius: 50%; 
    display: flex;
    align-items: center; 
    justify-content: center; 
    font-size: 1.8rem;
    margin-right: 18px;
    box-shadow: 0 3px 10px rgba(var(--accent-rgb), 0.3);
}
.usp-item h6 { 
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}
.usp-item p { font-size: 0.9rem; }

/* --- WHY CHOOSE US & Services Sections --- */
.reason-card, .service-card {
    background: #fff; 
    border-radius: 15px; 
    padding: 30px; 
    border: 1px solid #eee;
    transition: all 0.3s ease; 
    height: 100%; 
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}
.service-card { background: var(--light-gray); }

.reason-card:hover, .service-card:hover {
    transform: translateY(-10px); 
    box-shadow: 0 18px 35px rgba(0,0,0,0.12);
    border-color: var(--accent-color);
}
.service-card:hover { background: white; }

.reason-card .icon-box, .service-card .icon {
    width: 85px;
    height: 85px; 
    margin: 0 auto 25px; 
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-size: 2.8rem;
    color: var(--primary-color); 
    transition: all 0.3s ease;
}
.reason-card:hover .icon-box, .service-card:hover .icon {
    background: var(--primary-color); 
    color: white; 
    transform: scale(1.05) rotate(-5deg);
}
.service-card h5, .reason-card h5 { 
    color: var(--primary-color); 
    font-weight: 600; 
    font-size: 1.3rem;
}
.reason-card p, .service-card p {
    font-size: 1rem;
}

/* --- Industries Section --- */
.industry-card {
    background: var(--primary-color); 
    color: white; 
    padding: 20px 25px; 
    border-radius: 12px;
    height: 110px;
    display: flex; 
    align-items: center; 
    justify-content: center;
    transition: all 0.4s ease; 
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.industry-card:hover { 
    background-color: var(--accent-color); 
    color: var(--primary-color); 
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 25px rgba(var(--accent-rgb), 0.4);
}
.industry-card i {
    font-size: 2rem;
    margin-right: 1rem;
}
.industry-card h5 { 
    margin: 0;
    font-size: 1.15rem; 
    font-weight: 600; 
}


/* --- Testimonials Section --- */
#testimonials { 
    background-color: var(--primary-color); 
    position: relative;
    overflow: hidden;
}
#testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?q=80&w=2940&auto=format&fit=crop') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}
.testimonial-card { 
    background: white; 
    padding: 2.5rem;
    border-radius: 15px; 
    max-width: 800px;
    margin: 3rem auto 1rem; 
    text-align: center; 
    position: relative; 
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    z-index: 1;
}
.testimonial-card img { 
    width: 90px;
    height: 90px; 
    border-radius: 50%; 
    border: 5px solid var(--accent-color);
    margin-top: -5rem;
    margin-bottom: 1.5rem; 
    box-shadow: 0 8px 20px rgba(0,0,0,0.2); 
    object-fit: cover;
}
.testimonial-card p { 
    font-size: 1.2rem;
    font-style: italic; 
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}
.testimonial-card footer { 
    font-weight: 600; 
    color: var(--primary-color); 
    font-size: 1.1rem;
}
.testimonial-card footer span { 
    font-weight: 400; 
    color: var(--text-color); 
    display: block;
    font-size: 0.95rem;
}

/* Testimonial Carousel Controls */
#testimonialCarousel .carousel-control-prev, 
#testimonialCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    border-radius: 50%;
    opacity: 0.9;
    top: 55%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}
#testimonialCarousel .carousel-control-prev:hover, 
#testimonialCarousel .carousel-control-next:hover {
    background-color: var(--primary-color);
    opacity: 1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
#testimonialCarousel .carousel-control-prev-icon,
#testimonialCarousel .carousel-control-next-icon {
    color: var(--primary-color);
}
#testimonialCarousel .carousel-control-prev:hover .carousel-control-prev-icon,
#testimonialCarousel .carousel-control-next:hover .carousel-control-next-icon {
    color: white;
}


/* --- Our Valued Clients Section --- */
.client-logo { 
    max-width: 100%; 
    height: 70px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6; 
    transition: all 0.4s ease; 
    padding: 10px;
}
.client-logo:hover { 
    filter: grayscale(0%); 
    opacity: 1; 
    transform: scale(1.1);
}

/* --- Get In Touch Section --- */
#get-in-touch-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a5276 100%);
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}
#get-in-touch-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(var(--accent-rgb), 0.1);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transform: rotate(45deg);
    animation: blob-move 15s infinite alternate;
}
#get-in-touch-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    transform: rotate(-30deg);
    animation: blob-move 20s infinite alternate-reverse;
}
@keyframes blob-move {
    from { transform: rotate(0) scale(1) translateX(0) translateY(0); }
    to { transform: rotate(180deg) scale(1.2) translateX(20px) translateY(20px); }
}

.contact-form-wrapper { 
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}
.contact-form .form-control {
    min-height: 55px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-size: 1rem;
    padding: 10px 20px;
}
.contact-form .form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(var(--accent-rgb), 0.4);
    border-color: var(--accent-color);
}
.contact-form textarea.form-control {
    min-height: 150px;
}

.contact-info-block {
    background-color: rgba(var(--primary-rgb), 0.7);
    color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 1;
}
.contact-info-block p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    text-align: left;
    justify-content: flex-start;
}
.contact-info-block p a {
    color: #fff;
    text-decoration: none;
}
.contact-info-block p:last-child { margin-bottom: 0; }
.contact-info-block i {
    font-size: 1.5rem;
}
.map-responsive-small {
    overflow: hidden; 
    border-radius: 15px; 
    position: relative; 
    margin-top: 25px;
}

/* --- FAQ Section --- */
#faq { background-color: var(--light-gray); }
.accordion-item {
    border: 1px solid #e0e0e0;
    border-radius: 10px !important;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}
.accordion-header .accordion-button {
    background-color: white;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.15rem;
    padding: 20px 25px;
    transition: all 0.3s ease;
}
.accordion-header .accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
    box-shadow: none;
}
.accordion-header .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(var(--accent-rgb), 0.25);
    border-color: var(--accent-color);
}
.accordion-body {
    padding: 20px 25px;
    border-top: 1px solid #e0e0e0;
    background-color: #fcfcfc;
    color: #555;
    font-size: 1rem;
}

/* --- Enhanced Footer (CORRECTED) --- */
.footer {
    background-color: var(--dark-gray); 
    color: #adb5bd; 
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}
.footer a{
    color: #adb5bd;
        text-decoration: none;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1486312338219-ce68d2c6f44d?q=80&w=2940&auto=format&fit=crop') no-repeat center center/cover;
    opacity: 0.05;
    z-index: 0;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-heading { 
    color: var(--accent-color); 
    font-weight: 700; 
    font-size: 1.6rem;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.footer-links a { 
    color: #adb5bd; 
    text-decoration: none; 
    transition: all 0.3s ease; 
    padding: 5px 0;
    display: inline-block;
}
.footer-links a:hover { 
    color: white; 
    transform: translateX(8px);
}
.footer-contact li { 
    display: flex; 
    align-items: flex-start; 
    margin-bottom: 1rem; 
    font-size: 1rem;
}
.footer-contact i { 
    color: var(--accent-color); 
    margin-right: 1rem; 
    margin-top: 5px; 
    font-size: 1.2rem;
}
.social-icons a {
    display: inline-flex; 
    align-items: center; 
    justify-content: center;
    width: 45px;
    height: 45px; 
    border-radius: 50%; 
    background-color: rgba(255,255,255,0.15);
    color: white; 
    margin-right: 0.7rem; 
    transition: all 0.3s ease;
    font-size: 1.2rem;
    text-decoration: none;
}
.social-icons a:hover { 
    background-color: var(--accent-color); 
    color: var(--primary-color); 
    transform: translateY(-3px) scale(1.05);
}
.newsletter-form { 
    display: flex; 
    margin-top: 20px;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    background-color: rgba(255,255,255,0.2);
}
.newsletter-form .form-control {
    background-color: transparent; 
    border: 0; 
    color: white;
    flex-grow: 1;
    padding: 12px 20px;
}
.newsletter-form .form-control::placeholder { color: rgba(255,255,255,0.7); }
.newsletter-form .form-control:focus {
    box-shadow: none;
    color: white;
}
.newsletter-form .btn {
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 0 25px;
    border-radius: 0;
    transition: all 0.3s ease;
    border: 0;
}
.newsletter-form .btn:hover {
    background-color: #fff;
    color: var(--primary-color);
}
.footer p { font-size: 1rem; }
.footer hr { border-color: rgba(255,255,255,0.15) !important; }


/* --- Page Header (for About, Services, Contact pages) --- */
.page-header {
    padding: 160px 0 100px;
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    text-align: center;
}
.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(var(--primary-rgb), 0.75);
}
.page-header .container {
    position: relative;
    z-index: 2;
}
.page-header .page-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}
.page-header .page-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 1rem auto 0;
}

/* --- About Page: Core Values Card --- */
.value-card {
    background: #fff; 
    border-radius: 15px; 
    padding: 30px; 
    border: 1px solid #eee;
    transition: all 0.3s ease; 
    height: 100%; 
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}
.value-card:hover {
    transform: translateY(-10px); 
    box-shadow: 0 18px 35px rgba(0,0,0,0.12);
    border-color: var(--accent-color);
}
.value-card .icon-box {
    width: 85px;
    height: 85px; 
    margin: 0 auto 25px; 
    background: rgba(var(--accent-rgb), 0.2);
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-size: 2.8rem;
    color: var(--primary-color); 
    transition: all 0.3s ease;
}
.value-card:hover .icon-box {
    background: var(--accent-color); 
    color: var(--primary-color);
    transform: scale(1.05) rotate(5deg);
}
.value-card h5 {
    color: var(--primary-color); 
    font-weight: 600; 
}


/* --- About Page: Team Card --- */
.team-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}
.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
.team-card-img-wrapper {
    width: 100%;
    height: 280px;
    overflow: hidden;
}
.team-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.team-card:hover .team-card-img-wrapper img {
    transform: scale(1.1);
}
.team-card-body {
    padding: 25px;
}
.team-card-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 5px;
}
.team-card-subtitle {
    font-weight: 600;
    margin-bottom: 15px;
}
.team-card-text {
    font-size: 0.95rem;
    color: var(--text-color);
    margin-bottom: 20px;
}
.team-card-social a {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}
.team-card-social a:hover {
    color: var(--accent-color);
}

/* --- Services Page: Detailed Service Card --- */
.service-detail-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.07);
    overflow: hidden;
    margin-bottom: 2.5rem;
}
.service-detail-img {
    min-height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-detail-icon {
    width: 100px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.service-detail-body {
    padding: 40px;
}
.service-detail-body h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}
.service-features {
    list-style: none;
    padding-left: 0;
    margin-top: 1.5rem;
}
.service-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}
.service-features i {
    margin-right: 12px;
    margin-top: 5px;
}

/* --- Contact Page Specifics --- */
.contact-page-info {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.contact-page-info .text-primary-dark {
    color: var(--primary-color);
}

/* --- Why Us Page: Process Timeline --- */
.process-timeline {
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 3px;
    background-color: #ddd;
    z-index: 1;
    display: block;
}
.process-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    border: 1px solid #e9ecef;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 2;
    height: 100%;
}
.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.process-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background-color: var(--light-gray);
    border: 3px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}
.process-card:hover .process-icon {
    background-color: var(--primary-color);
    color: var(--accent-color);
    border-color: var(--accent-color);
}
.process-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    border: 3px solid #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.process-title {
    color: var(--primary-color);
    font-weight: 600;
}

/* --- Why Us Page: Key Differentiators --- */
.differentiator-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
}
.differentiator-item:last-child {
    margin-bottom: 0;
}
.differentiator-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    margin-right: 25px;
    border-radius: 15px;
    background-color: rgba(var(--primary-rgb), 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: all 0.3s ease;
}
.differentiator-item:hover .differentiator-icon {
    background-color: var(--primary-color);
    color: var(--accent-color);
    transform: rotate(-10deg);
}
.differentiator-item h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* --- Industries Page: Detailed Industry Card --- */
.industry-detail-card {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    height: 100%;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
}
.industry-detail-card:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(var(--primary-rgb), 0.2);
}
.industry-detail-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}
.industry-detail-card:hover .industry-detail-icon {
    color: var(--accent-color);
}
.industry-detail-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}
.industry-detail-card:hover .industry-detail-title {
    color: white;
}
.industry-detail-card p {
    margin-bottom: 0;
    transition: color 0.3s ease;
}
.industry-detail-card:hover p {
    color: rgba(255,255,255,0.8);
}
.text-primary-dark {
    color: var(--primary-color);
}