@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&display=swap');

/* --- CSS from graphic-design.blade.php --- */
.works-section {
    padding: 80px 0;
    background: #f7f7f7;
    overflow-x: hidden;
}

.works-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* CARD */
.work-card {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* REVERSE */
.work-card.reverse {
    flex-direction: row-reverse;
}

/* IMAGE */
.work-image {
    flex: 1;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTENT */
.work-content {
    flex: 1;
    padding: 40px;
}

.work-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.work-content p {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
}

/* HOVER EFFECT */
.work-card:hover {
    transform: translateY(-5px);
    transition: 0.3s;
}

/* Custom Horizontal Scroll Animations for Work Cards */
.work-card.animate {
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 1.2s ease-out, transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.work-card.reverse.animate {
    transform: translateX(100px);
}

.work-card.animate.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.work-card.animate.is-visible:hover {
    transform: translateY(-5px);
}

/* RESPONSIVE */
@media (max-width: 992px) {

    .work-card,
    .work-card.reverse {
        flex-direction: column;
    }

    .work-content {
        padding: 25px;
        text-align: center;
    }
}

/* --- CSS from graphic-design.blade.php --- */
/* CSS Resets & Base Styles */
body,
html {
    margin: 0;
    padding: 0;
}

.graphic-design-page {
    font-family: 'Inter', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background: #fdfdfd;
}

.bg-light {
    background: #fdfdfd;
}

.bg-white {
    background: #ffffff;
}

.text-center {
    text-align: center;
}

.relative {
    position: relative;
}

.overflow-hidden {
    overflow: hidden;
}

.z-10 {
    z-index: 10;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.py-40 {
    padding-top: 40px;
    padding-bottom: 40px;
}

.py-60 {
    padding-top: 60px;
    padding-bottom: 80px;
}

/* Header Banner */
.banner-header {
    padding: 120px 20px 80px;
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
}

.font-montserrat {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #2b2848;
    margin: 0 0 10px 0;
}

.breadcrumbs {
    font-size: 14px;
    color: #888;
    font-weight: 500;
}

.breadcrumbs span {
    color: #333;
    font-weight: 600;
}

.deco-vector {
    position: absolute;
    width: 600px;
    height: 600px;
    top: -100px;
    z-index: 0;
}

.vector-left {
    left: 10%;
}

.vector-right {
    right: 10%;
}

/* Staggered Blocks */
.blocks-container {
    background: #fcfcfc;
}

.staggered-block {
    display: flex;
    align-items: stretch;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    margin-bottom: 40px;
    overflow: hidden;
    min-height: 400px;
}

.block-reverse {
    flex-direction: row-reverse;
}

.block-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.block-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #1f2328;
    margin-bottom: 15px;
}

.block-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #555;
    margin-bottom: 20px;
}

.block-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.block-image {
    flex: 1;
    position: relative;
    min-height: 350px;
    overflow: hidden;
}

.block-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dramatic image overlay text used in the design */
.image-overlay-text {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 45px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.2);
    line-height: 0.9;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

/* Bottom Curves Separator */
.bottom-curves {
    line-height: 0;
    background: #fbfbfd;
    width: 100%;
    position: relative;
}

.bottom-curves svg {
    display: block;
    width: 100%;
    height: auto;
    min-height: 100px;
    max-height: 250px;
}

/* CTA Contact */
.cta-contact {
    padding-top: 40px;
}

.btn-dark-large {
    background: #2b2743;
    color: #fff;
    padding: 15px 40px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-dark-large:hover {
    background: #1f1b32;
    transform: translateY(-2px);
}

/* Scroll Animation Utility */
.scroll-animate,
.animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform;
}

.scroll-animate.is-visible,
.animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsiveness */
@media (max-width: 900px) {
    .staggered-block {
        flex-direction: column !important;
    }

    .block-content {
        padding: 40px 30px;
    }

    .block-image {
        min-height: 300px;
    }

    .font-montserrat {
        font-size: 32px;
    }

    .image-overlay-text {
        font-size: 30px;
    }
}

/* --- CSS from seo.blade.php --- */
/* CSS Resets & Base Styles */
.seo-page {
    font-family: 'Inter', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.page-header {
    text-align: center;
    padding: 200px 20px 200px;
    background: #fdfdfd;
}

.page-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 600;
    color: #1f2328;
    margin-bottom: 5px;
}

.page-background {
    background: #fcfcfc;
    /* Just slightly off-white */
    padding-top: 40px;
}

/* Info Sections (Cards Mode) */
.info-section {
    padding: 40px 20px 20px;
    display: flex;
    justify-content: center;
}

.pb-large {
    padding-bottom: 60px;
}

.bg-white {
    background: #ffffff;
}

.info-card {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: stretch;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.info-text {
    flex: 1;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #1f2328;
    margin-bottom: 25px;
    line-height: 1.2;
}

.info-text p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.info-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.info-text ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #555;
}

.info-text ul li::before {
    content: "•";
    color: #333;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.info-image {
    flex: 1;
    position: relative;
    min-height: 400px;
}

.info-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Process Section */
.process-section {
    padding: 40px 20px 60px;
}

.process-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #1f2328;
    margin-bottom: 30px;
}

.process-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.process-item {
    background: #fff;
    border: 1px solid #eaeaea;
    padding: 20px;
    font-weight: 600;
    font-size: 18px;
    color: #333;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

/* Text Content */
.text-content-section {
    padding: 40px 20px 80px;
}

.text-content-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #1f2328;
    margin-bottom: 20px;
}

.text-content-section p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.timeline-box {
    margin-top: 30px;
}

.timeline-box h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: #1f2328;
    margin-top: 25px;
    margin-bottom: 10px;
}

/* Curve Divider */
.curve-divider {
    position: relative;
    line-height: 0;
    transform: rotate(180deg);
    margin-top: -1px;
}

.curve-divider .wave-svg {
    position: absolute;
    left: 0;
    width: 100%;
    height: 80px;
    bottom: 0;
}

.curve-divider .gold-wave {
    bottom: 20px;
    z-index: 1;
}

.curve-divider .dark-wave {
    z-index: 2;
}

/* FAQs */
.faq-section {
    padding: 80px 20px;
    background: #fbfbfd;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-container h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    margin-bottom: 30px;
    text-align: left;
    color: #333;
    font-weight: 800;
}

.accordion-item {
    background: transparent;
    border: 1px solid #eaeaea;
    margin-bottom: 10px;
    background: #fff;
}

.accordion-button {
    width: 100%;
    text-align: left;
    padding: 20px;
    font-size: 16px;
    font-weight: 600;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
}

.accordion-button::after {
    content: "+";
    font-size: 24px;
    color: #888;
}

.accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding-bottom 0.3s ease;
}

.accordion-content p {
    color: #666;
    margin: 0 0 20px 0;
}

