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); */
            z-index: 1;
        }
        .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: 2rem;
            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(6, 1fr) !important;
overflow-x: visible !important;
            }

            body.menu-open #projects-selector-wrapper {
    display: none;
}


            #projects-container .project-card {
                 height: 8rem;
                 border: 2px solid rgba(255, 255, 255, 0.3); /* Default semi-transparent border */
            }
             .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);
            }
        }

        .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;
    }

.multi-choice-text {
  color: #ab7532;
  font-family: inherit;
  font-size: 25px;
  text-align: center;
  margin-right: 760px;
  padding: 15px;
}

/* Tablet View */
@media (max-width: 1024px) {
  .multi-choice-text {
    font-size: 22px;
     margin-right: 0px;
  }
}

/* Mobile View */
@media (max-width: 768px) {
  .multi-choice-text {
    font-size: 22px;
    line-height: 1.4;
  }
}

/* Small Mobile (≤480px) */
@media (max-width: 480px) {
  .multi-choice-text {
    font-size: 18px;
    padding: 10px;
  }
}

.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%;} }


@media (max-width: 768px) {
    
    .about-one_cap {

        background-image: none !important; 
        
    }
}

/* Smooth image fade effect */
#hero-section {
  transition: background-image 0.8s ease-in-out;
  background-size: cover;
  background-position: center;
  position: relative;
  height: 100vh;
}



.hero-animate {
  animation: fadeInUp 0.8s ease-in-out;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive thumbnail cards */
#projects-container {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 10px;
  scroll-behavior: smooth;
}

.project-card {
  flex: 0 0 150px;
  height: 100px;
  border-radius: 8px;
  transition: transform 0.3s ease, border 0.3s ease;
  background-size: cover;
  background-position: center;
}

.project-card.active {
  border: 2px solid #ffffff;
  transform: scale(1.05);
}

/* For mobile */
@media (max-width: 768px) {
  #projects-container {
    gap: 8px;
  }
  .project-card {
    flex: 0 0 120px;
    height: 80px;
  }
}

/* Black overlay */
.video-black-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.30);
  z-index: 5;
}

/* Text Overlay */
.video-overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  /*transform: translate(-50%, -50%);*/
  text-align: center;
  width: 100%;
  color: #fff;
  z-index: 10;
  padding: 0 20px;
}

.video-overlay-text h1 {
  font-size: 60px;
  font-weight: 700;
  letter-spacing: 2px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
  margin: 0;
  font-family: "Cinzel", serif;
  animation: fadeInUp 1.2s ease forwards;
}

/* Responsive */
@media (max-width: 992px) {
  .video-overlay-text h1 { font-size: 45px; }
}
@media (max-width: 768px) {
  .video-overlay-text h1 { font-size: 32px; }
}
@media (max-width: 480px) {
  .video-overlay-text h1 {
    font-size: 38px;
    right: 2%;
    letter-spacing: 1px;
  }
}

/* Smooth fade-in animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate(-50%, -60%);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}


