body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
}
/* Sticky Footer Layout */
html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Navbar */
.navbar-brand img {
    height: 50px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: #000 !important;
}

.navbar-nav .nav-link:hover {
    color: #d40000 !important;
}

/* Active Nav Link */
.nav-link.active {
    color: #d40000 !important;
    font-weight: 600;
}

/* ============================= */
/* Custom Animated Hamburger */
/* ============================= */

.custom-toggler {
    border: none;
    outline: none;
}

.toggler-icon {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #000;
    margin: 5px 0;
    transition: 0.4s;
}

/* Animation when open */
.navbar-toggler:not(.collapsed) .top-bar {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler:not(.collapsed) .middle-bar {
    opacity: 0;
}

.navbar-toggler:not(.collapsed) .bottom-bar {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Red color on hover */
.nav-link:hover {
    color: #d40000 !important;
}

/* Headings */
.section-title {
    font-weight: 700;
    margin-bottom: 20px;
}

.section-title span {
    color: #d40000;
}

/* Buttons */
.btn-red {
    background-color: #d40000;
    color: #fff;
    border: none;
}

.btn-red:hover {
    background-color: #000;
    color: #fff;
}

/* Footer */
footer {
    background: #000;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
}

.hero p {
    font-size: 18px;
    margin-top: 20px;
}

/* Services Cards */
.service-card {
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 10px;
    transition: 0.3s;
    background: #fff;
}

.service-card:hover {
    border-color: #d40000;
    transform: translateY(-5px);
}