/* ================= GLOBAL STYLING ================= */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body{
    background: #f5f3ef;
    color: #3c2f2f;
}

html{
    scroll-behavior: smooth;
}

/* ================= NAVBAR ================= */

.navbar{
    width: 100%;
    padding: 20px 8%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    z-index: 1000;
}

.nav-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo{
    font-size: 28px;
    font-weight: 700;
    color: #b79d66;
}

.menu a{
    margin-left: 30px;
    text-decoration: none;
    font-weight: 500;
    color: #3c2f2f;
}

.menu a:hover{
    color: #b79d66;
}

/* ===== FULL SCREEN HOME SECTION ===== */

.home {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* ===== CENTERED TEXT ===== */

.home-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 10;
}

.home-text h1 {
  font-size: 60px;
  font-weight: 700;
}

.home-text p {
  font-size: 22px;
  margin-top: 10px;
}

/* ===== FADE SLIDER ===== */

.fade-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.fade-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: fadeAnimation 12s infinite;
}

/* Fading images one by one */
.fade-img:nth-child(1) {
  animation-delay: 0s;
}

.fade-img:nth-child(2) {
  animation-delay: 4s;
}

.fade-img:nth-child(3) {
  animation-delay: 8s;
}

/* Keyframes for fading effect */
@keyframes fadeAnimation {
  0%   { opacity: 0; }
  10%  { opacity: 1; }
  30%  { opacity: 1; }
  40%  { opacity: 0; }
  100% { opacity: 0; }
}
 
/* ================== ABOUT SECTION ================== */

.about-section {
    padding: 120px 8%;
    background: linear-gradient(to bottom right, #f8f4ee, #efe6db);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* LEFT IMAGE */
.about-image img.about-main-img {
    width: 480px;
    border-radius: 22px;
    object-fit: cover;
    box-shadow: 0 25px 55px rgba(0,0,0,0.18);
}

/* RIGHT CONTENT */
.about-content {
    flex: 1;
}

.about-title {
    font-size: 44px;
    font-weight: 700;
    color: #2c2a27;
    margin-bottom: 22px;
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #4c4643;
}

/* STATS */
.about-stats {
    display: flex;
    gap: 25px;
    margin-top: 25px;
}

.stat-box {
    background: white;
    padding: 22px 32px;
    border-radius: 15px;
    width: 150px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.10);
}

.stat-box h3 {
    color: #b79d66;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 14px;
    color: #6a635c;
}
/* ================= LUXURY SERVICES CSS (STYLE A) ================= */

.lux-services-section {
    padding: 120px 8%;
    background: linear-gradient(to right, #f6f2ea, #ede6db);
}

.lux-service-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #2f2a26;
}

.lux-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.lux-service-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    transition: transform .4s ease, box-shadow .4s ease;
}

.lux-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 55px rgba(0,0,0,0.18);
}

.lux-service-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    filter: brightness(80%);
    transition: .4s ease;
}

.lux-service-card:hover img {
    filter: brightness(100%);
    transform: scale(1.05);
}

.lux-service-text {
    padding: 22px 25px 30px;
}

.lux-service-text h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #3a332f;
}

.lux-service-text p {
    font-size: 16px;
    color: #5a524d;
    line-height: 1.6;
}
/* ================= LUXURY PROJECTS CSS ================= */

.lux-projects-section {
    padding: 120px 8%;
    background: linear-gradient(to bottom, #f7f4ef, #efe8df);
}

.lux-project-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #2f2a26;
}

.lux-project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.lux-project-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    transition: .4s ease;
}

.lux-project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.20);
}

.lux-project-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    filter: brightness(82%);
    transition: .4s ease;
}

.lux-project-card:hover img {
    filter: brightness(100%);
    transform: scale(1.05);
}
/* ================= LUXURY FEEDBACK SECTION ================= */

.lux-feedback-section {
    padding: 120px 8%;
    background: linear-gradient(to bottom right, #f7f4ef, #eee6dd);
}

.lux-feedback-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #2f2a26;
}

.lux-feedback-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.lux-feedback-card {
    background: rgba(255, 255, 255, 0.7);
    padding: 30px;
    border-radius: 18px;
    backdrop-filter: blur(8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    transition: .3s ease;
}

.lux-feedback-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}

.lux-feedback-card p {
    font-size: 17px;
    color: #3a342f;
    margin-bottom: 12px;
    line-height: 1.7;
}

.lux-feedback-card span {
    font-weight: 700;
    color: #b79d66;
    font-size: 15px;
}
/* ================= LUXURY CONTACT SECTION CSS ================= */
.lux-contact-section {
    padding: 120px 8%;
    background: linear-gradient(to bottom right, #f3eee6, #e7dfd4);
    text-align: center;
}

.lux-contact-title {
    font-size: 42px;
    font-weight: 700;
    color: #2e2b28;
    margin-bottom: 10px;
}

.lux-contact-sub {
    font-size: 18px;
    color: #5a524e;
    margin-bottom: 50px;
}

.lux-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
}

.lux-contact-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
    border: 1px solid rgba(183, 157, 102, 0.25);
    transition: .3s ease;
}

.lux-contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 55px rgba(0,0,0,0.15);
}

.lux-contact-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #b79d66;
    margin-bottom: 8px;
}

.lux-contact-card p {
    font-size: 18px;
    color: #3d3632;
    font-weight: 500;
}
/* ================= LUXURY FOOTER CSS ================= */
.lux-footer {
    background: #1b1b1b;
    color: #ddd;
    padding: 70px 8% 30px;
    margin-top: 50px;
}

.lux-footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.lux-footer-col h3,
.lux-footer-col h4 {
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
}

.lux-footer-col p {
    color: #c9c9c9;
    line-height: 1.6;
}

.lux-footer-col ul {
    list-style: none;
    padding: 0;
}

.lux-footer-col ul li {
    margin-bottom: 10px;
}

.lux-footer-col ul li a {
    text-decoration: none;
    color: #cfcfcf;
    transition: 0.3s;
}

.lux-footer-col ul li a:hover {
    color: #d4b373; /* Elegant gold */
}

.lux-footer-bottom {
    margin-top: 40px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #aaa;
    font-size: 14px;
}
.slider {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
  border-radius: 15px;
}

.slides {
  width: 300%;
  height: 100%;
  display: flex;
  animation: slideAnimation 12s infinite;
}

.slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes slideAnimation {
  0%   { transform: translateX(0%); }
  33%  { transform: translateX(0%); }

  36%  { transform: translateX(-100%); }
  66%  { transform: translateX(-100%); }

  69%  { transform: translateX(-200%); }
  100% { transform: translateX(-200%); }
}