/* Industry Grid Page Styles */

/* Hero Section with Animation Effect */
.hero-industry-page {
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    background: radial-gradient(circle at top, rgba(0, 242, 255, 0.1), transparent 70%);
    overflow: hidden;
}

.hero-industry-page::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(transparent, rgba(112, 0, 255, 0.05));
    animation: rotateBg 20s linear infinite;
    z-index: -1;
}

@keyframes rotateBg {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hero-industry-page h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #aaa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-industry-page p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Grid Layout */
.industry-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    padding-bottom: 80px;
}

/* Card Styles */
.ind-page-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
}

.ind-page-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 242, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.ind-img-thumb {
    height: 220px;
    width: 100%;
    background-color: #1a1a1a;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.5s ease;
}

.ind-page-card:hover .ind-img-thumb {
    transform: scale(1.05);
}

.ind-img-thumb::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), transparent);
}

.ind-card-body {
    padding: 30px;
    position: relative;
    z-index: 2;
    margin-top: -60px;
    /* Overlap image */
}

.ind-card-body h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.ind-card-body p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ind-btn {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition);
}

.ind-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.ind-btn:hover {
    color: #fff;
}

.ind-btn:hover i {
    transform: translateX(5px);
}

/* Sub-page Styles */
.sub-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), #050505;
    position: relative;
    padding-top: 100px;
}

.sub-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--bg-color), transparent);
}

.sub-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff, var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sub-content {
    padding: 60px 0 100px;
}

.agent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.agent-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.agent-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(112, 0, 255, 0.15);
}

.agent-card i {
    font-size: 3rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.agent-card h4 {
    color: var(--accent-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.agent-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Breadcrumb */
.breadcrumb {
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb span {
    color: var(--primary-color);
    font-weight: 500;
}

.breadcrumb i {
    margin: 0 10px;
    color: var (--text-muted);
    font-size: 0.7rem;
    opacity: 0.5;
}

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

    .hero-industry-page h1,
    .sub-hero h1 {
        font-size: 2.5rem;
    }

    .ind-img-thumb {
        height: 180px;
    }
}