* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #666;
    background-color: #fefefe;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

header {
    background: linear-gradient(135deg, #f8f6f0 0%, #f0ecdf 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: #8b6914;
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.logo:hover {
    transform: scale(1.05);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1002;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #8b6914;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #9b8653;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #8b6914;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #8b6914;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

.nav-overlay.active {
    display: block;
}

.carousel-container {
    margin-top: 80px;
    height: 70vh;
    min-height: 400px;
    max-height: 600px;
    position: relative;
    overflow: hidden;
}

.carousel {
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.color-box {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    background: rgba(0, 0, 0, 0.4);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.carousel-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.carousel-content p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(224, 215, 188, 0.8);
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 3;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.carousel-btn:hover {
    background: rgba(139, 105, 20, 1);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 2rem;
}

.carousel-btn.next {
    right: 2rem;
}

.carousel-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.dot.active {
    background: #9b8653;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(139, 105, 20, 0.8);
}

.section {
    padding: 4rem 2rem;
}

.section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #8b6914;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.section h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #8b6914;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #9b8653;
}

.latest-blog-section {
    background: linear-gradient(135deg, #f8f6f0 0%, #f5f3ed 100%);
}

.latest-blog-loading {
    text-align: center;
    padding: 2rem;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    margin: 0 auto 1rem;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #8b6914;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.latest-blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    max-width: 800px;
    margin: 0 auto;
}

.latest-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.latest-blog-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #9b8653 0%, #8b6914 100%);
    position: relative;
    overflow: hidden;
}

.latest-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.latest-blog-content {
    padding: 2rem;
}

.latest-blog-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
    color: #9b8653;
    font-size: 0.9rem;
}

.latest-blog-title {
    font-size: 2rem;
    color: #8b6914;
    margin-bottom: 1rem;
}

.latest-blog-excerpt {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more-btn {
    display: inline-block;
    color: #8b6914;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    color: #6b5010;
    transform: translateX(5px);
}

.view-all-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: #8b6914;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 105, 20, 0.3);
}

.view-all-btn:hover {
    background: #9b8653;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(139, 105, 20, 0.4);
}

.about-section {
    background: linear-gradient(135deg, #f0ecdf 0%, #ede8db 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.about-main {
    background: rgba(255, 255, 255, 0.6);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.lead-text {
    font-size: 1.2rem;
    color: #8b6914;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.vision-banner {
    background: #8b6914;
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 2rem;
    box-shadow: 0 3px 10px rgba(139, 105, 20, 0.3);
}

.vision-banner h3 {
    color: white;
    margin: 0;
    font-size: 1.5rem;
}

.mission-vision {
    background: rgba(255, 255, 255, 0.6);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.destinations {
    background: rgba(255, 255, 255, 0.6);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.destination {
    background: rgba(255,255,255,0.8);
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    color: #8b6914;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.destination:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.team-section {
    background: linear-gradient(135deg, #e8e1cd 0%, #e5ddc9 100%);
}

.team-carousel-container,
.services-carousel-container {
    position: relative;
}

.team-grid,
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    transition: transform 0.5s ease;
}

.team-member {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.team-photo {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #9b8653 0%, #8b6914 100%);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: 0 5px 15px rgba(139, 105, 20, 0.3);
}

.team-member h4 {
    color: #8b6914;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.team-member .role {
    color: #9b8653;
    font-style: italic;
    margin-bottom: 1rem;
    font-weight: 600;
}

.team-member .quote {
    font-style: italic;
    color: #8b6914;
    margin-bottom: 1rem;
    padding: 0 1rem;
}

.services-section {
    background: linear-gradient(135deg, #f2eee2 0%, #efe9dd 100%);
}

.service-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #9b8653 0%, #8b6914 100%);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 5px 15px rgba(139, 105, 20, 0.3);
}

.service-card h4 {
    color: #8b6914;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card ul {
    list-style-type: none;
    padding-left: 0;
}

.service-card li {
    padding: 0.3rem 0;
    position: relative;
    color: #666;
}

.service-card li::before {
    content: "✦";
    position: absolute;
    left: -1.5rem;
    color: #9b8653;
}

.work-section {
    background: linear-gradient(135deg, #ddd4bf 0%, #d9d0bb 100%);
}

.portfolio-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #8b6914;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 105, 20, 0.3);
}

.portfolio-btn:hover {
    background: #9b8653;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(139, 105, 20, 0.4);
}

.work-carousel-container {
    height: 500px;
    position: relative;
    overflow: hidden;
    margin: 2rem 0;
}

.work-carousel {
    height: 100%;
    position: relative;
}

.work-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

.work-slide.active {
    opacity: 1;
}

.work-slide-content {
    display: flex;
    width: 100%;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 2rem;
}

.work-slide-content.left-text {
    flex-direction: row;
}

.work-slide-content.right-text {
    flex-direction: row-reverse;
}

.work-text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.work-text-content h3 {
    font-size: 2.5rem;
    color: #8b6914;
    margin-bottom: 1rem;
}

.work-text-content h4 {
    font-size: 1.5rem;
    color: #9b8653;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.work-text-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.work-image-content {
    flex: 1;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    aspect-ratio: 4/3; /* Force consistent aspect ratio */
}

.work-color-box {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Uniform cropping */
    object-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.work-color-box.wedding {
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
}

.work-color-box.corporate {
    background: linear-gradient(135deg, #4834d4 0%, #686de0 100%);
}

.work-color-box.anniversary {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.work-color-box.conference {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
}

.work-color-box.fashion {
    background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
}

.contact-section {
    background: linear-gradient(135deg, #f8f6f0 0%, #f5f3ed 100%);
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-method {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.contact-method h3 {
    color: #8b6914;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: rgba(155, 134, 83, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: #8b6914;
    transition: all 0.3s ease;
}

.contact-method:hover .contact-icon {
    transform: scale(1.1);
}

.contact-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: #8b6914;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(139, 105, 20, 0.3);
}

.contact-btn:hover {
    background: #9b8653;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(139, 105, 20, 0.4);
}

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    text-decoration: none;
    z-index: 1000;
    transition: all 0.3s ease;
}

.float:hover {
    background-color: #20b358;
    transform: scale(1.1);
}

.my-float {
    margin-top: 22px;
}

footer {
    background: #333;
    color: white;
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #9b8653;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #9b8653;
}

.footer-section i {
    margin-right: 0.5rem;
    color: #9b8653;
}

.social-links {
    margin: 1rem 0;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    margin: 0 1rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #8b6914;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
}

.team-carousel-container .carousel-btn,
.services-carousel-container .carousel-btn,
.team-carousel-container .carousel-dots,
.services-carousel-container .carousel-dots {
    display: none;
}

@media (max-width: 768px) {
    /* Navigation Mobile Styles */
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: #f8f6f0;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 1001;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        right: 0;
    }

    /* Hero Carousel Mobile Styles */
    .carousel-container {
        height: 100vh;
    }

    .carousel-content h1 {
        font-size: 2rem;
    }

    .carousel-content p {
        font-size: 1rem;
    }

    .carousel-btn {
        padding: 0.8rem;
        font-size: 1rem;
    }

    .carousel-btn.prev {
        left: 1rem;
    }

    .carousel-btn.next {
        right: 1rem;
    }

    /* General Section Styles */
    .section {
        padding: 3rem 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Team and Services Mobile Carousel Styles */
    .team-carousel-container.mobile-carousel,
    .services-carousel-container.mobile-carousel {
        position: relative;
        overflow: hidden;
        margin-bottom: 4rem;
    }

    .team-carousel-container.mobile-carousel .team-grid,
    .services-carousel-container.mobile-carousel .services-grid {
        display: flex !important;
        transition: transform 0.5s ease;
        width: 400%;
        grid-template-columns: none !important;
        gap: 0 !important;
    }

    .team-carousel-container.mobile-carousel .team-member,
    .services-carousel-container.mobile-carousel .service-card {
        width: 25%;
        flex-shrink: 0;
        padding: 0 1rem;
    }

    .team-carousel-container.mobile-carousel .carousel-btn,
    .services-carousel-container.mobile-carousel .carousel-btn {
        display: block;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(224, 215, 188, 0.9);
        color: white;
        border: none;
        padding: 0.8rem;
        font-size: 1rem;
        cursor: pointer;
        border-radius: 50%;
        z-index: 10;
    }

    .team-carousel-container.mobile-carousel .carousel-btn.prev,
    .services-carousel-container.mobile-carousel .carousel-btn.prev {
        left: 1rem;
    }

    .team-carousel-container.mobile-carousel .carousel-btn.next,
    .services-carousel-container.mobile-carousel .carousel-btn.next {
        right: 1rem;
    }

    .team-carousel-container.mobile-carousel .carousel-dots,
    .services-carousel-container.mobile-carousel .carousel-dots {
        display: flex;
        position: absolute;
        bottom: -3rem;
        left: 50%;
        transform: translateX(-50%);
        gap: 0.5rem;
        z-index: 10;
    }

    .team-carousel-container.mobile-carousel .carousel-dots .dot,
    .services-carousel-container.mobile-carousel .carousel-dots .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(155, 134, 83, 0.5);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .team-carousel-container.mobile-carousel .carousel-dots .dot.active,
    .services-carousel-container.mobile-carousel .carousel-dots .dot.active {
        background: #9b8653;
        transform: scale(1.2);
    }

    /* Work Section Mobile Styles - Fixed */
    .work-carousel-container {
        height: auto;
        min-height: 600px;
        position: relative;
        overflow: hidden;
    }

    .work-carousel {
        height: auto;
        min-height: 600px;
        position: relative;
    }

    .work-slide {
        position: absolute !important;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        min-height: 600px;
        opacity: 0;
        transition: opacity 1s ease-in-out;
        display: flex;
        align-items: flex-start;
        padding: 1rem 0;
    }

    .work-slide.active {
        opacity: 1;
    }

    .work-slide-content {
        flex-direction: column !important;
        padding: 1rem;
        gap: 1.5rem;
        height: auto;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        align-items: stretch;
    }

    .work-slide-content.left-text,
    .work-slide-content.right-text {
        flex-direction: column !important;
    }

    /* Image always comes first on mobile */
    .work-image-content {
        order: 1 !important;
        height: 280px;
        width: 100%;
        flex: none;
        border-radius: 12px;
        overflow: hidden;
        position: relative;
        margin-bottom: 1rem;
    }

    /* Text content comes second */
    .work-text-content {
        order: 2 !important;
        padding: 1.5rem;
        flex: none;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 12px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    }

    .work-text-content h3 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
        line-height: 1.2;
        color: #8b6914;
    }

    .work-text-content h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        color: #9b8653;
        font-style: italic;
    }

    .work-text-content p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
        color: #666;
    }

    /* Work color boxes for mobile */
    .work-color-box {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
    }

    .work-color-box:not(img) {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        font-weight: bold;
        text-align: center;
        padding: 1rem;
        color: white;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

    /* Work carousel navigation for mobile */
    .work-carousel-container .carousel-btn {
        padding: 0.8rem;
        font-size: 1rem;
        top: 35%;
        z-index: 15;
        background: rgba(139, 105, 20, 0.8);
        backdrop-filter: blur(5px);
    }

    .work-carousel-container .carousel-btn:hover {
        background: rgba(139, 105, 20, 1);
    }

    .work-carousel-container .carousel-btn.prev {
        left: 1rem;
    }

    .work-carousel-container .carousel-btn.next {
        right: 1rem;
    }

    .work-carousel-container .carousel-dots {
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 0.8rem;
        z-index: 15;
    }

    .work-carousel-container .carousel-dots .dot {
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.6);
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

    .work-carousel-container .carousel-dots .dot.active {
        background: #9b8653;
        transform: scale(1.3);
    }

    .work-carousel-container .carousel-dots .dot:hover {
        background: rgba(139, 105, 20, 0.8);
    }

    /* WhatsApp Float Button Mobile */
    .float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .my-float {
        margin-top: 18px;
        font-size: 1.2rem;
    }
}