/* ========================================
   SKILLARION - CUSTOM STYLES
   ======================================== */

/* Custom CSS Variables */
:root {
    --primary: #051533;
    --primary-rgb: 5, 21, 51;
    --secondary: #12d1d4;
    --secondary-rgb: 18, 209, 212;
    --accent: #fba919;
    --accent-rgb: 251, 169, 25;
    --foreground: #1e293b;
    --muted-foreground: #64748b;
    --border: #e2e8f0;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
body {
    font-family: 'Inter', sans-serif;
    color: var(--foreground);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

/* ========================================
   LAYOUT UTILITIES
   ======================================== */
.container-wide {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .container-wide {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container-wide {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.section-padding {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

@media (min-width: 768px) {
    .section-padding {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

/* ========================================
   COLOR CLASSES
   ======================================== */
.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.text-accent {
    color: var(--accent) !important;
}

.text-muted-foreground {
    color: var(--muted-foreground) !important;
}

.text-foreground {
    color: var(--foreground) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

.bg-accent {
    background-color: var(--accent) !important;
}

/* ========================================
   GRADIENT TEXT
   ======================================== */
.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-hero {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    transition: color 0.2s;
    text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link.active {
    font-weight: 600;
}

.nav-link-mobile {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--muted-foreground);
    transition: color 0.2s;
    text-decoration: none;
    display: block;
}

.nav-link-mobile:hover,
.nav-link-mobile.active {
    color: var(--primary);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn-primary {
    background-color: var(--secondary);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #0fb8ba;
    box-shadow: 0 10px 15px -3px rgba(18, 209, 212, 0.3);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary);
    color: white !important;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 1.125rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #0fb8ba;
    box-shadow: 0 20px 25px -5px rgba(18, 209, 212, 0.2);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid #64748b;
    background: transparent;
    color: white !important;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 1.125rem;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary) !important;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    color: white !important;
}

.btn-accent {
    background-color: var(--accent);
    color: white !important;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 1.125rem;
    box-shadow: 0 20px 25px -5px rgba(251, 169, 25, 0.2);
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-accent:hover {
    background-color: #e69a15;
    box-shadow: 0 25px 50px -12px rgba(251, 169, 25, 0.3);
    transform: translateY(-2px);
}

/* ========================================
   SERVICE CARDS
   ======================================== */
.service-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f5f9;
    transition: all 0.3s;
}

.service-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.service-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(18, 209, 212, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--secondary);
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    background-color: var(--secondary);
    color: white;
}

/* ========================================
   COLORFUL ICON BOXES
   ======================================== */
.icon-box {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
/*
.icon-box::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.icon-box:hover::before {
    opacity: 1;
}

.icon-box i {
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.icon-box:hover i {
    transform: scale(1.15);
}
*/

/*New
/* Image fills the entire card */
.icon-box-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Soft overlay ABOVE image (no blank / flip) */
.icon-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.15) 0%,
        rgba(0, 0, 0, 0.35) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

/* Hover shows soft overlay only */
.icon-box:hover::before {
    opacity: 0.6;
}

/* Neutralize flex-centering (important for full image) */
.icon-box {
    align-items: stretch;
    justify-content: stretch;
}

/*  New */

/* IT Recruitment - Teal/Cyan */
.icon-box-it {
    background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
}
.icon-box-it i { color: #00838f; }
.icon-box-it::before { background: linear-gradient(135deg, #b2ebf2 0%, #80deea 100%); }

/* Operations - Purple */
.icon-box-operations {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
}
.icon-box-operations i { color: #7b1fa2; }
.icon-box-operations::before { background: linear-gradient(135deg, #e1bee7 0%, #ce93d8 100%); }

/* Training - Orange */
.icon-box-training {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
}
.icon-box-training i { color: #e65100; }
.icon-box-training::before { background: linear-gradient(135deg, #ffe0b2 0%, #ffcc80 100%); }

/* Contract - Blue */
.icon-box-contract {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}
.icon-box-contract i { color: #1565c0; }
.icon-box-contract::before { background: linear-gradient(135deg, #bbdefb 0%, #90caf9 100%); }

/* Career - Green */
.icon-box-career {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}
.icon-box-career i { color: #2e7d32; }
.icon-box-career::before { background: linear-gradient(135deg, #c8e6c9 0%, #a5d6a7 100%); }

/* ========================================
   INDUSTRY ICON BOXES
   ======================================== */
.industry-icon-box {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.industry-icon-box i {
    transition: all 0.4s ease;
}

.industry-icon-box:hover i {
    transform: scale(1.2) rotate(5deg);
}

/* IT & ITES - Blue */
.industry-it {
    background: linear-gradient(135deg, #e3f2fd 0%, #90caf9 100%);
}
.industry-it i { color: #1565c0; }

/* Digital & Tech - Teal */
.industry-tech {
    background: linear-gradient(135deg, #e0f7fa 0%, #80deea 100%);
}
.industry-tech i { color: #00838f; }

/* Banking - Indigo */
.industry-banking {
    background: linear-gradient(135deg, #e8eaf6 0%, #9fa8da 100%);
}
.industry-banking i { color: #303f9f; }

/* Healthcare - Pink */
.industry-healthcare {
    background: linear-gradient(135deg, #fce4ec 0%, #f48fb1 100%);
}
.industry-healthcare i { color: #c2185b; }

/* Manufacturing - Orange */
.industry-manufacturing {
    background: linear-gradient(135deg, #fff3e0 0%, #ffcc80 100%);
}
.industry-manufacturing i { color: #e65100; }

/* Logistics - Green */
.industry-logistics {
    background: linear-gradient(135deg, #e8f5e9 0%, #a5d6a7 100%);
}
.industry-logistics i { color: #2e7d32; }

/* ========================================
   INDUSTRY CARDS
   ======================================== */
.industry-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
}

.industry-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.industry-card:hover i {
    transform: scale(1.1);
}

/* ========================================
   WHATSAPP FLOATING BUTTON
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

/* Pulse animation for WhatsApp button */
@keyframes whatsapp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: whatsapp-pulse 2s infinite;
}

/* ========================================
   SOCIAL MEDIA ICONS
   ======================================== */
.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.social-icon-linkedin {
    background-color: #0077B5;
    color: white;
}

.social-icon-linkedin:hover {
    background-color: #005885;
    transform: translateY(-3px);
}

.social-icon-facebook {
    background-color: #1877F2;
    color: white;
}

.social-icon-facebook:hover {
    background-color: #0d65d9;
    transform: translateY(-3px);
}

.social-icon-youtube {
    background-color: #FF0000;
    color: white;
}

.social-icon-youtube:hover {
    background-color: #cc0000;
    transform: translateY(-3px);
}

.social-icon-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-icon-instagram:hover {
    opacity: 0.85;
    transform: translateY(-3px);
}

.social-icon-twitter {
    background-color: #000000;
    color: white;
}

.social-icon-twitter:hover {
    background-color: #333;
    transform: translateY(-3px);
}

/* ========================================
   FOOTER STYLES
   ======================================== */
.footer-section {
    background-color: var(--primary);
}

.footer-text {
    color: rgba(255, 255, 255, 0.8) !important;
}

.footer-text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}

.footer-text-light {
    color: rgba(255, 255, 255, 0.5) !important;
}

.footer-heading {
    color: white !important;
    font-weight: 600;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7) !important;
    transition: color 0.2s;
    text-decoration: none;
    display: block;
}

.footer-link:hover {
    color: var(--secondary) !important;
}

.footer-contact-text {
    color: rgba(255, 255, 255, 0.8) !important;
}

.footer-contact-link {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-link:hover {
    color: white !important;
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* ========================================
   GOOGLE MAP
   ======================================== */
.map-container {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 300px;
    border: 0;
}

/* ========================================
   FORM ELEMENTS
   ======================================== */
.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.2s;
    background: white;
    color: var(--foreground);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(18, 209, 212, 0.1);
}

.form-label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.form-error {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* ========================================
   CARD STYLES
   ======================================== */
.card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f5f9;
}

.card-hover {
    transition: all 0.3s;
}

.card-hover:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.7s ease-out;
}

/* ========================================
   RESPONSIVE UTILITIES
   ======================================== */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .section-padding {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 54px;
        height: 54px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
    
    .icon-box {
        min-height: 200px;
    }
}

/* ========================================
   ADDITIONAL UTILITIES
   ======================================== */
.text-white {
    color: white !important;
}

.bg-white {
    background-color: white !important;
}

/* Fix for icon display */
i[data-lucide] {
    display: inline-block;
}

/* Add  */


/* ========================================
   ICON BOX - FULL CARD IMAGE SUPPORT
   ======================================== */

.icon-box-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Gradient overlay stays above image */
.icon-box::before {
    z-index: 1;
    opacity: 0.85;
}

/* Disable flex centering impact for images */
.icon-box {
    align-items: stretch;
    justify-content: stretch;
}

