/* ========================================
   HOUSE OF ARTS - Custom Styles
   Bootstrap 5.3.3 Compatible
   Fonts: Open Sans, Playfair Display, Titillium Web, Cormorant Garamond
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');

:root {
    --dark-green: #3d5a4c;
    --dark-green-2: #4a6b5a;
    --cream: #f5f0e8;
    --cream-light: #faf8f5;
    --gold: #b8a88a;
    --black: #1a1a1a;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --sage-green: #8b9a7a;
    --olive: #6b7d5a;
    --tan: #c4b5a0;
    --brown-light: #d4c4b0;
    --border-radius: 18px;
    --border-radius-sm: 12px;
    --border-radius-lg: 22px;
    --font-primary: 'Open Sans', sans-serif;
    --font-secondary: 'Playfair', serif;
    --font-tertiary: 'Titillium Web', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: #FFFCF8;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    background: transparent;
    padding: 20px 0;
    transition: all 0.3s ease;
    z-index: 99999;
}

.navbar.scrolled {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-logo {
    width: auto;
    height: 100px;
}

.nav-logo-gray {
    display: none;
}

.scrolled .navbar-nav .nav-link {
    color: var(--text-dark) !important;
}

.scrolled .nav-logo-white {
    display: none;
}

.scrolled .nav-logo-gray {
    display: block;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: lowercase;
    transition: opacity 0.3s ease;
    padding: 8px 12px !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    opacity: 0.7;
}

/* Social Icons in Navbar */
.navbar-nav .nav-link.social-icon {
    font-size: 15px;
    padding: 6px 10px !important;
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 12px;
    border-radius: 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-collapse {
    background: var(--cream);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 15px;
}

@media (min-width: 992px) {
    .navbar-collapse {
        background: transparent;
        padding: 0;
        margin-top: 0;
    }
}

/* ========================================
   HERO SECTION WITH BOOTSTRAP CAROUSEL
   ======================================== */
.hero-section {
    position: relative;
    /* height: 90vh;
    min-height: 700px;
    max-height: 720px; */
    overflow: hidden;
    border-radius: 0 0 300px 0;
}

/* Bootstrap Carousel Customization */
.hero-section .carousel,
.hero-section .carousel-inner,
.hero-section .carousel-item {
    height: 100%;
}

.hero-section .carousel {

    width: 100%;
    height: 100%;
}

/* Fade Effect Enhancement */
.hero-section .carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-section .carousel-fade .carousel-item.active {
    opacity: 1;
}

.hero-section .carousel-fade .carousel-item-next.carousel-item-start,
.hero-section .carousel-fade .carousel-item-prev.carousel-item-end {
    opacity: 1;
}

.hero-section .carousel-fade .active.carousel-item-start,
.hero-section .carousel-fade .active.carousel-item-end {
    opacity: 0;
}

.hero-bg {

    width: 100%;
    height: 100%;

}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 8s ease-out;
}

.carousel-item.active .hero-bg img {
    transform: scale(1.08);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%);
}


.hero-section .carousel-indicators {
    top: 95px;
    /* margin: 0; */
    z-index: 10;
    left: auto;
    bottom: 0px;
    right: 0px;
    margin-left: 0px;
    flex-direction: column;
    bottom: auto;
    gap: 10px;
    z-index: 9999;
    margin-right: 3rem;
}

.hero-section .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    margin: 0 6px;
    transition: all 0.3s ease;
    opacity: 1;
}

.hero-section .carousel-indicators button.active {
    background-color: var(--white);
    border-color: var(--white);
    transform: scale(1);
}

.hero-section .carousel-indicators button:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Hero Content */
.hero-content {
    position: absolute;
    bottom: 60px;
    left: 0;
    z-index: 15;
    width: 100%;
    padding: 0px 3rem;
}

