:root {
    --primary-color: #ffc107; /* Logo Yellow/Gold */
    --primary-hover: #e0a800;
    --secondary-color: #000000; /* Logo Black */
    --text-dark: #212529;
    --text-light: #f8f9fa;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Typography & Utilities */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

.text-primary-custom {
    color: var(--primary-color) !important;
}

.bg-primary-custom {
    background-color: var(--primary-color) !important;
}

.bg-secondary-custom {
    background-color: var(--secondary-color) !important;
}

.btn-custom {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-weight: 600;
    border-radius: 30px;
    padding: 10px 25px;
    transition: all 0.3s ease;
    border: none;
}

    .btn-custom:hover {
        background-color: var(--primary-hover);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
    }

/* Navbar */
.navbar {
    transition: all 0.4s ease;
    padding: 15px 0;
}

.navbar-scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.navbar-dark .navbar-nav .nav-link {
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

    .navbar-dark .navbar-nav .nav-link:hover {
        color: var(--primary-color);
    }

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 2px;
}
/* Active Nav Link Highlight & Underline */
.navbar-dark .navbar-nav .nav-link {
    position: relative;
    padding-bottom: 5px;
}

    .navbar-dark .navbar-nav .nav-link.active {
        color: var(--primary-color) !important;
    }

        .navbar-dark .navbar-nav .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 10%;
            width: 80%;
            height: 2px;
            background-color: var(--primary-color);
            border-radius: 2px;
        }

/* Hero Section */
#hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/hero.jpg') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #dddddd;
    font-weight: 300;
}

/* Glassmorphism Elements */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    color: white;
}

/* Section Styling */
section {
    padding: 100px 0;
}

.section-title {
    position: relative;
    margin-bottom: 50px;
    text-transform: uppercase;
}

    .section-title::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -10px;
        width: 50px;
        height: 3px;
        background-color: var(--primary-color);
    }

    .section-title.text-center::after {
        left: 50%;
        transform: translateX(-50%);
    }

/* Service Cards */
.service-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    border-bottom: 4px solid transparent;
    height: 100%;
}

    .service-card:hover {
        transform: translateY(-10px);
        border-bottom: 4px solid var(--primary-color);
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    }

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Stats Section */
#stats {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?q=80&w=2071&auto=format&fit=crop') center/cover fixed;
    color: white;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--primary-color);
}

/* Floating Badges */
.trust-badge {
    position: absolute;
    bottom: 10%;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: #ffffff;
    padding-top: 80px;
    padding-bottom: 20px;
}

.footer-links a {
    transition: all 0.3s ease;
}

    .footer-links a:hover {
        color: var(--primary-color) !important;
        padding-left: 8px;
    }

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.2rem;
    margin-right: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .social-links a:hover {
        background: var(--primary-color);
        color: var(--secondary-color);
        transform: translateY(-3px);
    }

.footer-back-top:hover {
    color: var(--primary-color) !important;
}