/* ----------------------------- */
/* GLOBAL */
body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background-color: #ffffff;
    color: #333;
}

a { text-decoration: none; }
/* White hero-style text */
.services-hero-text {
    color: #fff; /* white */
    font-family: "Poppins", sans-serif;
    font-size: 2.2rem;       /* match index headings */
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.services-hero-subtext {
    color: #fff; /* white */
    font-family: "Poppins", sans-serif;
    font-size: 1.1rem;       /* match index paragraphs */
    font-weight: 400;
    text-align: center;
    margin-bottom: 40px;
}

/* Black text for lighter sections */
.services-highlight-text {
    color: #222; /* black */
    font-family: "Poppins", sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 25px;
}


/* ----------------------------- */
/* Navbar links */
.navbar .nav-link {
    color: #ffffff !important; /* black text */
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0 12px;
}

.navbar .nav-link:hover {
    color: #d32f2f !important; /* keep hover red */
}

/* Brand text */
.brand-title, .brand-subtitle {
    color: #ffffff !important; /* black text for logo text */
}

/* "Get a Quote" button */
.btn-cta {
    background-color: #d32f2f;
    color: white;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: #b71c1c;
    transform: scale(1.05);
}

/* Navbar brand styles */
.brand-logo {
    height: 60px;
    width: auto;
}

.brand-title { font-size: 1.2rem; color: #333; }
.brand-subtitle { font-size: 0.85rem; color: #666; font-weight: 400; }

#mainNav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1030;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

/* ----------------------------- */
/* HERO */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
}

/* ----------------------------- */
/* ABOUT SECTION */
.about-text-inner {
    flex: 1 1 500px;
    background: rgba(255,255,255,0.85);
    padding: 30px;
    border-radius: 8px;
}

.about-image-card {
    flex: 1 1 500px;
}

.about-image-card .small-card-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.about-image-card .card-body { text-align: left; margin-top: 15px; }

.about-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.about-section .link-primary {
    font-weight: 600;
    text-decoration: none;
}

/* About card styling */
.about-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.about-card .card-img-top {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
}

.about-card .card-body h5 {
    font-weight: 600;
    margin-top: 10px;
}

.about-card .card-body p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #555;
}

/* Image crop control */
.about-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
}

/* ========================================================= */
/* GRADIENT OVAL BACKGROUND BEHIND ABOUT SECTION */
.about-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background: transparent;
}

.about-section::before,
.about-section::after {
    content: "";
    position: absolute;
    display: block;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    z-index: 0; /* behind content */
    filter: blur(20px); /* less blurry than before */
}

.about-section::before {
    width: 650px;
    height: 420px;
    background: radial-gradient(ellipse at center, rgba(190, 8, 8, 0.45), rgba(217, 16, 16, 0));
    top: -120px;
    left: -180px;
}

.about-section::after {
    width: 700px;
    height: 450px;
    background: radial-gradient(ellipse at center, rgba(200,255,200,0.35), rgba(255,255,255,0));
    bottom: -140px;
    right: -180px;
}

.about-section .container {
    position: relative;
    z-index: 1;
}

/* ----------------------------- */
/* SERVICES SECTION */
.pro-services-section {
    display: flex;
    width: 100%;
    height: 80vh;
}

.pro-service {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pro-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.pro-content {
    position: relative;
    text-align: center;
    color: white;
    z-index: 2;
    padding: 20px;
    max-width: 450px;
}

.pro-content h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.pro-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.pro-btn {
    background: #d32f2f;
    color: white;
    padding: 12px 26px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.pro-btn:hover { background: #b71c1c; }

/* ----------------------------- */
/* GALLERY */
.gallery-img,
section .img-fluid.rounded {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

/* ----------------------------- */
/* FOOTER */
footer {
    background: #222;
    color: white;
    padding: 40px 0;
    text-align: center;
}