.hero-subtitle {
    font-family: var(--font-primary);
    font-size: 30px;
    font-weight: 500;
    font-style: normal;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.hero-title {
    /* font-family: var(--font-primary); */
    font-family: var(--font-secondary);
    font-size: 5rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 1px;
    line-height: 100%;
    text-transform: uppercase;
}

.inner-banner .hero-title {
    font-family: var(--font-secondary);
    font-size: 3rem;
}

/*
.hero-bg-vid {
    position: relative;
    width: 100%;
    height: 100vh; /* or desired height */
/*    overflow: hidden;
}

.hero-bg-vid video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}
*/

.hero-bg-vid {
    position: relative;
    width: 100%;
    height: 75vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

.hero-video-creativity {
    
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

.hero-vid-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    background: rgba(0,0,0,0.35); /* optional contrast */
}

.hero-vid-overlay h1 {
    font-size: 3rem;
}

.hero-vid-overlay p {
    font-size: 1.2rem;
}


/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
    /* background: var(--cream); */
    padding: 60px 0;
}

.about-logo {
    text-align: center;
    width: auto;
    height: 200px;
}

.about-content {
    padding-left: 0px;
}

.about-text {
    font-family: var(--font-primary);
    font-size: 24px;
    line-height: 150%;
    color: #818285;
    margin-bottom: 25px;
}

.about-text strong {
    color: var(--text-dark);
    font-weight: 600;
    font-style: italic;
    color: #818285;
}

.category-list {
    font-family: var(--font-primary);
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #818285;
}

.category-list .dot {
    margin: 0 10px;
    color: var(--gold);
}

/* ========================================
   CREATIVE GRID SECTION - WITH ROUNDED CORNERS
   ======================================== */
.creative-section {
    padding: 0px;

}

.grid-box {
    padding: 0px;
}

.creative-art-content {
    height: 100%;
}

.grid-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.creative-image-full-top img {
    border-radius: 150px 0px 0px 0px;
    height: 400px;
    object-fit: cover;
    width: 100%;
}

.creative-image-full-bottom img {
    border-radius: 0px 0px 150px 0px;
    height: 400px;
    object-fit: cover;
    width: 100%;
}

.creative-image-full-bottom video {
    border-radius: 0px 0px 150px 0px;
    height: 400px;
    object-fit: cover;
    width: 100%;
}

.creative-image-full,
.creative-order-two {
    height: 627px;
    object-fit: cover;
    width: 100%;
}

.creative-art-content {
    background: #354D55;
    border-radius: 0px 0px 150px 0px;
    display: flex;
    flex-wrap: wrap;
    padding:20px 50px 0px;
    align-items: center;
    justify-content: center;
}

.creative-order-one {
    background: #383922;
    border-radius: 0px 150px 0px 0px;
    padding: 50px 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    min-height: 710px;
    max-height: 710px;
}

.creative-order-one h2.grid-heading {
    font-family: var(--font-primary);
    color: var(--white);
    font-size: 3.6rem;
    line-height: 120%;
}

.grid-box p {
    font-family: var(--font-primary);
    color: var(--white);
    font-size: 20px;
    line-height: 160%;
}

.grid-box strong {
    font-weight: 500;
    font-style: italic;
}

.creative-order-three {
    background: #22201B;
    border-radius: 0px 0px 0px 150px;
    padding: 50px 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    min-height: 717px;
    max-height: 717px;
}

.creative-order-three .grid-heading,
.creative-art-content .grid-heading {
    font-family: var(--font-secondary);
    color: var(--white);
    font-size: 5rem;
    line-height: 80%;
    text-transform: uppercase;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-section {
    background: var(--white);
    padding: 70px 0;
}

.services-section .section-title,
.about-section .section-title {
    font-family: var(--font-primary);
    font-size: 5rem;
    font-weight: 500;
    line-height: 1.2;
    color: #818285;
    justify-content: center;
    display: flex;
    text-transform: uppercase;
}
.homepage-services{
    padding-left: 3rem;
    padding-right: 3rem;
}
.homepage-services .section-title{
    justify-content: start;
}
.services-text {
    font-family: var(--font-primary);
    font-size: 24px;
    line-height: 150%;
    color: var(--text-light);
    margin-bottom: 25px;
    color: #818285;
}
.quality-about p.services-text{
    font-family: var(--font-tertiary);
}
.services-list {
    font-family: var(--font-primary);
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #818285;
    line-height: 120%;
}

.services-list .dot {
    margin: 0 10px;
    color: var(--gold);
}

/* ========================================
   CURATION SECTION - WITH ROUNDED CORNERS
   ======================================== */
.curation-section {

    padding: 0px;
}

.curation-1 {
    border-radius: 0px 250px 0px 0px;
    overflow: hidden;
}

.curation-2 {
    border-radius: 250px 0px 0px 0px;
    overflow: hidden;
}

.curation-3 {
    border-radius: 0px 0px 0px 250px;
    overflow: hidden;
}

.curation-4 {
    border-radius: 0px 250px 0px 0px;
    overflow: hidden;
}

.curation-5 {
    border-radius: 0px 0px 250px 0px;
    overflow: hidden;
}

.curation-6 {
    border-radius: 0px 0px 0px 250px;
    overflow: hidden;
}

.curation-card {
    position: relative;

}

.curation-wrapper figure::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 9;
}

.curation-wrapper figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.curation-wrapper .curation-content {
    position: absolute;
    z-index: 99;
    bottom: 0;
    top: 0px;
    left: 0;
    right: 0px;
    width: 100%;
    padding: 50px;
    color: var(--white);
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-items: center;
}

.curation-title-box {
    background-color: #66331A;
    position: absolute;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 3rem;
    color: var(--white);
}

.curation-title-box .section-title {
    font-family: var(--font-primary);
    font-size:4.5rem;
    font-weight: 500;
    line-height: 140%;
    color: var(--text-dark);
    /* justify-content: center; */
    display: flex;
    padding:  0px;
}

.curation-content h3 {
    font-size: 2rem;
    font-family: var(--font-primary);
    font-weight: 500;
}

/* ========================================
   CLIENTS SECTION
   ======================================== */
.clients-section {
    background: var(--white);
    padding: 55px 0;
    text-align: center;
}

.clients-title {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    line-height: 120%;
    /* font-style: italic; */
    font-weight:500;
    color: #9B9B9B;
    text-align: start;
    margin-bottom: 0;
}

.bottom-image-section figure {
    width: 100%;
    border-radius: 250px 0px 0px 0px;
    overflow: hidden;
}

.bottom-image-section figure img {
    width: 100%;
    /* height: 550px; */
    object-fit: cover;
}

/* ========================================
   FOOTER
   ======================================== */
.footer-section {
    background: #FFFCF8;
    padding: 50px 0 30px;
}

.footer-logo {
    /* text-align: center; */
    height: 180px;
    width: auto;
}


.footer-contact,
.footer-office {
    padding-left: 20px;
}

.footer-contact h4,
.footer-office h4 {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 14px;

}

.footer-contact p,
.footer-office p {
    font-family: var(--font-tertiary);
    font-size: 26px;

    margin-bottom: 4px;
    line-height: 1.6;
}

.footer-bottom {
    text-align: left;
    margin-top: 35px;
    padding-top: 30px;
    border-top: 1px solid #B3B2B1;
}

.footer-bottom p {
    font-family: var(--font-tertiary);
    font-size: 24px;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 1px;
}

/* ========================================
   what we do STYLES
   ======================================== */
.what-about h2.section-title {
    justify-content: start;
}

.what-about {
    padding: 60px 3rem;

}

.creative-what-one figure {
    border-radius: 0px 200px 0px 0px;
    overflow: hidden;
}

.creative-what-two figure {
    border-radius: 200px 0px 0px 0px ;
    overflow: hidden;
}

.what-we-do-image figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.what-we-do-image figure {
    min-height: 600px;
    max-height: 600px;
}

.what-we-do-process ol,
.what-we-do-process ul {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 0px;
    padding: 0px;
    list-style: decimal;



}

.what-we-do-process ul {
    list-style: outside;
    flex-wrap: wrap;



}

.what-we-do-process li {
    width: 27%;
    font-size: 24px;
    font-family: var(--font-primary);
    padding-bottom: 2rem;
    color: var(--bs-gray);

}
.what-we-do-process.new-section li{
    font-family: var(--font-secondary);
}
/* ========================================
  quality STYLES
   ======================================== */
.quality-clients-section {
    padding: 60px 3rem;
}

.quality-about {
    padding-left: 3rem;
    padding-right: 3rem;
}

.quality-about .section-title {
    font-size: 5rem;
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 80%;
    color: var(--bs-gray);
    text-align: start;
    justify-content: start;
}

.inner-banner .hero-title {
    font-family: var(--font-secondary);
    font-size: 6rem;
}

.quality-clients-section .quality-heading {
    font-size: 4rem;
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 100%;
    color: var(--bs-gray);
}

.quality-box {
    align-items: center;
    display: flex;

}

.quality-box figure {
    width: 100%;

}

.quality-box figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quality-box-one {
    height: 100%;
    background: #40a7b8;
    border-radius: 0px 250px 0px 0px;
    padding: 50px;
}

.quality-box-two {
    height: 100%;
    border-radius: 250px 0px 0px 0px;
    overflow: hidden;

}

.quality-box-three {
    height: 100%;
    border-radius: 0px 0px 0px 250px;
    overflow: hidden;

}

.quality-box-five {
    height: 100%;
    background: #542a16;
    border-radius: 0px 0px 250px 0px;
    padding:30px 50px;
}

.quality-box h2 {
    font-size: 6rem;
    color: var(--white);
    font-weight: 600;
    line-height: 90%;
}

.quality-box p {
    font-size: 20px;
    color: var(--white);
    font-weight: 400;
    line-height: 160%;
}

.quality-box strong {
    font-weight: 600;
    font-style: italic;
}

/* ========================================
   essence STYLES
   ======================================== */
.essence-creative .quality-box-one {

    background: #5E351F;
}

.essence-creative .quality-box-five {
    background: #263140;
}

.essence-creative .quality-box h2 {
    font-family: var(--font-primary_);
    font-size: 4.5rem;
    line-height: 100%;
    font-weight: 500;
}
.what-we-do-process {
    padding-left: 3rem;
    padding-right: 3rem;
}
.what-we-do-process h2.section-title {
    justify-content: start;
}
.what-we-do .creative-what-one figure {
    border-radius: 0px 0px 150px 0px;
}
.what-we-do .creative-what-two figure {
    border-radius: 0px 0px  0px 150px;
}
/* ========================================
   RESPONSIVE STYLES
   ======================================== */

/* Large Devices (Desktops) */
@media screen and (max-width: 1399px) {

    .creative-image-full,
    .creative-order-two {
        height: 560px;
        object-fit: cover;
        width: 100%;
    }

    .creative-order-three {

        min-height: 718px;
        max-height: 750px;
    }

    .creative-order-one {

        min-height: 718px;
        max-height: 750px;
    }

    .what-we-do-image figure {
        min-height: 450px;
        max-height: 450px;
    }

    .what-we-do-process li {
        width: 29%;
        font-size: 20px;
        padding-bottom: 2rem;
    }

    .services-text {
        font-size: 16px;
        line-height: 150%;
    }

    .services-section .section-title,
    .about-section .section-title {
        font-size: 3rem;
    }

    .what-we-do-image figure {
        min-height: 330px;
        max-height: 330px;
    }

    .creative-what-two figure {
        border-radius: 0px 0px 0px 100px;
        overflow: hidden;
    }

    .creative-what-one figure {
        border-radius: 0px 0px 100px 0px;
        overflow: hidden;
    }

    .what-we-do-process li {
        width: 29%;
        font-size: 16px;
        padding-bottom: 1rem;
    }

    .services-section .section-title,
    .about-section .section-title {
        font-size: 2rem;
    }

    .bottom-image-section figure {
        border-radius: 150px 0px 0px 0px;
    }

    .inner-banner .hero-title {
        font-family: var(--font-secondary);
        font-size: 4rem;
    }

    .quality-about .section-title {
        font-size: 4rem;
        line-height: 100%;
    }

    .quality-box h2 {
        font-size: 3rem;
        line-height: 100%;
    }

    .quality-box p {
        font-size: 15px;
        margin: 0px;
    }

    .quality-clients-section .quality-heading {
        font-size: 2rem;
        line-height: 120%;
    }

    .what-about {
        padding: 50px 2rem;

    }

    .quality-box-one {
        padding: 30px;
    }

    .essence-creative .quality-box h2 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 1199px) {

    .clients-title {
        font-size: 2rem;
    }

    .curation-1 {
        border-radius: 0px 100px 0px 0px;
    }

    .curation-2 {
        border-radius: 100px 0px 0px 0px;
    }

    .curation-3 {
        border-radius: 0px 0px 0px 100px;
    }

    .curation-4 {
        border-radius: 0px 100px 0px 0px;
    }

    .curation-5 {
        border-radius: 0px 0px 100px 0px;
    }

    .curation-6 {
        border-radius: 0px 0px 0px 100px;
        overflow: hidden;
    }

    .curation-title-box {
        padding: 25px;
    }

    .curation-title-box .section-title {
        font-size: 1.5rem;
        padding: 0px;
    }

    .curation-wrapper .curation-content {

        padding: 20px;

    }

    .curation-content h3 {
        font-size: 1rem;

    }

    .curation-content p {
        font-size: 15px;
    }

    .category-list {
        font-size: 18px;
    }

    .bottom-image-section figure img {
        height: auto;
    }

    .creative-art-content {
        border-radius: 0px 0px 100px 0px;
        padding: 20px;
    }

    .creative-order-three .grid-heading,
    .creative-art-content .grid-heading {
        font-size: 2rem;
        line-height: 110%;
    }

    .creative-order-three .grid-heading br,
    .creative-art-content .grid-heading br {
        display: none;
    }

    .creative-order-one {
        border-radius: 0px 100px 0px 0px;
        padding: 20px;
    }

    .creative-order-three {
        border-radius: 0px 0px 0px 100px;
        padding: 20px;
    }

    .creative-order-one h2.grid-heading {
        font-size: 2rem;
    }

    .creative-order-three,
    .creative-order-one {
        min-height: 680px;
        max-height: 680px;
    }

    .hero-section {

        border-radius: 0 0 150px 0;
    }

    .hero-title {
        font-size: 2rem;
        letter-spacing: 0px;
        line-height: 120%;
    }

    .bottom-image-section figure {
        border-radius: 100px 0px 0px 0px;
    }

    .inner-banner .hero-title {
        font-size: 3rem;
    }

    .quality-about .section-title {
        font-size: 3rem;
    }

    .services-text {
        font-size: 15px;
    }

    .quality-box-one {
        border-radius: 0px 150px 0px 0px;
        padding: 20px;
    }

    .quality-box h2 {
        font-size: 2rem;
    }

    .quality-box p {
        font-size: 14px;
    }

    .quality-box-five {
        border-radius: 0px 0px 150px 0px;
        padding: 20px;
    }

    .quality-box-two {
        height: 100%;
        border-radius: 150px 0px 0px 0px;
    }

    .quality-box-three {
        height: 100%;
        border-radius: 0px 0px 0px 150px;
    }
}

/* Medium Devices (Tablets) */
@media screen and (max-width: 991px) {
    .hero-content {
        bottom: 30px;
    }
    .what-we-do-process h2.section-title {
        justify-content: center;
    }
    .essence-creative .quality-box h2 br {
        display: none;
    }

    .what-about {
        padding: 40px 1rem;

    }

    .hero-title {
        font-size: 1.5rem;
        letter-spacing: 0px;
        line-height: 120%;
    }

    .about-section {
        padding: 50px 0;
    }

    .about-logo {
        margin-bottom: 20px;
        height: 150px;
    }

    .about-content {
        padding: 0px;
        text-align: center;
    }

    .about-text {
        font-size: 15px;
    }

    .category-list {
        font-size: 16px;
    }

    .creative-order-three,
    .creative-order-one {
        min-height: auto;
        max-height: max-content;
        padding: 60px 20px;
    }

    .creative-order-one h2.grid-heading {
        font-size: 1.5rem;
    }
    .creative-order-one h2.grid-heading br{
        display: none;
    }
    .grid-box p {
        font-size: 15px;
    }

    .creative-image-full,
    .creative-order-two {
        height: auto;
        object-fit: cover;
        width: 100%;
    }

    .services-section .section-title,
    .about-section .section-title {

        font-size: 2rem;

        text-align: center;
    }

    .services-section .section-title br {
        display: none;
    }

    .services-text {
        font-size: 15px;
        line-height: 140%;
        margin-bottom: 15px;
        padding: 0px 15px;
        text-align: center;
    }

    .services-list {
        font-size: 18px;
        letter-spacing: 0px;
        line-height: 180%;
        padding: 0px 15px;
        text-align: center;
    }

    .curation-content h3 br {
        display: none;
    }

    .clients-title {
        font-size: 1.25rem;
        padding: 0px 20px;
    }

    .footer-bottom p {
        font-size: 15px;
        letter-spacing: 0px;
        padding: 0px 20px;
    }

    .hero-bg {
        width: 100%;
        height: 350px;
    }

    .navbar-toggler {
        border: 1px solid rgba(255, 255, 255, 0.3);
        padding: 8px 12px;
        border-radius: 8px;
        background: var(--black);
    }

    .navbar-nav .nav-link {
        color: var(--black) !important;
    }

    .grid-content-inner {
        text-align: center;
    }

    .services-section .section-title br,
    .about-section .section-title br {
        display: none;
    }

    .what-we-do-process ol,
    .what-we-do-process ul {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        margin: 0px;
        padding: 0px 40px;
        list-style: none;

    }

    .what-we-do-process li {
        width: 100%;
        font-size: 16px;
        padding-bottom: 1rem;
        text-align: center;
    }

    .what-we-do-image figure {
        min-height: max-content;
        max-height: max-content;
    }

    .what-we-do-process li:last-child {
        display: none;
    }

    .services-section .section-title,
    .about-section .section-title {
        font-size: 2rem;
        text-align: center;
        width: 100%;
        justify-content: center;
    }

    .quality-box-one {
        border-radius: 0px 100px 0px 0px;
        padding: 20px;
        text-align: center;
    }

    .quality-box-two {
        height: 100%;
        border-radius: 100px 0px 0px 0px;
    }

    .quality-box-three {
        height: 100%;
        border-radius: 0px 0px 0px 100px;
    }

    .quality-box-five {
        border-radius: 0px 0px 100px 0px;
        padding: 20px;
    }

    .quality-clients-section .quality-heading {
        font-size: 1rem;
        line-height: 150%;
    }

    section.quality-clients-section {
        padding: 40px 0px;
    }

    section.quality-clients-section .container-fluid,
    .quality-about .container-fluid {
        padding: 0px 20px !important;
    }

    .quality-box-one {
        border-radius: 0px 100px 0px 0px;
        padding: 40px 20px;
        text-align: center;
    }

    .quality-about .about-content {
        padding: 0px;
    }

    .quality-about .about-content p {
        padding: 0px;
    }

    .inner-banner .hero-title {
        font-size: 1.5rem;
    }

    .what-about h2.section-title {
        justify-content: center;
    }

    .quality-clients-section {
        padding: 50px 2rem;
    }
    .quality-about{
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .what-we-do-process {
        padding-left: 2rem;
        padding-right:2rem;
    }
    .homepage-services{
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .homepage-services .section-title{
        justify-content: center;
    }
}

/* Small Devices (Landscape Phones) */
@media screen and (max-width: 767px) {
    :root {
        --border-radius: 14px;
        --border-radius-sm: 10px;
        --border-radius-lg: 16px;
    }

    .quality-clients-section {
        padding: 45px 1rem;
    }
    .homepage-services{
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .navbar {
        padding: 10px 0;
    }

    .hero-content {
        padding: 0px 1rem;
    }

    .services-section .section-title,
    .about-section .section-title {

        font-size: 1.5rem;

        text-align: center;
    }

    .nav-logo {
        height: 50px;
    }

    .hero-content {
        bottom: 35px;
    }

    .what-we-do-process ol,
    .what-we-do-process ul {

        padding: 0px 20px;
        list-style: none;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .hero-bg {
        width: 100%;
        height: 300px;
    }

    .hero-section .carousel-indicators {
        bottom: 18px;
    }

    .hero-section .carousel-indicators button {
        width: 8px;
        height: 8px;
        margin: 0 5px;
    }

    .about-section {
        padding: 45px 0;
    }

    .about-logo {
        margin-bottom: 20px;
        height: 100px;
    }

    .creative-order-three .grid-heading,
    .creative-art-content .grid-heading {
        font-size: 1.75rem;
        line-height: 110%;
    }
    .quality-about{
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .what-we-do-process {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Extra Small Devices (Portrait Phones) */
@media screen and (max-width: 575px) {
    :root {
        --border-radius: 12px;
        --border-radius-sm: 8px;
        --border-radius-lg: 14px;
    }

    .footer-contact h4,
    .footer-office h4 {
        font-size: 18px;
        letter-spacing: 0px;
        margin-bottom: 14px;
    }

    .footer-contact p,
    .footer-office p {
        font-size: 15px;
    }

    .services-list {
        font-size: 15px;
        letter-spacing: 0px;
        padding: 0px 15px;
        text-align: center;
    }

    .services-list .dot {
        margin: 0 5px;
    }

    .hero-title {
        font-size: 1.25rem;
        letter-spacing: 0px;
        line-height: 120%;
    }

    .hero-section {
        border-radius: 0 0 100px 0;
    }

    .quality-box-five {
        padding: 30px 20px;
    }
}

/* ========================================
   ANIMATIONS & EFFECTS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 1s ease-out 0.3s both;
}