@font-face {
    font-family: 'Panchang-Bold';
    src: url('fonts/Panchang-Semibold.woff2') format('woff2'),
        url('fonts/Panchang-Semibold.woff') format('woff');
}

@font-face {
    font-family: 'Panchang-Regular';
    src: url('fonts/Panchang-Regular.woff2') format('woff2'),
        url('fonts/Panchang-Regular.woff') format('woff');
}

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

.color {
    color: #06163a, #dddd00, #f9fbff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
.bold {
    font-family: 'Panchang-Bold';
}

body {
    background-color: #f9fbff;
    font-family: "Inter", sans-serif;
    font-weight: 300;
    font-optical-sizing: auto;
    font-style: normal;
}

/*----------------- TOP BAR -----------------*/
.top-bar {
    background-color: #06163a;
    color: #dddd00;
    overflow: hidden;
    height: 30px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 999;
}

.scrolling-text {
    white-space: nowrap;
    animation: scroll-left 40s linear infinite;
    padding-left: 100%;
}

.scrolling-text span {
    display: inline-block;
    padding-right: 100%;
    letter-spacing: 1.1px;
    font-weight: 200;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/*----------------- MAIN HEADER -----------------*/
.main-header {
    background-color: #f9fbff;
    padding: 15px 30px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 998;
    width: 100%;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    /* Needed for logo positioning */
    max-width: 1400px;
    /* Optional: constrain width */
    margin: 0 auto;
    /* Center container */
    width: 100%;
}

/*----------------- NAVIGATION LINKS (Left aligned) -----------------*/
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    padding: 0;
    margin: 0;
    margin-right: auto;
    /* Pushes logo to center */
}

.nav-links li a {
    text-decoration: none;
    color: #06163a;
    font-size: 14px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #979ba3;
    /* Hover effect */
}

/*----------------- LOGO (Perfectly centered) -----------------*/
.logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: auto;
}

/*----------------- RIGHT SIDE (Right aligned) -----------------*/
.nav-right {
    margin-left: auto;
    /* Pushes to far right */
    display: flex;
    align-items: center;
    gap: 20px;
}

.account-btn {
    border: 1px solid #06163a;
    background: none;
    padding: 6px 14px;
    font-size: 14px;
    color: #06163a;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border-radius: 20px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    border-radius: 8px;
}

.account-btn:hover {
    background-color: #979ba3;
}

.office {
    text-decoration: none;
    color: #06163a;
    font-size: 14px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    transition: color 0.3s ease;
}

/*----------------- MOBILE MENU ICON -----------------*/
.mobile-menu-icon {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 9999;
}

.mobile-menu-icon .bar {
    height: 3px;
    width: 100%;
    background-color: #06163a;
    transition: all 0.3s ease;
}

