@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {

    --font-primary: 'Lexend', sans-serif;
    --font-secondary: 'Playfair Display', serif;

    --container-max-width: 1620px;
    /* ================= COLORS ================= */
    --color-primary: #BC7965;
    --color-secondary: #F8E0D9;
    --color-dark: #271D1C;
    --color-dark-muted: #574D4B;
    --color-light-gray: #D3D3D3;
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-white-secondary: #EEE;
    /* ================= FONT SIZES ================= */
    --text-xs: 16px;
    --text-sm: 18px;
    --text-md: 20px;
    --text-lg: 22px;
    --text-xl: 26px;
    --heading-sm: 28px;
    --heading-md: 30px;
    --footer-md: 32px;
    --heading-lg: 36px;
    --heading-xl: 40px;
    --heading-2xl: 48px;
    --heading-3xl: 68px;
    --bg-primary: url('../images/light-bg.png');
    --bg-secondary: url('../images/dark-bg.png');
}

.bm-container {
    width: 100%;
    max-width: var(--container-max-width);
    margin-left: auto;
    margin-right: auto;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: var(--color-primary);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-family: var(--font-primary);
    background-image: var(--bg-primary);
}

.dark-bg {
    background-image: var(--bg-secondary);
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    margin: 0;
}

a:focus-visible {
    outline: none !important;
}

.post,
.page {
    margin: 0;
}

.row {
    margin: 0;
}

p,
ul {
    margin: 0;
    padding: 0;
}

.row>* {
    padding-left: 0;
    padding-right: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

main {
    padding-top: 100px;
}

.py-100 {
    padding: 100px 0;
}

a.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: var(--text-md);
    font-weight: 400;
    transition: all 0.4s ease;
    min-width: 350px;
    width: fit-content;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

a.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background-color: var(--color-black);
    transition: all 0.4s ease;
    z-index: -1;
}

a.btn-primary:hover {
    color: var(--color-white);
}

a.btn-primary:hover::before {
    width: 100%;
}

h2 {
    color: var(--color-dark);
    font-size: var(--heading-2xl);
    font-weight: 400;
    padding-bottom: 40px;
    line-height: normal;
    text-align: center;
}

section:has(.dark-bg) h2 {
    color: var(--color-white);
}

/* ================= HERO SECTION ================= */
.hero-section {
    position: relative;
    display: flex;
    align-items: stretch;
    height: 100vh;
    background-color: var(--color-black);
    overflow: hidden;
}

.hero-slider-wrap {
    flex: 1;
    overflow: hidden;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.heroSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Social Links - Left Side */
.hero-social {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 150px;
    background-color: var(--color-black);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    z-index: 5;
}

.hero-social li::marker {
    color: var(--color-primary);
}

.hero-social ul li:first-of-type {
    list-style-type: none;
}

.hero-social ul {

    display: flex;
    gap: 30px;
    writing-mode: sideways-lr;

}

.hero-social a img {
    transform: rotate(-90deg);
}

.hero-social a {
    display: flex;
    align-items: bottom;
    gap: 10px;
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: var(--text-xs);
    font-weight: 400;
    line-height: normal;
}


/* Thumbnail Navigation - Right Side */
.hero-thumbs {
    width: 150px;
    background-color: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    z-index: 5;
}

.hero-thumbs .swiper-vertical>.swiper-wrapper {
    justify-content: center;
    align-items: center;
}

.hero-social li {
    padding: 10px 0;
}

.heroThumbs {
    width: 100%;
    height: auto;
}

.heroThumbs .swiper-slide {
    width: 80px !important;
    height: 70px !important;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    border: 2px solid transparent;
}

.heroThumbs .swiper-slide-thumb-active {
    opacity: 1;
    border-color: var(--color-primary);
}

.heroThumbs .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ================= HEADER ================= */
.main-header {
    background-color: var(--color-black);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9;
}

.main-header .navbar {
    padding: 0;
}

.navbar-toggler {
    all: unset;
}

.header-logo {
    height: 90px;
    width: auto;
}

.main-header .navbar-nav {
    gap: 40px;
}

.main-header .navbar-nav .nav-link {
    color: var(--color-light-gray);
    font-family: var(--font-primary);
    font-size: var(--text-xs);
    font-weight: 400;
    padding: 0 !important;
    transition: all 0.3s ease;
}

.main-header .navbar-nav .nav-link:hover,
.main-header .navbar-nav .nav-link:focus {
    color: var(--color-primary);
}

.main-header .navbar-nav .nav-link.active {
    color: var(--color-primary);
    font-weight: 600;
}

.main-header .navbar-nav .dropdown-menu {
    background: rgba(39, 29, 28, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    margin-top: 15px;
    padding: 10px 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    animation: dropdownFade 0.3s ease forwards;
    transform-origin: top center;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.main-header .navbar-nav .dropdown-item {
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-primary);
    font-size: 14px;
    padding: 10px 24px;
    font-weight: 300;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    letter-spacing: 0.5px;
}

.main-header .navbar-nav .dropdown-item:hover {
    background-color: rgba(188, 121, 101, 0.15);
    color: var(--color-primary);
    padding-left: 28px;
}

.main-header .navbar-nav .dropdown-item:hover::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background-color: var(--color-primary);
    border-radius: 50%;
}

.dropdown-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin: 8px 0;
}

