/*
Theme Name: Dexit Global Theme
Theme URI: https://dexitglobal.in
Author: Dexit Global Solutions
Author URI: https://dexitglobal.in
Description: A custom theme for Dexit Global Solutions.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: custom-theme
Text Domain: dexit-theme
*/

/* Custom theme styles */
body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff; /* White Background */
    color: #1f2937; /* Dark Gray Text */
}
/* Fix for fixed header overlapping anchor links */
html {
    scroll-padding-top: 80px; /* Adjust to your header's height */
}
/* Golden Accent Color */
.accent-color-gold { color: #ca8a04; }
/* Red Accent Color */
.accent-color-red { color: #dc2626; }
.bg-accent-gold { background-color: #ca8a04; }
.bg-accent-red { background-color: #dc2626; }
.hover-accent-red:hover { background-color: #b91c1c; }
.border-accent { border-color: #ca8a04; }
.section-bg-alt { background-color: #f9fafb; }
.service-card {
    background-color: #ffffff;
    border-radius: 0.75rem;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #e5e7eb;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.service-card ul { flex-grow: 1; }
.dropdown-menu { min-width: 12rem; }
