
/* =======================
   Top Bar
======================= */
.top-bar {
  background-color: #083563;
  font-size: 13px;
  padding: 4px 0;   /* Height kam kar di */
  color: #fff;
}
.top-bar span {
  font-weight: bold;  /* Top bar ka text/number bold */
}
/* Agar icons <i> ya <svg> hai */
.top-bar i,
.top-bar svg {
  color: #fff;  /* Icons ko white kar dega */
}

/* Agar icons links <a> ke andar hain */
.top-bar a {
  color: #fff;  /* Links + icons ka color white */
}



/* =======================
   Navbar
======================= */
.navbar-nav .nav-link {
  font-weight: 500;  /* realistic value */
  font-size: 18px;
  position: relative;
  transition: color 0.3s ease;
  height: 50px;
}
.navbar-nav .nav-link:hover {
  color: red;
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: red;
  transition: width 0.3s ease;
  
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}
.navbar-nav .nav-link.active {
  color: red;
}

/* Logo Text */
.logo-text {
  font-size: 25px;     /* size bada kiya */
  font-weight: bold;
  color: #0d2b4f;
  
  text-decoration: none !important;

}
.logo-text span {
  color: red;
}

/* Logo Image */
.logo-img {
  height: 20px;        /* height bada kiya */
  width: auto;
}


/* =======================
   Property Cards
======================= */
.property-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  background: #fff;
  transition: 0.3s ease-in-out;
}
.property-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.property-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.badge-for-sale {
  background-color: orange;
  color: white;
  font-size: 0.7rem;
  padding: 5px 10px;
  border-radius: 5px;
}
.property-details {
  padding: 15px;
}
.price {
  color: #d90000;
  font-weight: bold;
  font-size: 1.1rem;
}
.property-location, .property-size {
  font-size: 0.9rem;
  color: #666;
}
.property-buttons {
  padding: 0 15px 15px;
}
.property-buttons .btn {
  width: 48%;
}
.featured-heading {
  text-align: center;
  margin-bottom: 30px;
}
.featured-heading h2 {
  font-weight: 600;
}
.featured-heading span {
  color: red;
  font-weight: bold;
}
@media (max-width: 767.98px) {
  .property-image img {
    height: 180px;
  }
  .property-buttons .btn {
    width: 100%;
    margin-top: 10px;
  }
}

/* =======================
   WhatsApp Floating Button
======================= */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 30px;
  padding: 10px 20px;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 99;
}
.whatsapp-btn i {
  margin-right: 8px;
  font-size: 20px;
}


