/* Custom Styles for CoreX PC */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Rajdhani:wght@500;600;700&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0f172a; /* Tailwind slate-900 */
    color: #f8fafc; /* Tailwind slate-50 */
}

h1, h2, h3, h4, h5, h6, .nav-logo {
    font-family: 'Rajdhani', sans-serif;
}

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

::-webkit-scrollbar-track {
    background: #0f172a; 
}

::-webkit-scrollbar-thumb {
    background: #0ea5e9; /* Tailwind sky-500 */
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0284c7; /* Tailwind sky-600 */
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Glassmorphism effects */
.glass {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Gradient text */
.text-gradient {
    background: linear-gradient(to right, #38bdf8, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Card Hover Animation */
.product-card, .service-card {
    transition: all 0.3s ease;
}

.product-card:hover, .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(14, 165, 233, 0.3), 0 8px 10px -6px rgba(14, 165, 233, 0.2);
    border-color: #0ea5e9;
}

/* Policy Page Styling */
.policy-content h2 {
    color: #38bdf8;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.policy-content h3 {
    color: #f8fafc;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    font-weight: 500;
}

.policy-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #cbd5e1;
}

.policy-content ul, .policy-content ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    color: #cbd5e1;
}

.policy-content li {
    margin-bottom: 0.5rem;
}