.accordion-item.active .accordion-content {
    max-height: 300px;
    padding-bottom: 10px;
}

.accordion-item.active .accordion-button::after {
    content: "-";
}

/* Pricing */
.pricing-section {
    padding: 80px 20px;
    background: #fff;
    text-align: center;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: #fff;
    border: 1px solid #eaeaea;
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.03);
}

.pricing-card .card-header {
    background: #d4b15a;
    color: #fff;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
}

.pricing-card h3 {
    font-size: 45px;
    color: #333;
    margin: 20px 0;
}

.pricing-card h3 span {
    font-size: 18px;
    vertical-align: super;
    font-weight: normal;
}

.pricing-card ul {
    list-style: none;
    padding: 0 30px;
    text-align: left;
    margin-bottom: 40px;
    flex-grow: 1;
}

.pricing-card ul li {
    font-size: 14px;
    color: #555;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

.btn-contact {
    background: #2b2848;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: calc(100% - 60px);
    margin: 0 30px 30px 30px;
    transition: 0.3s background;
}

.btn-contact:hover {
    background: #1f1d35;
}

.pricing-card.active {
    border: 2px solid #55c88b;
    transform: scale(1.03);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.pricing-card.active .card-header {
    background: #d4b15a;
}

/* ✨ Vibrant hover effect */
.pricing-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease, border 0.35s ease;
}

.pricing-card:hover {
    transform: scale(1.03) translateY(-8px);
    box-shadow: 0 14px 35px rgba(85, 200, 139, 0.25);
    border: 2px solid #55c88b;
    z-index: 3;
}

/* optional slight glow in header */
.pricing-card:hover .card-header {
    box-shadow: inset 0 -3px 0 rgba(255, 255, 255, 0.2);
}

/* smooth button pop */
.pricing-card:hover .btn-contact {
    background: #1f1d35;
    transform: scale(1.03);
}

.ribbon {
    position: absolute;
    top: -12px;
    right: -10px;
    background: #55c88b;
    color: #fff;
    padding: 6px 18px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.ribbon::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    border-width: 5px 5px 0 0;
    border-style: solid;
    border-color: #3b9c69 transparent transparent transparent;
}

.btn-dark-small {
    display: inline-block;
    background: #2b2848;
    color: #fff;
    padding: 12px 25px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

/* Scroll Animation */
.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform;
}

.scroll-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsiveness */
@media (max-width: 992px) {
    .info-card {
        flex-direction: column !important;
    }

    .info-card.mobile-reverse {
        flex-direction: column-reverse !important;
    }

    .info-text {
        padding: 40px 30px;
    }

    .info-image {
        min-height: 300px;
    }

    .pricing-grid {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .pricing-card {
        width: 100%;
        max-width: 400px;
    }

    .pricing-card.active {
        transform: scale(1);
    }
}

/* --- CSS from web_development.blade.php --- */
/* CSS Resets & Base Styles */
.web-dev-page {
    font-family: 'Inter', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 40px;
}

.page-header {
    text-align: center;
    padding: 60px 20px 20px;
    background: #ffffff;
}

.page-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #1f2328;
    margin-bottom: 10px;
}

.breadcrumbs {
    font-size: 14px;
    color: #888;
}

.breadcrumbs span {
    color: #55c88b;
    font-weight: 600;
}

.page-background {
    background: #f8f9fa;
    /* Slightly darker grey to contrast cards */
    padding-top: 40px;
}

/* Info Sections (Cards Mode) */
.info-section {
    padding: 40px 20px;
    display: flex;
    justify-content: center;
}

.pb-large {
    padding-bottom: 80px;
}

.bg-white {
    background: #ffffff;
}

.info-card {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: stretch;
    /* Cards stretch to equal height */
    border-radius: 20px;
    /* Make it look like a smooth card */
    overflow: hidden;
    /* Hide overflowing images */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    /* Soft drop shadow */
}

.info-text {
    flex: 1;
    padding: 60px 80px;
    /* Deep inset padding for text inside the card */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #1f2328;
    margin-bottom: 25px;
    line-height: 1.2;
    text-transform: capitalize;
}

.info-text p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.info-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.info-text ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #555;
}

.info-text ul li::before {
    content: "•";
    color: #333;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.info-image {
    flex: 1;
    position: relative;
    min-height: 400px;
}

.info-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Curve Divider */
.curve-divider {
    position: relative;
    line-height: 0;
    transform: rotate(180deg);
    margin-top: -1px;
}

.curve-divider .wave-svg {
    position: absolute;
    left: 0;
    width: 100%;
    height: 80px;
    bottom: 0;
}

.curve-divider .gold-wave {
    bottom: 20px;
    z-index: 1;
}

.curve-divider .dark-wave {
    z-index: 2;
}

/* Portfolio Section */
.portfolio-section {
    padding: 50px 0 80px 0;
    background: #fff;
}

.portfolio-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #1f2328;
    margin: 20px 0 10px;
}

.portfolio-section .subtitle {
    font-size: 20px;
    color: #d4a373;
    font-weight: 600;
    margin-bottom: 15px;
}

.portfolio-section .sub-text {
    max-width: 800px;
    margin: 0 auto 50px;
    color: #666;
}

.portfolio-category h3 {
    font-size: 20px;
    color: #333;
    margin: 40px 0 20px;
    font-weight: 600;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.brand-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.brand-card {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(33.333% - 14px);
    min-height: 120px;
    transition: box-shadow 0.3s;
}

.brand-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.brand-card img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}

/* Buttons */
.btn-dark-small {
    display: inline-block;
    background: #393452;
    color: #fff;
    padding: 10px 25px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-dark-small:hover {
    background: #262238;
}

.btn-green {
    display: inline-block;
    background: #27d06f;
    color: #fff;
    padding: 15px 30px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-green:hover {
    background: #20b060;
}

.btn-dark {
    display: inline-block;
    background: #392c68;
    color: #fff;
    padding: 15px 30px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-dark:hover {
    background: #2b2150;
}

/* CTA Section */
.cta-section {
    padding: 60px 20px;
    background: #fff;
    display: flex;
    justify-content: center;
}

.cta-box {
    background: #fbfbfc;
    border: 1px solid #eaeaea;
    padding: 60px;
    max-width: 900px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.cta-box h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #1f2328;
    margin-bottom: 20px;
}

.cta-box p {
    color: #666;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.cta-box .small-text {
    font-size: 13px;
    color: #999;
    margin-bottom: 0;
}

/* Features Grid */
.features-section {
    padding: 80px 0;
    background: #fff;
}

.features-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #1f2328;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item h3 {
    font-size: 18px;
    color: #1f2328;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-item p {
    color: #666;
    font-size: 14px;
}

/* FAQs */
.faq-section {
    padding: 80px 20px 40px;
    background: #fcfcfc;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-container h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    margin-bottom: 40px;
    text-align: left;
    color: #333;
    font-weight: 800;
}

.accordion-item {
    background: transparent;
    border-bottom: 1px solid #e0e0e0;
}

.accordion-button {
    width: 100%;
    text-align: left;
    padding: 25px 0;
    font-size: 16px;
    font-weight: 600;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
}

.accordion-button::after {
    content: "+";
    font-size: 24px;
    color: #888;
}

.accordion-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding-bottom 0.3s ease;
}

.accordion-content p {
    color: #666;
    margin: 0 0 20px 0;
}

.accordion-item.active .accordion-content {
    max-height: 300px;
    padding-bottom: 10px;
}

.accordion-item.active .accordion-button::after {
    content: "-";
}

/* Scroll Animation */
.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform;
}