/* =======================
   About Section
======================= */
.about-section h1 {
  font-size: 4rem;
  font-weight: 800;
  opacity: 0.1;
  position: relative;
}
.about-section h3 {
  margin-top: -40px;
  position: relative;
  z-index: 2;
}
.about-image-wrapper {
  position: relative;
  display: inline-block;
}
.about-image-wrapper img {
  border: 6px solid #fff;
}
.dots-decoration {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(#ccc 2px, transparent 2px);
  background-size: 10px 10px;
  opacity: 0.7;
  z-index: -1;
}

/* =======================
   Footer
======================= */
.footer {
  background: #0d3b66;
  color: #fff;
  padding: 40px 0 20px;
}
.footer h5 {
  font-weight: bold;
  margin-bottom: 20px;
}
.footer a {
  color: #fff;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}
.newsletter-input {
  border-radius: 25px 0 0 25px;
  border: none;
  padding: 10px 15px;
  width: 100%;
}
.newsletter-btn {
  border-radius: 0 25px 25px 0;
  border: none;
  padding: 10px 20px;
  background: #e63946;
  color: #fff;
}
.social-icons a {
  font-size: 20px;
  margin: 0 8px;
  color: #fff;
}
.social-icons a:hover {
  color: #e63946;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 20px;
  padding-top: 10px;
  text-align: center;
  font-size: 14px;
}

/* =======================
   Breadcrumb Section
======================= */
.breadcrumb-section {
  background: url('https://images.unsplash.com/photo-1501183638710-841dd1904471?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=60') 
              no-repeat center center/cover;
  padding: 70px 0;
  color: #fff;
  text-align: center;
  position: relative;
}
.breadcrumb-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.breadcrumb-section .container {
  position: relative;
  z-index: 1;
}
.breadcrumb-section h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}
.breadcrumb {
  justify-content: center;
  margin-bottom: 0;
}
.breadcrumb-item a {
  color: #fff;
  text-decoration: none;
}
.breadcrumb-item a:hover {
  text-decoration: underline;
}
.breadcrumb-item.active {
  color: #f1c40f;
}

/* =======================
   Contact Section
======================= */
.contact-section {
  padding: 60px 0;
  text-align: center;
}
.contact-section h2 {
  font-weight: 700;
  margin-bottom: 40px;
  color: #333;
}
.contact-box {
  padding: 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.contact-box i {
  font-size: 32px;
  background: #143f44;
  color: #fff;
  padding: 15px;
  border-radius: 50%;
  margin-bottom: 15px;
}
.contact-box h5 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}
.contact-box p {
  margin: 0;
  color: #444;
  font-size: 15px;
  line-height: 1.6;
}
.contact-box strong { color: #000000; }
.contact-box:hover { transform: translateY(-5px); }
.contact { background-color: #f8f9fa; }
.contact-container {
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin: auto;
}
.image-section { flex: 1 1 50%; padding: 10px; }
.form-section { flex: 1 1 50%; padding: 10px; }
.form-section form {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
}
.form-section h2 {
  font-weight: bold;
  margin-bottom: 20px;
}

/* =======================
   Buttons
======================= */
.btn-submit {
  background-color: #d62828;
  color: #fff;
  border-radius: 25px;
  padding: 10px 30px;
  transition: 0.3s;
}
.btn-submit:hover {
  background-color: #a61d1d;
}


/* =======================
   Career Hero Section
======================= */


/* =======================
   Career Page Sections
======================= */
.why-join {
  padding: 60px 0;
}
.why-join h2 {
  font-weight: 700;
  margin-bottom: 20px;
}
.job-section {
  background: #fafafa;
  padding: 60px 0;
}
.job-card {
  border: none;
  border-radius: 12px;
  padding: 25px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}
.job-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}
.job-card h5 { font-weight: 600; }
.job-card .btn { margin-top: 10px; }
.apply-form {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.1);
}
  
.carousel {
  position: relative;
  width: 100%;
  max-width: 1600px; /* Desktop width */
  margin: auto;
  overflow: hidden;
  border-radius: 10px;
}

.slides img {
  width: 100%;
  height: auto;
  display: none;
}

.slides img.active {
  display: block;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 12px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 18px;
}

.prev { left: 10px; }
.next { right: 10px; }

.dots {
  text-align: center;
  margin: 10px 0;
}

.dots span {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 3px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
}

.dots .active {
  background-color: #333;
}

/* Responsive for Mobile */
@media (max-width: 600px) {
  .prev, .next {
    padding: 8px;
    font-size: 16px;
  }
  
}
  .property-slider {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background: #0b4a73;
  }

  .property-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: 0.3s;
    border: 2px solid transparent;
  }

  .property-card:hover {
    border: 2px solid red;
    transform: translateY(-5px);
  }

  .property-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
  }

  .property-card h4 {
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
  }

  /* Arrows Style */
  .owl-nav button {
    background: white !important;
    border-radius: 50% !important;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: 0.3s;
  }

  .owl-nav button:hover {
    background: red !important;
    color: #fff !important;
  }

  .owl-nav .owl-prev { left: -50px; }
  .owl-nav .owl-next { right: -50px; }

  .owl-dots {
    margin-top: 15px;
  }
  .owl-dot span {
    background: #fff !important;
  }
  .owl-dot.active span {
    background: red !important;
  }
    /* ==========================
      Testimonial Section
  ========================== */
  .testimonials {
    background: #f1f4f9; /* halka grey-blue background */
    padding: 60px 0;
  }
  .testimonials h2 {
    font-weight: 700;
    color: #083563; /* theme blue */
    margin-bottom: 40px;
  }
  .testimonial-card {
    background: #fff;
    border-radius: 12px;
    border-top: 4px solid red; /* red accent */
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  }
  .testimonial-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
  }
  .testimonial-text {
    font-size: 16px;
    font-style: italic;
    color: #333;
    min-height: 80px;
  }
  .testimonial-card h5 {
    color: red;
    font-weight: 600;
    margin-top: 15px;
  }
  .testimonial-card small {
    color: #083563; /* theme blue */
  }
  /* Swiper Pagination */
  .swiper-pagination-bullet {
    background: red;
    opacity: 0.6;
  }
  .swiper-pagination-bullet-active {
    background: #c40000;
    opacity: 1;
  }
  /* Swiper Navigation Buttons */
  .swiper-button-next,
  .swiper-button-prev {
    color: red;
    font-weight: bold;
  }

  .call-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 30px;
  padding: 10px 20px;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 99;
  }

  .call-btn {
    background: #007bff; /* Blue */
  }

  .whatsapp-btn {
    background: #25D366; /* WhatsApp Green */
  }

  .call-btn:hover {
    background: #00b30f;
  }

  .whatsapp-btn:hover {
    background: #1ebc57;
  }

   .map-section iframe {
  width: 200%;
  height: 250px;
  border: none;
  border-radius: 10px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.2);
}

