@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


:root {

    --primary-: #CCA066;
    --black-: #000;
    --secondary-: #1C1C1C;

}

/* Global box-sizing for easier sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Base font and smoothing */
body {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #000;
    /* Bootstrap body text color */
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
    min-height: 100dvh;
    font-weight: 300;
}

/* Remove default margin for headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 700;
    line-height: 1.2;
}

/* Remove default margin from paragraphs and add spacing */
p {
    margin-top: 0;
    margin-bottom: 1rem;
}

span {
    display: inline-block;
}

/* Anchor tag styles */
a {
    color: #000;
    /* Bootstrap primary blue */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Images responsive by default */
video,
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Lists default spacing */
ul,
ol {
    padding-left: 0rem;
    margin-top: 0;
    margin-bottom: 0rem;
    list-style-type: none;
}

/* Button base cursor */
button {
    cursor: pointer;
}

/* Remove outline only on mouse click (keep for keyboard) */
button:focus:not(:focus-visible),
a:focus:not(:focus-visible),
input:focus:not(:focus-visible),
textarea:focus:not(:focus-visible) {
    outline: none;
}

/* Form inputs base styles */
input,
textarea,
select {
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.5;
}

input {
    padding: 8px 20px;
    border: 1px solid #00000025;
}

textarea {
    min-height: 250px;
    padding: 8px 20px;
    border: 1px solid #00000025;
    width: 100%;
}

/* Prevent horizontal scroll on small devices */
html,
body {
    overflow-x: hidden;
}



/* common  */

.row-cols-2>* {
    flex: unset;
}

/* Font size classes */
.fs-16 {
    font-size: 16px;
}

.fs-17 {
    font-size: 17px;
}

.fs-18 {
    font-size: 18px;
}

.fs-20 {
    font-size: 20px;
}

.fs-22 {
    font-size: 22px;
}

.fs-24 {
    font-size: 24px;
}

.fs-26 {
    font-size: 26px;
}

.fs-36 {
    font-size: 36px;
}

.fs-45 {
    font-size: 45px;
}

.fs-56 {
    font-size: 56px;
}

.fs-60 {
    font-size: 60px;
}

.fs-84 {
    font-size: 84px;
}

.mb-4 {
    margin-bottom: 4px;
}

.mb-8 {
    margin-bottom: 8px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-16 {
    margin-bottom: 16px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-24 {
    margin-bottom: 24px;
}

.mb-32 {
    margin-bottom: 32px;
}

.pb-32 {
    padding-bottom: 32px;
}

.text-secondary {
    color: var(--secondary-) !important;
}

.text-primary {
    color: var(--primary-) !important;
}

.bg-secondary {
    background-color: var(--secondary-) !important;
}

.line-1 {
    line-height: 1;
}

.py-180 {
    padding-block: 180px;
}


.sub-head {
    text-transform: uppercase;
}

/* button  */


.btnn {
    padding: 20px 36px;
    /* display: flex; */
    display: inline-block;
    gap: 8px;
    line-height: 1;
    width: fit-content;
    height: fit-content;
    background-color: var(--primary-);
    color: white;
    border-radius: 14px;
}

.btnn i {
    margin-left: 5px;
}

.btnn-dark {
    background-color: var(--black-);
}

.badge-outline {
    padding: 4px 14px;
    line-height: 26px;
    background-color: transparent;
    border: 0.5px solid var(--black-);
    border-radius: 20px;
}

/* header  */


header {
    background-color: #00000050;
    margin: auto;
    padding: 24px 0;
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 99;
    transition: all 0.5s ease;
}

@media (min-width: 1800px) {
    header .container {
        max-width: 1800px;
        width: 100%;
    }
}

header nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

header nav ul {
    display: flex;
    gap: 30px;
}

header nav ul a {
    color: white;
    text-transform: capitalize;
    letter-spacing: 1px;
    font-weight: 300;
}

header .col {
    width: fit-content;
    flex: unset;
}


.dropdown-toggle::after {
    position: absolute;
    right: -15px;
    top: 25px;
    border-top-color: white;
}

.dropdown-toggle {
    padding: 0px;
    border: 0;
    background: transparent;
}

.lang-drop ul.dropdown-menu {
    min-width: 200px;
    padding: 20px;
}

.lang-drop ul.dropdown-menu img {
    width: 25px;
}

section {
    padding-block: 100px;
}


header.scrolled {
    background: #000;
    padding-block: 12px;
    transition: all 0.5s ease;
}

.logo {
    transition: all 0.5s ease;
}

header.scrolled .logo {
    max-width: 80%;
    transition: all 0.5s ease;
}

/* banner  */


.banner {
    padding-block: 300px 250px;
    min-height: 90dvh;
    background-color: var(--secondary-);
    color: white;
    position: relative;
}

.numbers {
    right: 0;
    bottom: -100px;
    z-index: 2;
}

.box-primary,
.box-secondary {
    padding: 40px;
    color: white;
}

.box-primary {
    background-color: var(--primary-);
}

.box-secondary {
    background-color: var(--secondary-);
    color: white;
}

.video-banner {
    border-top-left-radius: 100px;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 65%;
    z-index: 0;
    overflow: hidden;
}

.video-banner video {
    height: 100%;
    object-fit: cover;
}

.banner .col-md-7 {
    position: relative;
    z-index: 1;
}





.news .section-head {
    margin-bottom: 80px;
}

.news img {
    width: 100%;
}

.material-selection {
    padding: 50px 0;
}

.material-selection li {
    padding: 18px 24px;
    margin-bottom: 24px;
}

.material-selection li:last-child {
    margin-bottom: 0px;
}

.material-selection li:hover,
.material-selection li.active {
    background-color: var(--primary-);
    cursor: pointer;
}

.material .col-8 img {
    width: 100%;
    height: 595px;
    object-fit: cover;
    object-position: center;
}


/* services  */

.service-card {
    position: relative;
    min-height: 600px;
    overflow: hidden;
}

.service-card a {
    padding: 60px 40px 40px;
    position: relative;
    min-height: inherit;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
}

.service-card img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: all 0.5s ease-in;
}

.service-card:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: #1C1C1C80;
}

.service-card:nth-child(even):before {
    background-color: #CCA06680;
}

.btn-arrow {
    background-color: var(--black-);
    color: white;
    width: fit-content;
    height: fit-content;
    padding: 15px 20px;
}

.service-card:nth-child(even) .btn-arrow {
    background-color: var(--primary-);
    color: white;
}

.service-card:hover img {
    transform: scale(1.1);
    transition: all 0.5s ease-out;
}





/* show  */

.show-num {
    padding: 130px;
    background-color: #F5F5F5;
}

.show-num h4 {
    font-size: 74px;
}


/* portfolio  */


.custom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    /* Left + 2 right columns */
    grid-template-rows: 1fr 1fr;
    /* 2 rows */
    gap: 15px;
    /* spacing */
}

