/* ==========================================================================
   AGENTIC AI DIGITAL MARKETING SPECIFIC STYLES
   ========================================================================== */
/* Alert Notification/Success Box */
.contact-alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: fadeIn 0.4s ease;
}

.contact-alert.success {
    background-color: #d1e7dd;
    color: #0f5132;
    border: 1px solid #badbcc;
}

.contact-alert.error {
    background-color: #f8d7da;
    color: #842029;
    border: 1px solid #f5c2c7;
}

/* --- 1. HERO SECTION --- */
.agentic-hero {
    background: var(--gradient-premium-dark);
    padding: 160px 24px 100px;
    position: relative;
    overflow: hidden;
}

/* Glowing backdrops for depth */
.agentic-hero .glow-blob-hero {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(231, 24, 27, 0.15) 0%, transparent 70%);
    top: -10%;
    right: -5%;
    border-radius: 50%;
    z-index: 1;
}

.agentic-hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero-content-center {
    color: var(--color-white);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content-center .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content-center .badge-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981; /* emerald green */
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: badge-pulse-animation 2s infinite;
}

.hero-content-center .hero-buttons {
    justify-content: center;
}

.hero-content-left {
    color: var(--color-white);
}

.hero-content-left .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content-left .badge-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981; /* emerald green */
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: badge-pulse-animation 2s infinite;
}

@keyframes badge-pulse-animation {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--color-white);
}

.hero-title .highlight {
    color: var(--color-primary);
    background: linear-gradient(to right, #ff4d4f, #e7181b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.1rem;
    line-height: 1.65;
    color: #cbd5e1;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 14px 38px;
    border-radius: 60px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(231, 24, 27, 0.3);
}

/* Right Image */
.hero-image-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.hero-image-right img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.5s ease;
}

.hero-image-right:hover img {
    transform: translateY(-5px);
}

/* Floating Enquire Badge */
.float-enquire {
    position: fixed;
    right: 0;
    top: 40%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: right bottom;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 14px 28px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 8px 8px 0 0;
    z-index: 999;
    box-shadow: -4px 0 20px rgba(231, 24, 27, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.float-enquire:hover {
    background: var(--color-primary-hover);
    padding-bottom: 34px;
}

.float-enquire i {
    margin-right: 8px;
}

/* --- 2. SERVICES GRID SECTION --- */
.services-grid-section {
    padding: 100px 24px;
    background: #f8fafc;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

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

.badge-red {
    display: inline-block;
    color: var(--color-primary);
    background: rgba(231, 24, 27, 0.05);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}

.section-line {
    width: 60px;
    height: 4px;
    background: var(--color-primary);
    margin: 20px auto 0;
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.07);
    border-color: rgba(231, 24, 27, 0.15);
}

.service-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f172a;
    padding-bottom: 12px;
    margin-bottom: 18px;
    border-bottom: 2px solid #f1f5f9;
    position: relative;
}

.service-card h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 40px;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.service-card:hover h3::after {
    width: 80px;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #475569;
}

.service-card p strong {
    color: #0f172a;
    font-weight: 600;
}

/* --- 3. CONVERSIONS CTA BANNER --- */
.conversions-banner-section {
    padding: 60px 24px;
    background: var(--color-white);
}

.conversions-banner {
    background: var(--gradient-premium-dark);
    border-radius: 24px;
    padding: 50px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.conversions-banner::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(231, 24, 27, 0.08) 0%, transparent 70%);
    bottom: -50px;
    right: -50px;
    border-radius: 50%;
    z-index: 1;
}

.conversions-left {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
    position: relative;
    z-index: 2;
}

.conversions-avatar-wrap {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
    flex-shrink: 0;
}

.conversions-avatar-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.conversions-text {
    color: var(--color-white);
}

.conversions-text h3 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 8px;
}

.conversions-text p {
    font-size: 1.05rem;
    color: #cbd5e1;
    line-height: 1.5;
}

.conversions-banner .btn-primary {
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    background: var(--color-white);
    color: var(--color-primary);
}

.conversions-banner .btn-primary:hover {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

/* --- 4. AI MARKETING PROCESS SECTION --- */
.process-section {
    padding: 100px 24px;
    background: var(--color-white);
}

.process-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: start;
}

.process-left-content h2 {
    font-size: 2.6rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 25px;
}

.process-left-content h2 span {
    color: var(--color-primary);
}