.main-header .dropdown-toggle::after {
    all: unset;
    background-image: url(../images/down-icon.svg);
    height: 12px;
    width: 16px;
    display: inline-block;
    content: "";
    transition: 0.3s;
}

.nav-right {
    gap: 40px;
}

.header-action {
    display: flex;
    align-items: center;
}

.header-action .btn-heart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.header-action .btn-heart img {
    height: 32px;
    width: auto;
}

.header-action .btn-heart:hover {
    transform: scale(1.05);
}

.main-header .dropdown-toggle.show::after {
    transform: rotate(180deg);
    transition: 0.3s;
}

/* ================= Brand Photography ================= */
.brand-photography {
    text-align: center;
}

.brand-content h2 {
    max-width: 1220px;
    margin: 0 auto;
    padding-bottom: 0;
}

.brand-content p {
    margin-top: 20px;
    color: var(--color-dark-muted);
    font-size: var(--text-lg);
    font-weight: 400;
    max-width: 1500px;
    margin: 20px auto 0;
    line-height: 150%;
}

.brand-content p:first-of-type {
    margin-top: 40px;
}

.about-brand p:first-of-type {
    font-size: var(--heading-md);
}

/* ================= Partner Section =================  */
.partnerSwiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.partnerSwiper .swiper-slide {
    width: auto;
}

.partnerSwiper .swiper-slide img {
    max-width: 100%;
    height: auto;
}

/* ================= How Different ================= */
.how-different {
    text-align: center;
}

.how-different-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 0 50px;
}

.how-different-grid .how-different-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.how-different-card h3 {
    color: var(--color-dark);
    font-size: var(--heading-sm);
    font-weight: 400;
    line-height: normal;
    padding-bottom: 15px;
}

.how-different-card p {
    color: var(--color-dark-muted);
    font-size: var(--text-lg);
    font-weight: 400;
    line-height: 150%;
}

/*================= Why US =================*/
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.why-us-card-content {
    border: 1px solid #343434;
    padding: 20px;
}

.why-us-card-content h3 {
    color: var(--color-secondary);
    font-family: var(--font-secondary);
    font-size: var(--heading-sm);
    font-weight: 400;
    line-height: normal;
    margin-bottom: 16px;
}

.why-us-card-content p {
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: var(--text-lg);
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 30px;
}

.why-us-card-content a.btn-primary {
    min-width: 100%;
    margin-top: auto;
}

.why-us-card img {
    width: 100%;
    max-height: 230px;
    object-fit: cover;
}

.why-us-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.why-us-card-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/*================= Client Feedback =================*/
.client-feedback h2 {
    text-align: center;
}

.client-feedback-slider {
    padding-right: 150px;
}

.testimonial-slide {
    display: grid;
    grid-template-columns: 204px 1fr;
    gap: 40px;
    align-items: center;
}

.testimonial-img {
    flex-shrink: 0;
    width: 100%;
    height: 180px;
}

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

.testimonial-content {
    flex-grow: 1;
}

.testimonial-content .quote {
    color: var(--color-dark);
    font-family: var(--font-secondary);
    font-size: var(--heading-md);
    line-height: normal;
    margin-bottom: 20px;
}

.testimonial-content .author {
    color: var(--color-dark-muted);
    font-family: var(--font-primary);
    font-size: var(--text-md);
    font-weight: 300;
}

