/* Global Styles & Variables */
:root {
    --bg-color: #F5F3EE;
    --text-color: #000000;
    --accent-navy: #242B48;
    --accent-gold: #A28651;
    --accent-olive: #667436;
    --font-heading: 'Urbanist', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: background-color 0.3s ease, padding 0.3s ease;
    display: flex;
    align-items: center;
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo span {
    font-size: 28px;
    letter-spacing: 2px;
}

nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 1px solid var(--text-color);
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.phone-btn:hover {
    background: var(--text-color);
    color: #fff;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    z-index: 1001;
    /* Above overlay */
}

.menu-toggle .line {
    width: 30px;
    height: 2px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--accent-navy);
    color: #fff;
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.menu-overlay.active {
    transform: translateY(0);
}

.menu-content {
    text-align: center;
}

.main-nav li {
    margin: 20px 0;
    overflow: hidden;
}

.main-nav a {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    display: block;
    transform: translateY(100%);
    transition: transform 0.5s 0.2s ease;
}

.menu-overlay.active .main-nav a {
    transform: translateY(0);
}

.main-nav a:hover {
    color: var(--accent-gold);
}

.menu-toggle.active .line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
    background-color: #fff;
}

.menu-toggle.active .line:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
    background-color: #fff;
}

/* Hero Section */
#hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    /* Darken bg for text readability */
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.hero-title {
    font-size: 80px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.5s;
}

.hero-footer {
    position: absolute;
    bottom: 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1s;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 500;
}

.scroll-down {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.scroll-down:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.arrow-down {
    border: solid #fff;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 6px;
    transform: rotate(45deg);
    margin-top: -5px;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Update default section color for contrast */
section {
    position: relative;
    background-color: var(--bg-color);
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.muted-tag {
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 20px;
    font-weight: 600;
}

#about h2 {
    font-size: 48px;
    margin-bottom: 30px;
    line-height: 1.1;
}

.lead-text {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.8;
}

.btn-link {
    font-weight: 600;
    font-size: 16px;
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 5px;
}

.btn-link:hover {
    color: var(--accent-gold);
}

.about-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 20px 20px 0 var(--accent-olive);
}

/* About Capabilities */
.sub-heading {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--accent-navy);
}

.body-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.8;
}

.capabilities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.cap-tag {
    background: #fff;
    border: 1px solid var(--accent-navy);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--accent-navy);
    transition: all 0.3s ease;
}

.cap-tag:hover {
    background: var(--accent-navy);
    color: #fff;
}


/* Services Section (Pricing) */
.bg-light {
    background-color: #fff;
}

.section-top {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-top h2 {
    font-size: 42px;
    margin-bottom: 10px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: center;
    /* Center vertically so prominent card stands out */
}

.pricing-card {
    background: var(--bg-color);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.pricing-card.popular {
    background: var(--accent-navy);
    color: #fff;
    padding: 50px 40px;
    /* Slightly taller */
    box-shadow: 0 20px 40px rgba(36, 43, 72, 0.2);
}

.popular-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-gold);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 30px;
}

.pricing-card.popular .card-header {
    border-color: rgba(255, 255, 255, 0.1);
}

.card-header h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.card-header .period {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 20px;
}

.card-header .price {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-gold);
}

.card-header .price span {
    font-size: 16px;
    font-weight: 400;
    color: inherit;
    opacity: 0.8;
}

.features {
    margin-bottom: 30px;
    flex-grow: 1;
}

.features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.features li i {
    color: var(--accent-gold);
    font-size: 14px;
}

.btn-pricing {
    display: block;
    text-align: center;
    padding: 15px;
    border: 1px solid var(--text-color);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pricing-card.popular .btn-pricing {
    border-color: #fff;
    background: #fff;
    color: var(--accent-navy);
}

.pricing-card.popular .btn-pricing:hover {
    background: var(--accent-gold);
    color: #fff;
    border-color: var(--accent-gold);
}


/* Expertise Section */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.expert-item {
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.expert-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background: var(--bg-color);
    transform: translateY(-5px);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--accent-navy);
    color: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.expert-item h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.expert-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* ... existing code ... */

/* About Collage */
.collage-wrapper {
    position: relative;
    height: 600px;
    width: 100%;
}

.img-large {
    position: absolute;
    width: 80%;
    height: 80%;
    top: 0;
    right: 0;
    z-index: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 20px 20px 0 var(--accent-olive);
}

.img-large img,
.img-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-small {
    position: absolute;
    width: 50%;
    height: 50%;
    bottom: 0;
    left: 0;
    z-index: 2;
    border-radius: 12px;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}


/* Services Section (Decoration) */
.relative-container {
    position: relative;
    overflow: hidden;
}

.relative-z {
    position: relative;
    z-index: 2;
}

.bg-decoration {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(162, 134, 81, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
    border-radius: 50%;
}

/* ===== Services Section ===== */
.section-padding {
    padding: 90px 0;
}

.bg-light {
    background-color: #f9fafb;
}

.section-top h2 {
    font-size: 2.4rem;
    margin-top: 10px;
    margin-bottom: 15px;
}

.muted-tag {
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: #999;
    font-weight: 600;
}

/* ===== Capabilities Grid ===== */
.capabilities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    max-width: 900px;
    margin: 0 auto;
}

.cap-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 260px;
}

