/* --- NkrSoft Styles (Modern Tech Theme) --- */
:root {
    /* New Modern Amber/Gold */
    --primary: #f59e0b; 
    
    /* Deep Blue for solid text */
    --secondary: #1e3a8a; 
    
    /* Modern Gradient */
    --blue-gradient: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #1e40af 100%);
    
    --dark: #0f172a; 
    --light-bg: #f3f4f6; 
}

body {
    /* UPDATED FONT */
    font-family: 'Montserrat', sans-serif;
    background-color: var(--light-bg);
}

/* --- Overrides & Utilities --- */
.text-primary { color: var(--primary) !important; }
.bg-primary { background-color: var(--primary) !important; }
.text-warning { color: #f59e0b !important; }

/* Section Heading Style */
.section-heading {
    color: var(--secondary);
}

/* Buttons */
.btn-primary { 
    background-color: var(--primary); 
    border-color: var(--primary); 
    color: white;
    font-weight: 600; 
}
.btn-primary:hover { 
    background-color: #d97706; 
    border-color: #d97706; 
}
.btn-outline-primary { 
    color: var(--secondary); 
    border-color: var(--secondary); 
}
.btn-outline-primary:hover { 
    background: var(--blue-gradient); 
    color: white; 
    border-color: transparent; 
}

/* --- Top Bar --- */
.top-bar { 
    background-color: white; 
    font-size: 0.85rem; 
    color: #6b7280; 
    border-bottom: 1px solid #e5e7eb;
}
.social-links a { 
    color: #6b7280; 
    margin-left: 15px; 
    transition: 0.3s; 
}
.social-links a:hover { color: var(--primary); }

/* --- Header & Logo --- */
.logo-link { text-decoration: none; }
.logo-text { 
    font-size: 2.5rem; 
    font-weight: 800; 
    font-family: 'Impact', sans-serif; 
    color: var(--secondary); 
    letter-spacing: -1px; 
}
.highlight { color: var(--primary); font-style: italic; }

.icon-circle { 
    width: 45px; height: 45px; 
    border: 2px solid #e5e7eb; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: var(--primary); 
    font-size: 1.2rem; 
    background: white;
}

/* --- Navbar --- */
.navbar { 
    background: var(--blue-gradient) !important; 
    border-bottom: 4px solid var(--primary); 
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); 
}
.nav-link { 
    text-transform: uppercase; 
    font-weight: 600; 
    font-size: 0.9rem; 
    padding: 0 15px !important; 
    color: rgba(255,255,255,0.95) !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.nav-link:hover, .nav-link.active { color: var(--primary) !important; }

/* --- Slider --- */
.carousel-item { 
    height: 550px; 
    background-size: cover; 
    background-position: center; 
}
.carousel-caption { 
    bottom: 20%; 
    background: rgba(15, 23, 42, 0.75); 
    padding: 30px; 
    border-radius: 12px; 
    display: inline-block; 
    border-left: 5px solid var(--primary);
    backdrop-filter: blur(5px);
}

/* --- Common --- */
.divider { height: 4px; width: 70px; background-color: var(--primary); border-radius: 2px; }

/* --- Products --- */
.product-card { 
    background: white; 
    padding: 30px 20px; 
    text-align: center; 
    border: 1px solid #f3f4f6; 
    border-radius: 12px; 
    position: relative; 
    transition: all 0.3s ease; 
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.p-icon { 
    font-size: 3rem; 
    background: -webkit-linear-gradient(#1e3a8a, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px; 
}
.badge-hot { 
    position: absolute; 
    top: 15px; right: 15px; 
    background-color: var(--primary); 
    color: white; 
    font-size: 0.75rem; 
    padding: 4px 10px; 
    border-radius: 20px; 
    font-weight: bold; 
    box-shadow: 0 2px 4px rgba(245, 158, 11, 0.4);
}
.product-card:hover, .active-card { 
    transform: translateY(-8px); 
    border-color: var(--primary) !important; 
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* --- Team Section --- */
.team-card {
    background: white;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    transition: 0.3s;
    padding-bottom: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.team-img-wrapper {
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background-color: #e2e8f0;
}
.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: 0.3s;
}
.team-card:hover { transform: translateY(-5px); box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
.team-card:hover .team-img { transform: scale(1.05); }
.team-info h4 { font-size: 1.25rem; font-weight: 700; color: var(--dark); margin-bottom: 5px; margin-top: 15px; }
.team-social a {
    color: #9ca3af;
    font-size: 1.2rem;
    margin: 0 8px;
    transition: 0.3s;
}
.team-social a:hover { color: var(--primary); }

/* --- Tech Stack --- */
.tech-box { 
    background: white; 
    padding: 20px 10px; 
    border-radius: 12px; 
    border: 1px solid #f3f4f6; 
    transition: 0.3s; 
    height: 100%; 
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}
.tech-box:hover { border-color: var(--secondary); transform: translateY(-3px); }
.tech-box i { display: block; font-size: 2.5rem; margin-bottom: 10px; }
.tech-box span { font-weight: 600; font-size: 0.9rem; color: #4b5563; }

/* --- CTA Banner --- */
.cta-section { background: var(--blue-gradient) !important; padding: 80px 0; }

/* --- Footer --- */
footer { background: var(--blue-gradient) !important; color: #e5e7eb; }
.contact-list i { width: 20px; text-align: center; color: var(--primary); }
.border-secondary { border-color: rgba(255,255,255,0.1) !important; }

/* Footer Social Buttons */
.social-btn {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center; justify-content: center;
    color: white;
    transition: 0.3s;
    text-decoration: none;
}
.social-btn:hover { transform: translateY(-3px); color: white; }
.social-btn.facebook:hover { background: #3b5998; }
.social-btn.linkedin:hover { background: #0077b5; }
.social-btn.twitter:hover { background: #1da1f2; }
.social-btn.youtube:hover { background: #ff0000; }