.feedback-navigation {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(0%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 5;
}

.feedback-prev,
.feedback-next {
    position: static !important;
    margin-top: 0 !important;
    color: var(--color-dark) !important;
}

.feedback-prev::after,
.feedback-next::after {
    font-size: 20px !important;
    font-weight: bold;
}

.feedback-next {
    background-color: var(--color-white);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feedback-prev {
    width: auto !important;
    height: auto !important;
    cursor: pointer;
}

/*================= Footer =================*/
.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 40px;
    max-width: 720px;
    margin: 0 auto;
}

.footer-content h3 {
    color: var(--color-secondary);
    font-family: var(--font-secondary);
    font-size: var(--footer-md);
    text-align: center;
    font-weight: 400;
}

.footer-copyright {
    color: rgba(248, 224, 217, 0.8);
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    font-weight: 400;
    line-height: 150%;
    margin-top: 10px;
    border-top: 1px solid #464646;
}

.footer-copyright .bm-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.social-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    transition: all 0.3s ease-in-out;
}

.social-icons a:hover {
    background-color: transparent;
}

.cookies-policy a:not(:last-child)::after {
    content: "";
    margin: 0 10px 4px;
    height: 5px;
    width: 5px;
    border-radius: 50px;
    background-color: #A59591;
    display: inline-block;
}

.about-hero {
    height: auto;
}

.about-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero .hero-social {
    width: 132px;
}


/* Off Canvas Design  */

.custom-offcanvas .offcanvas-header>button {
    all: unset;
    cursor: pointer;
}

.custom-offcanvas .offcanvas {
    background-color: var(--color-black);
    width: 600px !important;
}

.custom-offcanvas .offcanvas-header>h3 {
    color: var(--color-white);
    font-family: var(--font-secondary);
    font-size: var(--heading-lg);
    font-weight: 400;
    line-height: normal;
}

.opening-hours {
    width: 100%;
}

.custom-offcanvas .opening-hours>h4 {
    color: var(--color-primary);
    font-family: var(--font-primary);
    font-size: var(--text-md);
    font-weight: 700;
    line-height: normal;
    margin-bottom: 20px;
}

.custom-offcanvas .offcanvas-header {
    padding: 50px 40px 0px 40px;
    border: none;
}

.custom-offcanvas .offcanvas-body {
    padding: 20px 40px;
}

.custom-offcanvas .hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    position: relative;
}

.custom-offcanvas .hours-item:last-of-type {
    padding-bottom: 0;
}

.custom-offcanvas .hours-item p,
.custom-offcanvas .opening-hours a {
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    font-weight: 400;
    line-height: normal;
    overflow-wrap: anywhere;
}

.custom-offcanvas .hours-item p:first-child {
    order: 1;
}

.custom-offcanvas .hours-item p:last-child {
    order: 3;
}

.custom-offcanvas .hours-item::before {
    content: "";
    background-color: var(--color-white);
    height: 1px;
    flex: 1;
    order: 2;
    margin: 0 10px;
}

.custom-offcanvas .contact-links {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.custom-offcanvas .contact-links:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(4px);
}

.custom-offcanvas .contact-links:not(:last-of-type) {
    margin-bottom: 12px;
}

.custom-offcanvas .contact-links span {
    border-radius: 60px;
    background: rgba(255, 255, 255, 0.10);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    transition: all 0.3s ease;
}

.custom-offcanvas .contact-links:hover span {
    background: var(--color-primary);
    transform: scale(1.1);
}

.custom-offcanvas .contact-links:hover a {
    color: var(--color-primary);
}

.canvas-copyright p {
    color: rgba(255, 255, 255, 0.70);
    text-align: left;
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
    text-transform: capitalize;
}

.canvas-copyright p:not(:last-of-type) {
    margin-bottom: 4px;
}

.canvas-copyright p b {
    font-weight: 700;
}

.custom-offcanvas .offcanvas-body {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 30px;
}