/* Tag Style */
.cap-tag {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    background: #fff;
    color: var(--accent-navy, #0f172a);
    font-weight: 500;
    font-size: 0.95rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    cursor: default;
}

/* Tag Hover */
.cap-item:hover .cap-tag {
    background: var(--accent-navy, #0f172a);
    color: #fff;
    transform: translateY(-2px);
}

/* Micro Description */
.cap-item small {
    margin-top: 8px;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    max-width: 220px;
}

/* ===== View Services Button ===== */
.btn-view {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-view i {
    transition: transform 0.3s ease;
}

.btn-view:hover i {
    transform: translateX(5px);
}

/* ===== Why Choose Us ===== */
.row.text-center h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--accent-navy, #0f172a);
}

.row.text-center p {
    font-size: 0.95rem;
    color: #555;
    max-width: 300px;
    margin: 0 auto;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .section-top h2 {
        font-size: 2rem;
    }

    .capabilities-grid {
        justify-content: center;
    }

    .cap-item {
        max-width: 100%;
    }
}


/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.text-white {
    color: #fff;
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.gallery-item span {
    font-size: 14px;
    opacity: 0.8;
}

/* Masonry-style Grid Layout */
@media (min-width: 992px) {
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(4, 300px);
        gap: 1rem;
    }

    /* Row 1 */
    .item-1 {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }

    .item-2 {
        grid-column: 2 / 3;
        grid-row: 1 / 3;
        height: 100%; /* Tall item */
    }

    .item-3 {
        grid-column: 3 / 4;
        grid-row: 1 / 2;
    }

    /* Row 2 */
    .item-4 {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }

    .item-5 {
        grid-column: 3 / 4;
        grid-row: 2 / 3;
    }

    /* Row 3 */
    .item-6 {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }

    .item-7 {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
    }

    .item-8 {
        grid-column: 3 / 4;
        grid-row: 3 / 4;
    }

    /* Row 4 */
    .item-9 {
        grid-column: 1 / 4;
        grid-row: 4 / 5; /* Full-width feature item */
    }
}


/* CTE Section */
.cta-section {
    position: relative;
    background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?q=80&w=2069&auto=format&fit=crop') no-repeat center center/cover;
    color: #fff;
    padding: 100px 0;
    margin-bottom: 0;
    /* Connect to footer */
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(36, 43, 72, 0.85);
    /* Accent Navy with opacity */
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-large {
    padding: 18px 45px;
    font-size: 18px;
    background: var(--accent-gold);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-large:hover {
    background: #fff;
    color: var(--accent-navy);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}


/* Updated Expertise Cards */
.expert-item {
    padding: 0;
    /* Reset padding */
    overflow: hidden;
    /* For image */
    display: flex;
    flex-direction: column;
}

.expert-img {
    height: 200px;
    width: 100%;
    overflow: hidden;
}

.expert-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.expert-item:hover .expert-img img {
    transform: scale(1.1);
}

.expert-content {
    padding: 30px;
    flex-grow: 1;
    background: #fff;
    position: relative;
}

.expert-content .icon-box {
    position: absolute;
    top: -30px;
    right: 30px;
    background: var(--accent-gold);
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Footer Section */
/* ... existing styles ... */
#footer {
    background-color: var(--accent-navy);
    color: #fff;
    padding: 60px 0 40px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-logo h2 {
    font-size: 36px;
    letter-spacing: 2px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #fff;
    color: var(--accent-navy);
}

.copyright {
    font-size: 14px;
    opacity: 0.6;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    width: 100%;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: var(--accent-gold);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 998;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top:hover {
    transform: translateY(-5px);
    background: #fff;
    color: var(--accent-gold);
}


.card-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .card-image img {
    transform: scale(1.05);
}

.card-info h4 {
    font-size: 24px;
    margin-bottom: 5px;
}

.card-info span {
    color: #777;
    font-size: 14px;
    text-transform: uppercase;
}

@media (max-width: 992px) {

    .about-container,
    .project-highlight {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 48px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Visual Enhancements Helpers
   ========================================= */

/* Split Layout (Image + Text) */
.split-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
}

.split-text {
    flex: 1;
    min-width: 300px;
}

.split-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 20px 20px 0 rgba(102, 116, 54, 0.2);
    /* Soft olive shadow */
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Icon Card Grid (Vertical) */
.icon-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.icon-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.icon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.icon-card i {
    font-size: 40px;
    color: var(--accent-gold);
    margin-bottom: 20px;
    display: inline-block;
}

.icon-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--accent-navy);
}

.icon-card p {
    font-size: 14px;
    color: #666;
}

/* Trusted By / Logo Strip */
.logo-strip-section {
    background: #fafafa;
    border-top: 1px solid #eee;
}

.logo-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px 60px;
    opacity: 0.6;
}

.logo-item {
    font-size: 24px;
    font-weight: 700;
    color: #ccc;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

/* Featured Project */
.featured-project {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #242B48;
    /* Navy bg */
    border-radius: 12px;
    overflow: hidden;
    color: #fff;
    margin-bottom: 40px;
}

.featured-thumb {
    height: 400px;
}

.featured-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-info {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-info h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #fff;
}

.featured-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    font-size: 18px;
}

.featured-info .btn-view {
    color: var(--accent-gold);
}

@media (max-width: 768px) {
    .featured-project {
        grid-template-columns: 1fr;
    }

    .featured-thumb {
        height: 250px;
    }

    .featured-info {
        padding: 30px;
    }
}

/* Map Visual */
.map-visual-container {
    width: 100%;
    height: 400px;
    margin-top: 60px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.map-visual-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%) contrast(1.1);
    /* Stylized map look */
}

.map-overlay-text {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #fff;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    max-width: 300px;
}

/* Services Detail Side Image */
.img-side-decoration {
    border-radius: 50px 0 50px 0;
    overflow: hidden;
    box-shadow: -10px 10px 0 var(--accent-gold);
}