/*navbar start */ 
* { margin:0; padding:0; box-sizing:border-box; }

    body, html { font-family:'Segoe UI', sans-serif; overflow-x:hidden; }

    /* ---------- NAVBAR ---------- */
    .navbar {
      position: fixed; /* fixed navbar */
      top: 0;
      left: 0;
      width: 100%;
      z-index: 9999;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 40px;
      background-color: rgba(0,0,0,0.95);
      box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }
    .logo-section { display:flex; flex-direction:column; line-height:1.2; }
    .logo-section h1 { font-size:22px; color:#ff4c4c; font-weight:bold; }
    .logo-section p { font-size:12px; color:#ccc; margin-top:4px; }
    .phone-link { font-size:13px; color:white; text-decoration:none; margin-top:6px; }

    .nav-menu { list-style:none; display:flex; gap:30px; position:relative; }
    .nav-menu li { position:relative; }
    .nav-menu a { text-decoration:none; color:#fff; font-size:14px; font-weight:500; transition:0.3s; }
    .nav-menu a:hover { color:#ff4c4c; }

    /* ---------- HAMBURGER ---------- */
    .hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; z-index:10001; }
    .hamburger span { width:25px; height:3px; background:#fff; border-radius:2px; transition:all 0.3s ease; }
    .hamburger.active span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
    .hamburger.active span:nth-child(2) { opacity:0; }
    .hamburger.active span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }

    /* ---------- HERO ---------- */
    .hero {
		 background: url('index.webp') no-repeat center center/cover;
      height: 85vh;
      position: relative;
      color: white;
      padding-top: 100px; /* push hero content below navbar */
    }
    @media (max-width: 1024px) {
      .hero { height: 80vh; }
    }
    .hero::before {
      content:"";
      position:absolute; top:0; left:0; width:100%; height:100%;
      background-color: rgba(0,0,0,0.6);
      z-index:1;
    }
    .hero-content {
      position: relative;
      z-index:2;
      text-align:center;
      top:50%;
      transform:translateY(-50%);
      padding:0 20px;
    }
    .hero-content h2 { font-size: clamp(1.8rem,5vw,3rem); color:#ff4c4c; margin-bottom:12px; letter-spacing:1.5px; }
    .hero-content p { font-size:18px; color:#fff; letter-spacing:1px; }

    /* ---------- RESPONSIVE ---------- */
    @media(max-width:768px){
      .hamburger { display:flex; }
      .nav-menu {
        flex-direction:column;
        position:fixed;
        top:0;
        right:-100%;
        width:50vw;
        max-width:300px;
        height:100%;
        background-color:#111;
        padding:100px 20px 20px;
        transition: right 0.4s ease;
      }
      .nav-menu.active { right:0; }
      .nav-menu li { margin-bottom:20px; }
      .nav-menu a { font-size:16px; color:white; }
      body.menu-open .hero-content { display:none; }
    }

    /* ---------- LETTER ANIMATION ---------- */
    .letter { opacity:0; display:inline-block; animation:fadeInLetter 0.3s ease forwards; }
    @keyframes fadeInLetter { from{opacity:0;transform:translateY(20px);} to{opacity:1;transform:translateY(0);} }
    .letter:nth-child(1){animation-delay:1s;} .letter:nth-child(2){animation-delay:1.1s;}
    .letter:nth-child(3){animation-delay:1.2s;} .letter:nth-child(4){animation-delay:1.3s;}
    .letter:nth-child(5){animation-delay:1.4s;} .letter:nth-child(6){animation-delay:1.5s;}
    .letter:nth-child(7){animation-delay:1.6s;} .letter:nth-child(8){animation-delay:1.7s;}
    .letter:nth-child(9){animation-delay:1.8s;} .letter:nth-child(10){animation-delay:1.9s;}
    .letter:nth-child(11){animation-delay:2s;} .letter:nth-child(12){animation-delay:2.1s;}
    .letter:nth-child(13){animation-delay:2.2s;} .letter:nth-child(14){animation-delay:2.3s;}
    .letter:nth-child(15){animation-delay:2.4s;} .letter:nth-child(16){animation-delay:2.5s;}
    .letter:nth-child(17){animation-delay:2.6s;} .letter:nth-child(18){animation-delay:2.7s;}
    .letter:nth-child(19){animation-delay:2.8s;} .letter:nth-child(20){animation-delay:2.9s;}

    /* Shahzad drop line on small screens */
    @media(max-width:600px){ .realtor{ display:block; width:100%; margin-top:10px; text-align:left; } }
    .br-mobile{ display:inline; } @media(max-width:768px){ .br-mobile{ display:block; } }
    .lett{ display:none; } @media(min-width:768px){ .lett{ display:inline; } }

/* ----------------- DROPDOWNS ----------------- */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 30px;
  left: 0;
  background-color: rgba(0, 0, 0, 0.95);
  list-style: none;
  padding: 10px 0;
  min-width: 150px;
  z-index: 999;
  border-radius: 4px;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-menu li {
  padding: 8px 20px;
}

.dropdown-menu li a {
  color: white;
  display: block;
}
/* 📱 Mobile dropdown fix: push content down + keep box style */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static;              /* inline so it pushes items down */
    background-color: rgba(0,0,0,0.9);  /* dark box background */
    padding: 10px 15px;
    margin-top: 8px;
    border-radius: 6px;
    display: none;                 /* hidden by default */
  }

  .dropdown-menu.show {
    display: block;                /* shown when toggled via JS */
  }

  .dropdown-menu li {
    padding: 8px 0;
  }

  .dropdown-menu li a {
    color: #fff;
    font-size: 15px;
    display: block;
  }
}

/*navbar end */
/* ============================= */
/* PACKAGE BUTTONS SECTION      */
/* ============================= */
.view-packages-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
  padding: 0 10px;
}

.view-packages-button {
  flex: 1 1 calc(50% - 20px);
  max-width: 200px;
  min-width: 140px;
  padding: 12px 10px;
  background-color: #e53935;             /* Material red */
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.3px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

/* 🔴 Hover effect */
.view-packages-button:hover {
  background-color: #d32f2f;             /* Deeper red */
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}

/* 🔴 Click feedback */
.view-packages-button:active {
  transform: translateY(1px);
  box-shadow: none;
}

/* 📱 Mobile-friendly tweak */
@media (max-width: 480px) {
  .view-packages-button {
    flex: 1 1 100%;
    font-size: 15px;
    padding: 14px;
  }
}
/* 💬 Floating Contact Card Styles */
.contact-card {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 260px;
  background-color: white;
  color: #333;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  padding: 15px;
  font-family: Arial, sans-serif;
  z-index: 9999;
  cursor: pointer;

  /* Smooth hover transitions */
  transition: border 0.4s ease, border-radius 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

.contact-card:hover {
  border: 2px solid red;  /* Red outline */
  border-radius: 0px;      /* Rectangle edges */
  box-shadow: 0 8px 20px rgba(0,0,0,0.25); /* Subtle lift */
  transform: translateY(-2px); /* Gentle floating effect */
}

.contact-card p {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.4;
}

.contact-card p strong {
  color: red; /* Only strong text stays red */
}

.contact-card a {
  display: block;
  color: #007BFF;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  margin-bottom: 10px;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-card small {
  font-size: 10px;
  color: #666;
}

.contact-card .close-btn {
  position: absolute;
  top: 5px;
  right: 10px;
  background: none;
  border: none;
  font-size: 18px;
  color: #aaa;
  cursor: pointer;
}

.contact-card .close-btn:hover {
  color: #000;
}

@media (max-width: 400px) {
  .contact-card {
    width: 70%;
    right: 5%;
    bottom: 10px;
  }
}

/* ----------------- OUR WORK SECTION  start ----------------- */
.our-work {
  background-color: #f9f9f9;
  padding: 40px 20px;
  text-align: center;
}

.our-work h3 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #c60000;
}

.work-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card-work {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  width: 300px;
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-work h4 {
  color: #c60000;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.card-work p {
  font-size: 1rem;
  color: #333;
}

.card-work:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
/* ----------------- OUR WORK SECTION  end ----------------- */

 /* ----------------- loction  start ----------------- */

.location-section {
  background-color: #e4e4e4;
  padding: 60px 20px;
  text-align: center;
}

.location-title {
  font-size: 2.5rem;
  color: #000;
  font-weight: 700;
}

.location-divider {
  width: 80px;
  height: 3px;
  background-color: #c60000;
  margin: 15px auto 40px;
}

.location-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.location-box {
  background: transparent;
  max-width: 250px;
  text-align: center;
}

.location-box img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  filter: brightness(0) saturate(100%) invert(14%) sepia(99%) saturate(7471%) hue-rotate(358deg) brightness(90%) contrast(101%);
}

.location-box h6 {
  color: #c60000;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 8px;
}

.location-box p {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
  .location-grid {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .location-title {
    font-size: 2rem;
  }

  .location-box {
    max-width: 90%;
  }
}
/* ----------------- loction  end ----------------- */

/* ----------------- info section modern start ----------------- */

.info-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 50px 20px;
  background-color: #ffffff; /* dark background */
}

.info-card {
  background-color: #1f1f1f;  /* dark gray card */
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 30px 20px;
  width: 300px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(255, 76, 76, 0.3); /* subtle red glow */
  border-color: #ff4c4c;
}

.info-card p {
  margin-bottom: 12px;
  line-height: 1.6;
  color: #eeeeee;
  font-size: 0.95rem;
}

.info-card strong {
  color: #ff4c4c; /* bright accent color */
  font-size: 1.1rem;
}

.info-card a {
  color: #1da1f2;
  text-decoration: none;
  transition: color 0.3s;
}

.info-card a:hover {
  color: #ff4c4c; /* matches accent */
  text-decoration: underline;
}

.info-card hr {
  width: 80%;
  border: none;
  border-top: 1px solid #333;
  margin: 15px auto;
}

.social-icons {
  margin-top: 15px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.social-icons img {
  width: 32px;
  height: 32px;
  transition: transform 0.2s ease, filter 0.2s ease;
  filter: brightness(90%);
}

.social-icons img:hover {
  transform: scale(1.1);
  filter: brightness(120%);
}

/* Responsive */
@media (max-width: 768px) {
  .info-card {
    flex: 0 1 calc(50% - 20px); /* 2 per row on tablets */
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .info-card {
    flex: 0 1 100%; /* 1 per row on mobile */
  }
}

  /* info end  */
