html {
    scroll-padding-top: 80px; /* Offset for fixed navbar */
    scroll-behavior: smooth; /* Smooth scrolling */
}

.section-anchor {
    display: block;
    position: relative;
    top: -80px;
    visibility: hidden;
}

body {
    font-family: "Lexend", sans-serif;
    color: #333;
}

h1, h2, .navbar-brand, .display-2, .display-4, .styled-heading {
    font-family: "Saira Stencil One", sans-serif;
    text-transform: uppercase;
}

.navbar-brand {
    font-size: xxx-large;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
}

/* Buttons */
.btn-custom {
    background-color: #4CAF50;
    border-color: #4CAF50;
    padding: 10px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background-color: #388E3C;
    border-color: #388E3C;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Service Cards */
.service-card {
    border: none;
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-card img {
    height: 200px;
    object-fit: cover;
}

/* Testimonial Section */
.testimonial-section {
    background-color: #f9f9f9;
}

.testimonial-card {
    border: none;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-card .quote {
    font-size: 4rem;
    height: 60px;
    color: #4CAF50;
    opacity: 0.3;
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #4CAF50;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #388E3C;
    transform: translateY(-3px);
}