:root {
    --accent-color: #e67e22;
    --accent-hover: #cf711f;
}

body {
    scroll-behavior: smooth;
    margin: 0;
    font-family: system-ui, sans-serif;
}

nav.navbar {
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 0.5rem 1rem;
}

.navbar-brand img {
    height: 48px;
}

#navbarAddress {
    font-size: 0.9rem;
    color: #555;
    margin-left: 1rem;
    white-space: nowrap;
}

#navbarNav ul.navbar-nav {
    gap: 1.25rem;
}

.navbar-nav .nav-link {
    color: #333;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent-color);
}

#navbarSocial a {
    color: #444;
    font-size: 1.2rem;
    margin-left: 1rem;
    transition: color 0.3s ease;
}

#navbarSocial a:hover {
    color: var(--accent-color);
}

.navbar-toggler {
    border: none;
}

.offset-top {
    padding-top: 70px;
}

/* Banner / Hero Section */
.hero-banner {
    background: url('../images/hero-contact.jpg') center center/cover no-repeat;
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--accent-color);
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 90%;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
}

.hero-content p {
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

/* Other sections/style */
section {
    padding: 4rem 1rem;
}

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

#about .contact-info h5 {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--accent-color);
}

#about .contact-info p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

#about .contact-info a {
    color: inherit;
    transition: color 0.3s ease;
}

#about .contact-info a:hover {
    color: var(--accent-hover);
}

.btn-warning {
    background-color: var(--accent-color);
    border: none;
    color: #ffffff;
    font-weight: 600;
}

.btn-warning:hover {
    background-color: var(--accent-hover);
}

a.email-link {
    color: inherit;
    text-decoration: none;
}

a.email-link:hover {
    color: var(--accent-hover);
    text-decoration: none;
}

.social-icons a i:hover {
    color: var(--accent-color);
}

footer {
    background: #222;
    color: #bbb;
    padding: 2rem 0;
    text-align: center;
}

footer a {
    color: var(--accent-color);
    margin: 0 10px;
}

.about-image-wrapper {
    position: relative;
    overflow: hidden;
    max-width: 300px;
    /* Control the size of images */
    margin-left: auto;
    /* Align images to the right side */
}

.about-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.05);
}

.image-overlay-text {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: var(--accent-color);
    color: white;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    pointer-events: none;
}

.carousel-caption h5 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-align: center;
}

.profile-image {
    width: 150px;
    /* Adjust size as needed */
    height: 150px;
    object-fit: cover;
    /* Ensures the image fills the circle */
    border-radius: 50%;
    /* Makes it perfectly circular */
    border: 3px solid #ddd;
    /* Optional: subtle border */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    /* Optional: soft shadow */
    display: block;
    margin: 0 auto;
    /* Center horizontally */
}

.bg-light-tiling {
    background-color: #f4f4f4;
    /* soft neutral background */
}

.service-card {
    background-color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 1.5rem;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.service-card h5 {
    color: var(--accent-color);
}

.icon-accent {
    color: var(--accent-color) !important;
}

/* Mobile navbar social icons positioning */
@media (max-width: 991.98px) {
    #navbarSocial {
        display: flex !important;
        justify-content: center;
        margin-top: 1rem;
    }

    #navbarAddress {
        display: none;
    }
}

.founder {
    text-align: justify;
}

/* --- Gallery Section --- */
.gallery-section {
    padding: 3rem 0;
}

.gallery-title {
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
}

/* Tabs */
.nav-pills .nav-link {
    color: #333;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.nav-pills .nav-link.active {
    background-color: var(--accent-color);
    color: #fff;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.25rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background-color: #f8f8f8;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Responsive tweaks */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 50vh;
    }

    .gallery-grid {
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 45vh;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .gallery-section {
        padding: 2rem 1rem;
    }
}

:root {
    --accent-color: #e67e22;
    --accent-hover: #cf711f;

    --email: #e67e22;
    --call: #e67e22;
    --whatsapp: #25D366;
    --facebook: #1877F2;
    --linkedin: #0A66C2;
}

/* Section General */
.contact-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.contact-intro {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.6;
    text-align: center;
}

/* Responsive grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

/* Contact Card */
.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #ffffff;
    padding: 1.2rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    text-align: left;
}

/* Icon Left */
.contact-card i {
    font-size: 1.6rem;
    /* smaller icon */
    flex-shrink: 0;
}

/* Icon Colors */
.email-icon {
    color: var(--email);
}

.call-icon {
    color: var(--call);
}

.whatsapp-icon {
    color: var(--whatsapp);
}

.facebook-icon {
    color: var(--facebook);
}

.linkedin-icon {
    color: var(--linkedin);
}

/* Text Block Right */
.contact-card-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

/* Title */
.contact-card h5 {
    margin: 0 0 0.1rem 0;
    font-weight: 600;
    font-size: 1rem;
}

/* Contact Link */
.contact-link {
    margin-top: 0;
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: var(--accent-color);
}

/* Mobile stacking */
@media (max-width: 576px) {
    .contact-card {
        padding: 1rem;
    }
}

/* Contact Card */
.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #ffffff;
    padding: 1.2rem 1.5rem;
    border-radius: 10px;

    /* Improved visibility */
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
    text-align: left;
}

/* Larger contact link (phone number, email, etc.) */
.contact-link {
    margin-top: 0;
    text-decoration: none;
    color: #333;
    font-size: 1.05rem;
    /* Increased from 0.9rem */
    /* font-weight: 500; */
    /* Optional: makes it stand out */
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: var(--accent-color);
}

.social-heading {
    font-size: 1.05rem;
    /* font-weight: 600; */
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
}