body {
            font-family: 'Playfair Display', serif;
        }
        body.no-scroll {
            overflow: hidden;
        }
        .cinzel {
            font-family: 'Cinzel', serif;
        }
        .hero-section {
            transition: background-image 0.5s ease-in-out;
            position: relative;
            z-index: 1;
        }
        /* --- THIS IS THE BLACK OVERLAY FOR THE MAIN BACKGROUND IMAGE --- */
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.4); /* Transparent black overlay */
            z-index: 1; /* Place behind content but above background image */
        }
        .hero-text {
             text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
        }
        .project-card {
            transition: all 0.3s ease;
            position: relative;
        }
        /* Active state indicator line for mobile */
        .project-card.active::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 10%;
            right: 10%;
            height: 3px;
            background-color: #fff;
            transition: all 0.3s ease;
        }

        .h1, h2, h3, h4, h5, h6 {
            position: relative;
    margin: 0px;
    background: none;
    font-weight: 700;
    color: rgb(255 255 255);
    
}

        .text, p {
    position: relative;
    line-height: 1.7em;
    color: #ffffff;
    font-size: 16px;
}

        .project-card .overlay {
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent 60%);
        }
        #full-screen-menu {
            transition: opacity 0.3s ease-in-out;
            opacity: 1;
        }
        #full-screen-menu.hidden {
            opacity: 0;
            pointer-events: none;
        }

        /* Mobile Slider Styles */
        #projects-container {
            display: flex;
            gap: 1rem;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            padding-bottom: 1.5rem; /* Space for active indicator */
            -webkit-overflow-scrolling: touch;
        }
        #projects-container::-webkit-scrollbar { display: none; }
        #projects-container { -ms-overflow-style: none; scrollbar-width: none; }

        #projects-container .project-card {
            flex: 0 0 65%; /* Each card takes ~65% of container width */
            scroll-snap-align: center;
            height: 10rem;
        }

        @media (min-width: 500px) {
             #projects-container .project-card {
                flex-basis: 40%;
            }
        }

        /* Revert to Grid on larger screens (md breakpoint: 768px) */
        @media (min-width: 768px) {
            #projects-container {
                display: grid !important;
grid-template-columns: repeat(5, 1fr) !important;
overflow-x: visible !important;
            }


            
             .project-card.active {
                transform: translateY(-5px);
                border-color: white; /* Solid white border for active card */
            }
            /* Hide mobile-only indicator line on desktop */
            .project-card.active::after {
                display: none;
            }
        }

        /* Custom styles for the decorative circle effect */
        .image-container-decorative {
            position: relative;
        }
        /* The faint circular border */
        .image-container-decorative::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 150%;
            padding-bottom: 150%;
            border: 1px solid #e2e8f0; /* light gray border */
            border-radius: 50%;
            z-index: 0;
        }
        /* The golden dot on the circle */
        .image-container-decorative::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 12px;
            height: 12px;
            background-color: #c9a969; /* gold color */
            border-radius: 50%;
            z-index: 2;
            /* Position the dot on the circle's edge */
            transform: translate(-50%, -50%) translateY(-75vw);
        }
        .image-container-decorative img {
            position: relative;
            z-index: 1;
        }

        /* Responsive adjustments for the decorative circle */
        @media (min-width: 1024px) {
            .image-container-decorative::before {
                width: 140%;
                padding-bottom: 140%;
            }
            /* Adjust dot position based on the new circle size */
            .image-container-decorative::after {
                transform: translate(-50%, -50%) translateY(-35vw);
            }
            /* Specific adjustments for left/right alignment */
            .align-right .image-container-decorative::after {
                 transform: translate(-50%, -50%) translateX(-35vw);
            }
            .align-left .image-container-decorative::after {
                 transform: translate(-50%, -50%) translateX(35vw);
            }
        }
        @media (min-width: 1280px) {
             .image-container-decorative::after {
                transform: translate(-50%, -50%) translateY(-25em);
            }
            .align-right .image-container-decorative::after {
                 transform: translate(-50%, -50%) translateX(-25em);
            }
            .align-left .image-container-decorative::after {
                 transform: translate(-50%, -50%) translateX(25em);
            }
        }

        /* --- General Footer Styling --- */
.main-footer {
    background-color: #fcfcfc; /* Very light background */
    padding: 30px 15px 20px;
    font-family: Arial, sans-serif;
    position: relative; /* Needed for floating buttons */
}

/* --- Logo and Divider Section --- */
.footer-divider-container {
    padding: 20px 0;
    margin-bottom: 20px;
}
.footer-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}
.divider {
    flex-grow: 1; /* Takes up all available space */
    height: 1px;
    background-color: #e0d0c0; /* Light gold/tan line */
    max-width: 40%;
}
.logo-area {
    padding: 0 30px;
    text-align: center;
    white-space: nowrap; /* Prevents text wrap */
}
.logo-text {
    font-size: 24px;
    letter-spacing: 5px;
    font-weight: 400;
    margin: 0;
    color: #333;
}
.logo-subtext {
    font-size: 10px;
    letter-spacing: 3px;
    margin: 0;
    color: #555;
}