.left {
    grid-row: span 2;
    /* spans both rows */
    background: #87ceeb;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.box img,
.left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.box {
    background: #ffa07a;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.left>div,
.box>div {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #00000050;
    color: white;
    bottom: -100%;
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.left:hover>div,
.box:hover>div {
    bottom: 0%;
    transition: all 0.5s ease;
}




/* why-choose  */


.choose {
    padding-block: 64px;
}

.choose-card {
    background-color: #333;
    color: white;
    padding: 24px;
    flex: unset;
    border-radius: 8px;
}

.choose-card .img {
    margin-bottom: 48px;
}






/* video section  */
.video video {
    height: 600px;
    object-fit: cover;
    width: 100%;
}




/* contact */

.contact img {
    width: 70px;
    min-width: 70px;
}


.testimonial {
    padding-block: 200px;
    background-color: #000;
    background-image: url(../images/testi.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.item {
    color: white;
}

.owl-nav {
    display: none;
}

.testimonial .owl-dots {
    text-align: start;
    margin-left: 45px;
}




footer {
    padding: 80px 0;
    position: relative;
}

footer:before,
footer:after {
    content: "";
    height: 100%;
    background-color: var(--secondary-);
    width: 40%;
    position: absolute;
    left: 0px;
    top: 0;
    z-index: -1;
}

footer:after {
    width: 60%;
    background-color: var(--primary-);
    left: 40%;
}

footer .row>.col-md-4 {
    color: #fff;
}

footer .col-md-8 {
    color: #000;
}

.socials a {
    background-color: white;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}



.section-right-bg,
.section-left-bg {
    position: relative;
}

.section-right-bg:before,
.section-left-bg::after {
    content: "";
    position: absolute;
    width: 15%;
    height: 72dvh;
    background-image: url(../images/triangle-left.png);
    background-repeat: no-repeat;
    left: 0;
    background-size: 100%;
    z-index: -1;
    bottom: 0;
}

.section-right-bg:before {
    background-image: url(../images/triangle-right.png);
    left: auto;
    right: 0;
    bottom: auto;
    top: 0;
}



:root {
    --primary: #CCA066;
    --black: #000;
    --secondary: #1C1C1C;
    --white: #fff;
}


.inner-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--black) 100%);
    overflow: hidden;
    color: var(--white);
    padding: 230px 0 120px;
}

.inner-banner h2 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(to right, var(--primary) 0%, #e6c28f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 10;
    position: relative;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.floating-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    opacity: 0.3;
    animation: float 25s infinite linear;
}

/* Triangle 1 - pointing up */
.floating-triangle:nth-child(1) {
    border-width: 0 60px 100px 60px;
    border-color: transparent transparent var(--primary) transparent;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

/* Triangle 2 - pointing down */
.floating-triangle:nth-child(2) {
    border-width: 100px 50px 0 50px;
    border-color: var(--primary) transparent transparent transparent;
    top: 25%;
    right: 15%;
    animation-delay: 8s;
}

/* Triangle 3 - pointing right */
.floating-triangle:nth-child(3) {
    border-width: 50px 0 50px 80px;
    border-color: transparent transparent transparent var(--primary);
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
}

/* Triangle 4 - pointing left */
.floating-triangle:nth-child(4) {
    border-width: 50px 80px 50px 0;
    border-color: transparent var(--primary) transparent transparent;
    bottom: 15%;
    right: 10%;
    animation-delay: 12s;
}

/* Triangle 5 - pointing up (small) */
.floating-triangle:nth-child(5) {
    border-width: 0 40px 70px 40px;
    border-color: transparent transparent var(--primary) transparent;
    top: 40%;
    left: 5%;
    animation-delay: 16s;
}

/* Triangle 6 - pointing down (small) */
.floating-triangle:nth-child(6) {
    border-width: 70px 30px 0 30px;
    border-color: var(--primary) transparent transparent transparent;
    top: 60%;
    right: 5%;
    animation-delay: 20s;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }

    25% {
        transform: translateY(-40px) rotate(90deg);
        opacity: 0.5;
    }

    50% {
        transform: translateY(20px) rotate(180deg);
        opacity: 0.4;
    }

    75% {
        transform: translateY(-20px) rotate(270deg);
        opacity: 0.6;
    }

    100% {
        transform: translateY(0) rotate(360deg);
        opacity: 0.3;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .inner-banner h2 {
        font-size: 3rem;
        letter-spacing: 2px;
    }

    .floating-triangle:nth-child(1) {
        border-width: 0 40px 70px 40px;
    }

    .floating-triangle:nth-child(2) {
        border-width: 70px 35px 0 35px;
    }

    .floating-triangle:nth-child(3) {
        border-width: 35px 0 35px 60px;
    }

    .floating-triangle:nth-child(4) {
        border-width: 35px 60px 35px 0;
    }

    .floating-triangle:nth-child(5) {
        border-width: 0 30px 50px 30px;
    }

    .floating-triangle:nth-child(6) {
        border-width: 50px 20px 0 20px;
    }
}

@media (max-width: 480px) {
    .inner-banner h2 {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }

    .floating-triangle:nth-child(1) {
        border-width: 0 25px 45px 25px;
    }

    .floating-triangle:nth-child(2) {
        border-width: 45px 20px 0 20px;
    }

    .floating-triangle:nth-child(3) {
        border-width: 25px 0 25px 40px;
    }

    .floating-triangle:nth-child(4) {
        border-width: 25px 40px 25px 0;
    }

    .floating-triangle:nth-child(5) {
        border-width: 0 20px 35px 20px;
    }

    .floating-triangle:nth-child(6) {
        border-width: 35px 15px 0 15px;
    }
}










/* Portfolio Section */
.portfolio {
    padding: 100px 0;
}

.text-primary {
    color: var(--primary-);
}

.text-uppercase {
    text-transform: uppercase;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-32 {
    margin-bottom: 32px;
}

.pb-32 {
    padding-bottom: 32px;
}

.fs-56 {
    font-size: 56px;
}

.fs-22 {
    font-size: 22px;
}

.fs-14 {
    font-size: 14px;
}

.w-75 {
    width: 75%;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.projects .section-head h2 {
    color: var(--secondary);
    font-weight: 700;
    line-height: 1.2;
}

.projects .section-head p {
    color: var(--dark-gray);
    font-size: 18px;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .card-image {
    transform: scale(1.05);
}

.card-content {
    padding: 25px;
    position: relative;
}

.card-category {
    color: var(--primary-);
    font-weight: 600;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
}

.card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary);
}

.card-description {
    color: var(--dark-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.card-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.card-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.card-link:hover {
    color: var(--secondary);
}

.card-link:hover i {
    transform: translateX(5px);
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
    gap: 15px;
}

.filter-btn {
    background-color: transparent;
    border: 2px solid var(--primary-);
    color: var(--primary-);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-);
    color: var(--white);
}



/* Responsive */
@media (max-width: 768px) {
    .fs-56 {
        font-size: 40px;
    }

    .w-75 {
        width: 90%;
    }

    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .navbar {
        flex-direction: column;
    }

    .nav-links {
        margin-top: 20px;
    }

    .nav-links li {
        margin: 0 15px;
    }
}









/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.service-card-1 {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.service-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-1:hover .service-image {
    transform: scale(1.05);
}

.service-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary);
    line-height: 1.3;
}

.service-description {
    color: var(--dark-gray);
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    color: var(--primary-);
    font-weight: 600;
    text-decoration: none;
    padding: 12px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    transition: color 0.3s ease;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--secondary);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Service Categories */
.service-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
    gap: 15px;
}

.category-btn {
    background-color: transparent;
    border: 2px solid var(--primary-);
    color: var(--primary-);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
    background-color: var(--primary-);
    color: var(--white);
}

section.material .col-md-8 img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    object-position: top;
}






.inner-pages {
    padding: 150px 0 0;
}


/* Project Detail Page Styles */
:root {
    /* --primary: #2c3e50; */
    /* --primary-light: #34495e; */
    /* --secondary: #e74c3c; */
    --light: #f8f9fa;
    --dark: #2c3e50;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --white: #ffffff;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

.bg-primary {
    background-color: var(--primary-) !important;
}

/* Base Styles */
.project-detail {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    padding-top: 0px;
}

/* Project Header Section */
.project-header {
    /* background: linear-gradient(135deg, var(--light) 0%, #f0f2f5 100%); */
    position: relative;
    overflow: hidden;
}

.project-header .container {
    position: relative;
    z-index: 1;
}

.project-header h1 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--light);
    margin-bottom: 1.5rem;
}

/* Project Brief Section */
.project-brief {
    /* background-color: var(--white); */
}

.project-brief h2 {
    font-weight: 700;
    color: var(--dark);
    position: relative;
    padding-bottom: 0.75rem;
}

.project-brief h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--secondary);
    border-radius: 2px;
}