.process-left-content p {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #475569;
    margin-bottom: 40px;
}

.process-left-content p strong {
    color: #0f172a;
}

.process-img-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.process-img-wrap img {
    width: 100%;
    max-width: 520px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* Timeline Cards on the Right */
.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.timeline-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 25px 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.01);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-card:hover {
    background: var(--color-white);
    border-color: rgba(231, 24, 27, 0.15);
    box-shadow: 0 15px 30px rgba(231, 24, 27, 0.05);
    transform: translateY(-3px);
}

.timeline-card h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.timeline-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #475569;
}

/* --- 5. HOW AGENTIC AI TRANSFORMS SECTION --- */
.transforms-section {
    padding: 100px 24px;
    background: #f8fafc;
}

.transforms-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.transforms-left h2 {
    font-size: 2.6rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 25px;
}

.transforms-left h2 span {
    color: var(--color-primary);
}

.transforms-text-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.transforms-text-group p {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #475569;
}

.transforms-text-group p strong {
    color: #0f172a;
}

.transforms-right img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

/* --- 6. NEW SECTION 1: AI AGENT CAPABILITY DASHBOARD (Unique Design) --- */
.capabilities-section {
    padding: 100px 24px;
    background: var(--color-white);
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.capability-card {
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 35px;
    background: #f8fafc;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.capability-card:hover {
    transform: translateY(-6px);
    background: var(--color-white);
    border-color: rgba(231, 24, 27, 0.15);
    box-shadow: 0 20px 40px rgba(231, 24, 27, 0.06);
}

.cap-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.cap-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: rgba(231, 24, 27, 0.05);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.capability-card h4 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
}

.capability-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #475569;
    margin-bottom: 20px;
}

/* Progress bar styles */
.progress-container {
    width: 100%;
}

.progress-label-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 8px;
}

.progress-bar-bg {
    width: 100%;
    height: 6px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: var(--color-primary);
    border-radius: 4px;
    transition: width 1s ease-out;
}

/* --- 7. NEW SECTION 2: INTERACTIVE AI SAVINGS CALCULATOR (Unique Design) --- */
.savings-section {
    padding: 100px 24px;
    background: #f8fafc;
}

.savings-card {
    background: var(--color-white);
    border: 1px solid #e2e8f0;
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    max-width: 1100px;
    margin: 50px auto 0;
    padding: 50px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    position: relative;
    overflow: hidden;
}

.calc-left h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 30px;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 15px;
}

.slider-group {
    margin-bottom: 30px;
}

.slider-label-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    color: #334155;
}

.slider-val {
    color: var(--color-primary);
    font-size: 1.1rem;
}

.calc-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: #e2e8f0;
    outline: none;
    margin: 0;
    cursor: pointer;
}

.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--color-primary);
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(231, 24, 27, 0.3);
    transition: transform 0.1s ease;
}

.calc-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

/* Savings result box styling */
.calc-right {
    background: var(--gradient-premium-dark);
    border-radius: 20px;
    padding: 40px;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    position: relative;
}

.calc-right::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(231, 24, 27, 0.1) 0%, transparent 70%);
    bottom: -30px;
    right: -30px;
    border-radius: 50%;
}

.result-box {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
}

.result-box:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.result-label {
    font-size: 0.9rem;
    color: #cbd5e1;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.result-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-white);
}

.result-number span {
    color: var(--color-primary);
}

/* --- 8. INDUSTRIES WE SERVE SECTION --- */
.industries-serve-section {
    padding: 100px 24px;
    background: var(--color-white);
    text-align: center;
}

.industries-desc {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #475569;
}

.industries-pill-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.industry-pill {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px 20px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.01);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.industry-pill:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(231, 24, 27, 0.08);
    border-color: rgba(231, 24, 27, 0.2);
    background: #fffcfc;
}




/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