/* ===============================
   GLOBAL RESPONSIVE FIXES
================================ */
.logoimg {
  max-width: 70px;
  height: auto;
  border-radius: 10px;
}

.container,
.container-fluid {
  padding-left: 15px;
  padding-right: 15px;
}

/* ===============================
   TOP BAR
================================ */
@media (max-width: 767px) {
  .top-bar {
    font-size: 12px;
    text-align: center;
  }
}

/* ===============================
   NAVBAR
================================ */
@media (max-width: 991px) {
  .navbar-nav .nav-link {
    height: auto;
    padding: 10px 0;
    font-size: 16px;
  }

  .logo-text {
    font-size: 20px;
  }

  .logo-img {
    height: 30px;
  }
}

/* ===============================
   PROPERTY CARDS
================================ */
@media (max-width: 767px) {
  .property-image img {
    height: 170px;
  }

  .property-buttons .btn {
    width: 100%;
    margin-bottom: 10px;
  }
}

/* ===============================
   ABOUT SECTION
================================ */
@media (max-width: 768px) {
  .about-section h1 {
    font-size: 2.5rem;
  }

  .about-section h3 {
    margin-top: -20px;
    font-size: 20px;
  }

  .dots-decoration {
    display: none;
  }
}

/* ===============================
   CONTACT SECTION
================================ */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .image-section,
  .form-section {
    flex: 1 1 100%;
  }

  .contact-box i {
    font-size: 26px;
    padding: 12px;
  }
}

/* ===============================
   MAP SECTION FIX
================================ */
@media (max-width: 768px) {
  .map-section iframe {
    width: 100%;
    height: 220px;
  }
}

/* ===============================
   CAROUSEL / SLIDER
================================ */
@media (max-width: 768px) {
  .carousel {
    border-radius: 8px;
  }

  .prev,
  .next {
    padding: 8px;
    font-size: 14px;
  }
}

/* ===============================
   OWL SLIDER ARROWS
================================ */
@media (max-width: 992px) {
  .owl-nav .owl-prev {
    left: -20px;
  }

  .owl-nav .owl-next {
    right: -20px;
  }
}

/* ===============================
   TESTIMONIALS
================================ */
@media (max-width: 768px) {
  .testimonial-text {
    font-size: 14px;
  }

  .testimonial-card img {
    width: 60px;
    height: 60px;
  }
}

/* ===============================
   FLOATING BUTTONS
================================ */
@media (max-width: 576px) {
  .call-btn,
  .whatsapp-btn {
    padding: 8px 14px;
    font-size: 13px;
  }
}

/* ===============================
   FOOTER
================================ */
@media (max-width: 768px) {
  .footer {
    text-align: center;
  }

  .newsletter-input {
    border-radius: 25px;
    margin-bottom: 10px;
  }

  .newsletter-btn {
    border-radius: 25px;
    width: 100%;
  }
}

/* =======================
   Footer Base
======================= */
footer a {
  text-decoration: none !important;
  color: #fff !important;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #f1c40f !important;
}

/* =======================
   Footer Layout
======================= */
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  padding: 40px 20px;
}

.footer-column {
  flex: 1 1 250px;   /* responsive flex */
  min-width: 250px;
}

/* =======================
   Social Icons
======================= */
.social-icons a {
  font-size: 20px;
  margin-right: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* =======================
   Tablet
======================= */
@media (max-width: 991px) {
  .footer-container {
    gap: 20px;
  }

  .footer-column {
    flex: 1 1 45%;
  }
}

/* =======================
   Mobile
======================= */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    padding: 30px 15px;
  }

  .footer-column {
    width: 100%;
  }

  .social-icons {
    justify-content: center;
  }

  .social-icons a {
    margin: 0 10px;
  }
}

/* =======================
   Small Mobile
======================= */
@media (max-width: 480px) {
  .footer-container {
    padding: 25px 10px;
  }

  .social-icons a {
    font-size: 18px;
  }
}