.project-brief ul li {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.project-brief ul li:last-child {
    border-bottom: none;
}

.project-brief ul li strong {
    min-width: 100px;
    color: var(--dark);
}

/* Project Approach Section */
.project-approach {
    /* background: linear-gradient(135deg, var(--secondary) 0%, #c0392b 100%); */
    background-color: var(--primary-);
    position: relative;
    overflow: hidden;
}

.project-approach:before {
    filter: grayscale(1);
    z-index: 1;
}

.project-approach .container {
    position: relative;
    z-index: 1;
}

.project-approach h2 {
    font-weight: 700;
    position: relative;
    padding-bottom: 0.75rem;
}

.project-approach h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--white);
    border-radius: 2px;
}

.project-approach ul {
    list-style-type: none;
    padding-left: 0;
}

.project-approach ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.project-approach ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--white);
    font-weight: bold;
}

/* Project Results Section */
.project-results {
    /* background-color: var(--white); */
}

.project-results h2 {
    font-weight: 700;
    color: var(--dark);
    position: relative;
    padding-bottom: 0.75rem;
}

.project-results h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--secondary);
    border-radius: 2px;
}

.project-results ul {
    list-style-type: none;
    padding-left: 0;
}

.project-results ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.project-results ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

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

.grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: var(--transition);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.grid img:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}






