/* Client Page Specific Styles */

/* Active Navigation Link */
.nav-menu a.active {
    color: #ff6b35;
    font-weight: 600;
}

/* Client Hero Section */
.client-hero-section {
    background: linear-gradient(135deg, #e8d5f2 0%, #d4c5e8 50%, #f5e6d3 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0;
    text-align: center;
}

.client-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.client-hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 28px;
    font-family: 'Poppins', sans-serif;
}

.client-hero-highlight {
    color: #ff6b35;
    font-weight: 800;
    display: block;
}

.client-hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.btn-inquire {
    background-color: #ff6b35;
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 30px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.btn-inquire:hover {
    background-color: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.35);
}

.btn-inquire svg {
    transition: transform 0.3s ease;
}

.btn-inquire:hover svg {
    transform: translateX(5px);
}

/* Industries Section */
.industries-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.industries-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.industries-section .container {
    position: relative;
    z-index: 1;
}

.industry-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.industry-tabs-row2 {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 70px;
    flex-wrap: wrap;
}

.industry-tab {
    padding: 14px 32px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.industry-tab::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.industry-tab:hover::before {
    width: 300px;
    height: 300px;
}

.industry-tab span {
    position: relative;
    z-index: 1;
}

.industry-tab.active {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: #667eea;
    border-color: white;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.industry-tab:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: white;
}

/* Industry Slider */
.industry-slider-container {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 80px;
}

.industry-cards-wrapper {
    overflow: hidden;
    border-radius: 20px;
    padding: 20px 0;
}

.industry-cards-track {
    display: flex;
    gap: 35px;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.industry-card {
    min-width: calc(33.333% - 24px);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.7s;
}

.industry-card:hover::before {
    left: 100%;
}

.industry-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.8);
}

.industry-card-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.industry-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.industry-card:hover .industry-card-image img {
    transform: scale(1.15) rotate(2deg);
}

.industry-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.industry-card:hover .industry-card-overlay {
    background: linear-gradient(135deg, #764ba2 0%, #f093fb 100%);
    padding: 30px 25px;
}

.industry-card-title {
    color: white;
    font-size: 19px;
    font-weight: 700;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.industry-card:hover .industry-card-title {
    transform: translateX(5px);
    letter-spacing: 0.5px;
}

.industry-card-icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.industry-card-icons::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.industry-card:hover .industry-card-icons::before {
    transform: scaleX(1);
}

.icon-group {
    display: flex;
    gap: 12px;
}

.user-icon,
.settings-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    position: relative;
    overflow: hidden;
}

.user-icon::before,
.settings-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.user-icon:hover::before,
.settings-icon:hover::before {
    width: 100px;
    height: 100px;
}

.user-icon:hover,
.settings-icon:hover {
    transform: scale(1.2) rotate(360deg);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.user-icon svg,
.settings-icon svg {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.user-icon:nth-child(1) {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.user-icon:nth-child(2) {
    background: linear-gradient(135deg, #FF9800 0%, #f57c00 100%);
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.4);
}

.settings-icon {
    background: linear-gradient(135deg, #9C27B0 0%, #7B1FA2 100%);
    box-shadow: 0 4px 15px rgba(156, 39, 176, 0.4);
}

/* Slider Navigation Buttons */
.industry-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.8);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    backdrop-filter: blur(10px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.industry-slider-btn svg {
    stroke: #667eea;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.industry-slider-btn:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.5);
    border-color: white;
}

.industry-slider-btn:hover svg {
    stroke: white;
    transform: scale(1.2);
}

.industry-slider-btn.prev {
    left: 0;
}

.industry-slider-btn.next {
    right: 0;
}

.industry-slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: translateY(-50%) scale(0.9);
}

.industry-slider-btn:disabled:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    transform: translateY(-50%) scale(0.9);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.industry-slider-btn:disabled:hover svg {
    stroke: #667eea;
    transform: scale(1);
}

/* Slider Dots */
.industry-slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 50px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.6);
    position: relative;
}

.dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: white;
    transition: all 0.4s ease;
}

.dot.active {
    background: white;
    width: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.5);
    border-color: white;
}

.dot.active::before {
    width: 100%;
    height: 100%;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.3);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4);
}

/* Industry Categories Section */
.industry-categories-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.industry-categories-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.categories-wrapper {
    position: relative;
    z-index: 1;
}

