/* Custom CSS for AI Organizational Growth Redesign Page */

/* Enhanced hero section styling */
.hero-banner-img {
    background-attachment: fixed !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

/* Redesigned banner section */
.banner-section.second-banner {
    position: relative;
    overflow: hidden;
}

.banner-section.second-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.banner-section.second-banner .content-part {
    position: relative;
    z-index: 2;
}

/* Enhanced typography for redesign */
.text-theme-color {
    color: #2c3e50 !important;
}

/*.nirf-h {*/
/*    color: #e74c3c;*/
/*    font-weight: 700;*/
    /*text-shadow: 2px 2px 4px rgba(0,0,0,0.3);*/
/*}*/

/* Redesigned card styling */
.bg-fff {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.bg-fff:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.inner-box {
    padding: 25px;
    text-align: center;
}

.inner-box img {
    max-width: 80px;
    height: auto;
    margin-bottom: 15px;
}

/* Enhanced button styling */
.theme-btn {
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.theme-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.theme-btn:hover::before {
    left: 100%;
}

.btn-four {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
}

.btn-four:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-2px);
}

.btn-one {
    background: transparent;
    color: #2c3e50;
    border: 2px solid #2c3e50;
}

.btn-one:hover {
    background: #2c3e50;
    color: white;
}

/* Redesigned section styling */
.bg-light {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
}

/* Enhanced animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.aos-animate {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive design enhancements */
@media (max-width: 768px) {
    .hero-banner-img {
        background-attachment: scroll !important;
    }
    
    .inner-box {
        padding: 20px 15px;
    }
    
    .theme-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
}

/* Custom scrollbar for redesign */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

/* Enhanced focus states for accessibility */
.theme-btn:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Loading animation for redesign */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}


.clients-logo-list .clients-logo:nth-child(16) { /* Oracle logo */
  width: 270px;
}
.clients-logo-list .clients-logo:nth-child(19) { /* TCS logo */
  width: 270px;
}


h3.nirf-h {
    font-family: #9e9e9e !important;
        text-shadow: none;

}