@media (max-width: 576px) {

    .project-brief .col-md-5,
    .project-approach .col-md-6:last-child,
    .project-results .col-md-6:last-child {
        margin-top: 2rem;
    }

    .project-brief ul li {
        flex-direction: column;
        align-items: flex-start;
    }

    .project-brief ul li strong {
        margin-bottom: 0.25rem;
    }
}




















/* Service Header Section */
.service-header {
    background-color: var(--secondary-);
    position: relative;
}

.service-header .badge {
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 1px;
}

.service-header .badge.bg-primary {
    background-color: var(--primary-) !important;
}

.service-header ul li {
    display: flex;
    align-items: center;
}

/* Service Overview */
.service-overview ul {
    list-style: none;
    padding: 0;
}

.service-overview ul li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.service-overview ul li:last-child {
    border-bottom: none;
}

/* Service Benefits */
.service-benefits ul {
    list-style: none;
    padding: 0;
}

.service-benefits ul li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 24px;
}

.service-benefits ul li:before {
    content: "✓";
    color: var(--primary-);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-benefits ul li:last-child {
    border-bottom: none;
}

/* Service Gallery */
.service-gallery .img-fluid {
    transition: transform 0.3s ease;
}

.service-gallery .img-fluid:hover {
    transform: scale(1.05);
}

/* Related Services */
.related-services .bg-light {
    background-color: #f8f9fa !important;
    border: 1px solid #dee2e6;
    transition: transform 0.3s ease;
}

.related-services .bg-light:hover {
    transform: translateY(-5px);
}



section.service-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3 / 2;
}