/* --- Bottom Bar Layout --- */
.footer-bottom-bar {
    display: flex;
    justify-content: space-between; /* Spreads items out */
    align-items: center;
    padding: 10px 0;
    font-size: 12px;
    color: #888;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Bottom Bar Elements --- */
.footer-copyright {
    flex: 1; /* Allow to grow */
    text-align: left;
    padding-right: 15px;
}

.footer-social-icons {
    flex: 1; /* Allow to grow */
    text-align: center;
    white-space: nowrap;
}
.footer-social-icons a {
    color: #888;
    font-size: 14px;
    margin: 0 8px;
    transition: color 0.3s;
}
.footer-social-icons a:hover {
    color: #daa520; /* Gold hover effect */
}

.footer-links {
    flex: 1; /* Allow to grow */
    text-align: right;
    padding-left: 15px;
    white-space: nowrap;
}
.footer-links a {
    color: #888;
    text-decoration: none;
    margin: 0 5px;
}
.link-separator {
    color: #888;
    margin: 0 2px;
}

/* --- Responsive Stacking (Mobile/Tablet) --- */
@media (max-width: 768px) {
    .footer-bottom-bar {
        flex-direction: column; /* Stack vertically */
        text-align: center;
        gap: 15px; /* Space between stacked items */
    }

    .footer-copyright,
    .footer-social-icons,
    .footer-links {
        flex: none; /* Override flex-grow */
        width: 100%; /* Take full width */
        text-align: center;
        padding: 0;
    }
}

/* --- Floating Buttons (If you want to replicate the action buttons) --- */
.floating-contact-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column; /* Stack buttons vertically */
    gap: 10px;
}
.floating-contact-buttons .btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 14px;
    min-width: 150px;
}
.call-back-btn {
    background-color: #555; /* Dark gray */
}
.whatsapp-btn {
    background-color: #25d366; /* WhatsApp green */
}

/* Smooth fade animations */
    .fade-up {
      opacity: 0;
      transform: translateY(40px);
      transition: all 1s ease;
    }
    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Image hover zoom */
    .zoom-hover {
      transition: transform 0.6s ease, box-shadow 0.6s ease;
    }
    .zoom-hover:hover {
      transform: scale(1.05);
      box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }

    /* Animated Cursor */
    .cursor {
      position: fixed;
      top: 0;
      left: 0;
      width: 25px;
      height: 25px;
      border: 2px solid #c09841;
      border-radius: 50%;
      pointer-events: none;
      transform: translate(-50%, -50%);
      transition: transform 0.15s ease-out, width 0.2s, height 0.2s, background-color 0.2s;
      z-index: 9999;
    }
    .cursor.grow {
      width: 50px;
      height: 50px;
      background-color: rgba(192,152,65,0.15);
    }

    /* Font */
    h2 {
      font-family: 'Cinzel', serif;
    }

    .stats-circle { background:#ededed; padding:60px 20px; }
.stats-circle .container { display:flex; flex-wrap:wrap; justify-content:center; gap:30px; max-width:100%; margin:auto; }
.stats-circle .stat-item { flex:1 1 200px; min-width:150px; text-align:center; }
.stats-circle .icon-circle {
  width:80px; height:80px; margin:auto; border-radius:50%; background:linear-gradient(135deg, #2e3964, #263866); display:flex; align-items:center; justify-content:center; margin-bottom:15px; transition: transform 0.3s; }
.stats-circle .icon-circle img { width:40px; }
.stats-circle .stat-item:hover .icon-circle { transform: scale(1.1); }
.stats-circle .stat-number { font-size:32px; font-weight:700; color:#bf8d3f; }
.stats-circle .stat-text { font-size:17px; color:#555; }

@media(max-width:768px){ .stats-circle .stat-item{flex:1 1 45%;} }
@media(max-width:480px){ .stats-circle .stat-item{flex:1 1 100%;} }

.main-footer_logo img {
    /* Base size for large screens */
    width: 120px; 
    height: auto;
    display: block; 
}

/* --- Media Query for Mobile Devices (max-width: 600px) --- */
@media (max-width: 600px) {
    .main-footer_logo img {
        /* Smaller size for typical mobile screens */
        width: 80px; 
    }
}

 .project-section { position: relative; }
        .section-bg-title {
            position: absolute;
            top: 2rem;
            left: 50%;
            transform: translateX(-50%);
            font-size: clamp(4rem, 20vw, 15rem);
            color: #f8f8f8;
            font-weight: 700;
            z-index: 0;
            line-height: 1;
            user-select: none;
            font-family: 'Cinzel', serif;
        }
        .line-container {
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 100%;
            height: 12rem;
            display: none;
            pointer-events: none;
            z-index: 5;
        }
        .line-container svg { width: 100%; height: 100%; }
        .line-path { stroke: #e5e7eb; stroke-width: 1; fill: none; }
        .line-wrapper { overflow: hidden; padding: 2px 0; }
        .line-inner { display: block; }
        @media (min-width: 1024px) {
            .project-layout-right .line-container { display: block; left: 0; }
            .project-layout-left .line-container { display: block; left: 0; }
        }

        