.categories-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.categories-row-2 {
    margin-bottom: 0;
}

.category-btn {
    position: relative;
    padding: 18px 40px;
    background: white;
    border: 2px solid transparent;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.category-text {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.category-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
    z-index: 1;
    opacity: 0;
}

.category-btn:hover .category-glow {
    width: 400px;
    height: 400px;
    opacity: 1;
}

.category-btn:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    border-color: #667eea;
}

.category-btn:hover .category-text {
    color: white;
}

.category-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: #667eea;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

.category-btn.active .category-text {
    color: white;
}

.category-btn.active::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #667eea, #764ba2, #f093fb, #667eea);
    border-radius: 50px;
    z-index: 0;
    animation: borderRotate 3s linear infinite;
    background-size: 300% 300%;
}

@keyframes borderRotate {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.category-btn.active .category-text {
    position: relative;
    z-index: 2;
}

.category-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.category-btn:active::after {
    width: 300px;
    height: 300px;
    transition: width 0s, height 0s;
}

/* Responsive Design for Client Page */

/* Tablet Landscape (1024px) */
@media (max-width: 1024px) {
    .client-hero-section {
        padding: 100px 0;
        min-height: 60vh;
    }
    
    .client-hero-title {
        font-size: 48px;
    }
    
    .client-hero-description {
        font-size: 17px;
    }
    
    .industry-categories-section {
        padding: 70px 0;
    }
    
    .category-btn {
        padding: 16px 35px;
        font-size: 15px;
    }
    
    .categories-row {
        gap: 15px;
        margin-bottom: 20px;
    }
}

/* Tablet Portrait (768px) */
@media (max-width: 768px) {
    .client-hero-section {
        padding: 80px 0;
        min-height: 50vh;
    }
    
    .client-hero-title {
        font-size: 38px;
        margin-bottom: 24px;
    }
    
    .client-hero-description {
        font-size: 16px;
        margin-bottom: 35px;
        padding: 0 20px;
    }
    
    .btn-inquire {
        padding: 14px 35px;
        font-size: 16px;
    }
    
    .industry-categories-section {
        padding: 60px 0;
    }
    
    .category-btn {
        padding: 14px 28px;
        font-size: 14px;
    }
    
    .categories-row {
        gap: 12px;
        margin-bottom: 15px;
    }
}

/* Mobile Landscape (640px) */
@media (max-width: 640px) {
    .client-hero-section {
        padding: 60px 0;
    }
    
    .client-hero-title {
        font-size: 32px;
    }
    
    .client-hero-description {
        font-size: 15px;
    }
    
    .industry-categories-section {
        padding: 50px 0;
    }
    
    .category-btn {
        padding: 12px 24px;
        font-size: 13px;
    }
    
    .categories-row {
        gap: 10px;
        margin-bottom: 12px;
    }
}

/* Mobile Portrait (480px) */
@media (max-width: 480px) {
    .client-hero-section {
        padding: 50px 0;
        min-height: auto;
    }
    
    .client-hero-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .client-hero-description {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .btn-inquire {
        padding: 12px 30px;
        font-size: 15px;
        width: auto;
    }
    
    .industry-categories-section {
        padding: 40px 0;
    }
    
    .category-btn {
        padding: 12px 22px;
        font-size: 13px;
    }
    
    .categories-row {
        gap: 8px;
        margin-bottom: 10px;
    }
}

/* Small Mobile (360px) */
@media (max-width: 360px) {
    .client-hero-title {
        font-size: 24px;
    }
    
    .client-hero-description {
        font-size: 13px;
    }
    
    .btn-inquire {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    .industry-categories-section {
        padding: 35px 0;
    }
    
    .category-btn {
        padding: 10px 18px;
        font-size: 12px;
    }
    
    .categories-row {
        gap: 6px;
        margin-bottom: 8px;
    }
}

/* Extra Small Mobile (320px) */
@media (max-width: 320px) {
    .client-hero-title {
        font-size: 22px;
    }
    
    .client-hero-description {
        font-size: 12px;
    }
    
    .btn-inquire {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .industry-categories-section {
        padding: 30px 0;
    }
    
    .category-btn {
        padding: 10px 16px;
        font-size: 11px;
    }
    
    .categories-row {
        gap: 6px;
    }
}