/* Blog Detail Styles */
.blog-detail {
    background-color: white;
}

.blog-header {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 2rem;
}

.blog-featured-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.blog-content .lead {
    color: var(--secondary-);
    font-weight: 500;
}

.content-body h3 {
    color: var(--black-);
    margin-top: 2.5rem;
}

.content-body h4 {
    color: var(--secondary-);
}

.bg-light {
    background-color: #f8f9fa !important;
}

/* Author Bio */
.author-avatar {
    background-color: var(--secondary-);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.author-bio {
    border-left: 4px solid var(--primary-);
}

/* Blog Tags */
.blog-tags .badge-outline {
    border: 1px solid var(--primary-);
    color: var(--primary-);
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-tags .badge-outline:hover {
    background-color: var(--primary-);
    color: white;
}

/* Related Articles */
.related-articles .card-news-main {
    transition: transform 0.3s ease;
    padding: 1.5rem;
    border-radius: 8px;
}

.related-articles .card-news-main:hover {
    transform: translateY(-5px);
}

.related-articles .img {
    overflow: hidden;
    border-radius: 8px;
}

.related-articles .img img {
    transition: transform 0.3s ease;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-articles .card-news-main:hover .img img {
    transform: scale(1.05);
}

/* Badge Outline */
.badge-outline {
    border: 1px solid var(--primary-);
    color: var(--primary-);
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 600;
    display: inline-block;
}

/* Spacing */
.mt-32 {
    margin-top: 2rem;
}

.pt-24 {
    padding-top: 1.5rem;
}

.p-24 {
    padding: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-featured-img img {
        height: 250px;
    }

    .author-bio .row {
        text-align: center;
    }

    .author-bio .col-auto {
        margin-bottom: 1rem;
    }
}