.mobile-menu-icon.open .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-icon.open .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-icon.open .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/*----------------- MOBILE MENU -----------------*/
.mobile-menu {
    display: none;
    flex-direction: column;
    list-style: none;
    padding: 20px 30px;
    background-color: #f9fbff;
    width: 100%;
    position: absolute;
    left: 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu.show {
    display: flex;
}

.mobile-menu li {
    padding: 15px 0;
    border-bottom: 1px solid #dadada;
}

.mobile-menu li:last-child {
    border-bottom: none;
}

.mobile-menu li a {
    color: #06163a;
    text-decoration: none;
    font-size: 16px;
    display: block;
}

/*----------------- RESPONSIVE -----------------*/
@media (max-width: 768px) {

    /* Hide desktop elements */
    .nav-links,
    .nav-right {
        display: none;
    }

    /* Mobile logo positioning */
    .logo {
        position: static;
        transform: none;
        margin-right: auto;
        /* Pushes menu icon to right */
        width: 150px;
        /* Optional: smaller logo on mobile */
    }

    /* Show mobile menu icon */
    .mobile-menu-icon {
        display: flex;
    }

    /* Adjust header padding for mobile */
    .main-header {
        padding: 15px 20px;
    }
}

/* banner */
.banner-section {
    display: flex;
    flex-wrap: wrap;
    background-color: #f9fbff;
    position: relative;
}

.banner-left {
    flex: 1;
    max-width: 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Add this */
    height: 100vh;
    /* Add this */
}

.banner {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f9fbff;
    text-align: center;
    height: 100%;
    /* Add this */
}

.banner-section {
    display: flex;
    flex-wrap: wrap;
    background-color: #f9fbff;
    position: relative;
    height: 100vh;
    /* Add this */
}

.banner-text {
    width: 100%;
}

.banner-text h1 {
    font-size: 48px;
    line-height: 1;
    color: #06163a;
    margin-bottom: 20px;
}

.banner-para {
    padding: 20px 0;
    font-size: 1.2rem;
}

.shop-btn {
    background-color: #06163a;
    color: #f9fbff;
    border: none;
    padding: 12px 28px;
    font-size: 16px;
    cursor: pointer;
    /* font-family: inherit; */
    margin-bottom: 40px !important;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 8px;
}

.highlight-box-container {
    margin-top: 30px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.highlight-box {
    background-color: #dddd00;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 20px;
    width: 80%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.scroll-text {
    background-color: transparent;
    overflow: hidden;
    white-space: nowrap;
    /* font-family: 'Courier New', monospace; */
    border-bottom: 1px solid #000;
    padding: 8px 0;
}

.scroll-text span {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-left 30s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.highlight-content {
    display: flex;
    flex-wrap: wrap;
}

.text-column {
    flex: 2;
    min-width: 60%;
    border-right: 1px solid #06163a;
    padding: 10px;
}

.highlight-head {
    border-bottom: 1px solid #000;
}

.highlight-heading {
    font-size: 18px;
    /* font-family: Georgia, serif; */
    padding: 10px 20px;
}

.highlight-p {
    padding: 10px 20px;
}

.highlight-desc {
    font-size: 1rem;
    /* font-family: 'Courier New', monospace; */
}

.graphic-column {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.circle-graphic {
    width: 50px;
    height: 50px;
    border: 1px solid #06163a;
    border-radius: 50%;
    position: relative;
}

.circle-graphic::before,
.circle-graphic::after {
    content: "";
    position: absolute;
    border: 1px solid #06163a;
    border-radius: 50%;
}

.circle-graphic::before {
    width: 80px;
    height: 80px;
    top: -12px;
    left: -16px;
}

.circle-graphic::after {
    width: 90px;
    height: 90px;
    top: -20px;
    left: -20px;
}

.banner-right {
    background-image: url("img/banner.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 50%;
    max-width: 100%;
    height: 100vh;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .banner-left {
        padding: 30px;
    }

    .banner-text h1 {
        font-size: 40px;
    }

    .highlight-box {
        width: 90%;
    }
}

@media (max-width: 768px) {
    .banner-section {
        flex-direction: column;
        background-image: url("/img/pexels-pppsdavid-1749825.jpg");
        /* Changed from .png to .jpg to match your HTML */
        background-size: cover;
        background-position: center;
        min-height: 100vh;
        /* Changed from height: auto */
        position: relative;
        padding: 0;
    }

    .banner-left {
        padding: 20px;
        order: 2;
        background-color: transparent;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: auto;
        max-width: 100%;
        justify-content: flex-end;
    }

    .banner {
        background-color: transparent;
        height: auto;
    }

    .banner-right {
        display: none;
    }

    .banner-left,
    .banner-right {
        max-width: 100%;
        width: 100%;
    }

    .banner-text {
        text-align: center;
    }

    .banner-text h1 {
        font-size: 32px;
        margin-bottom: 15px;
        color: #FFF;
    }

    .banner-para {
        color: #FFF;
    }

    .shop-btn {
        margin-bottom: 30px;
        background-color: #FFF;
        color: #06163a;
    }

    .highlight-box-container {
        justify-content: center;
    }

    .highlight-box {
        width: 100%;
        max-width: 100%;
        background-color: #dddd00;
    }

    .highlight-content {
        flex-direction: column;
    }

    .text-column {
        border-right: none;
        border-bottom: none;
        min-width: 100%;
    }

    .graphic-column {
        display: none;
    }

    .highlight-heading,
    .highlight-desc {
        color: #06163a;
    }
}

@media (max-width: 480px) {
    .banner-text h1 {
        font-size: 28px;
    }

    .highlight-box {
        margin-top: 15px;
    }

    .highlight-heading {
        font-size: 16px;
        padding: 8px 15px;
    }

    .highlight-p {
        padding: 8px 15px;
    }

    .scroll-text {
        font-size: 14px;
    }

    .shop-btn {
        padding: 10px 25px;
        font-size: 13px;
    }
}

/* section 1 */
.feature-video-container {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: -1;
    background: #000;
}

.feature-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background-color: #dddd00;
    color: #06163a;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 0.9rem;
    z-index: 2;
}

.feature-content-wrapper {
    background-color: rgba(160, 160, 160, 0.88);
    padding: 40px;
    border-radius: 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 950px;
    width: 90%;
    gap: 40px;
    z-index: 2;
    backdrop-filter: blur(2px);
}

.feature-visual {
    width: 200px;
    height: 200px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    flex-shrink: 0;
}

.feature-text-container {
    flex: 1;
    color: #fff;
    text-align: left;
}

.feature-text-container h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    font-family: 'Panchang-Regular';
}

.feature-text-container p {
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.6;
    color: white;
}

.feature-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    width: 100%;
}

.feature-navigation .nav-buttons {
    display: flex;
    gap: 10px;
}

.feature-navigation .nav-buttons button {
    background: transparent;
    border: 2px solid white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.feature-navigation .nav-buttons button:hover {
    background: rgba(255, 255, 255, 0.1);
}

#slideCounter {
    font-weight: bold;
    color: white;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .feature-content-wrapper {
        flex-direction: column;
        gap: 20px;
        padding: 30px;
    }

    .feature-text-container {
        text-align: center;
    }

    .feature-visual {
        width: 120px;
        height: 120px;
    }

    .feature-text-container h2 {
        font-size: 1.5rem;
    }

    .feature-text-container p {
        font-size: 0.95rem;
    }

    .feature-badge {
        top: 15px;
        left: 15px;
        font-size: 0.8rem;
        padding: 8px 15px;
    }

    .feature-navigation {
        margin-top: 20px;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    #slideCounter {
        width: 100%;
        text-align: center;
        order: -1;
    }
}

@media (min-width: 1600px) {
    .feature-video-container {
        height: 55vh;
    }
}

/* Section 2 */
.section2 {
    padding: 70px 20px;
}

/* Quote slider styles */
.section-quote {
    text-align: center;
    font-size: 1.5rem;
    padding: 50px 0;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
}

.quote-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
}

.slider-btn {
    background-color: transparent;
    border: none;
    font-size: 2.5rem;
    color: #dddddd;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 2;
}

.slider-btn:hover {
    color: #000;
}

.quote-content {
    max-width: 600px;
    text-align: center;
    padding: 0 1rem;
}

.quote-content img {
    width: 150px;
    margin-bottom: 10px;
}

.quote-content p {
    font-size: 1.5rem;
}

/* Optional author styling if needed */
.quote-content strong {
    display: block;
    font-size: 1rem;
    margin-top: 0.5rem;
    padding-top: 30px;
    letter-spacing: 2px;
}

/* Product Grid */
.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.product-card {
    flex: 1 1 300px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.product-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 10rem);
}

.product-info .details {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.product-info img {
    width: 100px;
    height: auto;
    border-radius: 5px;
}

.product-info h3 {
    margin: 0;
    font-size: 1.2rem;
    font-family: 'Panchang-Regular';
}

.product-info p {
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.quick-view {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 0.8rem;
    text-decoration: none;
    border-radius: 8px;
}

.quick-view:hover {
    background: #fff;
    color: #000;
}

.feature-list {
    font-size: 1rem;
    margin: 0.5rem 0 0;
    padding-left: 1.2rem;
    list-style-type: disc;
    color: #fff;
}

.feature-list li {
    margin-bottom: 0.25rem;
}


/* Mobile View */
@media (max-width: 768px) {
    .section-quote {
        font-size: 1.2rem;
    }

    .quote-content p {
        font-size: 1.2rem;
    }

    .product-card {
        position: relative;
        height: 400px;
    }

    .product-card img {
        height: 400px;
    }

    .product-info {
        position: absolute;
        top: 40%;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0, 0, 0, 0.6);
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        width: calc(100% - 40px);
        padding: 1rem;
        border-radius: 10px;

    }

    .product-info .details {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }

    .product-info img {
        width: 50px;
        height: auto;
        border-radius: 5px;
    }

    .product-info h3 {
        margin: 0;
        font-size: 1rem;
        font-family: 'Panchang-Regular';
    }

    .product-info p {
        font-size: 0.5rem;
        margin-top: 0.25rem;
    }

    .quick-view {
        padding: 0.5rem 1rem;
        background: transparent;
        border: 1px solid #fff;
        color: #fff;
        cursor: pointer;
        transition: background 0.3s ease;
        font-size: 0.8rem;
        text-decoration: none;
    }

    .quick-view {
        width: 100%;
        text-align: center;
    }
}

@media (min-width: 1600px) {
    .section-quote {
        max-width: 1500px !important;
    }
}


/* section 3 */
.bundles-section-main {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    align-items: flex-start;
    padding: 80px 20px;
}

.bundles-text-content {
    flex: 1 1 45%;
}

.bundles-text-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    width: 100%;
    font-family: 'Panchang-Regular';
    line-height: 1;
}

.bundles-text-content p {
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.bundle-item-card {
    background-color: #e5ebf9; 
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    transition: border 0.3s ease;
}

.bundle-item-card:hover {
    border: 1px solid #06163a;
}

.bundle-item-card img {
    width: 80px;
    height: auto;
    margin-right: 20px;
    border-radius: 10px;
}

.bundle-details-info {
    flex: 1;
}

.bundle-details-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    font-family: 'Panchang-Regular';
}

.bundle-details-info .bundle-price-value {
    font-size: 1rem;
    color: #222;
}

.bundle-details-info .bundle-original-price {
    text-decoration: line-through;
    color: #888;
    margin-left: 10px;
}

.bundle-details-info .bundle-savings {
    color: green;
    font-weight: bold;
    font-size: 0.9rem;
    margin-top: 4px;
}

.bundle-item-card a {
    background-color: #06163a;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
}

.bundles-image-display {
    flex: 1 1 45%;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.bundles-image-display img.bundle-bg-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.hide-lap {
    display: none;
}

.hide-mobile {
    display: block;
}

/* Mobile fixes (width only) */
@media (max-width: 768px) {
    .bundles-section-main {
        display: block;
        padding: 60px 15px;
    }

    .bundles-text-content,
    .bundles-image-display {
        width: 100%;
        max-width: 100%;
    }

    .bundle-item-card {
        width: 100%;
        box-sizing: border-box;
    }

    .bundles-image-display {
        margin-top: 20px;
    }

    .bundles-text-content h1 {
        font-size: 2rem;
    }

    .bundle-item-card a {
        display: none;
    }

    .hide-lap {
        display: block;
    }

    .hide-mobile {
        display: none;
    }
}

/* section 4 */
#clinicalTrialsSection {
    padding: 100px 20px;
    text-align: center;
}

.clinicalTrialsHeader {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: 'Panchang-Regular';
}

.clinicalTrialsDescription {
    /* font-family: 'Arial', sans-serif; */
    font-size: 1rem;
    color: #06163a;
    margin-bottom: 50px;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.trialsResultsContainer {
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
    border: 1px solid #06163a;
    border-radius: 12px;
    overflow: hidden;
}

.trialResultItem {
    flex: 1 1 20%;
    padding: 30px 20px;
    border-right: 1px solid #06163a;
}

.trialResultItem:last-child {
    border-right: none;
}

.resultPercentage {
    font-size: 3.5rem;
    margin-bottom: 10px;
    font-weight: normal;
    font-family: 'Panchang-Regular';
}

.resultDescription {
    /* font-family: 'Courier New', monospace; */
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #06163a;
}

/* Rounded corners for first and last boxes */
.trialResultItem:first-child {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.trialResultItem:last-child {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .trialsResultsContainer {
        flex-direction: column;
        border-radius: 12px;
    }

    .trialResultItem {
        flex: 1 1 100%;
        border-right: none;
        border-bottom: 1px solid #06163a;
        border-radius: 0;
    }

    .trialResultItem:last-child {
        border-bottom: none;
        border-radius: 0 0 12px 12px;
    }

    .trialResultItem:first-child {
        border-radius: 12px 12px 0 0;
    }

    .resultPercentage {
        font-size: 3rem;
    }

    .clinicalTrialsHeader {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .resultPercentage {
        font-size: 2.5rem;
    }
}

/* section 5 */
.skin-care-section {
    text-align: center;
    padding: 60px 20px;
    max-width: 1000px;
    margin: auto;
}

#skin-care-badge {
    display: inline-block;
    background-color: #dddd00;
    color: #06163a;
    font-size: 14px;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 25px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.skin-care-heading {
    /* font-family: 'Georgia', serif; */
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 30px;
    font-family: 'Panchang-Regular';
}

.skin-care-description {
    /* font-family: 'Inter', sans-serif; */
    color: #06163a;
    font-size: 1rem;
    max-width: 700px;
    margin: auto;
}

@media (max-width: 768px) {
    .skin-care-heading {
        font-size: 1.4rem;
    }

    #skin-care-badge {
        font-size: 12px;
        padding: 6px 12px;
    }

    .skin-care-description {
        font-size: 0.95rem;
    }
}

/* testimonial */
.customer-feedback-section {
    display: flex;
    flex-wrap: wrap;
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
    align-items: center;
    gap: 40px;
}

.feedback-content {
    flex: 1 1 450px;
}

.star-rating-badge {
    background-color: #dddd00;
    color: #06163a;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.customer-reviews-title {
    font-size: 48px;
    font-weight: normal;
    margin: 20px 0 10px;
    font-family: 'Panchang-Regular';
    line-height: 1;
}

.feedback-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.review-details {
    font-size: 14px;
    color: #777;
    margin-top: 12px;
}

.review-details span {
    font-weight: bold;
    color: #2c1c0f;
    margin-right: 6px;
}

.customer-image-container {
    flex: 1 1 400px;
    position: relative;
}

.customer-image-container img {
    width: 100%;
    border-radius: 12px;
    transition: opacity 0.5s ease;
}

.carousel-indicators {
    margin-top: 30px;
}

.carousel-indicators span {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 4px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
}

.carousel-indicators .active-dot {
    background-color: #06163a;
}

@media (max-width: 768px) {
    .customer-feedback-section {
        flex-direction: column;
        text-align: center;
    }

    .feedback-content {
        order: 2;
    }

    .customer-image-container {
        order: 1;
    }

    .customer-reviews-title {
        font-size: 2rem;
    }

    .customer-image-container {
        flex: 1 1 100px;
    }
}

/* partner */

.brand-partners-container {
    /* padding: 20px 20px; */
    /* background-color: #fff; */
    overflow: hidden;
    position: relative;
}

.partner-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.partner-carousel {
    display: flex;
    width: max-content;
}

.partner-logos-row {
    display: flex;
    gap: 1px;
    padding: 10px 0;
}

.partner-logo-item {
    flex: 0 0 auto;
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partner-logo-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Gradient fade effect at edges */
.brand-partners-container::before,
.brand-partners-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.brand-partners-container::before {
    left: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.brand-partners-container::after {
    right: 0;
    background: linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .partner-logo-item {
        width: 80px;
        height: 40px;
    }

    .partner-logos-row {
        gap: 20px;
    }

    .brand-partners-container::before,
    .brand-partners-container::after {
        width: 50px;
    }
}

/* footer */
.site-footer {
    padding: 40px 20px 10px 20px;
    background-color: #dddd00;
}

.footer-main-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    padding: 0 20px;
    margin: auto;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); 
}

.footer-newsletter {
    flex: 1 1 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-links-section {
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.footer-main-content h2 {
    font-size: 1.2rem;
    font-weight: normal;
    margin-bottom: 20px;
    font-family: 'Panchang-Regular';
}

.footer-main-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    align-items: center;
    max-width: 500px;
    border: 1px solid #8b8b15;
    border-radius: 6px;
    padding: 10px;
    background-color: #dddd00;
    margin-bottom: 10px;
}

.newsletter-form input {
    border: none;
    background: transparent;
    flex: 1;
    font-size: 1rem;
    padding: 10px;
    color: #06163a;
}

.newsletter-form button {
    background: none;
    border: 2px solid #06163a;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
}

.newsletter-disclaimer {
    font-size: 0.75rem;
    color: #06163a;
    max-width: 500px;
    margin-top: 10px;
}

.footer-social-links {
    display: flex;
    gap: 20px;
    align-self: flex-end;
    margin-bottom: 20px;
}

.footer-social-links a {
    border: 2px solid #06163a;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #06163a;
    font-size: 1.2rem;
}

.footer-navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 40px;
    margin-top: auto;
}

.footer-nav-column {
    min-width: 120px;
}

.footer-nav-column a {
    display: block;
    color: #06163a;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: clamp(0.8rem, 1vw, 1rem);
    white-space: nowrap;
}

.footer-logo-display {
    width: 100%;
    text-align: center;
    letter-spacing: 3.1rem;
    font-weight: bold;
    color: #06163a;
    margin-top: 60px;
    overflow-wrap: break-word;
    padding: 0 20px;
}

.footer-copyright { 
    color: #06163a;
    text-decoration: none;
    margin-bottom: 10px;  
    font-size: clamp(0.8rem, 1vw, 1rem);
}

.footer-tagline { 
    color: #06163a;
    text-decoration: none;   
    margin: 15px 0 25px;
}

.footer-logo {
    max-width: 300px;
    margin-bottom: 30px;
}

.footer-bottom { 
    padding-top: 10px; 
}

.copyright {
    font-size: 0.9rem; 
    color: rgba(0, 0, 0, 0.7);
}

.legal-links { 
    color: rgba(0, 0, 0, 0.7);
    
}

.legal-links a {
    color: rgba(5, 56, 198, 0.7); 
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #000000;
}

@media (min-width: 992px) {

    .footer-newsletter,
    .footer-links-section {
        flex: 0 0 48%;
    }

    .footer-logo-display {
        font-size: 5.3rem;
    }
}

@media (max-width: 768px) {
    .footer-navigation {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-logo-display {
        font-size: 1.5rem;
        margin-top: 40px;
        letter-spacing: 10px;
    }

    .footer-social-links {
        align-self: flex-start;
    }
}



/* Our Story */
.our-story-section {
    display: flex;
    flex-direction: row;
    min-height: 500px; /* Adjust as needed */
    background-color: #dddd00;
}

.our-story-image {
    flex: 0 0 40%;
    background-image: url('img/construction-site.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.our-story-content {
    flex: 0 0 60%;
    padding: 80px 60px;
    max-width: 100%;
    box-sizing: border-box;
    text-align: left;
}

.our-story-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: normal;
    font-family: 'Panchang-Regular';
}

.our-story-content p {
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
}

@media (max-width: 992px) {
    .our-story-section {
        flex-direction: column;
    }
    
    .our-story-image {
        flex: 0 0 300px; /* Fixed height in mobile */
        width: 100%;
    }
    
    .our-story-content {
        flex: 1;
        padding: 40px 30px;
        text-align: center;
    }
    
    .our-story-content h2 {
        font-size: 2.2rem;
    }
    
    .our-story-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .our-story-content {
        padding: 30px 20px;
    }
    
    .our-story-image {
        flex: 0 0 250px; /* Smaller fixed height for very small devices */
    }
}


/* section 8 */
.wrapper {
    margin: 0;
    color: #06163a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
}

.section-8 {
    max-width: 1000px;
    text-align: center;
    width: 100%;
}

.section-8 h1 {
    font-size: 3.5rem;
    line-height: 1;
    font-weight: 400;
    margin-bottom: 20px;
    font-family: 'Panchang-Regular';
}

.section-8 p {
    font-size: 1rem;
    color: #4b4b4b;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-8 video {
    width: 100%;
    max-width: 700px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .section-8 h1 {
        font-size: 2.5rem;
    }

    .section-8 p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .section-8 h1 {
        font-size: 2rem;
    }

    .section-8 p {
        font-size: 0.9rem;
    }
}

/* section 6 */
.section6 {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100vh;
}

.section6 .left,
.section6 .right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.section6 .left img,
.section6 .right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .section6 {
        flex-direction: column;
        height: auto;
    }

    .section6 .left,
    .section6 .right {
        height: 50vh;
    }

    .section6 .left img,
    .section6 .right img {
        height: 100%;
    }
}

/* our services */
/* Our Services */
.our-services-section {
    display: flex;
    flex-direction: row;
    min-height: 500px; /* Adjust as needed */
    background-color: #dddd00;
}

.our-services-image {
    flex: 0 0 40%;
    background-image: url('img/construction-services.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.our-services-content {
    flex: 0 0 60%;
    padding: 80px 60px;
    max-width: 100%;
    box-sizing: border-box;
    text-align: left;
}

.our-services-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: normal;
    font-family: 'Panchang-Regular';
}

.our-services-content p {
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
}

@media (max-width: 992px) {
    .our-services-section {
        flex-direction: column;
    }
    
    .our-services-image {
        flex: 0 0 300px; /* Fixed height in mobile */
        width: 100%;
    }
    
    .our-services-content {
        flex: 1;
        padding: 40px 30px;
        text-align: center;
    }
    
    .our-services-content h2 {
        font-size: 2.2rem;
    }
    
    .our-services-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .our-services-content {
        padding: 30px 20px;
    }
    
    .our-services-image {
        flex: 0 0 250px; /* Smaller fixed height for very small devices */
    }
}

/* service */
.material-tech-section {
    display: flex;
    flex-wrap: wrap;
    padding: 40px 20px;
    justify-content: space-between;
    position: relative;
}

.material-list,
.material-visual {
    flex: 1 1 500px;
    padding: 20px;
}

.material-feature {
    border: 2px solid transparent;
    padding: 20px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: border 0.3s ease;
    border-radius: 20px;
}

.material-feature.active-feature {
    border: 2px solid #06163a;
    border-radius: 20px;
}

.material-feature h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-family: 'Panchang-Regular';
}

.material-feature p {
    margin: 0;
    font-size: 15px;
    color: #555;
}

.material-preview-container {
    width: 100%;
    text-align: center;
}

.material-preview {
    max-width: 100%;
    height: auto;
    display: none;
    border-radius: 20px;
}

.material-preview.active-preview {
    display: block;
}

.tech-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background-color: #dddd00;
    color: #06163a;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    /* .material-tech-section {
        flex-direction: column;
    } */

    .material-list,
    .material-visual {
        padding: 10px;
    }

    .material-feature h3 {
        font-size: 16px;
    }

    .material-feature p {
        font-size: 14px;
    }
}

