/* Danehill Business Services - Modern, Sexy Design */

:root {
    --primary: #2563eb; /* Trust - Blue */
    --primary-dark: #1d4ed8;
    --secondary: #f97316; /* Energy - Orange */
    --accent: #059669; /* Commitment - Green */
    --dark: #1e293b;
    --light: #f8fafc;
    --gradient-start: #2563eb;
    --gradient-mid: #3b82f6;
    --gradient-end: #059669;
    --card-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    --hover-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    background: #fefefe;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Navbar - Glassmorphism */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.8rem;
    background: linear-gradient(90deg, #2d5a8c, #c44536);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-brand img.navbar-logo {
    height: 80px;
    width: auto;
    vertical-align: middle;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 2px rgba(0,0,0,0.5));
}

.navbar-brand img.navbar-logo:hover {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section - Animated Gradient */
.hero {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid), var(--gradient-end));
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: white;
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../Images/Hero-Section.jpg') center/cover;
    opacity: 0.15;
    z-index: 1;
}

.hero > .container {
    position: relative;
    z-index: 2;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p.lead {
    font-size: 1.8rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    opacity: 0.95;
}

.hero .btn {
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero .btn-primary {
    background: white;
    color: var(--primary);
    border: none;
}

.hero .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Section Styling */
section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-weight: 800;
    margin-bottom: 4rem;
    color: var(--dark);
    position: relative;
    font-size: 2.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px;
}

/* Value Cards */
.value-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
}

.value-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--hover-shadow);
}

.value-card i {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Industry Cards */
.industry-card {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    height: 100%;
    box-shadow: var(--card-shadow);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.industry-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--hover-shadow);
    background: linear-gradient(135deg, #ffffff, #e9ecef);
}

.industry-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Service Cards */
.card {
    border: none;
    border-radius: 25px;
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--hover-shadow);
}

.card-img-top {
    border-radius: 25px 25px 0 0;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-img-top {
    transform: scale(1.1);
}

.card-body {
    padding: 2.5rem;
}

.card-title {
    color: var(--dark);
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

/* Trust Section */
.trust-badge {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 30px;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.trust-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

.trust-badge i {
    font-size: 5rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 80px 0 40px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

.footer h4, .footer h5 {
    font-weight: 700;
}

.footer-logo {
    max-width: 200px;
    height: auto;
    vertical-align: middle;
    transition: opacity 0.3s ease;
    filter: drop-shadow(0 0 2px rgba(255,255,255,0.5)) brightness(1.2);
}

.footer-logo:hover {
    opacity: 0.9;
}

.footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer a:hover {
    color: white;
    padding-left: 10px;
}

.footer a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer a:hover::before {
    left: 0;
    opacity: 1;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }
    .hero p.lead {
        font-size: 1.5rem;
    }
    section {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 80px;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .value-card,
    .industry-card,
    .card,
    .trust-badge {
        margin-bottom: 2rem;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--accent));
}
