* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    font-size: 16px;
}

.logo-image {
    width: 17rem;
}

.container {
    display: flex;
    min-height: 100vh;
    background: #ffffff;
}

.projects-gallery {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.project-card {
    width: 100%;
    max-width: 300px;
}


@keyframes fadeSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.nav-item.has-dropdown.active .dropdown-menu {
    display: block;
}

.contact-card {
    animation: fadeSlideIn 0.8s ease-out;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.contact-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Sidebar Navigation */
.sidebar {
    width: 280px;
    background: #000000;
    /* Dark background */
    color: #f4e87d;
    /* Gold text */
    padding: 2rem 0;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    border-right: 1px solid #333;
    z-index: 100;
}
.sidebar.mobile-open {
    left: 0;
}
.sidebar .logo {
    /* padding: 0 2rem 2rem; */
    padding-bottom: 2rem;
    border-bottom: 1px solid #333;
    margin-bottom: 1.5rem;
}
/* Hero Section Responsive */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        /* text-align: center; */
        gap: 2rem;
    }

    .hero-image img {
        height: auto;
        max-height: 350px;
        object-fit: contain;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content .subtitle {
        font-size: 1.125rem;
    }
}

/* Features Grid Responsive */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .why-choose-us {
        flex-direction: column;
        padding: 2rem 1rem;
    }

    .left-panel {
        width: 100%;
        padding: 2rem 1rem;
        text-align: center;
    }

    .left-panel h2 {
        font-size: 2.25rem;
    }

    .right-panel {
        width: 100%;
        padding: 2rem 1rem;
    }

    .point {
        display: flex;
        align-items: flex-start;
        text-align: left;
        gap: 1rem;
        margin-bottom: 2rem;
        max-width: 100%;
    }

    .circle {
        min-width: 50px;
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.25rem;
        font-weight: bold;
        border-radius: 50%;
        background-color: #f4e87d;
        color: white;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .text h3 {
        font-size: 1rem;
        margin: 0;
        font-weight: 600;
    }

    .text p {
        font-size: 0.875rem;
        margin: 0.3rem 0 0;
        color: #555;
    }
}



.nav-menu {
    list-style: none;
    padding: 0 1rem;
}

.nav-item {
    margin-bottom: 0.25rem;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: white;
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
}

.nav-link:hover {
    background: #1a1a1a;
    color: #f4e87d;
}

.nav-link.active {
    background: #1a1a1a;
    color: #f4e87d;
    font-weight: 700;
}

.nav-link i {
    margin-right: 0.75rem;
    font-size: 1.1rem;
}


/* Main Content */
.main-content {
    margin-left: 280px;
    flex: 1;
    background: #fafafa;
}

.section {
    display: none;
    min-height: 100vh;
}

.section.active {
    display: block;
}

/* Hero Section */
.hero-section {
    /* background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%); */
    background-color: #f4e87d24;
    padding: 4rem 3rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
    /* margin-left: -50px; */
    /* margin-top: -135px; */
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-content .subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.5;
}

.hero-content .description {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 1rem 1.5rem;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    border: 2px solid #1a1a1a;
}

.cta-button2 {
    display: inline-flex;
    align-items: center;
    padding: 1rem 1.5rem;
    background: #ffffff;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    border: 2px solid #1a1a1a;
}

.cta-button2:hover {
    background: #1a1a1a;
    color: #ffffff;
    transform: translateY(-1px);
}

.cta-button:hover {
    background: #ffffff;
    color: #1a1a1a;
    transform: translateY(-1px);
}

.hero-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* About Section */
.about-section {

    padding: 2rem 3rem;
    background: #ffffff;
}

.section-header {
    text-align: left;
    margin-bottom: 3rem;
    max-width: 800px;

}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.6;
}

.company-description {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    border-left: 4px solid #1a1a1a;
}

.company-description p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.company-description p:last-child {
    margin-bottom: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.process-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    /* Optional for rounded corners */
    margin: 1rem 0;
    /* Optional spacing */
    object-fit: contain;
    /* Ensures image fits without cropping */
}

.process-description {
    /* background: #f9fafb; */
    padding: 2rem;
    font-style: italic;
    font-size: 0.85rem;
    color: #374151;
    line-height: 1.7;
    font-weight: bold;
    background-color: #f4e87d24;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); */
}
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sidebar {
        width: 220px;
    }

    .main-content {
        margin-left: 220px;
    }
}
@media (max-width: 480px) {
    .testimonial-card {
        min-width: 280px;
        padding: 20px;
    }
}
img {
    max-width: 100%;
    height: auto;
}
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
}

.process-description p {
    margin: 0;
    quotes: "“" "”" "‘" "’";
}

.feature-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    transition: all 0.2s ease;
}

.feature-card:hover {
    border-color: #d1d5db;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.feature-card h3 {
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    font-weight: 600;
    font-size: 1.125rem;
}

.feature-card p {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.5;
}