/* Testimonial  */
.customer-feedback-container {
    display: flex;
    flex-wrap: wrap;
    padding: 100px 40px;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.feedback-rating-display {
    flex: 1 1 400px;
    position: relative;
}

.feedback-rating-display img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.average-rating {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #dddd00;
    font-size: 60px;
    font-weight: bold;
}

.rating-description {
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    font-size: 14px;
}

.customer-reviews-list {
    flex: 1 1 400px;
}

.customer-review-item {
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
    padding-top: 20px;
}

.customer-review-item .review-rating {
    color: #000;
    font-weight: bold;
}

.customer-review-item .reviewer-name {
    margin: 8px 0;
    font-weight: bold;
}

.review-date {
    float: right;
    font-size: 12px;
    color: #06163a;
}

.customer-review-item .review-content {
    font-size: 15px;
    line-height: 1.6;
    color: #5c5c5c;
}

/* .all-reviews-link {
    margin-top: 20px;
    display: inline-block;
    padding: 10px 20px;
    background-color: #3e2e1e;
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.all-reviews-link:hover {
    background-color: #2c1e12;
} */

@media (max-width: 768px) {
    .customer-feedback-container {
        flex-direction: column;
        padding: 60px 20px;
        gap: 30px;
    }

    .average-rating {
        font-size: 30px;
    }

    .rating-description {
        font-size: 12px;
    }

    .customer-review-item {
        padding-bottom: 15px;
        margin-bottom: 20px;
    }

    .feedback-rating-display {
        flex: 1 1 100px;
        position: relative;
    }
}

/* FAQ */
.faq-section {
    background-color: #dddd00;
    padding: 100px 0;
}

.faq-accordion-wrapper {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.faq-main-heading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-family: 'Panchang-Regular';
    /* font-family: 'Georgia', serif; */
    color: #06163a;
    line-height: 1;
}

.faq-accordion {
    border-top: 1px solid #d8b600;
    /* font-family: 'Georgia', serif; */
}

.faq-item {
    border-bottom: 1px solid #d8b600;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    transition: background-color 0.3s;
    color: #06163a;
    background-color: #dddd00;
}

.faq-answer {
    display: none;
    padding: 0 20px 20px;
    font-size: 1rem;
    line-height: 1.6;
    color: #06163a;
    background-color: #dddd00;
}

.faq-answer p {
    margin: 10px 0;
}

.faq-toggle-icon {
    border: 2px solid #2a1e10;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #06163a;
    font-size: 1.2rem;
    transition: transform 0.3s;
    background-color: #dddd00;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(360deg);
}

.view-all-faq-btn {
    margin: 40px auto 0;
    display: block;
    background-color: #2d240e;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    letter-spacing: 1px;
    transition: background-color 0.3s;
    /* font-family: 'Georgia', serif; */
}

.view-all-faq-btn:hover {
    background-color: #06163a;
}

@media (max-width: 600px) {
    .faq-main-heading {
        font-size: 2rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 15px;
    }

    .faq-answer {
        font-size: 0.95rem;
        padding: 0 15px 15px;
    }

    .faq-toggle-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* contact */
.contact-info-container {
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    position: relative;
    padding: 50px 30px;
    max-width: 1200px;
}

.contact-info-group { 
    align-items: start; 
    margin-bottom: 60px;
}

.contact-label {
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-top: 6px;
    font-family: 'Panchang-Regular';
    line-height: 1.2;
    padding-bottom: 6px;
}

.contact-content h2 {
    font-family: 'Panchang-Regular';
}

.contact-content h2,
.contact-content a {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1;
    text-decoration: none;
    color: #06163a;
}

.contact-content p {
    font-size: 14px;
    line-height: 1.7;
}

/* FORM STYLES */
.contact-form-column {
    position: relative;
}

.contact-form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    position: sticky;
    top: 50px;
    /* Adjust this value based on your header/navigation height */
    transition: all 0.3s ease;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea,
.service-select {
    width: 100%;
    box-sizing: border-box;
    padding: 12px;
    font-size: 14px;
    border: 1px solid #aaa;
    background-color: transparent;
    resize: none;
    /* font-family: inherit; */
}

.contact-form-wrapper textarea {
    min-height: 150px;
}

.form-field-group {
    display: flex;
    gap: 10px;
    width: 100%;
}

.form-field-group select {
    width: 80px;
    padding: 12px;
    font-size: 14px;
    border: 1px solid #aaa;
    background-color: transparent;
    /* font-family: inherit; */
}

.form-field-group input {
    flex: 1;
    min-width: 0;
}

.contact-form-wrapper button {
    background-color: #979ba3;
    color: white;
    border: none;
    padding: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.contact-form-wrapper button:hover {
    background-color: #06163a;
}

@media (max-width: 1024px) {
    .contact-info-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info-group {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 40px;
    }

    .contact-label {
        padding-top: 0;
    }

    .form-field-group {
        flex-direction: column;
        gap: 15px;
    }

    .form-field-group select {
        width: 100%;
    }

    .contact-form-wrapper {
        position: static;
    }
}

/* benefits */
.luxury-towel-benefits {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    margin: auto;
    flex-wrap: wrap;
    position: relative;
}

.luxury-towel-description {
    flex: 1;
    font-size: 28px;
    line-height: 1.6;
    min-width: 200px;
}

.luxury-towel-description::before {
    content: "";
    display: inline-block;
    width: 150px;
}

.luxury-towel-description u {
    text-decoration: underline;
}

.luxury-feature-badge {
    position: absolute;
    top: 1.5rem;
    left: 30px;
    background-color: #dddd00;
    color: #06163a;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 0.9rem;
    z-index: 2;
}

@media (max-width: 768px) {
    .luxury-towel-description {
        font-size: 22px;
        margin-top: 35px;
    }

    .luxury-towel-description::before {
        width: 0;
    }

    .luxury-feature-badge {
        top: 0px;
    }
}

.luxury-section-container {
    padding: 30px 0;
}

/* Project */
.luxury-collection-section {
    margin: auto;
    padding: 60px 20px;
    text-align: center;
}

.luxury-collection-title {
    /* font-family: 'Playfair Display', serif; */
    font-size: 3rem;
    margin-bottom: 10px;
    color: #06163a;
    font-family: 'Panchang-Regular';
}

.luxury-collection-description {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.luxury-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.luxury-item-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.luxury-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.luxury-item-image {
    width: 100%;
    object-fit: cover;
    height: 320px;
}

.luxury-item-details {
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    color: #fff;
    text-align: left;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    backdrop-filter: blur(6px);
}

.luxury-item-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
    font-family: 'Panchang-Regular';
}

.luxury-item-price {
    font-size: 0.95rem;
    margin: 4px 0 12px;
    font-weight: 500;
}

.luxury-item-price del {
    opacity: 0.7;
    margin-left: 6px;
}

.luxury-quick-view-btn {
    display: inline-block;
    padding: 8px 18px;
    font-size: 0.85rem;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.luxury-quick-view-btn:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-style: solid;
}

.location-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    font-size: 0.85rem;
    border: 1px solid #dddd00;
    background-color: rgba(6, 22, 58, 0.7);
    color: #dddd00;
    transition: all 0.3s ease;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    gap: 8px;
}

.location-icon {
    width: 14px;
    height: 14px;
    fill: #dddd00;
}

/* Add this to your existing CSS */
.project-status-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #dd0000;
    /* Friese Greene yellow */
    color: #fdfdfd;
    /* Friese Greene dark blue */
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Panchang', sans-serif;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    animation: pulse 2s infinite;
}

/* For completed projects (optional alternative style) */
/* .project-status-tag.completed {
    background-color: #06163a;
    color: #dddd00;
} */

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .luxury-collection-section {
        padding: 20px;
    }

    .luxury-collection-title {
        font-size: 2.2rem;
    }

    .luxury-items-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .location-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .location-icon {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 500px) {
    .luxury-collection-title {
        font-size: 2rem;
    }

    .luxury-item-details {
        padding: 14px;
    }

    .luxury-quick-view-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* CTA Section */
.cta-section {
    width: 100%;
    background: linear-gradient(135deg, #000000, #06163a, #dddd00, #06163a, #000000);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    border-radius: 20px;
    padding: 3rem 2rem;
    color: white;
    text-align: left;
    /* box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3); */
    transition: transform 0.3s;
}

.cta-section:hover {
    transform: scale(1.02);
}

.cta-content h1 {
    font-size: 1.3rem;
    line-height: 1.3;
    margin-bottom: 40px;
    font-family: "Inter", sans-serif;
}

.cta-content h1 span {
    font-weight: bold;
    display: block;
}

.cta-content p {
    font-size: 1rem;
    margin-bottom: 2rem;
}

.cta-content a {
    background-color: white;
    color: black;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-content button:hover {
    background-color: #f0f0f0;
}

/* Gradient Animation */
@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Responsive */
@media (max-width: 600px) {
    .cta-section {
        padding: 2rem 1.2rem;
    }

    .cta-content h1 {
        font-size: 1.6rem;
    }

    .cta-content p {
        font-size: 0.9rem;
    }

    .cta-content a {
        font-size: 0.95rem;
        padding: 0.6rem 1.2rem;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    overflow: hidden;
    width: 60px;
    padding: 0 20px;
}

.whatsapp-float:hover {
    width: 180px;
    background-color: #128C7E;
}

.whatsapp-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 15px;
}

.whatsapp-icon svg {
    width: 100%;
    height: 100%;
    fill: white;
}

.whatsapp-text {
    white-space: nowrap;
    margin-left: 40px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateX(10px);
}

.whatsapp-float:hover .whatsapp-text {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        height: 50px;
        width: 50px;
        padding: 0 15px;
    }

    .whatsapp-icon {
        width: 25px;
        height: 25px;
        left: 12px;
    }

    .whatsapp-float:hover {
        width: 160px;
    }

    .whatsapp-text {
        margin-left: 35px;
        font-size: 14px;
    }
}

/* Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float {
    animation: pulse 2s infinite;
}

.services-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
}

.services-hero {
    text-align: center;
    margin-bottom: 60px;
}

.services-hero h1 {
    font-family: 'Panchang-Regular';
    font-size: 2.8rem;
    color: #06163a;
    margin-bottom: 15px;
}

.services-hero p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.service-category {
    margin-bottom: 60px;
}

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #dddd00;
}

.category-number {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    color: #dddd00;
    margin-right: 20px;
}

.category-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    color: #06163a;
    margin: 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(6, 22, 58, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(6, 22, 58, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon img {
    width: 30px;
    height: 30px;
}

.service-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    color: #06163a;
    margin-bottom: 15px;
    font-weight: 400;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.service-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    color: #555;
}

.service-features li:before {
    content: "•";
    color: #dddd00;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -3px;
}

.service-cta {
    background: #dddd00;
    color: #06163a;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background: #06163a;
    color: white;
}

@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2.2rem;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .category-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .category-number {
        margin-bottom: 10px;
        margin-right: 0;
    }
}

/* Contact Popup Styles */
.contact-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 22, 58, 0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.popup-content {
    background-color: #f9fbff;
    padding: 30px;
    border-radius: 8px;
    width: 100%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #06163a;
    cursor: pointer;
    transition: color 0.3s;
}

.close-btn:hover {
    color: #dddd00;
}

.popup-content h3 {
    color: #06163a;
    font-family: 'Panchang', sans-serif;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.5rem;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    background-color: white;
    color: #06163a;
}

.contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2306163a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 15px;
}

.submit-btn {
    background-color: #dddd00;
    color: #06163a;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
}

.submit-btn:hover {
    background-color: #06163a;
    color: #f9fbff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .popup-content {
        width: 90%;
        padding: 20px;
    }
}

/* Update the form input styles */
.contact-form input::placeholder,
.contact-form select:invalid,
.contact-form textarea::placeholder {
    color: #6c757d;
    /* Medium gray color that's readable on white */
    opacity: 1;
    /* Firefox reduces opacity by default */
}

/* Style for selected dropdown option */
.contact-form select option:not(:disabled) {
    color: #06163a;
    /* Friese Greene dark blue for selected options */
}

/* Style for disabled placeholder option */
.contact-form select option[disabled][selected] {
    color: #6c757d;
    /* Same as placeholder color */
}

/* Existing input styles - add these if not already present */
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    background-color: white;
    color: #06163a;
    /* Text color when user types */
    font-size: 0.9rem;
}

/* Focus states */
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #dddd00;
    outline: none;
    box-shadow: 0 0 0 2px rgba(221, 221, 0, 0.2);
}

@media (min-width: 1600px) {
    .contact-info-container {
        max-width: 100%;
    }
}

.ogpara {
    font-size: 1rem!important;
    margin-bottom: 20px!important;
    line-height: 1.6!important;
}