.scroll-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsiveness */
@media (max-width: 992px) {
    .info-card {
        flex-direction: column !important;
    }

    .info-card.mobile-reverse {
        flex-direction: column-reverse !important;
    }

    .info-text {
        padding: 40px 30px;
    }

    .info-image {
        min-height: 300px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brand-card {
        width: calc(50% - 10px);
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .brand-card {
        width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

/* --- CSS from video-editing.blade.php --- */
/* CSS Resets & Base Styles */
.video-editing-page {
    font-family: 'Inter', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background: #fbfbfd;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.relative {
    position: relative;
}

.z-10 {
    z-index: 10;
}

.overflow-hidden {
    overflow: hidden;
}

.text-center {
    text-align: center;
}

.mt-30 {
    margin-top: 30px;
}

/* Breadcrumbs */
.breadcrumbs {
    font-size: 14px;
    color: #888;
    /* padding-top: 40px; */
}

.breadcrumbs span {
    color: #333;
    font-weight: 600;
}

/* Hero Section Backgrounds */
.service-hero {
    position: relative;
    padding-bottom: 80px;
}

.deco-shape {
    position: absolute;
}

.deco-purple-curve {
    bottom: -50px;
    left: -5%;
    width: 350px;
    height: 250px;
    background: linear-gradient(135deg, #4b4168, #2a2742);
    border-radius: 0 100% 100% 0;
    z-index: 1;
}

.deco-gold-circle {
    bottom: -80px;
    right: -10%;
    width: 600px;
    height: 600px;
    background: #dcb360;
    /* The rich gold from the screenshot */
    border-radius: 50%;
    z-index: 1;
    opacity: 0.9;
}

/* Main Service Card */
.service-card {
    display: flex;
    align-items: stretch;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    /* Soft heavy shadow matching the mockup */
    overflow: hidden;
    min-height: 600px;
}

.service-text {
    flex: 1.1;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: #1f2328;
    margin-bottom: 25px;
}

.service-text p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-image {
    flex: 0.9;
    position: relative;
}

.service-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Clients Logo Strip */
.clients-strip {
    padding: 60px 0;
    background: #fbfbfd;
    border-top: 1px solid #f0f0f0;
    /* subtle separator if needed */
    margin-top: 40px;
}

.logos-flex {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.logos-flex img {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: 0.3s;
}

.logos-flex img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Stunning CTA Section */
.stunning-cta {
    padding: 100px 0 140px;
    background: #fbfbfd;
    position: relative;
}

.cta-grey-circle {
    right: 15%;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: #a5a2a9;
    /* Soft purplish-grey from the image */
    border-radius: 50%;
    z-index: 1;
    opacity: 0.9;
}

.cta-gold-circle {
    left: -5%;
    bottom: 0;
    width: 250px;
    height: 250px;
    background: #dcb360;
    border-radius: 50%;
    border-bottom-left-radius: 0;
    z-index: 1;
    opacity: 0.9;
}

.badge-tag {
    display: inline-block;
    padding: 8px 25px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.massive-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 58px;
    font-weight: 800;
    color: #1f2328;
    line-height: 1.2;
    margin-bottom: 25px;
}

.highlight-box {
    background: #888494;
    /* Grey box behind showcase */
    color: #fff;
    padding: 4px 15px;
    border-radius: 10px;
    display: inline-block;
    font-weight: 700;
}

.highlight-check {
    font-size: 50px;
    vertical-align: middle;
    margin: 0 5px;
}

.cta-sub {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn-dark-large {
    background: #2b2743;
    color: #fff;
    padding: 16px 35px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
}

.btn-dark-large:hover {
    background: #1f1b32;
}

/* Scroll Animation Utility */
.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform;
}

.scroll-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsiveness */
@media (max-width: 992px) {
    .service-card {
        flex-direction: column;
    }

    .service-text {
        padding: 40px 30px;
    }

    .service-image {
        min-height: 400px;
    }

    .massive-title {
        font-size: 38px;
    }

    .cta-grey-circle {
        width: 400px;
        height: 400px;
        right: 0%;
        opacity: 0.5;
    }

    .deco-gold-circle {
        width: 300px;
        height: 300px;
        opacity: 0.5;
    }
}

/* --- CSS from social-media-details.blade.php --- */
/* CSS Resets & Base Styles */
.social-page {
    font-family: 'Inter', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background: #fbfbfd;
    /* Very subtle off-white background to make cards pop */
    overflow-x: hidden;
}

.page-background {
    background: #f8f9fa;
    /* Slightly darker grey to contrast cards */
    padding-top: 40px;
}

/* Info Sections (Cards Mode) */
.info-section {
    padding: 80px;
    display: flex;
    justify-content: center;
}

.pb-large {
    padding-bottom: 80px;
}

.bg-white {
    background: #ffffff;
}

.bg-beige {
    background: #ffffff;
}

.info-card {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: stretch;
    /* Cards stretch to equal height */
    border-radius: 20px;
    /* Make it look like a smooth card */
    overflow: hidden;
    /* Hide overflowing images */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    /* Soft drop shadow */
}

.info-text {
    flex: 1;
    padding: 60px 80px;
    /* Deep inset padding for text inside the card */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #1f2328;
    margin-bottom: 25px;
    line-height: 1.2;
}

.info-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #1f2328;
    margin-bottom: 25px;
    line-height: 1.2;
}

.info-text p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.info-text ul {
    list-style: none;
    padding: 0;
}

.info-text ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #555;
}

.info-text ul li::before {
    content: "•";
    color: #333;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.info-image {
    flex: 1;
    position: relative;
    min-height: 400px;
}

.info-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Cover the entire right half of the card smoothly */
}

/* Scroll Animation Utility Classes */
.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform;
}

.scroll-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Curved Divider */
.curve-divider {
    position: relative;
    line-height: 0;
    transform: rotate(180deg);
    margin-top: -1px;
}

.curve-divider .wave-svg {
    position: absolute;
    left: 0;
    width: 100%;
    height: 80px;
    bottom: 0;
}

.curve-divider .gold-wave {
    bottom: 20px;
    z-index: 1;
}

.curve-divider .dark-wave {
    z-index: 2;
}

/* FAQs */
.faq-section {
    padding: 80px 20px;
    background: #f8f8f8;
    margin-top: 50px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-container h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: left;
    color: #333;
}

.accordion-item {
    background: #fff;
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.accordion-button {
    width: 100%;
    text-align: left;
    padding: 20px;
    font-size: 16px;
    font-weight: 600;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
}

.accordion-button::after {
    content: "+";
    font-size: 24px;
    color: #888;
}

.accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding-bottom 0.3s ease;
}

.accordion-content p {
    color: #666;
    margin: 0;
}

.accordion-item.active .accordion-content {
    max-height: 300px;
    padding-bottom: 20px;
}

.accordion-item.active .accordion-button::after {
    content: "-";
}

/* Logos */
.logos-section {
    padding: 60px 20px;
    background: #fff;
}

.logos-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logos-container img {
    max-height: 50px;
    filter: grayscale(20%);
    opacity: 0.9;
}

/* Pricing Grid */
.pricing-section {
    padding: 80px 20px;
    background: #fff;
    text-align: center;
}

.pricing-section h2 {
    font-size: 36px;
    margin-bottom: 60px;
    color: #333;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto 40px auto;
}

.pricing-card {
    background: #fff;
    border: 1px solid #eaeaea;
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.03);
}

.pricing-card .card-header {
    background: #d4b15a;
    color: #fff;
    padding: 18px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
}

.pricing-card h3 {
    font-size: 45px;
    color: #333;
    margin: 30px 0 5px 0;
}

.pricing-card h3 span {
    font-size: 18px;
    vertical-align: super;
    font-weight: normal;
}

.pricing-card p.month {
    color: #888;
    font-size: 14px;
    margin-bottom: 25px;
}

.pricing-card ul {
    list-style: none;
    padding: 0 30px;
    text-align: left;
    margin-bottom: 40px;
    flex-grow: 1;
}

.pricing-card ul li {
    font-size: 14px;
    color: #555;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

.btn-contact {
    background: #2b2848;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: calc(100% - 60px);
    margin: 0 30px 30px 30px;
    transition: 0.3s background;
}

.btn-contact:hover {
    background: #1f1d35;
}

.pricing-card.active {
    border: 2px solid #55c88b;
    transform: scale(1.03);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.pricing-card.active .card-header {
    background: #d4b15a;
}

.ribbon {
    position: absolute;
    top: -12px;
    right: -10px;
    background: #55c88b;
    color: #fff;
    padding: 6px 18px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.ribbon::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    border-width: 5px 5px 0 0;
    border-style: solid;
    border-color: #3b9c69 transparent transparent transparent;
}

/* Responsiveness */
@media (max-width: 992px) {
    .info-card {
        flex-direction: column !important;
    }

    .info-card.mobile-reverse {
        flex-direction: column-reverse !important;
    }

    .info-text {
        padding: 40px 30px;
    }

    .info-image {
        min-height: 300px;
    }

    .pricing-grid {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .pricing-card {
        width: 100%;
        max-width: 400px;
    }

    .pricing-card.active {
        transform: scale(1);
    }
}


/* --- CSS from index.blade.php --- */
.clients-marquee {
    width: 100%;
    overflow: hidden;
    /* background: #fff; */
    padding: 30px 0;
}

.marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee__track {
    display: flex;
    width: max-content;
    animation: scrollRight 25s linear infinite;
}

/* STOP ON HOVER */
.marquee:hover .marquee__track {
    animation-play-state: paused;
}

/* LOGO LINE */
.marquee__inner {
    display: flex;
    align-items: center;
    gap: 50px;
}

/* ITEM */
.marquee__item {
    flex: 0 0 auto;
}

.marquee__item img {
    width: 120px;
    height: auto;
    object-fit: contain;
}

/* SIZE VARIATIONS */
.marquee__item.large img {
    width: 180px;
}

/* 🔥 LEFT → RIGHT MOVEMENT */
@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .marquee__inner {
        gap: 30px;
    }

    .marquee__item img {
        width: 90px;
    }

    .marquee__item.large img {
        width: 130px;
    }
}

.custom-video-banner {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.video-wrapper {
    width: 100%;
    height: 100vh;
    /* full screen height */
    position: relative;
}

/* VIDEO FIT */
.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 🔥 KEY for responsiveness */
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .video-wrapper {
        height: 60vh;
        /* smaller on mobile */
    }
}

.custom-hero {
    /* padding: 60px 0; */
    background: #f7f7f7;
}

.custom-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* BOX */
.custom-hero-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: #fff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* LEFT */
.custom-hero-left {
    flex: 1;
}

.custom-icon {
    margin-bottom: 20px;
}

.custom-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.custom-text {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* BUTTON */
.custom-btn {
    display: inline-block;
    background: #2d2d44;
    color: #fff;
    padding: 14px 25px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.custom-btn:hover {
    background: #000;
}

/* RIGHT */
.custom-hero-right {
    flex: 1;
    text-align: center;
}

.custom-hero-right img {
    width: 100%;
    max-width: 450px;
    height: auto;
    object-fit: contain;
}

/* 🔥 RESPONSIVE */
@media (max-width: 992px) {
    .custom-hero-box {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .custom-title {
        font-size: 30px;
    }

    .custom-text {
        font-size: 16px;
    }

    .custom-hero-right img {
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .custom-title {
        font-size: 24px;
    }
}

/* --- CSS from index.blade.php --- */
.hero {
    display: flex;
    justify-content: center;
    /* horizontal center */
    align-items: center;
    /* vertical center */
    text-align: center;
    /* text center */
    height: 200px;
    /* adjust as needed */
    background: #f5f5f5;
    margin-top: -45px;
    /* optional */
}

.hero-content h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.tagline {
    display: inline-block;
    background: #e5e7eb;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
}

.animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.animate.show {
    opacity: 1;
    transform: translateY(0);
}

/* --- CSS from index.blade.php --- */
.journey-section {
    position: relative;
    background: #f7f7f7;
    padding: 80px 0 120px;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* BOX */
.journey-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* LEFT */
.journey-left {
    flex: 1;
}

.journey-badges {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.journey-badges img {
    height: 40px;
}

/* TITLE */
.journey-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* TEXT */
.journey-text {
    font-size: 18px;
    color: #6f7a86;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* BUTTON */
.journey-btn {
    display: inline-block;
    background: #2d2d44;
    color: #fff;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.journey-btn:hover {
    background: #000;
}

/* RIGHT IMAGE */
.journey-right {
    flex: 1;
    text-align: center;
}

.journey-right img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
}


/* RESPONSIVE */
@media (max-width: 992px) {
    .journey-box {
        flex-direction: column;
        text-align: center;
    }

    .journey-title {
        font-size: 32px;
    }

    .journey-text {
        font-size: 16px;
    }

    .journey-right img {
        max-width: 350px;
    }
}

@media (max-width: 576px) {
    .journey-title {
        font-size: 26px;
    }
}

/* --- CSS from index.blade.php --- */
.services-section {
    padding: 80px 0;
    background: #f7f7f7;
}

.services-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-header {
    margin-bottom: 40px;
}

.services-title {
    margin: 0 0 20px;
    font-size: 64px;
    line-height: 1;
    font-weight: 700;
    color: #1f252d;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.services-description {
    max-width: 1180px;
    margin: 0;
    font-size: 18px;
    line-height: 1.8;
    color: #6f7a86;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.service-card {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}

.service-image-wrap {
    padding: 12px 12px 0;
}

.service-image {
    width: 100%;
    height: 285px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.service-content {
    padding: 18px 16px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-card-title {
    margin: 0 0 14px;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
    color: #1f252d;
}

.service-card-text {
    margin: 0 0 22px;
    font-size: 17px;
    line-height: 1.6;
    color: #6f7a86;
    flex-grow: 1;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 130px;
    padding: 12px 18px;
    background: #34314f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.service-btn:hover {
    background: #22203a;
    color: #ffffff;
}

@media (max-width: 1199px) {
    .services-title {
        font-size: 52px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .services-section {
        padding: 60px 0;
    }

    .services-title {
        font-size: 38px;
    }

    .services-description {
        font-size: 16px;
        line-height: 1.7;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-image {
        height: 240px;
    }

    .service-card-title {
        font-size: 24px;
    }

    .service-card-text {
        font-size: 16px;
    }
}

/* --- CSS from index.blade.php --- */
.why-mm-section {
    position: relative;
    background: #f6f6f6;
    padding: 24px 0 90px;
    overflow: hidden;
}

.why-mm-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.why-mm-top-btn-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 55px;
}

.why-mm-top-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #2f2c48;
    color: #fff;
    text-decoration: none;
    padding: 16px 28px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.why-mm-top-btn:hover {
    background: #242138;
    color: #fff;
}

.why-mm-top-btn-icon {
    font-size: 18px;
    line-height: 1;
}

.why-mm-grid {
    display: grid;
    grid-template-columns: 1.55fr 1fr 1fr 1fr 1fr;
    gap: 22px;
    align-items: stretch;
}

.why-mm-intro {
    padding-right: 20px;
}

.why-mm-title {
    margin: 0 0 18px;
    font-size: 54px;
    line-height: 1.05;
    font-weight: 700;
    color: #20252d;
    letter-spacing: -1px;
}

.why-mm-text {
    margin: 0 0 26px;
    font-size: 20px;
    line-height: 1.6;
    color: #6f7a86;
    max-width: 420px;
}

.why-mm-about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #2d2d2d;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.why-mm-about-btn:hover {
    color: #000;
    transform: translateY(-2px);
}

.why-mm-about-icon {
    font-size: 18px;
    line-height: 1;
}

.why-mm-card {
    background: rgba(255, 255, 255, 0.22);
    min-height: 470px;
    padding: 28px 40px 28px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.why-mm-icon {
    margin-bottom: 28px;
    line-height: 1;
}

.why-mm-icon-gold {
    color: #d7b25a;
}

.why-mm-icon-light {
    color: #eadfbe;
}

.why-mm-card-title {
    margin: 0 0 10px;
    font-size: 28px;
    line-height: 1.15;
    font-weight: 700;
    color: #20252d;
}

.why-mm-card-text {
    margin: 0;
    font-size: 17px;
    line-height: 1.55;
    color: #6f7a86;
    max-width: 170px;
}

.why-mm-bottom-lines {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    pointer-events: none;
}

.why-mm-line {
    position: absolute;
    left: -3%;
    width: 106%;
    transform-origin: left center;
}

.why-mm-line-gold {
    height: 34px;
    background: #d4b15a;
    bottom: 18px;
    transform: rotate(-4.4deg);
}

.why-mm-line-dark {
    height: 28px;
    background: #534d63;
    bottom: -2px;
    transform: rotate(-5.6deg);
}

@media (max-width: 1199px) {
    .why-mm-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-mm-intro {
        grid-column: 1 / -1;
        padding-right: 0;
        margin-bottom: 10px;
    }

    .why-mm-title {
        font-size: 44px;
    }

    .why-mm-text {
        max-width: 100%;
    }

    .why-mm-card {
        min-height: auto;
    }

    .why-mm-card-text {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .why-mm-section {
        padding: 20px 0 70px;
    }

    .why-mm-container {
        padding: 0 16px;
    }

    .why-mm-top-btn-wrap {
        margin-bottom: 30px;
    }

    .why-mm-top-btn {
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 14px 18px;
    }

    .why-mm-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .why-mm-title {
        font-size: 38px;
    }

    .why-mm-text {
        font-size: 18px;
        line-height: 1.55;
    }

    .why-mm-about-btn {
        width: 100%;
        justify-content: center;
    }

    .why-mm-card {
        min-height: auto;
        padding: 24px 22px;
    }

    .why-mm-card-title {
        font-size: 24px;
    }

    .why-mm-card-text {
        font-size: 16px;
    }

    .why-mm-line-gold {
        height: 24px;
        bottom: 14px;
    }

    .why-mm-line-dark {
        height: 20px;
    }
}

/* --- CSS from index.blade.php --- */
.journey-cta-section {
    background: #f5f5f5;
    padding: 48px 20px 70px;
}

.journey-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.journey-cta-badge {
    display: inline-block;
    background: #ffffff;
    color: #2a2a2a;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    padding: 12px 18px;
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 28px;
}

.journey-cta-title {
    margin: 0 auto 18px;
    max-width: 1200px;
    font-size: 44px;
    line-height: 1.2;
    font-weight: 700;
    color: #21262d;
    letter-spacing: -0.5px;
}

.journey-cta-text {
    max-width: 760px;
    margin: 0 auto 28px;
    font-size: 22px;
    line-height: 1.55;
    font-weight: 500;
    color: #6d7784;
}

.journey-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    padding: 18px 32px;
    background: #34314f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 20px;
    font-weight: 700;
    transition: background 0.3s ease, transform 0.3s ease;
}

.journey-cta-btn:hover {
    background: #26233d;
    color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .journey-cta-title {
        font-size: 36px;
    }

    .journey-cta-text {
        font-size: 19px;
        max-width: 680px;
    }
}

@media (max-width: 767px) {
    .journey-cta-section {
        padding: 40px 16px 56px;
    }

    .journey-cta-badge {
        font-size: 14px;
        padding: 10px 16px;
        margin-bottom: 22px;
    }

    .journey-cta-title {
        font-size: 28px;
        line-height: 1.25;
        margin-bottom: 16px;
    }

    .journey-cta-text {
        font-size: 17px;
        line-height: 1.6;
        margin-bottom: 24px;
    }

    .journey-cta-btn {
        min-width: 150px;
        padding: 15px 26px;
        font-size: 18px;
    }
}

/* --- CSS from index.blade.php --- */
.commitment-slider {
    padding: 80px 0;
    background: #f5f5f5;
    overflow: hidden;
    position: relative;
}

.slider-wrapper {
    overflow: visible;
    /* FIX text cut */
    width: 100%;
}

.slider-track {
    display: flex;
    align-items: center;
    gap: 180px;
    /* little more space for text */
    width: max-content;
    will-change: transform;
}

.slide {
    flex: 0 0 420px;
    position: relative;
    overflow: visible;
}

.slide img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.slide-text {
    position: absolute;
    right: -170px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 27px;
    color: #d9dde2;
    font-weight: 600;
    white-space: nowrap;
    z-index: 2;
}

/* --- CSS from index.blade.php --- */
.works-section {
    padding: 80px 0;
    background: #f7f7f7;
}

.works-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* CARD */
.work-card {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* REVERSE */
.work-card.reverse {
    flex-direction: row-reverse;
}

/* IMAGE */
.work-image {
    flex: 1;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTENT */
.work-content {
    flex: 1;
    padding: 40px;
}

.work-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.work-content p {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
}

/* HOVER EFFECT */
.work-card:hover {
    transform: translateY(-5px);
    transition: 0.3s;
}

/* RESPONSIVE */
@media (max-width: 992px) {

    .work-card,
    .work-card.reverse {
        flex-direction: column;
    }

    .work-content {
        padding: 25px;
        text-align: center;
    }
}

/* --- CSS from index.blade.php --- */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f8f8f8;
}

/* ================= PREVIOUS SECTION ================= */
.previous-section {
    background: #ffffff;
    padding: 120px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.previous-section h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.previous-section p {
    color: #666;
    max-width: 600px;
    margin: auto;
}

/* ================= CONTACT SECTION ================= */
.contact-section {
    margin-top: -80px;
    /* 🔥 overlap effect */
    padding: 140px 20px 100px;
    text-align: center;
    background: #f5f5f5;
    position: relative;
    z-index: 3;

    /* Premium look */
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

/* Content */
.contact-content {
    position: relative;
    z-index: 5;
}

.contact-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 20px;
}

.contact-section p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 16px;
    color: #6b6b6b;
    line-height: 1.6;
}

/* Button */
.contact-btn {
    display: inline-block;
    background: #3c3a5a;
    color: #fff;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.contact-btn:hover {
    background: #2b2945;
}

/* ================= SLANTED BACKGROUND ================= */
.contact-section::before {
    position: absolute;
    bottom: 0;
    left: -10%;
    width: 120%;
    height: 140px;
    background: #4c4a63;
    transform: skewY(-5deg);
    z-index: 1;
}

.contact-section::after {
    position: relative;
    background: #f6f6f6;
    padding: 24px 0 90px;
    overflow: hidden;
}

/* --- CSS from index.blade.php --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    color: #222;
}

.blog-section {
    padding: 60px 20px 80px;
    background: #f5f5f5;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-top {
    text-align: center;
    margin-bottom: 50px;
}

.blog-badge {
    display: inline-block;
    padding: 10px 18px;
    background: #ffffff;
    border-radius: 999px;
    font-size: 14px;
    color: #333;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
}

.blog-title {
    font-size: 48px;
    font-weight: 700;
    color: #20252b;
    margin-bottom: 18px;
    line-height: 1.1;
}

.blog-subtitle {
    max-width: 760px;
    margin: 0 auto 24px;
    font-size: 18px;
    line-height: 1.7;
    color: #6f7782;
    font-weight: 500;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #3f3d63;
    font-size: 18px;
    font-weight: 700;
}

.blog-link span {
    font-size: 22px;
    line-height: 1;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

.blog-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.blog-card img {
    width: 100%;
    height: 235px;
    object-fit: cover;
    display: block;
}

.blog-card-content {
    padding: 20px 20px 28px;
}

.blog-tag {
    display: inline-block;
    padding: 6px 10px;
    font-size: 13px;
    background: #ece9f7;
    color: #4d4b68;
    border-radius: 6px;
    margin-bottom: 16px;
    font-weight: 500;
}

.blog-card-title {
    font-size: 30px;
    line-height: 1.25;
    font-weight: 700;
    color: #20252b;
}

@media (max-width: 991px) {
    .blog-title {
        font-size: 38px;
    }

    .blog-card-title {
        font-size: 24px;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .blog-section {
        padding: 50px 15px 60px;
    }

    .blog-title {
        font-size: 30px;
    }

    .blog-subtitle {
        font-size: 16px;
    }

    .blog-link {
        font-size: 16px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card img {
        height: 220px;
    }

    .blog-card-title {
        font-size: 22px;
    }
}

/* Extracted from index.blade.php */
.clients-marquee {
    width: 100%;
    overflow: hidden;
    /* background: #fff; */
    padding: 30px 0;
}

.marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee__track {
    display: flex;
    width: max-content;
    animation: scrollRight 25s linear infinite;
}

/* STOP ON HOVER */
.marquee:hover .marquee__track {
    animation-play-state: paused;
}

/* LOGO LINE */
.marquee__inner {
    display: flex;
    align-items: center;
    gap: 50px;
}

/* ITEM */
.marquee__item {
    flex: 0 0 auto;
}

.marquee__item img {
    width: 120px;
    height: auto;
    object-fit: contain;
}

/* SIZE VARIATIONS */
.marquee__item.large img {
    width: 180px;
}

/* 🔥 LEFT → RIGHT MOVEMENT */
@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .marquee__inner {
        gap: 30px;
    }

    .marquee__item img {
        width: 90px;
    }

    .marquee__item.large img {
        width: 130px;
    }
}

.custom-video-banner {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.video-wrapper {
    width: 100%;
    height: 100vh;
    /* full screen height */
    position: relative;
}

/* VIDEO FIT */
.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 🔥 KEY for responsiveness */
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .video-wrapper {
        height: 60vh;
        /* smaller on mobile */
    }
}

.custom-hero {
    /* padding: 60px 0; */
    background: #f7f7f7;
}

.custom-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* BOX */
.custom-hero-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: #fff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* LEFT */
.custom-hero-left {
    flex: 1;
}

.custom-icon {
    margin-bottom: 20px;
}

.custom-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.custom-text {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* BUTTON */
.custom-btn {
    display: inline-block;
    background: #2d2d44;
    color: #fff;
    padding: 14px 25px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.custom-btn:hover {
    background: #000;
}

/* RIGHT */
.custom-hero-right {
    flex: 1;
    text-align: center;
}

.custom-hero-right img {
    width: 100%;
    max-width: 450px;
    height: auto;
    object-fit: contain;
}

/* 🔥 RESPONSIVE */
@media (max-width: 992px) {
    .custom-hero-box {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .custom-title {
        font-size: 30px;
    }

    .custom-text {
        font-size: 16px;
    }

    .custom-hero-right img {
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .custom-title {
        font-size: 24px;
    }
}

/* Extracted from index.blade.php */
.hero {
    display: flex;
    justify-content: center;
    /* horizontal center */
    align-items: center;
    /* vertical center */
    text-align: center;
    /* text center */
    height: 200px;
    /* adjust as needed */
    background: #f5f5f5;
    margin-top: -45px;
    /* optional */
}

.hero-content h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.tagline {
    display: inline-block;
    background: #e5e7eb;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
}

.animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.animate.show {
    opacity: 1;
    transform: translateY(0);
}

/* Extracted from index.blade.php */
.journey-section {
    position: relative;
    background: #f7f7f7;
    padding: 80px 0 120px;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* BOX */
.journey-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* LEFT */
.journey-left {
    flex: 1;
}

.journey-badges {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.journey-badges img {
    height: 40px;
}

/* TITLE */
.journey-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* TEXT */
.journey-text {
    font-size: 18px;
    color: #6f7a86;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* BUTTON */
.journey-btn {
    display: inline-block;
    background: #2d2d44;
    color: #fff;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.journey-btn:hover {
    background: #000;
}

/* RIGHT IMAGE */
.journey-right {
    flex: 1;
    text-align: center;
}

.journey-right img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
}


/* RESPONSIVE */
@media (max-width: 992px) {
    .journey-box {
        flex-direction: column;
        text-align: center;
    }

    .journey-title {
        font-size: 32px;
    }

    .journey-text {
        font-size: 16px;
    }

    .journey-right img {
        max-width: 350px;
    }
}

@media (max-width: 576px) {
    .journey-title {
        font-size: 26px;
    }
}

/* Extracted from index.blade.php */
.services-section {
    padding: 80px 0;
    background: #f7f7f7;
}

.services-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-header {
    margin-bottom: 40px;
}

.services-title {
    margin: 0 0 20px;
    font-size: 64px;
    line-height: 1;
    font-weight: 700;
    color: #1f252d;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.services-description {
    max-width: 1180px;
    margin: 0;
    font-size: 18px;
    line-height: 1.8;
    color: #6f7a86;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.service-card {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}

.service-image-wrap {
    padding: 12px 12px 0;
}

.service-image {
    width: 100%;
    height: 285px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.service-content {
    padding: 18px 16px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-card-title {
    margin: 0 0 14px;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
    color: #1f252d;
}

.service-card-text {
    margin: 0 0 22px;
    font-size: 17px;
    line-height: 1.6;
    color: #6f7a86;
    flex-grow: 1;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 130px;
    padding: 12px 18px;
    background: #34314f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.service-btn:hover {
    background: #22203a;
    color: #ffffff;
}

@media (max-width: 1199px) {
    .services-title {
        font-size: 52px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .services-section {
        padding: 60px 0;
    }

    .services-title {
        font-size: 38px;
    }

    .services-description {
        font-size: 16px;
        line-height: 1.7;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-image {
        height: 240px;
    }

    .service-card-title {
        font-size: 24px;
    }

    .service-card-text {
        font-size: 16px;
    }
}

/* Extracted from index.blade.php */
.why-mm-section {
    position: relative;
    background: #f6f6f6;
    padding: 24px 0 90px;
    overflow: hidden;
}

.why-mm-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.why-mm-top-btn-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 55px;
}

.why-mm-top-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #2f2c48;
    color: #fff;
    text-decoration: none;
    padding: 16px 28px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.why-mm-top-btn:hover {
    background: #242138;
    color: #fff;
}

.why-mm-top-btn-icon {
    font-size: 18px;
    line-height: 1;
}

.why-mm-grid {
    display: grid;
    grid-template-columns: 1.55fr 1fr 1fr 1fr 1fr;
    gap: 22px;
    align-items: stretch;
}

.why-mm-intro {
    padding-right: 20px;
}

.why-mm-title {
    margin: 0 0 18px;
    font-size: 54px;
    line-height: 1.05;
    font-weight: 700;
    color: #20252d;
    letter-spacing: -1px;
}

.why-mm-text {
    margin: 0 0 26px;
    font-size: 20px;
    line-height: 1.6;
    color: #6f7a86;
    max-width: 420px;
}

.why-mm-about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #2d2d2d;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.why-mm-about-btn:hover {
    color: #000;
    transform: translateY(-2px);
}

.why-mm-about-icon {
    font-size: 18px;
    line-height: 1;
}

.why-mm-card {
    background: rgba(255, 255, 255, 0.22);
    min-height: 470px;
    padding: 28px 40px 28px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.why-mm-icon {
    margin-bottom: 28px;
    line-height: 1;
}

.why-mm-icon-gold {
    color: #d7b25a;
}

.why-mm-icon-light {
    color: #eadfbe;
}

.why-mm-card-title {
    margin: 0 0 10px;
    font-size: 28px;
    line-height: 1.15;
    font-weight: 700;
    color: #20252d;
}

.why-mm-card-text {
    margin: 0;
    font-size: 17px;
    line-height: 1.55;
    color: #6f7a86;
    max-width: 170px;
}

.why-mm-bottom-lines {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    pointer-events: none;
}

.why-mm-line {
    position: absolute;
    left: -3%;
    width: 106%;
    transform-origin: left center;
}

.why-mm-line-gold {
    height: 34px;
    background: #d4b15a;
    bottom: 18px;
    transform: rotate(-4.4deg);
}

.why-mm-line-dark {
    height: 28px;
    background: #534d63;
    bottom: -2px;
    transform: rotate(-5.6deg);
}

@media (max-width: 1199px) {
    .why-mm-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-mm-intro {
        grid-column: 1 / -1;
        padding-right: 0;
        margin-bottom: 10px;
    }

    .why-mm-title {
        font-size: 44px;
    }

    .why-mm-text {
        max-width: 100%;
    }

    .why-mm-card {
        min-height: auto;
    }

    .why-mm-card-text {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .why-mm-section {
        padding: 20px 0 70px;
    }

    .why-mm-container {
        padding: 0 16px;
    }

    .why-mm-top-btn-wrap {
        margin-bottom: 30px;
    }

    .why-mm-top-btn {
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 14px 18px;
    }

    .why-mm-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .why-mm-title {
        font-size: 38px;
    }

    .why-mm-text {
        font-size: 18px;
        line-height: 1.55;
    }

    .why-mm-about-btn {
        width: 100%;
        justify-content: center;
    }

    .why-mm-card {
        min-height: auto;
        padding: 24px 22px;
    }

    .why-mm-card-title {
        font-size: 24px;
    }

    .why-mm-card-text {
        font-size: 16px;
    }

    .why-mm-line-gold {
        height: 24px;
        bottom: 14px;
    }

    .why-mm-line-dark {
        height: 20px;
    }
}

/* Extracted from index.blade.php */
.journey-cta-section {
    background: #f5f5f5;
    padding: 48px 20px 70px;
}

.journey-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.journey-cta-badge {
    display: inline-block;
    background: #ffffff;
    color: #2a2a2a;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    padding: 12px 18px;
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 28px;
}

.journey-cta-title {
    margin: 0 auto 18px;
    max-width: 1200px;
    font-size: 44px;
    line-height: 1.2;
    font-weight: 700;
    color: #21262d;
    letter-spacing: -0.5px;
}

.journey-cta-text {
    max-width: 760px;
    margin: 0 auto 28px;
    font-size: 22px;
    line-height: 1.55;
    font-weight: 500;
    color: #6d7784;
}

.journey-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    padding: 18px 32px;
    background: #34314f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 20px;
    font-weight: 700;
    transition: background 0.3s ease, transform 0.3s ease;
}

.journey-cta-btn:hover {
    background: #26233d;
    color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .journey-cta-title {
        font-size: 36px;
    }

    .journey-cta-text {
        font-size: 19px;
        max-width: 680px;
    }
}

@media (max-width: 767px) {
    .journey-cta-section {
        padding: 40px 16px 56px;
    }

    .journey-cta-badge {
        font-size: 14px;
        padding: 10px 16px;
        margin-bottom: 22px;
    }

    .journey-cta-title {
        font-size: 28px;
        line-height: 1.25;
        margin-bottom: 16px;
    }

    .journey-cta-text {
        font-size: 17px;
        line-height: 1.6;
        margin-bottom: 24px;
    }

    .journey-cta-btn {
        min-width: 150px;
        padding: 15px 26px;
        font-size: 18px;
    }
}

/* Extracted from index.blade.php */
.works-section {
    padding: 80px 0;
    background: #f7f7f7;
}

.works-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* CARD */
.work-card {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* REVERSE */
.work-card.reverse {
    flex-direction: row-reverse;
}

/* IMAGE */
.work-image {
    flex: 1;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTENT */
.work-content {
    flex: 1;
    padding: 40px;
}

.work-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.work-content p {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
}

/* HOVER EFFECT */
.work-card:hover {
    transform: translateY(-5px);
    transition: 0.3s;
}

/* RESPONSIVE */
@media (max-width: 992px) {

    .work-card,
    .work-card.reverse {
        flex-direction: column;
    }

    .work-content {
        padding: 25px;
        text-align: center;
    }
}

/* Extracted from index.blade.php */
.commitment-slider {
    padding: 80px 0;
    background: #f5f5f5;
    overflow: hidden;
    position: relative;
}

.slider-wrapper {
    overflow: visible;
    /* FIX text cut */
    width: 100%;
}

.slider-track {
    display: flex;
    align-items: center;
    gap: 180px;
    /* little more space for text */
    width: max-content;
    will-change: transform;
}

.slide {
    flex: 0 0 420px;
    position: relative;
    overflow: visible;
}

.slide img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.slide-text {
    position: absolute;
    right: -170px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 27px;
    color: #d9dde2;
    font-weight: 600;
    white-space: nowrap;
    z-index: 2;
}

/* Extracted from index.blade.php */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f8f8f8;
}

/* ================= PREVIOUS SECTION ================= */
.previous-section {
    background: #ffffff;
    padding: 120px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.previous-section h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.previous-section p {
    color: #666;
    max-width: 600px;
    margin: auto;
}

/* ================= CONTACT SECTION ================= */
.contact-section {
    margin-top: -80px;
    /* 🔥 overlap effect */
    padding: 140px 20px 100px;
    text-align: center;
    background: #f5f5f5;
    position: relative;
    z-index: 3;

    /* Premium look */
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

/* Content */
.contact-content {
    position: relative;
    z-index: 5;
}

.contact-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 20px;
}

.contact-section p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 16px;
    color: #6b6b6b;
    line-height: 1.6;
}

/* Button */
.contact-btn {
    display: inline-block;
    background: #3c3a5a;
    color: #fff;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.contact-btn:hover {
    background: #2b2945;
}

/* ================= SLANTED BACKGROUND ================= */
.contact-section::before {
    position: absolute;
    bottom: 0;
    left: -10%;
    width: 120%;
    height: 140px;
    background: #4c4a63;
    transform: skewY(-5deg);
    z-index: 1;
}

.contact-section::after {
    position: relative;
    background: #f6f6f6;
    padding: 24px 0 90px;
    overflow: hidden;
}

/* Extracted from index.blade.php */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    color: #222;
}

.blog-section {
    padding: 60px 20px 80px;
    background: #f5f5f5;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-top {
    text-align: center;
    margin-bottom: 50px;
}

.blog-badge {
    display: inline-block;
    padding: 10px 18px;
    background: #ffffff;
    border-radius: 999px;
    font-size: 14px;
    color: #333;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
}

.blog-title {
    font-size: 48px;
    font-weight: 700;
    color: #20252b;
    margin-bottom: 18px;
    line-height: 1.1;
}

.blog-subtitle {
    max-width: 760px;
    margin: 0 auto 24px;
    font-size: 18px;
    line-height: 1.7;
    color: #6f7782;
    font-weight: 500;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #3f3d63;
    font-size: 18px;
    font-weight: 700;
}

.blog-link span {
    font-size: 22px;
    line-height: 1;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

.blog-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.blog-card img {
    width: 100%;
    height: 235px;
    object-fit: cover;
    display: block;
}

.blog-card-content {
    padding: 20px 20px 28px;
}

.blog-tag {
    display: inline-block;
    padding: 6px 10px;
    font-size: 13px;
    background: #ece9f7;
    color: #4d4b68;
    border-radius: 6px;
    margin-bottom: 16px;
    font-weight: 500;
}

.blog-card-title {
    font-size: 30px;
    line-height: 1.25;
    font-weight: 700;
    color: #20252b;
}

@media (max-width: 991px) {
    .blog-title {
        font-size: 38px;
    }

    .blog-card-title {
        font-size: 24px;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .blog-section {
        padding: 50px 15px 60px;
    }

    .blog-title {
        font-size: 30px;
    }

    .blog-subtitle {
        font-size: 16px;
    }

    .blog-link {
        font-size: 16px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card img {
        height: 220px;
    }

    .blog-card-title {
        font-size: 22px;
    }
}

/* Fix for Our Works card animation specificity bug */
.work-card.animate.show {
    opacity: 1 !important;
    transform: translateX(0) translateY(0) !important;
}

.works-section {
    overflow-x: hidden;
}