/* ================= Awards Section ================= */
.award-badge {
    aspect-ratio: 1/1;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

/* ================= Video Showreel Section ================= */
.video-showreel {
    background-color: var(--color-black);
}

.video-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.video-wrapper iframe {
    display: block;
    width: 100%;
}

/* ================= Behind The Scene Section ================= */
.bts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.bts-item {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 4px;
}

.bts-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bts-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.bts-overlay img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bts-item:hover img {
    transform: scale(1.05);
}

.bts-item:hover .bts-overlay {
    transform: scale(1.1);
}

/* ================= Services Page ================= */
.common-hero h1 {
    color: var(--color-secondary);
    font-family: var(--font-secondary);
    font-size: var(--heading-3xl);
    font-weight: 400;
    line-height: normal;
    text-align: center;
}

.service-content {}

.service-image img {
    width: 100%;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.service-main .bm-container>p {
    color: var(--color-dark);
    font-family: var(--font-primary);
    font-size: var(--heading-md);
    font-weight: 400;
    line-height: normal;
    text-align: center;
    max-width: 1180px;
    margin: 0 auto;
}

.service-content {
    background-color: #FFF2EF;
    display: flex;
    flex-direction: column;
    align-items: start;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.10);

}

.service-text {
    padding: 40px 80px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 32px;
    height: 100%;
}

.service-text h3 {
    color: var(--color-dark);
    font-family: var(--font-secondary);
    font-size: var(--heading-xl);
    font-weight: 400;
    line-height: normal;
}

.service-text p {
    color: var(--color-dark-muted);
    font-family: var(--font-primary);
    font-size: var(--text-xl);
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 10px;
}

.service-text a.btn-primary {
    margin-top: auto;
}

/* ================= Service Inner Page ================= */
.service-inner-intro {
    text-align: center;
}

.service-inner-intro h2 {
    font-size: var(--heading-xl);
}

.service-inner-intro>.bm-container>p {
    color: var(--color-dark-muted);
    font-family: var(--font-primary);
    font-size: var(--heading-sm);
    font-weight: 400;
    margin: 0 auto 20px;
    line-height: 150%;
    margin-bottom: 20px;
    max-width: 1400px;
    margin: 0 auto 20px;
}

.service-inner-details {
    position: relative;
}

.service-inner-intro>.bm-container>p:last-of-type {
    margin-bottom: 0;
}

.service-inner-hero {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
}

.service-inner-hero img {
    width: 100%;
    height: 100%;
    max-height: 514px;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* Details Grid */
.sid-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.sid-left h3,
.sid-right h3 {
    color: var(--color-dark);
    font-family: var(--font-secondary);
    font-size: var(--heading-xl);
    font-weight: 400;
    margin-bottom: 30px;
}

/* Is This For Me list */
.sid-left>ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sid-left>ul>li {
    color: var(--color-dark-muted);
    font-family: var(--font-primary);
    font-size: var(--text-lg);
    font-weight: 400;
    line-height: 150%;
    padding-left: 20px;
    position: relative;
}

.sid-left>ul>li::before {
    content: "•";
    color: var(--color-dark-muted);
    position: absolute;
    left: 0;
    top: 0;
}

/* Gallery */
.sid-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: calc(50% - 40px);
    position: absolute;
    top: 50%;
}

.sid-gallery>div {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 4px;
}

.sid-gallery>div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* What's Included list */
.sid-included>ul {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sid-included>ul>li>strong {
    color: var(--color-dark);
    font-family: var(--font-secondary);
    font-size: var(--heading-sm);
    font-weight: 400;
    display: block;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.sid-included>ul>li>strong::before {
    content: "•";
    color: var(--color-dark);
    position: absolute;
    left: 0;
}

.sid-included>ul>li>ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sid-included>ul>li>ul>li {
    color: var(--color-dark-muted);
    font-family: var(--font-primary);
    font-size: var(--text-lg);
    font-weight: 400;
    line-height: 150%;
    padding-left: 40px;
    position: relative;
}

.sid-included>ul>li>ul>li::before {
    content: "•";
    color: var(--color-dark-muted);
    position: absolute;
    left: 20px;
}

/* Feature icons */
.sid-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 55px;
}

.sid-features>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.sid-features>div img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.sid-features>div span {
    color: var(--color-dark-muted);
    font-family: var(--font-primary);
    font-size: var(--text-lg);
    font-weight: 400;
    line-height: 140%;
}

/* ================= Portfolio Page ================= */
.portfolio-main .bm-container>p {
    color: var(--color-dark);
    font-family: var(--font-primary);
    font-size: var(--heading-md);
    font-weight: 400;
    line-height: 160%;
    text-align: center;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.portfolio-item {
    position: relative;
}

.portfolio-item img {
    width: 100%;
}

.portfolio-text {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.portfolio-text h3 {
    color: var(--color-white);
    text-align: center;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.43);
    font-family: var(--font-secondary);
    font-size: var(--heading-md);
    font-weight: 400;
    line-height: normal;
}

.portfolio-text a.btn-primary {
    min-width: 200px;
}

/* ================= Portfolio Detail Page ================= */
.portfolio-hero-grid {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 50px;
}

.portfolio-hero-title {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 30px;
}

.portfolio-hero-title h2 {
    color: var(--color-secondary);
    font-family: var(--font-secondary);
    font-size: var(--heading-3xl);
    font-weight: 400;
    line-height: normal;
    margin-bottom: 0;
    padding-bottom: 0;
}

.portfolio-hero-title h2:first-child {
    order: 1;
}

.portfolio-hero-title h2:last-child {
    order: 3;
}

.portfolio-hero-title::before {
    content: "";
    background-color: var(--color-white);
    height: 44px;
    width: 4px;
    order: 2;
}

.portfolio-hero-description h3 {
    color: var(--color-primary);
    font-size: var(--heading-lg);
    font-style: italic;
    font-weight: 600;
    line-height: normal;
    margin-top: 30px;
    margin-bottom: 16px;
}

.portfolio-hero-description p {
    color: var(--color-white-secondary);
    font-family: var(--font-primary);
    font-size: var(--text-md);
    font-weight: 300;
    line-height: 150%;
}

.masonry-grid {
    column-count: 3;
    column-gap: 20px;
    margin-top: 30px;
}

.masonry-grid img {
    width: 100%;
    margin-bottom: 20px;
    display: block;
    break-inside: avoid;
}

.portfolio-hero-right {
    background-color: #BC796533;
    padding: 140px 40px 100px;
    margin-top: 100px;
    position: relative;
    margin-bottom: 20px;
}

.portfolio-hero-right>img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
}

.review-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
}

.review-stars .rating-color {
    color: #FFB817;
}

.review-stars .no-rating-color {
    color: #9a9a9a;
}

.portfolio-hero-right {
    text-align: center;
}

.portfolio-hero-right p {
    color: var(--color-white-secondary);
    text-align: center;
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    font-weight: 300;
    line-height: 150%;
    margin-bottom: 40px;
}

.portfolio-hero-right h3 {
    color: var(--color-primary);
    text-align: center;
    font-family: var(--font-secondary);
    font-size: var(--heading-md);
    font-weight: 700;
    line-height: normal;
    margin-bottom: 16px;
}

.user-wesbite-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.user-wesbite-link a {
    color: var(--color-white);
    text-align: center;
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    font-weight: 300;
    line-height: 150%;
}

.portfolio-hero-right::before {
    content: "";
    background-image: url(../images/commnet-cot.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: -20px;
    left: -10px;
    width: 50px;
    height: 36px;
}

.gallery-section .portfolio-hero-title::before {
    display: none;
}

.gallery-section .portfolio-hero-title {
    justify-content: center;
}

.gallery-section .masonry-grid {
    column-count: 4;
    column-gap: 20px;
    margin-top: 30px;
}

.experiences-header {
    text-align: center;
    max-width: 1300px;
    margin: 0 auto;
}

.experiences-header h2 {
    color: var(--color-secondary);
    text-align: center;
    font-size: var(--heading-3xl);
    font-weight: 400;
    line-height: normal;
}

.experiences-header h2::after {
    content: "";
    display: block;
    width: 100%;
    max-width: 60%;
    height: 1px;
    margin: 0 auto;
    background: linear-gradient(to right, transparent, var(--color-secondary), transparent);
    margin: 50px auto;
}

.experiences-header h3 {
    color: var(--color-secondary);
    text-align: center;
    font-size: var(--heading-2xl);
    font-weight: 400;
    line-height: normal;
    margin-bottom: 30px;
}

.experiences-header p {
    color: var(--color-white);
    text-align: center;
    font-size: var(--heading-sm);
    font-weight: 400;
    line-height: 160%;
}

.comming-soon>h3,
.experiences-content>h3 {
    color: var(--color-secondary);
    font-size: var(--heading-lg);
    font-weight: 400;
    line-height: normal;
    margin-bottom: 20px;
}

.comming-soon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.comming-soon-card {
    display: flex;
    align-items: start;
    flex-direction: column;
    background-color: #FFF2EF;
}

.comming-soon-card>img {
    width: 100%;
}

.comming-soon-content {
    padding: 40px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
}

.comming-soon-content h4 {
    color: var(--color-dark);
    text-align: center;
    font-size: var(--heading-xl);
    font-weight: 400;
    line-height: normal;
}

.comming-soon-content p {
    color: var(--color-dark-muted);
    text-align: center;
    font-size: var(--text-xl);
    font-weight: 400;
    line-height: 150%;
    margin: 32px 0 40px;
}

.comming-soon-content a.btn-primary {
    margin-top: auto;
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.experiences-content p {
    color: var(--color-white);
    text-align: center;
    font-size: var(--heading-sm);
    font-weight: 400;
    line-height: 150%;
    margin-top: 16px;
}

.experiences-card img {
    width: 100%;
}

.experience-main {
    padding-top: 100px;
}

.blog-details {
    padding-top: 50px;
}

.blog-details .date {
    color: var(--color-primary);
    font-size: var(--text-xs);
    font-weight: 400;
    line-height: 150%;
    display: block;
    margin-bottom: 10px;
}

.blog-details img {
    width: 100%;
    margin-bottom: 20px;
}

.blog-details h1,
.blog-details h2,
.blog-details h3,
.blog-details h4,
.blog-details h5,
.blog-details h6 {
    font-family: var(--font-primary);
}

.blog-details h1 {
    color: var(--color-white);
    font-size: var(--footer-md);
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 30px;
}

.blog-details h2 {
    color: var(--color-primary);
    font-size: var(--text-xl);
    font-weight: 400;
    line-height: 150%;
    padding: 10px 0;
    text-align: start;
    margin-bottom: 0;

}

.blog-details h3 {
    color: #85E1ED;
    font-size: var(--text-lg);
    font-weight: 400;
    line-height: 150%;
    padding-bottom: 6px;
    text-align: start;
    margin-bottom: 0;
}

.blog-details h4 {
    color: var(--color-light-gray);
    font-size: var(--text-md);
    font-weight: 400;
    line-height: 150%;
    padding-bottom: 6px;
    text-align: start;
    margin-bottom: 0;
}

.blog-details h5 {
    color: var(--color-white-secondary);
    font-size: var(--text-sm);
    font-weight: 400;
    line-height: 150%;
    padding-bottom: 6px;
    text-align: start;
    margin-bottom: 0;
}

.blog-details h6 {
    color: var(--color-white-secondary);
    font-size: var(--text-xs);
    font-weight: 400;
    line-height: 150%;
    padding-bottom: 6px;
    text-align: start;
    margin-bottom: 0;
}

.blog-details p,
.blog-details li {
    color: var(--color-white-secondary);
    font-weight: 300;
    line-height: 150%;
    padding-bottom: 10px;
    font-size: var(--text-sm);
}

.blog-details li {
    padding-bottom: 0px;
}

.blog-details ul,
.blog-details ol {
    padding-left: 20px;
    margin-bottom: 0;
    padding: 6px 0 6px 20px;
}

.blog-details b {
    font-weight: 700;
}

.blog-details a {
    text-decoration: underline;
    color: var(--color-white-secondary);
    font-weight: 300;
    line-height: 150%;
    font-size: var(--text-sm);
}

.blog-header h2::after {
    display: none;
}

.experiences-header.blog-header p {
    color: var(--color-white);
}

.blog-header p {
    color: var(--color-dark-muted);
    text-align: center;
    font-size: var(--text-lg);
    font-weight: 400;
    line-height: 150%;
    max-width: 1400px;
    margin: 0 auto;
}

.blog-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    row-gap: 50px;
    column-gap: 20px;
    margin-top: 40px;
}

.blog-card img {
    width: 100%;
    height: 356px;
    object-fit: cover;
    object-position: center;
}

.blog-card h3 {
    color: var(--color-dark);
    font-size: var(--heading-md);
    font-weight: 400;
    line-height: 150%;
    margin: 16px 0 24px;
}

.blog-card p {
    color: var(--color-dark-muted);
    font-size: var(--text-lg);
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card a {
    color: #bc7965d2;
    font-size: var(--text-md);
    font-weight: 500;
    line-height: 150%;
    text-decoration-line: underline;
}