.history-section {
    text-align: center;
    padding: 4rem 3rem;
    background: #f3f4f6;
}

.why-choose-us {
    margin-top: 3rem;
    display: flex;
    /* padding: 4rem 2rem; */
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.left-panel {
    flex: 1;
    background: black;
    color: white;
    padding: 3rem 2rem;
    align-items: center;
}

.left-panel h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.left-panel p {
    font-size: 1rem;
    font-weight: 300;
}

.right-panel {
    flex: 2;
    background: #fff;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.point {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #eddf62;
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


.text h3 {
    font-size: 1rem;
    margin: 0;
}

.text p {
    font-size: 0.85rem;
    color: #555;
    margin: 0.2rem 0 0;
}


/* Services Section */
.services-hero {
    background-image: url('img/kitchen.jpg');
    /* Replace with actual file name */
    background-size: cover;
    background-position: center;
    height: 350px;
    position: relative;
}

.overlay-text-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 1rem 2rem;
    border-radius: 6px;
}

.cabinet-grid,
.vanity-grid,
.closets-grid {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}

.cabinet-card {
    width: 240px;
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.overlay-text {
    position: absolute;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    width: 100%;
    text-align: center;
    padding: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
}

.services-section {
    padding: 4rem 3rem;
    background: #fafafa;
}

.service-item {
    background: #ffffff;
    margin-bottom: 1.5rem;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    transition: all 0.2s ease;
}

.service-item:hover {
    border-color: #d1d5db;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.service-item h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.section-header .service-item p {
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cabinet-types {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.cabinet-type {
    background: #f3f4f6;
    color: #374151;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Proposal Section */
.proposal-section {
    padding: 4rem 3rem;
    background: #ffffff;
}

.proposal-content {
    max-width: 800px;
}

.proposal-highlight {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 4px solid #1a1a1a;
}

.proposal-highlight h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.25rem;
}

.proposal-text {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Contact Section */
.contact-section {
    position: relative;
    padding: 2rem 2rem;
    background-image: url('img/bg.jpg');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    /* optional: white text for contrast */
    z-index: 1;
    height: 100vh;
}

.contact-details .logo {
    width: 20rem;
    /* Adjust size as needed */
    height: auto;
    /* Maintain aspect ratio */
    display: block;
    margin: 1rem auto 0;
    /* Center and add spacing */
    object-fit: contain;
    /* Safe fit without cropping */
}

.contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    /* dark overlay with 40% opacity */
    z-index: -1;
}

.contact-info {
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e5e5e5;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info h3 {
    color: #1a1a1a;
    /* margin-bottom: 2rem; */
    font-weight: 600;
    font-size: 1.5rem;
}

.contact-details {
    font-size: 1rem;
    line-height: 1.8;
}

.contact-details p {
    margin-bottom: 0.5rem;
    color: #4b5563;
}

.contact-details strong {
    color: #1a1a1a;
    font-weight: 600;
}

.phone,
.email {
    color: #1a1a1a;
    font-size: 1rem;
    margin: 1rem 0;
    display: block;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    background: #000000;
    color: #f4e87d;
    border: none;
    border-radius: 8px;
    width: 44px;
    height: 44px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1.2rem;
}

.mobile-menu-toggle:hover {
    background: #f4e87d;
    color: #000000;
}

.mobile-menu-toggle.active {
    background: #dc2626;
}

.mobile-overlay {
    background: rgba(0, 0, 0, 0.8);
}


/* Projects Section */

#projects {
    /* background: #ffffff; */
    padding: 4rem 3rem;
    text-align: center;
}

.projects-hero {
    background-image: url('img/kitchen.jpg');
    background-size: cover;
    background-position: center;
    height: 350px;
    position: relative;
    margin: 0;
    /* width: 100vw; */
    left: 0;
    right: 0;
    margin-left: calc(-50vw + 50%);
    margin-top: -4em;
}



.projects-subheader {
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 3rem;
    font-weight: 500;
    margin-top: 2rem;
    text-align: center;
}


.projects-gallery img {
    width: 100%;
    height: 20rem;
    /* or whatever height fits your design */
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}


.projects-gallery img:hover {
    transform: scale(1.02);
}

.projects-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    /* max-width: 1200px; */
    margin: 0 auto;
}

.project-card {
    /* background: white; */
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-card img {
    /* width: 300px; */
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
}

.project-label {
    padding: 15px;
    text-align: center;
    font-weight: bold;
    color: #333;
    background: white;
}

.mobile-navbar {
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.mobile-navbar .nav-left {
    font-weight: 600;
    font-size: 1.125rem;
    color: #000000;
}

.mobile-navbar .mobile-menu-toggle {
    background: #000;
    color: #f4e87d;
    border: none;
    border-radius: 8px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
}

@media (max-width: 768px) {

    /* Mobile Top Navbar */
    .mobile-navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 1.5rem;
        background: #000000;
        /* black background */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1001;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        height: 64px;
    }

    .mobile-navbar .nav-left {
        font-weight: 600;
        font-size: 1.125rem;
        color: #f4e87d;
        /* gold text */
    }

    .mobile-navbar .mobile-menu-toggle {
        background: #000000;
        color: #f4e87d;
        border: none;
        border-radius: 8px;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.25rem;
        cursor: pointer;
        margin: 0;
        padding: 0;
        line-height: 1;
        position: relative;
        top: 0;
        right: 0;
        /* force alignment */
    }



    /* Hide desktop sidebar by default */
    .sidebar {
        left: -280px;
        transition: left 0.3s ease;
        z-index: 1000;
        background: #000000;
        color: #f4e87d;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
        top: 64px;
        /* ensures it slides below navbar */
        position: fixed;
        height: calc(100vh - 64px);
    }

    .sidebar.mobile-active {
        left: 0;
    }

    /* Push content below mobile navbar */
    .main-content {
        margin-left: 0;
        margin-top: 64px;
    }

    .hero-section {
        padding: 2rem 1.5rem;
        padding-top: 5rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-section,
    .services-section,
    .proposal-section,
    .contact-section {
        padding: 3rem 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .mobile-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .mobile-overlay.active {
        display: block;
    }
}


@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content .subtitle {
        font-size: 1.125rem;
    }

    .contact-info {
        padding: 2rem;
    }

    .phone {
        font-size: 1.25rem;
    }

    .projects-gallery {
        grid-template-columns: 1fr;
    }
}

.signature-section {
    padding: 2rem;
    font-family: 'Inter', sans-serif;
}

.signature-section p:first-child {
    font-weight: 600;
    font-size: 1.1rem;
}

.signature-section p:nth-child(2) {
    font-family: 'Brush Script MT', cursive;
    font-size: 2rem;
    font-weight: bold;
    margin: 0.5rem 0;
}

.signature-section p:nth-child(3) {
    font-size: 1rem;
}

/* Testimonials */
.testimonials {
    background: url(img/main.jpg) center center / cover no-repeat;
    padding: 60px 20px;
    color: white;
    text-align: center;
    font-family: 'Inter', sans-serif;
    max-width: 100vw;
}

.testimonial-header h2 {
    font-size: 2.5rem;
    border-bottom: 2px solid #fff;
    display: inline-block;
    margin-bottom: 10px;
}

.testimonial-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.testimonial-cards {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.testimonial-scroll-container {
   display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    max-width: 90%;
}

.testimonial-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.testimonial-scroll-container::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.testimonial-scroll-container {
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
}

.testimonial-card {
    flex: 0 0 auto;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    text-align: left;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
    min-width: 280px;
    max-width: 350px;
    margin: 0 0.5rem;
}

.testimonial-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial-name h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.testimonial-name p {
    font-size: 0.95rem;
    color: #ddd;
}

.testimonial-stars {
    font-size: 1.2rem;
    color: #f4e87d;
}

.testimonial-stars span {
    display: block;
    font-size: 0.85rem;
    opacity: 0.8;
}

.testimonial-image {
    text-align: center;
    margin: 20px 0;
}

.testimonial-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #fff;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #fff;
}

.testimonial-buttons {
    text-align: center;
    margin-top: 1rem;
}

.testimonial-buttons button {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
}

@media (max-width: 480px) {
    .testimonial-card {
        min-width: 90vw;
        max-width: 90vw;
    }
}


.contact-card {
    display: flex;
    align-items: center;
    background: white;
    padding: 10px 15px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: fit-content;
    font-family: 'Arial', sans-serif;
}

.icon-circle {
    background-color: #ffccaa;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 12px;
}

.phone-icon {
    font-size: 24px;
    color: white;
}

.contact-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 2px solid #ccc;
    padding-left: 12px;
}

.contact-text .label {
    font-size: 14px;
    font-weight: bold;
    color: #555;
    margin: 0;
    letter-spacing: 1px;
}

.contact-text .number {
    font-size: 14px;
    color: #555;
    margin: 2px 0 0;
}

/* dropdown */
.nav-link-with-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-right: 0.5rem;
}

.dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    color: #fff;
}

.dropdown-menu {
    display: none;
    flex-direction: column;
    padding-left: 1rem;
    margin-top: 0.3rem;
}

.dropdown-menu.show {
    display: flex;
}

.dropdown-menu a {
    font-size: 0.95rem;
    padding: 0.3rem 0;
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.dropdown-menu a:hover {
    color: #f4e87d;
}

.nav-link i {
    margin-left: 0.3rem;
    font-size: 0.7rem;
}

@media (max-width: 480px) {
    .testimonial-scroll-container {
        padding: 1rem 0.5rem; /* reduce padding */
        overflow-x: auto;
    }

    .testimonial-card {
        min-width: calc(100vw - 2rem); /* subtract left/right margin */
        max-width: calc(100vw - 2rem);
        margin: 0 1rem;
    }
}