@media (max-width: 1200px) {
    .agentic-hero .container {
        gap: 40px;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .process-grid {
        gap: 40px;
    }
    .process-left-content h2 {
        font-size: 2.2rem;
    }
    .transforms-grid {
        gap: 40px;
    }
    .transforms-left h2 {
        font-size: 2.2rem;
    }
    .faq-grid {
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .industries-pill-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .process-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    .process-img-wrap img {
        max-width: 440px;
    }
    .transforms-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    .transforms-right img {
        max-width: 440px;
    }
}

@media (max-width: 991px) {
    .agentic-hero {
        padding: 120px 20px 80px;
    }
    .agentic-hero .container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    .hero-content-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-image-right img {
        max-width: 440px;
    }
    .services-grid-section {
        padding: 80px 20px;
    }
    .section-title {
        font-size: 2.1rem;
    }
    .conversions-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px;
        gap: 30px;
    }
    .conversions-left {
        flex-direction: column;
        gap: 20px;
    }
    .process-section {
        padding: 80px 20px;
    }
    .transforms-section {
        padding: 80px 20px;
    }
    .capabilities-section {
        padding: 80px 20px;
    }
    .savings-section {
        padding: 80px 20px;
    }
    .savings-card {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 40px;
    }
    .industries-serve-section {
        padding: 80px 20px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.3rem;
    }
    .hero-desc {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .industries-pill-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .conversions-text h3 {
        font-size: 1.6rem;
    }
    .conversions-text p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .agentic-hero {
        padding: 100px 16px 60px;
    }
    .hero-title {
        font-size: 1.85rem;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    .btn-primary {
        width: 100%;
        justify-content: center;
    }
    .services-grid-section {
        padding: 60px 16px;
    }
    .section-title {
        font-size: 1.65rem;
    }
    .service-card {
        padding: 30px 20px;
    }
    .service-card h3 {
        font-size: 1.2rem;
    }
    .conversions-banner {
        padding: 30px 20px;
        border-radius: 16px;
    }
    .conversions-avatar-wrap {
        width: 75px;
        height: 75px;
    }
    .conversions-text h3 {
        font-size: 1.35rem;
    }
    .process-section {
        padding: 60px 16px;
    }
    .timeline-card {
        padding: 20px;
        border-radius: 16px;
    }
    .timeline-card h4 {
        font-size: 1.1rem;
    }
    .transforms-section {
        padding: 60px 16px;
    }
    .capabilities-section {
        padding: 60px 16px;
    }
    .capability-card {
        padding: 25px;
        border-radius: 20px;
    }
    .capability-card h4 {
        font-size: 1.1rem;
    }
    .savings-section {
        padding: 60px 16px;
    }
    .savings-card {
        padding: 30px 20px;
        border-radius: 16px;
    }
    .calc-left h3 {
        font-size: 1.35rem;
    }
    .calc-right {
        padding: 30px 20px;
    }
    .result-number {
        font-size: 1.7rem;
    }
    .industries-serve-section {
        padding: 60px 16px;
    }
    .industries-pill-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .industry-pill {
        padding: 18px 15px;
        font-size: 1.05rem;
        border-radius: 12px;
    }
}

/* ==========================================================================
   REDESIGNED INDUSTRIES SECTION
   ========================================================================== */
.industries-section {
    padding: 100px 24px;
    background: var(--color-white);
}

.industries-subtitle {
    max-width: 650px;
    margin: 15px auto 50px;
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.6;
}

.sector-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.sector-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 20px !important;
    padding: 40px 30px !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    position: relative !important;
    overflow: hidden !important;
    min-height: auto !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.01) !important;
}

.sector-card::before,
.sector-card::after {
    display: none !important;
    content: none !important;
}

.sector-card:hover {
    transform: translateY(-8px) !important;
    border-color: rgba(231, 24, 27, 0.15) !important;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06) !important;
    background: #ffffff !important;
}

.ind-icon-wrap {
    position: relative !important;
    z-index: 3 !important;
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: rgba(231, 24, 27, 0.05);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.sector-card:hover .ind-icon-wrap {
    background: var(--color-primary);
    color: var(--color-white);
}

.sector-card h3 {
    position: relative !important;
    z-index: 3 !important;
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    margin-bottom: 12px !important;
}

.sector-card p {
    position: relative !important;
    z-index: 3 !important;
    color: #475569 !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
}

/* ==========================================================================
   RESPONSIVE OVERRIDES FOR REDESIGNED INDUSTRIES
   ========================================================================== */
@media (max-width: 1024px) {
    .sector-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sector-card-grid {
        grid-template-columns: 1fr;
    }
    .industries-section {
        padding: 80px 20px;
    }
}

@media (max-width: 480px) {
    .industries-section {
        padding: 60px 16px;
    }
    .sector-card {
        padding: 30px 20px !important;
    }
}
